/*! @algolia/autocomplete-theme-classic 1.19.2 | MIT License | © Algolia, Inc. and contributors | https://github.com/algolia/autocomplete */
/* ----------------*/
/* 1.  CSS Variables*/
/* 2.  Dark Mode*/
/* 3.  Autocomplete*/
/* 4.  Panel*/
/* 5.  Sources*/
/* 6.  Hit Layout*/
/* 7.  Panel Header*/
/* 8.  Panel Footer*/
/* 9.  Detached Mode*/
/* 10. Gradients*/
/* 11. Utilities*/
/* ----------------*/
/* Note:*/
/* This theme reflects the markup structure of autocomplete with SCSS indentation.*/
/* We use the SASS `@at-root` function to keep specificity low.*/
/* ----------------*/
/* 1. CSS Variables*/
/* ----------------*/
:root {
  /* Input*/
  --aa-search-input-height: 44px;
  --aa-input-icon-size: 20px;
  /* Size and spacing*/
  --aa-base-unit: 16;
  --aa-spacing-factor: 1;
  --aa-spacing: calc(var(--aa-base-unit) * var(--aa-spacing-factor) * 1px);
  --aa-spacing-half: calc(var(--aa-spacing) / 2);
  --aa-panel-max-height: 650px;
  /* Z-index*/
  --aa-base-z-index: 9999;
  /* Font*/
  --aa-font-size: calc(var(--aa-base-unit) * 1px);
  --aa-font-family: inherit;
  --aa-font-weight-medium: 500;
  --aa-font-weight-semibold: 600;
  --aa-font-weight-bold: 700;
  /* Icons*/
  --aa-icon-size: 20px;
  --aa-icon-stroke-width: 1.6;
  --aa-icon-color-rgb: 119, 119, 163;
  --aa-icon-color-alpha: 1;
  --aa-action-icon-size: 20px;
  /* Text colors*/
  --aa-text-color-rgb: 38, 38, 39;
  --aa-text-color-alpha: 1;
  --aa-primary-color-rgb: 62, 52, 211;
  --aa-primary-color-alpha: 0.2;
  --aa-muted-color-rgb: 128, 126, 163;
  --aa-muted-color-alpha: 0.6;
  /* Border colors*/
  --aa-panel-border-color-rgb: 128, 126, 163;
  --aa-panel-border-color-alpha: 0.3;
  --aa-input-border-color-rgb: 128, 126, 163;
  --aa-input-border-color-alpha: 0.8;
  /* Background colors*/
  --aa-background-color-rgb: 255, 255, 255;
  --aa-background-color-alpha: 1;
  --aa-input-background-color-rgb: 255, 255, 255;
  --aa-input-background-color-alpha: 1;
  --aa-selected-color-rgb: 179, 173, 214;
  --aa-selected-color-alpha: 0.205;
  --aa-description-highlight-background-color-rgb: 245, 223, 77;
  --aa-description-highlight-background-color-alpha: 0.5;
  /* Detached mode*/
  --aa-detached-media-query: (max-width: 680px);
  --aa-detached-modal-media-query: (min-width: 680px);
  --aa-detached-modal-max-width: 680px;
  --aa-detached-modal-max-height: 500px;
  --aa-overlay-color-rgb: 115, 114, 129;
  --aa-overlay-color-alpha: 0.4;
  /* Shadows*/
  --aa-panel-shadow: 0 0 0 1px rgba(35, 38, 59, .1),
    0 6px 16px -4px rgba(35, 38, 59, .15);
  /* Scrollbar*/
  --aa-scrollbar-width: 13px;
  --aa-scrollbar-track-background-color-rgb: 234, 234, 234;
  --aa-scrollbar-track-background-color-alpha: 1;
  --aa-scrollbar-thumb-background-color-rgb: var(--aa-background-color-rgb);
  --aa-scrollbar-thumb-background-color-alpha: 1;
  /* Touch screens*/
}
@media (hover: none) and (pointer: coarse) {
  :root {
    --aa-spacing-factor: 1.2;
    --aa-action-icon-size: 22px;
  }
}

/* ----------------*/
/* 2. Dark Mode*/
/* ----------------*/
body {
  /* stylelint-disable selector-no-qualifying-type, selector-class-pattern */
  /* stylelint-enable selector-no-qualifying-type, selector-class-pattern */
}
body[data-theme=dark], body.dark {
  /* Text colors*/
  --aa-text-color-rgb: 183, 192, 199;
  --aa-primary-color-rgb: 146, 138, 255;
  --aa-muted-color-rgb: 146, 138, 255;
  /* Background colors*/
  --aa-input-background-color-rgb: 0, 3, 9;
  --aa-background-color-rgb: 21, 24, 42;
  --aa-selected-color-rgb: 146, 138, 255;
  --aa-selected-color-alpha: 0.25;
  --aa-description-highlight-background-color-rgb: 0 255 255;
  --aa-description-highlight-background-color-alpha: 0.25;
  /* Icons*/
  --aa-icon-color-rgb: 119, 119, 163;
  /* Shadows*/
  --aa-panel-shadow: inset 1px 1px 0 0 rgb(44, 46, 64),
    0 3px 8px 0 rgb(0, 3, 9);
  /* Scrollbar*/
  --aa-scrollbar-track-background-color-rgb: 44, 46, 64;
  --aa-scrollbar-thumb-background-color-rgb: var(--aa-background-color-rgb);
}

/* Reset for `@extend`*/
.aa-Panel *, .aa-Autocomplete *,
.aa-DetachedFormContainer * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Init for `@extend`*/
.aa-Panel, .aa-Autocomplete,
.aa-DetachedFormContainer {
  color: rgba(38, 38, 39, 1);
  color: rgba(var(--aa-text-color-rgb), var(--aa-text-color-alpha));
  font-family: inherit;
  font-family: var(--aa-font-family);
  font-size: calc(16 * 1px);
  font-size: var(--aa-font-size);
  font-weight: normal;
  line-height: 1em;
  margin: 0;
  padding: 0;
  text-align: left;
}

/* ----------------*/
/* 3. Autocomplete*/
/* ----------------*/
.aa-Autocomplete,
.aa-DetachedFormContainer {
  /* Search box*/
}
.aa-Form {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(255, 255, 255, 1);
  background-color: rgba(var(--aa-input-background-color-rgb), var(--aa-input-background-color-alpha));
  border: 1px solid rgba(128, 126, 163, 0.8);
  border: 1px solid rgba(var(--aa-input-border-color-rgb), var(--aa-input-border-color-alpha));
  border-radius: 3px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  line-height: 1em;
  margin: 0;
  position: relative;
  width: 100%;
}
.aa-Form:focus-within {
  border-color: rgba(62, 52, 211, 1);
  border-color: rgba(var(--aa-primary-color-rgb), 1);
  -webkit-box-shadow: rgba(62, 52, 211, 0.2) 0 0 0 2px, inset rgba(62, 52, 211, 0.2) 0 0 0 2px;
          box-shadow: rgba(62, 52, 211, 0.2) 0 0 0 2px, inset rgba(62, 52, 211, 0.2) 0 0 0 2px;
  -webkit-box-shadow: rgba(var(--aa-primary-color-rgb), var(--aa-primary-color-alpha)) 0 0 0 2px, inset rgba(var(--aa-primary-color-rgb), var(--aa-primary-color-alpha)) 0 0 0 2px;
          box-shadow: rgba(var(--aa-primary-color-rgb), var(--aa-primary-color-alpha)) 0 0 0 2px, inset rgba(var(--aa-primary-color-rgb), var(--aa-primary-color-alpha)) 0 0 0 2px;
  outline: currentColor none medium;
}
.aa-InputWrapperPrefix {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  height: 44px;
  height: var(--aa-search-input-height);
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
  /* Container for search and loading icons*/
}
.aa-Label,
.aa-LoadingIndicator {
  cursor: auto;
  cursor: initial;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  height: 100%;
  padding: 0;
  text-align: left;
}
.aa-Label svg,
.aa-LoadingIndicator svg {
  color: rgba(62, 52, 211, 1);
  color: rgba(var(--aa-primary-color-rgb), 1);
  height: auto;
  max-height: 20px;
  max-height: var(--aa-input-icon-size);
  stroke-width: 1.6;
  stroke-width: var(--aa-icon-stroke-width);
  width: 20px;
  width: var(--aa-input-icon-size);
}

.aa-SubmitButton,
.aa-LoadingIndicator {
  height: 100%;
  padding-left: calc((16 * 1 * 1px) * 0.75 - 1px);
  padding-left: calc(calc(16 * 1 * 1px) * 0.75 - 1px);
  padding-left: calc(var(--aa-spacing) * 0.75 - 1px);
  padding-right: calc((16 * 1 * 1px) / 2);
  padding-right: calc(calc(16 * 1 * 1px) / 2);
  padding-right: var(--aa-spacing-half);
  width: calc((16 * 1 * 1px) * 1.75 + 20px - 1px);
  width: calc(calc(16 * 1 * 1px) * 1.75 + 20px - 1px);
  width: calc(var(--aa-spacing) * 1.75 + var(--aa-icon-size) - 1px);
}
@media (hover: none) and (pointer: coarse) {
  .aa-SubmitButton,
  .aa-LoadingIndicator {
    padding-left: calc(((16 * 1 * 1px) / 2) / 2 - 1px);
    padding-left: calc(calc(calc(16 * 1 * 1px) / 2) / 2 - 1px);
    padding-left: calc(var(--aa-spacing-half) / 2 - 1px);
    width: calc(20px + (16 * 1 * 1px) * 1.25 - 1px);
    width: calc(20px + calc(16 * 1 * 1px) * 1.25 - 1px);
    width: calc(var(--aa-icon-size) + var(--aa-spacing) * 1.25 - 1px);
  }
}

.aa-SubmitButton {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: 0;
  margin: 0;
}

.aa-LoadingIndicator {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.aa-LoadingIndicator[hidden] {
  display: none;
}

.aa-InputWrapper {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
      -ms-flex-order: 3;
          order: 3;
  position: relative;
  width: 100%;
  /* Search box input (with placeholder and query)*/
}
.aa-Input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: 0;
  color: rgba(38, 38, 39, 1);
  color: rgba(var(--aa-text-color-rgb), var(--aa-text-color-alpha));
  font: inherit;
  height: 44px;
  height: var(--aa-search-input-height);
  padding: 0;
  width: 100%;
  /* Focus is set and styled on the parent, it isn't necessary here*/
  /* Remove native appearance*/
}
.aa-Input::-moz-placeholder {
  color: rgba(128, 126, 163, 0.6);
  color: rgba(var(--aa-muted-color-rgb), var(--aa-muted-color-alpha));
  opacity: 1;
}
.aa-Input::-webkit-input-placeholder {
  color: rgba(128, 126, 163, 0.6);
  color: rgba(var(--aa-muted-color-rgb), var(--aa-muted-color-alpha));
  opacity: 1;
}
.aa-Input:-ms-input-placeholder {
  color: rgba(128, 126, 163, 0.6);
  color: rgba(var(--aa-muted-color-rgb), var(--aa-muted-color-alpha));
  opacity: 1;
}
.aa-Input::-ms-input-placeholder {
  color: rgba(128, 126, 163, 0.6);
  color: rgba(var(--aa-muted-color-rgb), var(--aa-muted-color-alpha));
  opacity: 1;
}
.aa-Input::placeholder {
  color: rgba(128, 126, 163, 0.6);
  color: rgba(var(--aa-muted-color-rgb), var(--aa-muted-color-alpha));
  opacity: 1;
}
.aa-Input:focus {
  border-color: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
.aa-Input::-webkit-search-decoration, .aa-Input::-webkit-search-cancel-button, .aa-Input::-webkit-search-results-button, .aa-Input::-webkit-search-results-decoration {
  -webkit-appearance: none;
          appearance: none;
}

.aa-InputWrapperSuffix {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 44px;
  height: var(--aa-search-input-height);
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
      -ms-flex-order: 4;
          order: 4;
  /* Accelerator to clear the query*/
}
.aa-ClearButton {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: none;
  border: 0;
  color: rgba(128, 126, 163, 0.6);
  color: rgba(var(--aa-muted-color-rgb), var(--aa-muted-color-alpha));
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0;
  padding: 0 calc((16 * 1 * 1px) * 0.8333333333 - 0.5px);
  padding: 0 calc(calc(16 * 1 * 1px) * 0.8333333333 - 0.5px);
  padding: 0 calc(var(--aa-spacing) * 0.8333333333 - 0.5px);
}
@media (hover: none) and (pointer: coarse) {
  .aa-ClearButton {
    padding: 0 calc((16 * 1 * 1px) * 0.6666666667 - 0.5px);
    padding: 0 calc(calc(16 * 1 * 1px) * 0.6666666667 - 0.5px);
    padding: 0 calc(var(--aa-spacing) * 0.6666666667 - 0.5px);
  }
}
.aa-ClearButton:hover, .aa-ClearButton:focus {
  color: rgba(38, 38, 39, 1);
  color: rgba(var(--aa-text-color-rgb), var(--aa-text-color-alpha));
}
.aa-ClearButton[hidden] {
  display: none;
}
.aa-ClearButton svg {
  stroke-width: 1.6;
  stroke-width: var(--aa-icon-stroke-width);
  width: 20px;
  width: var(--aa-icon-size);
}

/* ----------------*/
/* 4. Panel*/
/* ----------------*/
.aa-Panel {
  background-color: rgba(255, 255, 255, 1);
  background-color: rgba(var(--aa-background-color-rgb), var(--aa-background-color-alpha));
  border-radius: calc((16 * 1 * 1px) / 4);
  border-radius: calc(calc(16 * 1 * 1px) / 4);
  border-radius: calc(var(--aa-spacing) / 4);
  -webkit-box-shadow: 0 0 0 1px rgba(35, 38, 59, 0.1),
    0 6px 16px -4px rgba(35, 38, 59, 0.15);
          box-shadow: 0 0 0 1px rgba(35, 38, 59, 0.1),
    0 6px 16px -4px rgba(35, 38, 59, 0.15);
  -webkit-box-shadow: var(--aa-panel-shadow);
          box-shadow: var(--aa-panel-shadow);
  margin: 8px 0 0;
  overflow: hidden;
  position: absolute;
  -webkit-transition: opacity 200ms ease-in, -webkit-filter 200ms ease-in;
  transition: opacity 200ms ease-in, -webkit-filter 200ms ease-in;
  transition: opacity 200ms ease-in, filter 200ms ease-in;
  transition: opacity 200ms ease-in, filter 200ms ease-in, -webkit-filter 200ms ease-in;
  /* When a request isn't resolved yet*/
}
@media screen and (prefers-reduced-motion) {
  .aa-Panel {
    -webkit-transition: none;
    transition: none;
  }
}
.aa-Panel button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
}
.aa-PanelLayout {
  height: 100%;
  margin: 0;
  max-height: 650px;
  max-height: var(--aa-panel-max-height);
  overflow-y: auto;
  padding: 0;
  position: relative;
  text-align: left;
}
.aa-PanelLayoutColumns--twoGolden {
  display: grid;
  grid-template-columns: 39.2% auto;
  overflow: hidden;
  padding: 0;
}

.aa-PanelLayoutColumns--two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  padding: 0;
}

.aa-PanelLayoutColumns--three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  padding: 0;
}

.aa-Panel--stalled .aa-Source {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  opacity: 0.8;
}

.aa-Panel--scrollable {
  margin: 0;
  max-height: 650px;
  max-height: var(--aa-panel-max-height);
  overflow-x: hidden;
  overflow-y: auto;
  padding: calc((16 * 1 * 1px) / 2);
  padding: calc(calc(16 * 1 * 1px) / 2);
  padding: var(--aa-spacing-half);
  scrollbar-color: rgba(255, 255, 255, 1) rgba(234, 234, 234, 1);
  scrollbar-color: rgba(var(--aa-scrollbar-thumb-background-color-rgb), var(--aa-scrollbar-thumb-background-color-alpha)) rgba(var(--aa-scrollbar-track-background-color-rgb), var(--aa-scrollbar-track-background-color-alpha));
  scrollbar-width: thin;
}
.aa-Panel--scrollable::-webkit-scrollbar {
  width: 13px;
  width: var(--aa-scrollbar-width);
}
.aa-Panel--scrollable::-webkit-scrollbar-track {
  background-color: rgba(234, 234, 234, 1);
  background-color: rgba(var(--aa-scrollbar-track-background-color-rgb), var(--aa-scrollbar-track-background-color-alpha));
}
.aa-Panel--scrollable::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 1);
  background-color: rgba(var(--aa-scrollbar-thumb-background-color-rgb), var(--aa-scrollbar-thumb-background-color-alpha));
  border-color: rgba(234, 234, 234, 1);
  border-color: rgba(var(--aa-scrollbar-track-background-color-rgb), var(--aa-scrollbar-track-background-color-alpha));
  border-radius: 9999px;
  border-style: solid;
  border-width: 3px 2px 3px 3px;
}

/* ----------------*/
/* 5. Sources*/
/* Each source can be styled independently*/
/* ----------------*/
.aa-Source {
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  /* List of results inside the source*/
  /* Source title*/
  /* See all button*/
}
.aa-Source:empty {
  /* Hide empty section*/
  display: none;
}
.aa-SourceNoResults {
  font-size: 1em;
  margin: 0;
  padding: calc(16 * 1 * 1px);
  padding: var(--aa-spacing);
}

.aa-List {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.aa-SourceHeader {
  margin: calc((16 * 1 * 1px) / 2) 0.5em calc((16 * 1 * 1px) / 2) 0;
  margin: calc(calc(16 * 1 * 1px) / 2) 0.5em calc(calc(16 * 1 * 1px) / 2) 0;
  margin: var(--aa-spacing-half) 0.5em var(--aa-spacing-half) 0;
  padding: 0;
  position: relative;
  /* Hide empty header*/
  /* Title typography*/
  /* Line separator*/
}
.aa-SourceHeader:empty {
  display: none;
}
.aa-SourceHeaderTitle {
  background: rgba(255, 255, 255, 1);
  background: rgba(var(--aa-background-color-rgb), var(--aa-background-color-alpha));
  color: rgba(62, 52, 211, 1);
  color: rgba(var(--aa-primary-color-rgb), 1);
  display: inline-block;
  font-size: 0.8em;
  font-weight: 600;
  font-weight: var(--aa-font-weight-semibold);
  margin: 0;
  padding: 0 calc((16 * 1 * 1px) / 2) 0 0;
  padding: 0 calc(calc(16 * 1 * 1px) / 2) 0 0;
  padding: 0 var(--aa-spacing-half) 0 0;
  position: relative;
  z-index: 9999;
  z-index: var(--aa-base-z-index);
}

.aa-SourceHeaderLine {
  border-bottom: solid 1px rgba(62, 52, 211, 1);
  border-bottom: solid 1px rgba(var(--aa-primary-color-rgb), 1);
  display: block;
  height: 2px;
  left: 0;
  margin: 0;
  opacity: 0.3;
  padding: 0;
  position: absolute;
  right: 0;
  top: calc((16 * 1 * 1px) / 2);
  top: calc(calc(16 * 1 * 1px) / 2);
  top: var(--aa-spacing-half);
  z-index: calc(9999 - 1);
  z-index: calc(var(--aa-base-z-index) - 1);
}

.aa-SourceFooterSeeAll {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 1)), to(rgba(128, 126, 163, 0.14)));
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(128, 126, 163, 0.14));
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(var(--aa-background-color-rgb), var(--aa-background-color-alpha))), to(rgba(128, 126, 163, 0.14)));
  background: linear-gradient(180deg, rgba(var(--aa-background-color-rgb), var(--aa-background-color-alpha)), rgba(128, 126, 163, 0.14));
  border: 1px solid rgba(128, 126, 163, 0.6);
  border: 1px solid rgba(var(--aa-muted-color-rgb), var(--aa-muted-color-alpha));
  border-radius: 5px;
  -webkit-box-shadow: inset 0 0 2px #fff, 0 2px 2px -1px rgba(76, 69, 88, 0.15);
          box-shadow: inset 0 0 2px #fff, 0 2px 2px -1px rgba(76, 69, 88, 0.15);
  color: inherit;
  font-size: 0.95em;
  font-weight: 500;
  font-weight: var(--aa-font-weight-medium);
  padding: 0.475em 1em 0.6em;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.aa-SourceFooterSeeAll:focus, .aa-SourceFooterSeeAll:hover {
  border: 1px solid rgba(62, 52, 211, 1);
  border: 1px solid rgba(var(--aa-primary-color-rgb), 1);
  color: rgba(62, 52, 211, 1);
  color: rgba(var(--aa-primary-color-rgb), 1);
}

/* ----------------*/
/* 6. Hit Layout*/
/* ----------------*/
.aa-Item {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 3px;
  cursor: pointer;
  display: grid;
  min-height: calc((16 * 1 * 1px) * 2.5);
  min-height: calc(calc(16 * 1 * 1px) * 2.5);
  min-height: calc(var(--aa-spacing) * 2.5);
  padding: calc(((16 * 1 * 1px) / 2) / 2);
  padding: calc(calc(calc(16 * 1 * 1px) / 2) / 2);
  padding: calc(var(--aa-spacing-half) / 2);
  /* When the result is active*/
  /* The result type icon inlined SVG or image*/
  /* wrap hit with url but we don't need to see it*/
  /* Secondary click actions*/
}
.aa-Item[aria-selected=true] {
  background-color: rgba(179, 173, 214, 0.205);
  background-color: rgba(var(--aa-selected-color-rgb), var(--aa-selected-color-alpha));
}
.aa-Item[aria-selected=true] .aa-ItemActionButton,
.aa-Item[aria-selected=true] .aa-ActiveOnly {
  visibility: visible;
}
.aa-ItemIcon {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(255, 255, 255, 1);
  background: rgba(var(--aa-background-color-rgb), var(--aa-background-color-alpha));
  border-radius: 3px;
  -webkit-box-shadow: inset 0 0 0 1px rgba(128, 126, 163, 0.3);
          box-shadow: inset 0 0 0 1px rgba(128, 126, 163, 0.3);
  -webkit-box-shadow: inset 0 0 0 1px rgba(var(--aa-panel-border-color-rgb), var(--aa-panel-border-color-alpha));
          box-shadow: inset 0 0 0 1px rgba(var(--aa-panel-border-color-rgb), var(--aa-panel-border-color-alpha));
  color: rgba(119, 119, 163, 1);
  color: rgba(var(--aa-icon-color-rgb), var(--aa-icon-color-alpha));
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  font-size: 0.7em;
  height: calc(20px + ((16 * 1 * 1px) / 2));
  height: calc(20px + calc(calc(16 * 1 * 1px) / 2));
  height: calc(var(--aa-icon-size) + var(--aa-spacing-half));
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  stroke-width: 1.6;
  stroke-width: var(--aa-icon-stroke-width);
  text-align: center;
  width: calc(20px + ((16 * 1 * 1px) / 2));
  width: calc(20px + calc(calc(16 * 1 * 1px) / 2));
  width: calc(var(--aa-icon-size) + var(--aa-spacing-half));
}
.aa-ItemIcon img {
  height: auto;
  max-height: calc(20px + ((16 * 1 * 1px) / 2) - 8px);
  max-height: calc(20px + calc(calc(16 * 1 * 1px) / 2) - 8px);
  max-height: calc(var(--aa-icon-size) + var(--aa-spacing-half) - 8px);
  max-width: calc(20px + ((16 * 1 * 1px) / 2) - 8px);
  max-width: calc(20px + calc(calc(16 * 1 * 1px) / 2) - 8px);
  max-width: calc(var(--aa-icon-size) + var(--aa-spacing-half) - 8px);
  width: auto;
}
.aa-ItemIcon svg {
  height: 20px;
  height: var(--aa-icon-size);
  width: 20px;
  width: var(--aa-icon-size);
}
.aa-ItemIcon--alignTop {
  -webkit-align-self: flex-start;
      -ms-flex-item-align: start;
          align-self: flex-start;
}

.aa-ItemIcon--noBorder {
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.aa-ItemIcon--picture {
  height: 96px;
  width: 96px;
}
.aa-ItemIcon--picture img {
  max-height: 100%;
  max-width: 100%;
  padding: calc((16 * 1 * 1px) / 2);
  padding: calc(calc(16 * 1 * 1px) / 2);
  padding: var(--aa-spacing-half);
}

.aa-ItemContent {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  display: grid;
  gap: calc((16 * 1 * 1px) / 2);
  gap: calc(calc(16 * 1 * 1px) / 2);
  grid-gap: calc((16 * 1 * 1px) / 2);
  grid-gap: calc(calc(16 * 1 * 1px) / 2);
  grid-gap: var(--aa-spacing-half);
  gap: var(--aa-spacing-half);
  grid-auto-flow: column;
  line-height: 1.25em;
  overflow: hidden;
}
.aa-ItemContent:empty {
  display: none;
}
.aa-ItemContent mark {
  background: none;
  color: rgba(38, 38, 39, 1);
  color: rgba(var(--aa-text-color-rgb), var(--aa-text-color-alpha));
  font-style: normal;
  font-weight: 700;
  font-weight: var(--aa-font-weight-bold);
}
.aa-ItemContent--dual {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: left;
}
.aa-ItemContent--dual .aa-ItemContentTitle,
.aa-ItemContent--dual .aa-ItemContentSubtitle {
  display: block;
}

.aa-ItemContent--indented {
  padding-left: calc(20px + (16 * 1 * 1px));
  padding-left: calc(20px + calc(16 * 1 * 1px));
  padding-left: calc(var(--aa-icon-size) + var(--aa-spacing));
}

.aa-ItemContentBody {
  display: grid;
  gap: calc(((16 * 1 * 1px) / 2) / 2);
  gap: calc(calc(calc(16 * 1 * 1px) / 2) / 2);
  grid-gap: calc(((16 * 1 * 1px) / 2) / 2);
  grid-gap: calc(calc(calc(16 * 1 * 1px) / 2) / 2);
  grid-gap: calc(var(--aa-spacing-half) / 2);
  gap: calc(var(--aa-spacing-half) / 2);
}

.aa-ItemContentTitle {
  display: inline-block;
  margin: 0 0.5em 0 0;
  max-width: 100%;
  overflow: hidden;
  padding: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.aa-ItemContentSubtitle {
  font-size: 0.92em;
}
.aa-ItemContentSubtitleIcon::before {
  border-color: rgba(128, 126, 163, 0.64);
  border-color: rgba(var(--aa-muted-color-rgb), 0.64);
  border-style: solid;
  content: "";
  display: inline-block;
  left: 1px;
  position: relative;
  top: -3px;
}

.aa-ItemContentSubtitle--inline .aa-ItemContentSubtitleIcon::before {
  border-width: 0 0 1.5px;
  margin-left: calc((16 * 1 * 1px) / 2);
  margin-left: calc(calc(16 * 1 * 1px) / 2);
  margin-left: var(--aa-spacing-half);
  margin-right: calc(((16 * 1 * 1px) / 2) / 2);
  margin-right: calc(calc(calc(16 * 1 * 1px) / 2) / 2);
  margin-right: calc(var(--aa-spacing-half) / 2);
  width: calc(((16 * 1 * 1px) / 2) + 2px);
  width: calc(calc(calc(16 * 1 * 1px) / 2) + 2px);
  width: calc(var(--aa-spacing-half) + 2px);
}

.aa-ItemContentSubtitle--standalone {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: rgba(38, 38, 39, 1);
  color: rgba(var(--aa-text-color-rgb), var(--aa-text-color-alpha));
  display: grid;
  gap: calc((16 * 1 * 1px) / 2);
  gap: calc(calc(16 * 1 * 1px) / 2);
  grid-gap: calc((16 * 1 * 1px) / 2);
  grid-gap: calc(calc(16 * 1 * 1px) / 2);
  grid-gap: var(--aa-spacing-half);
  gap: var(--aa-spacing-half);
  grid-auto-flow: column;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.aa-ItemContentSubtitle--standalone .aa-ItemContentSubtitleIcon::before {
  border-radius: 0 0 0 3px;
  border-width: 0 0 1.5px 1.5px;
  height: calc((16 * 1 * 1px) / 2);
  height: calc(calc(16 * 1 * 1px) / 2);
  height: var(--aa-spacing-half);
  width: calc((16 * 1 * 1px) / 2);
  width: calc(calc(16 * 1 * 1px) / 2);
  width: var(--aa-spacing-half);
}

.aa-ItemContentSubtitleCategory {
  color: rgba(128, 126, 163, 1);
  color: rgba(var(--aa-muted-color-rgb), 1);
  font-weight: 500;
}

.aa-ItemContentDescription {
  color: rgba(38, 38, 39, 1);
  color: rgba(var(--aa-text-color-rgb), var(--aa-text-color-alpha));
  font-size: 0.85em;
  max-width: 100%;
  overflow-x: hidden;
  text-overflow: ellipsis;
}
.aa-ItemContentDescription:empty {
  display: none;
}
.aa-ItemContentDescription mark {
  background: rgba(245, 223, 77, 0.5);
  background: rgba(var(--aa-description-highlight-background-color-rgb), var(--aa-description-highlight-background-color-alpha));
  color: rgba(38, 38, 39, 1);
  color: rgba(var(--aa-text-color-rgb), var(--aa-text-color-alpha));
  font-style: normal;
  font-weight: 500;
  font-weight: var(--aa-font-weight-medium);
}

.aa-ItemContentDash {
  color: rgba(128, 126, 163, 0.6);
  color: rgba(var(--aa-muted-color-rgb), var(--aa-muted-color-alpha));
  display: none;
  opacity: 0.4;
}

.aa-ItemContentTag {
  background-color: rgba(62, 52, 211, 0.2);
  background-color: rgba(var(--aa-primary-color-rgb), var(--aa-primary-color-alpha));
  border-radius: 3px;
  margin: 0 0.4em 0 0;
  padding: 0.08em 0.3em;
}

.aa-ItemWrapper,
.aa-ItemLink {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: inherit;
  display: grid;
  gap: calc(((16 * 1 * 1px) / 2) / 2);
  gap: calc(calc(calc(16 * 1 * 1px) / 2) / 2);
  grid-gap: calc(((16 * 1 * 1px) / 2) / 2);
  grid-gap: calc(calc(calc(16 * 1 * 1px) / 2) / 2);
  grid-gap: calc(var(--aa-spacing-half) / 2);
  gap: calc(var(--aa-spacing-half) / 2);
  grid-auto-flow: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.aa-ItemLink {
  color: inherit;
  -webkit-text-decoration: none;
  text-decoration: none;
}

.aa-ItemActions {
  display: grid;
  grid-auto-flow: column;
  height: 100%;
  justify-self: end;
  margin: 0 calc((16 * 1 * 1px) / -3);
  margin: 0 calc(calc(16 * 1 * 1px) / -3);
  margin: 0 calc(var(--aa-spacing) / -3);
  padding: 0 2px 0 0;
}

.aa-ItemActionButton {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: none;
  border: 0;
  color: rgba(128, 126, 163, 0.6);
  color: rgba(var(--aa-muted-color-rgb), var(--aa-muted-color-alpha));
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  padding: 0;
}
.aa-ItemActionButton:hover svg, .aa-ItemActionButton:focus svg {
  color: rgba(38, 38, 39, 1);
  color: rgba(var(--aa-text-color-rgb), var(--aa-text-color-alpha));
}
@media (hover: none) and (pointer: coarse) {
  .aa-ItemActionButton:hover svg, .aa-ItemActionButton:focus svg {
    color: inherit;
  }
}
.aa-ItemActionButton svg {
  color: rgba(128, 126, 163, 0.6);
  color: rgba(var(--aa-muted-color-rgb), var(--aa-muted-color-alpha));
  margin: 0;
  margin: calc(calc(16 * 1 * 1px) / 3);
  margin: calc(var(--aa-spacing) / 3);
  stroke-width: 1.6;
  stroke-width: var(--aa-icon-stroke-width);
  width: 20px;
  width: var(--aa-action-icon-size);
}

.aa-ActiveOnly {
  visibility: hidden;
}

/*----------------*/
/* 7. Panel Header*/
/*----------------*/
.aa-PanelHeader {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(62, 52, 211, 1);
  background: rgba(var(--aa-primary-color-rgb), 1);
  color: #fff;
  display: grid;
  height: var(--aa-modal-header-height);
  margin: 0;
  padding: calc((16 * 1 * 1px) / 2) calc(16 * 1 * 1px);
  padding: calc(calc(16 * 1 * 1px) / 2) calc(16 * 1 * 1px);
  padding: var(--aa-spacing-half) var(--aa-spacing);
  position: relative;
}
.aa-PanelHeader::after {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 1)), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(var(--aa-background-color-rgb), 1)), to(rgba(var(--aa-background-color-rgb), 0)));
  background-image: linear-gradient(rgba(var(--aa-background-color-rgb), 1), rgba(var(--aa-background-color-rgb), 0));
  bottom: calc(((16 * 1 * 1px) / 2) * -1);
  bottom: calc(calc(calc(16 * 1 * 1px) / 2) * -1);
  bottom: calc(var(--aa-spacing-half) * -1);
  content: "";
  height: calc((16 * 1 * 1px) / 2);
  height: calc(calc(16 * 1 * 1px) / 2);
  height: var(--aa-spacing-half);
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: 9999;
  z-index: var(--aa-base-z-index);
}

/*----------------*/
/* 8. Panel Footer*/
/*----------------*/
.aa-PanelFooter {
  background-color: rgba(255, 255, 255, 1);
  background-color: rgba(var(--aa-background-color-rgb), var(--aa-background-color-alpha));
  -webkit-box-shadow: inset 0 1px 0 rgba(128, 126, 163, 0.3);
          box-shadow: inset 0 1px 0 rgba(128, 126, 163, 0.3);
  -webkit-box-shadow: inset 0 1px 0 rgba(var(--aa-panel-border-color-rgb), var(--aa-panel-border-color-alpha));
          box-shadow: inset 0 1px 0 rgba(var(--aa-panel-border-color-rgb), var(--aa-panel-border-color-alpha));
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0;
  padding: calc(16 * 1 * 1px);
  padding: var(--aa-spacing);
  position: relative;
  z-index: 9999;
  z-index: var(--aa-base-z-index);
}
.aa-PanelFooter::after {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgba(128, 126, 163, 0.6)));
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(128, 126, 163, 0.6));
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(var(--aa-background-color-rgb), 0)), to(rgba(var(--aa-muted-color-rgb), var(--aa-muted-color-alpha))));
  background-image: linear-gradient(rgba(var(--aa-background-color-rgb), 0), rgba(var(--aa-muted-color-rgb), var(--aa-muted-color-alpha)));
  content: "";
  height: calc(16 * 1 * 1px);
  height: var(--aa-spacing);
  left: 0;
  opacity: 0.12;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: calc((16 * 1 * 1px) * -1);
  top: calc(calc(16 * 1 * 1px) * -1);
  top: calc(var(--aa-spacing) * -1);
  z-index: calc(9999 - 1);
  z-index: calc(var(--aa-base-z-index) - 1);
}

/*----------------*/
/* 9. Detached Mode*/
/*----------------*/
.aa-DetachedContainer {
  background: rgba(255, 255, 255, 1);
  background: rgba(var(--aa-background-color-rgb), var(--aa-background-color-alpha));
  bottom: 0;
  -webkit-box-shadow: 0 0 0 1px rgba(35, 38, 59, 0.1),
    0 6px 16px -4px rgba(35, 38, 59, 0.15);
          box-shadow: 0 0 0 1px rgba(35, 38, 59, 0.1),
    0 6px 16px -4px rgba(35, 38, 59, 0.15);
  -webkit-box-shadow: var(--aa-panel-shadow);
          box-shadow: var(--aa-panel-shadow);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  left: 0;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
  z-index: var(--aa-base-z-index);
}
.aa-DetachedContainer::after {
  height: 32px;
}
.aa-DetachedContainer .aa-SourceHeader {
  margin: calc((16 * 1 * 1px) / 2) 0 calc((16 * 1 * 1px) / 2) 2px;
  margin: calc(calc(16 * 1 * 1px) / 2) 0 calc(calc(16 * 1 * 1px) / 2) 2px;
  margin: var(--aa-spacing-half) 0 var(--aa-spacing-half) 2px;
}
.aa-DetachedContainer .aa-Panel {
  background-color: rgba(255, 255, 255, 1);
  background-color: rgba(var(--aa-background-color-rgb), var(--aa-background-color-alpha));
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin: 0;
  padding: 0;
  position: relative;
}
.aa-DetachedContainer .aa-PanelLayout {
  bottom: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  left: 0;
  margin: 0;
  max-height: none;
  overflow-y: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}
.aa-DetachedFormContainer {
  border-bottom: solid 1px rgba(128, 126, 163, 0.3);
  border-bottom: solid 1px rgba(var(--aa-panel-border-color-rgb), var(--aa-panel-border-color-alpha));
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0;
  padding: calc((16 * 1 * 1px) / 2);
  padding: calc(calc(16 * 1 * 1px) / 2);
  padding: var(--aa-spacing-half);
}
.aa-DetachedCancelButton {
  background: none;
  border: 0;
  border-radius: 3px;
  color: inherit;
  color: rgba(38, 38, 39, 1);
  color: rgba(var(--aa-text-color-rgb), var(--aa-text-color-alpha));
  cursor: pointer;
  font: inherit;
  margin: 0 0 0 calc((16 * 1 * 1px) / 2);
  margin: 0 0 0 calc(calc(16 * 1 * 1px) / 2);
  margin: 0 0 0 var(--aa-spacing-half);
  padding: 0 calc((16 * 1 * 1px) / 2);
  padding: 0 calc(calc(16 * 1 * 1px) / 2);
  padding: 0 var(--aa-spacing-half);
}
.aa-DetachedCancelButton:hover, .aa-DetachedCancelButton:focus {
  -webkit-box-shadow: inset 0 0 0 1px rgba(128, 126, 163, 0.3);
          box-shadow: inset 0 0 0 1px rgba(128, 126, 163, 0.3);
  -webkit-box-shadow: inset 0 0 0 1px rgba(var(--aa-panel-border-color-rgb), var(--aa-panel-border-color-alpha));
          box-shadow: inset 0 0 0 1px rgba(var(--aa-panel-border-color-rgb), var(--aa-panel-border-color-alpha));
}

.aa-DetachedContainer--modal {
  border-radius: 6px;
  bottom: inherit;
  height: auto;
  margin: 0 auto;
  max-width: 680px;
  max-width: var(--aa-detached-modal-max-width);
  position: absolute;
  top: 3%;
}
.aa-DetachedContainer--modal .aa-PanelLayout {
  max-height: 500px;
  max-height: var(--aa-detached-modal-max-height);
  padding-bottom: calc((16 * 1 * 1px) / 2);
  padding-bottom: calc(calc(16 * 1 * 1px) / 2);
  padding-bottom: var(--aa-spacing-half);
  position: static;
}
.aa-DetachedContainer--modal .aa-PanelLayout:empty {
  display: none;
}

/* Search Button*/
.aa-DetachedSearchButton {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(255, 255, 255, 1);
  background-color: rgba(var(--aa-input-background-color-rgb), var(--aa-input-background-color-alpha));
  border: 1px solid rgba(128, 126, 163, 0.8);
  border: 1px solid rgba(var(--aa-input-border-color-rgb), var(--aa-input-border-color-alpha));
  border-radius: 3px;
  color: rgba(128, 126, 163, 0.6);
  color: rgba(var(--aa-muted-color-rgb), var(--aa-muted-color-alpha));
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font: inherit;
  font-family: inherit;
  font-family: var(--aa-font-family);
  font-size: calc(16 * 1px);
  font-size: var(--aa-font-size);
  height: 44px;
  height: var(--aa-search-input-height);
  margin: 0;
  padding: 0 calc(44px / 8);
  padding: 0 calc(var(--aa-search-input-height) / 8);
  position: relative;
  text-align: left;
  width: 100%;
}
.aa-DetachedSearchButton:focus {
  border-color: rgba(62, 52, 211, 1);
  border-color: rgba(var(--aa-primary-color-rgb), 1);
  -webkit-box-shadow: rgba(62, 52, 211, 0.2) 0 0 0 3px, inset rgba(62, 52, 211, 0.2) 0 0 0 2px;
          box-shadow: rgba(62, 52, 211, 0.2) 0 0 0 3px, inset rgba(62, 52, 211, 0.2) 0 0 0 2px;
  -webkit-box-shadow: rgba(var(--aa-primary-color-rgb), var(--aa-primary-color-alpha)) 0 0 0 3px, inset rgba(var(--aa-primary-color-rgb), var(--aa-primary-color-alpha)) 0 0 0 2px;
          box-shadow: rgba(var(--aa-primary-color-rgb), var(--aa-primary-color-alpha)) 0 0 0 3px, inset rgba(var(--aa-primary-color-rgb), var(--aa-primary-color-alpha)) 0 0 0 2px;
  outline: currentColor none medium;
}
.aa-DetachedSearchButtonIcon {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: rgba(62, 52, 211, 1);
  color: rgba(var(--aa-primary-color-rgb), 1);
  cursor: auto;
  cursor: initial;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  height: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: calc(20px + (16 * 1 * 1px));
  width: calc(20px + calc(16 * 1 * 1px));
  width: calc(var(--aa-icon-size) + var(--aa-spacing));
}

.aa-DetachedSearchButtonQuery {
  color: rgba(38, 38, 39, 1);
  color: rgba(var(--aa-text-color-rgb), 1);
  line-height: 1.25em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.aa-DetachedSearchButtonPlaceholder[hidden] {
  display: none;
}

/* Remove scroll on `body`*/
.aa-Detached {
  height: 100vh;
  overflow: hidden;
}

.aa-DetachedOverlay {
  background-color: rgba(115, 114, 129, 0.4);
  background-color: rgba(var(--aa-overlay-color-rgb), var(--aa-overlay-color-alpha));
  height: 100vh;
  left: 0;
  margin: 0;
  padding: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: calc(9999 - 1);
  z-index: calc(var(--aa-base-z-index) - 1);
}

/*----------------*/
/* 10. Gradients*/
/*----------------*/
.aa-GradientTop,
.aa-GradientBottom {
  height: calc((16 * 1 * 1px) / 2);
  height: calc(calc(16 * 1 * 1px) / 2);
  height: var(--aa-spacing-half);
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: 9999;
  z-index: var(--aa-base-z-index);
}

.aa-GradientTop {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 1)), to(rgba(255, 255, 255, 0)));
  background-image: linear-gradient(rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(var(--aa-background-color-rgb), 1)), to(rgba(var(--aa-background-color-rgb), 0)));
  background-image: linear-gradient(rgba(var(--aa-background-color-rgb), 1), rgba(var(--aa-background-color-rgb), 0));
  top: 0;
}

.aa-GradientBottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 1)));
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(var(--aa-background-color-rgb), 0)), to(rgba(var(--aa-background-color-rgb), 1)));
  background-image: linear-gradient(rgba(var(--aa-background-color-rgb), 0), rgba(var(--aa-background-color-rgb), 1));
  border-bottom-left-radius: calc((16 * 1 * 1px) / 4);
  border-bottom-left-radius: calc(calc(16 * 1 * 1px) / 4);
  border-bottom-left-radius: calc(var(--aa-spacing) / 4);
  border-bottom-right-radius: calc((16 * 1 * 1px) / 4);
  border-bottom-right-radius: calc(calc(16 * 1 * 1px) / 4);
  border-bottom-right-radius: calc(var(--aa-spacing) / 4);
  bottom: 0;
}

/*----------------*/
/* 11. Utilities*/
/*----------------*/
@media (hover: none) and (pointer: coarse) {
  .aa-DesktopOnly {
    display: none;
  }
}

@media (hover: hover) {
  .aa-TouchOnly {
    display: none;
  }
}
@charset "UTF-8";
/* set the overriding variables */
/*!
 * Bootstrap v4.6.2 (https://getbootstrap.com/)
 * Copyright 2011-2022 The Bootstrap Authors
 * Copyright 2011-2022 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #C00418;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #007E4F;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #00DBFF;
  --secondary: #6c757d;
  --success: #007E4F;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #C00418;
  --light: #f8f9fa;
  --dark: #706F6F;
  --darkgrey: #333333;
  --darkblue: #151B30;
  --lightgrey: #ECECED;
  --grey: #636362;
  --orange: #00DBFF;
  --greyergrey: #707173;
  --red: #C00418;
  --green: #007E4F;
  --breakpoint-xxxs: 0;
  --breakpoint-xxs: 320px;
  --breakpoint-xs: 568px;
  --breakpoint-sm: 667px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1100px;
  --breakpoint-xxl: 1200px;
  --breakpoint-xxxl: 1500px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}

body {
  margin: 0;
  font-family: "Campton-Light";
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  color: #fff;
  text-align: left;
  background-color: #10111F;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #00DBFF;
  text-decoration: none;
  background-color: transparent;
}
a:hover {
  color: rgb(0, 153.3, 178.5);
  text-decoration: underline;
}

a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type=radio],
input[type=checkbox] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

h1, h2, h3, h4, h5, h6,
.h1,
.news-single-widget__title, .h2, .news-widget__title, #BorlabsCookieBox ._brlbs-bar ._brlbs-h3, .h3, .listings-widget__title, .hero-widget.is--einsatzbereich .hero-widget__title, .listing__title, .h4, .einsatzbereiche-circle-widget__title, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1, .h1, .news-single-widget__title {
  font-size: 2.5rem;
}

h2, .h2, .news-widget__title, #BorlabsCookieBox ._brlbs-bar ._brlbs-h3 {
  font-size: 2rem;
}

h3, .h3, .listings-widget__title, .hero-widget.is--einsatzbereich .hero-widget__title, .listing__title {
  font-size: 1.75rem;
}

h4, .h4, .einsatzbereiche-circle-widget__title {
  font-size: 1.5rem;
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

small,
.small,
.related-posts-widget__subtitel,
.listings-widget__summary,
.listing__summary {
  font-size: 0.875em;
  font-weight: 400;
}

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

.list-unstyled, .gform_wrapper ul {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.blockquote-footer {
  display: block;
  font-size: 0.875em;
  color: #6c757d;
}
.blockquote-footer::before {
  content: "— ";
}

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

.img-thumbnail {
  padding: 0.25rem;
  background-color: #10111F;
  border: 1px solid #dee2e6;
  border-radius: 3px;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption {
  font-size: 90%;
  color: #6c757d;
}

code {
  font-size: 87.5%;
  color: #e83e8c;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}
kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}

pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.container, .elementor .e-container,
.container-fluid,
.container-xxxl,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm,
.container-xs,
.container-xxs,
.container-xxxs {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.container, .elementor .e-container {
  max-width: 0;
}

@media (min-width: 320px) {
  .container-xxs, .container, .elementor .e-container {
    max-width: 320px;
  }
}
@media (min-width: 568px) {
  .container-xs, .container-xxs, .container, .elementor .e-container {
    max-width: 568px;
  }
}
@media (min-width: 667px) {
  .container-sm, .container-xs, .container-xxs, .container, .elementor .e-container {
    max-width: 667px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container-xs, .container-xxs, .container, .elementor .e-container {
    max-width: 768px;
  }
}
@media (min-width: 992px) {
  .container-lg, .container-md, .container-sm, .container-xs, .container-xxs, .container, .elementor .e-container {
    max-width: 992px;
  }
}
@media (min-width: 1100px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container-xs, .container-xxs, .container, .elementor .e-container {
    max-width: 1100px;
  }
}
@media (min-width: 1200px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container-xs, .container-xxs, .container, .elementor .e-container {
    max-width: 1200px;
  }
}
@media (min-width: 1500px) {
  .container-xxxl, .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container-xs, .container-xxs, .container, .elementor .e-container {
    max-width: 1500px;
  }
}
.row, .related-posts-widget ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-xxxl,
.col-xxxl-auto, .col-xxxl-12, .col-xxxl-11, .col-xxxl-10, .col-xxxl-9, .col-xxxl-8, .col-xxxl-7, .col-xxxl-6, .col-xxxl-5, .col-xxxl-4, .col-xxxl-3, .col-xxxl-2, .col-xxxl-1, .col-xxl,
.col-xxl-auto, .col-xxl-12, .col-xxl-11, .col-xxl-10, .col-xxl-9, .col-xxl-8, .col-xxl-7, .col-xxl-6, .col-xxl-5, .col-xxl-4, .col-xxl-3, .col-xxl-2, .col-xxl-1, .col-xl,
.col-xl-auto, .col-xl-12, .col-xl-11, .col-xl-10, .col-xl-9, .col-xl-8, .col-xl-7, .col-xl-6, .col-xl-5, .col-xl-4, .col-xl-3, .col-xl-2, .col-xl-1, .col-lg,
.col-lg-auto, .col-lg-12, .col-lg-11, .col-lg-10, .col-lg-9, .col-lg-8, .col-lg-7, .col-lg-6, .col-lg-5, .col-lg-4, .col-lg-3, .col-lg-2, .col-lg-1, .col-md,
.col-md-auto, .col-md-12, .col-md-11, .col-md-10, .col-md-9, .col-md-8, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .related-posts-widget ul li, .col-md-2, .col-md-1, .col-sm,
.col-sm-auto, .col-sm-12, .col-sm-11, .col-sm-10, .col-sm-9, .col-sm-8, .col-sm-7, .col-sm-6, .col-sm-5, .col-sm-4, .col-sm-3, .col-sm-2, .col-sm-1, .col-xs,
.col-xs-auto, .col-xs-12, .col-xs-11, .col-xs-10, .col-xs-9, .col-xs-8, .col-xs-7, .col-xs-6, .col-xs-5, .col-xs-4, .col-xs-3, .col-xs-2, .col-xs-1, .col-xxs,
.col-xxs-auto, .col-xxs-12, .col-xxs-11, .col-xxs-10, .col-xxs-9, .col-xxs-8, .col-xxs-7, .col-xxs-6, .col-xxs-5, .col-xxs-4, .col-xxs-3, .col-xxs-2, .col-xxs-1, .col,
.col-auto, .col-12, .col-11, .col-10, .col-9, .col-8, .col-7, .col-6, .col-5, .col-4, .col-3, .col-2, .col-1 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -webkit-flex-basis: 0;
      -ms-flex-preferred-size: 0;
          flex-basis: 0;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 100%;
}

.row-cols-1 > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 33.3333333333%;
      -ms-flex: 0 0 33.3333333333%;
          flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.row-cols-4 > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 25%;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 20%;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 16.6666666667%;
      -ms-flex: 0 0 16.6666666667%;
          flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-auto {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 8.33333333%;
      -ms-flex: 0 0 8.33333333%;
          flex: 0 0 8.33333333%;
  max-width: 8.33333333%;
}

.col-2 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 16.66666667%;
      -ms-flex: 0 0 16.66666667%;
          flex: 0 0 16.66666667%;
  max-width: 16.66666667%;
}

.col-3 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 25%;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 33.33333333%;
      -ms-flex: 0 0 33.33333333%;
          flex: 0 0 33.33333333%;
  max-width: 33.33333333%;
}

.col-5 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 41.66666667%;
      -ms-flex: 0 0 41.66666667%;
          flex: 0 0 41.66666667%;
  max-width: 41.66666667%;
}

.col-6 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 58.33333333%;
      -ms-flex: 0 0 58.33333333%;
          flex: 0 0 58.33333333%;
  max-width: 58.33333333%;
}

.col-8 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 66.66666667%;
      -ms-flex: 0 0 66.66666667%;
          flex: 0 0 66.66666667%;
  max-width: 66.66666667%;
}

.col-9 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 75%;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 83.33333333%;
      -ms-flex: 0 0 83.33333333%;
          flex: 0 0 83.33333333%;
  max-width: 83.33333333%;
}

.col-11 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 91.66666667%;
      -ms-flex: 0 0 91.66666667%;
          flex: 0 0 91.66666667%;
  max-width: 91.66666667%;
}

.col-12 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
      -ms-flex-order: -1;
          order: -1;
}

.order-last {
  -webkit-box-ordinal-group: 14;
  -webkit-order: 13;
      -ms-flex-order: 13;
          order: 13;
}

.order-0 {
  -webkit-box-ordinal-group: 1;
  -webkit-order: 0;
      -ms-flex-order: 0;
          order: 0;
}

.order-1 {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}

.order-2 {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}

.order-3 {
  -webkit-box-ordinal-group: 4;
  -webkit-order: 3;
      -ms-flex-order: 3;
          order: 3;
}

.order-4 {
  -webkit-box-ordinal-group: 5;
  -webkit-order: 4;
      -ms-flex-order: 4;
          order: 4;
}

.order-5 {
  -webkit-box-ordinal-group: 6;
  -webkit-order: 5;
      -ms-flex-order: 5;
          order: 5;
}

.order-6 {
  -webkit-box-ordinal-group: 7;
  -webkit-order: 6;
      -ms-flex-order: 6;
          order: 6;
}

.order-7 {
  -webkit-box-ordinal-group: 8;
  -webkit-order: 7;
      -ms-flex-order: 7;
          order: 7;
}

.order-8 {
  -webkit-box-ordinal-group: 9;
  -webkit-order: 8;
      -ms-flex-order: 8;
          order: 8;
}

.order-9 {
  -webkit-box-ordinal-group: 10;
  -webkit-order: 9;
      -ms-flex-order: 9;
          order: 9;
}

.order-10 {
  -webkit-box-ordinal-group: 11;
  -webkit-order: 10;
      -ms-flex-order: 10;
          order: 10;
}

.order-11 {
  -webkit-box-ordinal-group: 12;
  -webkit-order: 11;
      -ms-flex-order: 11;
          order: 11;
}

.order-12 {
  -webkit-box-ordinal-group: 13;
  -webkit-order: 12;
      -ms-flex-order: 12;
          order: 12;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

@media (min-width: 320px) {
  .col-xxs {
    -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
            flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xxs-1 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xxs-2 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xxs-3 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.3333333333%;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-xxs-4 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xxs-5 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 20%;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xxs-6 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.6666666667%;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xxs-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xxs-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333333%;
        -ms-flex: 0 0 8.33333333%;
            flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-xxs-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66666667%;
        -ms-flex: 0 0 16.66666667%;
            flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-xxs-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xxs-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333333%;
        -ms-flex: 0 0 33.33333333%;
            flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-xxs-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66666667%;
        -ms-flex: 0 0 41.66666667%;
            flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-xxs-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xxs-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333333%;
        -ms-flex: 0 0 58.33333333%;
            flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-xxs-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66666667%;
        -ms-flex: 0 0 66.66666667%;
            flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-xxs-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xxs-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333333%;
        -ms-flex: 0 0 83.33333333%;
            flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-xxs-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66666667%;
        -ms-flex: 0 0 91.66666667%;
            flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-xxs-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xxs-first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-xxs-last {
    -webkit-box-ordinal-group: 14;
    -webkit-order: 13;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-xxs-0 {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-xxs-1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-xxs-2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-xxs-3 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-xxs-4 {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-xxs-5 {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-xxs-6 {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-xxs-7 {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-xxs-8 {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-xxs-9 {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-xxs-10 {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-xxs-11 {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-xxs-12 {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-xxs-0 {
    margin-left: 0;
  }
  .offset-xxs-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxs-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxs-3 {
    margin-left: 25%;
  }
  .offset-xxs-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxs-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxs-6 {
    margin-left: 50%;
  }
  .offset-xxs-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxs-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxs-9 {
    margin-left: 75%;
  }
  .offset-xxs-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxs-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 568px) {
  .col-xs {
    -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
            flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xs-1 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xs-2 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xs-3 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.3333333333%;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-xs-4 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xs-5 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 20%;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xs-6 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.6666666667%;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xs-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xs-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333333%;
        -ms-flex: 0 0 8.33333333%;
            flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-xs-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66666667%;
        -ms-flex: 0 0 16.66666667%;
            flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-xs-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xs-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333333%;
        -ms-flex: 0 0 33.33333333%;
            flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-xs-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66666667%;
        -ms-flex: 0 0 41.66666667%;
            flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-xs-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xs-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333333%;
        -ms-flex: 0 0 58.33333333%;
            flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-xs-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66666667%;
        -ms-flex: 0 0 66.66666667%;
            flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-xs-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xs-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333333%;
        -ms-flex: 0 0 83.33333333%;
            flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-xs-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66666667%;
        -ms-flex: 0 0 91.66666667%;
            flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-xs-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xs-first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-xs-last {
    -webkit-box-ordinal-group: 14;
    -webkit-order: 13;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-xs-0 {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-xs-1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-xs-2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-xs-3 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-xs-4 {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-xs-5 {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-xs-6 {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-xs-7 {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-xs-8 {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-xs-9 {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-xs-10 {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-xs-11 {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-xs-12 {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-xs-0 {
    margin-left: 0;
  }
  .offset-xs-1 {
    margin-left: 8.33333333%;
  }
  .offset-xs-2 {
    margin-left: 16.66666667%;
  }
  .offset-xs-3 {
    margin-left: 25%;
  }
  .offset-xs-4 {
    margin-left: 33.33333333%;
  }
  .offset-xs-5 {
    margin-left: 41.66666667%;
  }
  .offset-xs-6 {
    margin-left: 50%;
  }
  .offset-xs-7 {
    margin-left: 58.33333333%;
  }
  .offset-xs-8 {
    margin-left: 66.66666667%;
  }
  .offset-xs-9 {
    margin-left: 75%;
  }
  .offset-xs-10 {
    margin-left: 83.33333333%;
  }
  .offset-xs-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 667px) {
  .col-sm {
    -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
            flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-sm-1 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-sm-2 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-sm-3 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.3333333333%;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-sm-4 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-sm-5 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 20%;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-sm-6 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.6666666667%;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333333%;
        -ms-flex: 0 0 8.33333333%;
            flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66666667%;
        -ms-flex: 0 0 16.66666667%;
            flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333333%;
        -ms-flex: 0 0 33.33333333%;
            flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66666667%;
        -ms-flex: 0 0 41.66666667%;
            flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333333%;
        -ms-flex: 0 0 58.33333333%;
            flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66666667%;
        -ms-flex: 0 0 66.66666667%;
            flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333333%;
        -ms-flex: 0 0 83.33333333%;
            flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66666667%;
        -ms-flex: 0 0 91.66666667%;
            flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-sm-last {
    -webkit-box-ordinal-group: 14;
    -webkit-order: 13;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-sm-0 {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-sm-8 {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-sm-9 {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-sm-10 {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-sm-11 {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-sm-12 {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
            flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-md-1 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-md-2 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-md-3 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.3333333333%;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-md-4 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-md-5 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 20%;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-md-6 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.6666666667%;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333333%;
        -ms-flex: 0 0 8.33333333%;
            flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66666667%;
        -ms-flex: 0 0 16.66666667%;
            flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-md-3, .related-posts-widget ul li {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333333%;
        -ms-flex: 0 0 33.33333333%;
            flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66666667%;
        -ms-flex: 0 0 41.66666667%;
            flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333333%;
        -ms-flex: 0 0 58.33333333%;
            flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66666667%;
        -ms-flex: 0 0 66.66666667%;
            flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333333%;
        -ms-flex: 0 0 83.33333333%;
            flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66666667%;
        -ms-flex: 0 0 91.66666667%;
            flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-md-last {
    -webkit-box-ordinal-group: 14;
    -webkit-order: 13;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-md-0 {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-md-1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-md-2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-md-3 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-md-4 {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-md-5 {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-md-6 {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-md-7 {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-md-8 {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-md-9 {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-md-10 {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-md-11 {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-md-12 {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
            flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-lg-1 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-lg-2 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-lg-3 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.3333333333%;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-lg-4 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-lg-5 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 20%;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-lg-6 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.6666666667%;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333333%;
        -ms-flex: 0 0 8.33333333%;
            flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66666667%;
        -ms-flex: 0 0 16.66666667%;
            flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333333%;
        -ms-flex: 0 0 33.33333333%;
            flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66666667%;
        -ms-flex: 0 0 41.66666667%;
            flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333333%;
        -ms-flex: 0 0 58.33333333%;
            flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66666667%;
        -ms-flex: 0 0 66.66666667%;
            flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333333%;
        -ms-flex: 0 0 83.33333333%;
            flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66666667%;
        -ms-flex: 0 0 91.66666667%;
            flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-lg-last {
    -webkit-box-ordinal-group: 14;
    -webkit-order: 13;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-lg-0 {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 1100px) {
  .col-xl {
    -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
            flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xl-1 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xl-2 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xl-3 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.3333333333%;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-xl-4 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xl-5 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 20%;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xl-6 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.6666666667%;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333333%;
        -ms-flex: 0 0 8.33333333%;
            flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66666667%;
        -ms-flex: 0 0 16.66666667%;
            flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333333%;
        -ms-flex: 0 0 33.33333333%;
            flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66666667%;
        -ms-flex: 0 0 41.66666667%;
            flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333333%;
        -ms-flex: 0 0 58.33333333%;
            flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66666667%;
        -ms-flex: 0 0 66.66666667%;
            flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333333%;
        -ms-flex: 0 0 83.33333333%;
            flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66666667%;
        -ms-flex: 0 0 91.66666667%;
            flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-xl-last {
    -webkit-box-ordinal-group: 14;
    -webkit-order: 13;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-xl-0 {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-xl-4 {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-xl-5 {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-xl-6 {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-xl-7 {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-xl-8 {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-xl-9 {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-xl-10 {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-xl-11 {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-xl-12 {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 1200px) {
  .col-xxl {
    -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
            flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xxl-1 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xxl-2 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xxl-3 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.3333333333%;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-xxl-4 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xxl-5 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 20%;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xxl-6 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.6666666667%;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xxl-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xxl-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333333%;
        -ms-flex: 0 0 8.33333333%;
            flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-xxl-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66666667%;
        -ms-flex: 0 0 16.66666667%;
            flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-xxl-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xxl-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333333%;
        -ms-flex: 0 0 33.33333333%;
            flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-xxl-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66666667%;
        -ms-flex: 0 0 41.66666667%;
            flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-xxl-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xxl-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333333%;
        -ms-flex: 0 0 58.33333333%;
            flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-xxl-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66666667%;
        -ms-flex: 0 0 66.66666667%;
            flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-xxl-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xxl-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333333%;
        -ms-flex: 0 0 83.33333333%;
            flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-xxl-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66666667%;
        -ms-flex: 0 0 91.66666667%;
            flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-xxl-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xxl-first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-xxl-last {
    -webkit-box-ordinal-group: 14;
    -webkit-order: 13;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-xxl-0 {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-xxl-1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-xxl-2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-xxl-3 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-xxl-4 {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-xxl-5 {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-xxl-6 {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-xxl-7 {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-xxl-8 {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-xxl-9 {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-xxl-10 {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-xxl-11 {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-xxl-12 {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
}
@media (min-width: 1500px) {
  .col-xxxl {
    -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
            flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xxxl-1 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xxxl-2 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xxxl-3 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.3333333333%;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .row-cols-xxxl-4 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xxxl-5 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 20%;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xxxl-6 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.6666666667%;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xxxl-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xxxl-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.33333333%;
        -ms-flex: 0 0 8.33333333%;
            flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-xxxl-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.66666667%;
        -ms-flex: 0 0 16.66666667%;
            flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-xxxl-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xxxl-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.33333333%;
        -ms-flex: 0 0 33.33333333%;
            flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-xxxl-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.66666667%;
        -ms-flex: 0 0 41.66666667%;
            flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-xxxl-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xxxl-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.33333333%;
        -ms-flex: 0 0 58.33333333%;
            flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-xxxl-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.66666667%;
        -ms-flex: 0 0 66.66666667%;
            flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-xxxl-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xxxl-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.33333333%;
        -ms-flex: 0 0 83.33333333%;
            flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-xxxl-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.66666667%;
        -ms-flex: 0 0 91.66666667%;
            flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-xxxl-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xxxl-first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-xxxl-last {
    -webkit-box-ordinal-group: 14;
    -webkit-order: 13;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-xxxl-0 {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-xxxl-1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-xxxl-2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-xxxl-3 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-xxxl-4 {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-xxxl-5 {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-xxxl-6 {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-xxxl-7 {
    -webkit-box-ordinal-group: 8;
    -webkit-order: 7;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-xxxl-8 {
    -webkit-box-ordinal-group: 9;
    -webkit-order: 8;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-xxxl-9 {
    -webkit-box-ordinal-group: 10;
    -webkit-order: 9;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-xxxl-10 {
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-xxxl-11 {
    -webkit-box-ordinal-group: 12;
    -webkit-order: 11;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-xxxl-12 {
    -webkit-box-ordinal-group: 13;
    -webkit-order: 12;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-xxxl-0 {
    margin-left: 0;
  }
  .offset-xxxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxxl-3 {
    margin-left: 25%;
  }
  .offset-xxxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxxl-6 {
    margin-left: 50%;
  }
  .offset-xxxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxxl-9 {
    margin-left: 75%;
  }
  .offset-xxxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxxl-11 {
    margin-left: 91.66666667%;
  }
}
.table, .custom-accordion-widget__content table, .custom-tabs-widget .tab-pane__content table, .custom-nav-pills-widget .tab-pane__content table {
  width: 100%;
  margin-bottom: 1rem;
  color: #fff;
}
.table th, .custom-accordion-widget__content table th, .custom-tabs-widget .tab-pane__content table th, .custom-nav-pills-widget .tab-pane__content table th,
.table td,
.custom-accordion-widget__content table td,
.custom-tabs-widget .tab-pane__content table td,
.custom-nav-pills-widget .tab-pane__content table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}
.table thead th, .custom-accordion-widget__content table thead th, .custom-tabs-widget .tab-pane__content table thead th, .custom-nav-pills-widget .tab-pane__content table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}
.table tbody + tbody, .custom-accordion-widget__content table tbody + tbody, .custom-tabs-widget .tab-pane__content table tbody + tbody, .custom-nav-pills-widget .tab-pane__content table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

.table-sm th, .custom-accordion-widget__content table th, .custom-tabs-widget .tab-pane__content table th, .custom-nav-pills-widget .tab-pane__content table th,
.table-sm td,
.custom-accordion-widget__content table td,
.custom-tabs-widget .tab-pane__content table td,
.custom-nav-pills-widget .tab-pane__content table td {
  padding: 0.3rem;
}

.table-bordered {
  border: 1px solid #dee2e6;
}
.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}
.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

.table-striped tbody tr:nth-of-type(odd), .custom-accordion-widget__content table tbody tr:nth-of-type(odd), .custom-tabs-widget .tab-pane__content table tbody tr:nth-of-type(odd), .custom-nav-pills-widget .tab-pane__content table tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: rgb(183.6, 244.92, 255);
}
.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: rgb(122.4, 236.28, 255);
}

.table-hover .table-primary:hover {
  background-color: rgb(158.1, 241.32, 255);
}
.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: rgb(158.1, 241.32, 255);
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: rgb(213.84, 216.36, 218.6);
}
.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
  border-color: rgb(178.56, 183.24, 187.4);
}

.table-hover .table-secondary:hover {
  background-color: rgb(200.3075090253, 203.6560288809, 206.6324909747);
}
.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: rgb(200.3075090253, 203.6560288809, 206.6324909747);
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: rgb(183.6, 218.88, 205.72);
}
.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: rgb(122.4, 187.92, 163.48);
}

.table-hover .table-success:hover {
  background-color: rgb(166.66640625, 210.31359375, 194.0325);
}
.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: rgb(166.66640625, 210.31359375, 194.0325);
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: rgb(190.04, 228.96, 235.12);
}
.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
  border-color: rgb(134.36, 206.64, 218.08);
}

.table-hover .table-info:hover {
  background-color: rgb(170.5152475248, 221.1332673267, 229.1447524752);
}
.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: rgb(170.5152475248, 221.1332673267, 229.1447524752);
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: rgb(255, 237.64, 185.56);
}
.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
  border-color: rgb(255, 222.76, 126.04);
}

.table-hover .table-warning:hover {
  background-color: rgb(255, 231.265, 160.06);
}
.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: rgb(255, 231.265, 160.06);
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: rgb(237.36, 184.72, 190.32);
}
.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
  border-color: rgb(222.24, 124.48, 134.88);
}

.table-hover .table-danger:hover {
  background-color: rgb(232.2437579618, 164.3362420382, 171.5604458599);
}
.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: rgb(232.2437579618, 164.3362420382, 171.5604458599);
}

.table-light,
.table-light > th,
.table-light > td {
  background-color: rgb(253.04, 253.32, 253.6);
}
.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
  border-color: rgb(251.36, 251.88, 252.4);
}

.table-hover .table-light:hover {
  background-color: rgb(238.165, 240.57, 242.975);
}
.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: rgb(238.165, 240.57, 242.975);
}

.table-dark, .custom-accordion-widget__content table, .custom-tabs-widget .tab-pane__content table, .custom-nav-pills-widget .tab-pane__content table,
.table-dark > th,
.custom-accordion-widget__content table > th,
.custom-tabs-widget .tab-pane__content table > th,
.custom-nav-pills-widget .tab-pane__content table > th,
.table-dark > td,
.custom-accordion-widget__content table > td,
.custom-tabs-widget .tab-pane__content table > td,
.custom-nav-pills-widget .tab-pane__content table > td {
  background-color: rgb(214.96, 214.68, 214.68);
}
.table-dark th, .custom-accordion-widget__content table th, .custom-tabs-widget .tab-pane__content table th, .custom-nav-pills-widget .tab-pane__content table th,
.table-dark td,
.custom-accordion-widget__content table td,
.custom-tabs-widget .tab-pane__content table td,
.custom-nav-pills-widget .tab-pane__content table td,
.table-dark thead th,
.custom-nav-pills-widget .tab-pane__content table thead th,
.table-dark tbody + tbody,
.custom-accordion-widget__content table tbody + tbody,
.custom-tabs-widget .tab-pane__content table tbody + tbody,
.custom-nav-pills-widget .tab-pane__content table tbody + tbody {
  border-color: rgb(180.64, 180.12, 180.12);
}

.table-hover .table-dark:hover, .table-hover .custom-accordion-widget__content table:hover, .custom-accordion-widget__content .table-hover table:hover, .table-hover .custom-tabs-widget .tab-pane__content table:hover, .custom-tabs-widget .tab-pane__content .table-hover table:hover, .table-hover .custom-nav-pills-widget .tab-pane__content table:hover, .custom-nav-pills-widget .tab-pane__content .table-hover table:hover {
  background-color: rgb(202.2544250871, 201.8855749129, 201.8855749129);
}
.table-hover .table-dark:hover > td, .table-hover .custom-accordion-widget__content table:hover > td, .custom-accordion-widget__content .table-hover table:hover > td, .table-hover .custom-tabs-widget .tab-pane__content table:hover > td, .custom-tabs-widget .tab-pane__content .table-hover table:hover > td, .table-hover .custom-nav-pills-widget .tab-pane__content table:hover > td, .custom-nav-pills-widget .tab-pane__content .table-hover table:hover > td,
.table-hover .table-dark:hover > th,
.table-hover .custom-accordion-widget__content table:hover > th,
.custom-accordion-widget__content .table-hover table:hover > th,
.table-hover .custom-tabs-widget .tab-pane__content table:hover > th,
.custom-tabs-widget .tab-pane__content .table-hover table:hover > th,
.table-hover .custom-nav-pills-widget .tab-pane__content table:hover > th,
.custom-nav-pills-widget .tab-pane__content .table-hover table:hover > th {
  background-color: rgb(202.2544250871, 201.8855749129, 201.8855749129);
}

.table-darkgrey,
.table-darkgrey > th,
.table-darkgrey > td {
  background-color: rgb(197.88, 197.88, 197.88);
}
.table-darkgrey th,
.table-darkgrey td,
.table-darkgrey thead th,
.table-darkgrey tbody + tbody {
  border-color: rgb(148.92, 148.92, 148.92);
}

.table-hover .table-darkgrey:hover {
  background-color: rgb(185.13, 185.13, 185.13);
}
.table-hover .table-darkgrey:hover > td,
.table-hover .table-darkgrey:hover > th {
  background-color: rgb(185.13, 185.13, 185.13);
}

.table-darkblue,
.table-darkblue > th,
.table-darkblue > td {
  background-color: rgb(189.48, 191.16, 197.04);
}
.table-darkblue th,
.table-darkblue td,
.table-darkblue thead th,
.table-darkblue tbody + tbody {
  border-color: rgb(133.32, 136.44, 147.36);
}

.table-hover .table-darkblue:hover {
  background-color: rgb(175.9493877551, 177.9763265306, 185.0706122449);
}
.table-hover .table-darkblue:hover > td,
.table-hover .table-darkblue:hover > th {
  background-color: rgb(175.9493877551, 177.9763265306, 185.0706122449);
}

.table-lightgrey,
.table-lightgrey > th,
.table-lightgrey > td {
  background-color: rgb(249.68, 249.68, 249.96);
}
.table-lightgrey th,
.table-lightgrey td,
.table-lightgrey thead th,
.table-lightgrey tbody + tbody {
  border-color: rgb(245.12, 245.12, 245.64);
}

.table-hover .table-lightgrey:hover {
  background-color: rgb(236.5854054054, 236.5854054054, 237.5545945946);
}
.table-hover .table-lightgrey:hover > td,
.table-hover .table-lightgrey:hover > th {
  background-color: rgb(236.5854054054, 236.5854054054, 237.5545945946);
}

.table-grey,
.table-grey > th,
.table-grey > td {
  background-color: rgb(211.32, 211.32, 211.04);
}
.table-grey th,
.table-grey td,
.table-grey thead th,
.table-grey tbody + tbody {
  border-color: rgb(173.88, 173.88, 173.36);
}

.table-hover .table-grey:hover {
  background-color: rgb(198.6107348243, 198.6107348243, 198.2492651757);
}
.table-hover .table-grey:hover > td,
.table-hover .table-grey:hover > th {
  background-color: rgb(198.6107348243, 198.6107348243, 198.2492651757);
}

.table-orange,
.table-orange > th,
.table-orange > td {
  background-color: rgb(183.6, 244.92, 255);
}
.table-orange th,
.table-orange td,
.table-orange thead th,
.table-orange tbody + tbody {
  border-color: rgb(122.4, 236.28, 255);
}

.table-hover .table-orange:hover {
  background-color: rgb(158.1, 241.32, 255);
}
.table-hover .table-orange:hover > td,
.table-hover .table-orange:hover > th {
  background-color: rgb(158.1, 241.32, 255);
}

.table-greyergrey,
.table-greyergrey > th,
.table-greyergrey > td {
  background-color: rgb(214.96, 215.24, 215.8);
}
.table-greyergrey th,
.table-greyergrey td,
.table-greyergrey thead th,
.table-greyergrey tbody + tbody {
  border-color: rgb(180.64, 181.16, 182.2);
}

.table-hover .table-greyergrey:hover {
  background-color: rgb(202.0748409894, 202.4449469965, 203.1851590106);
}
.table-hover .table-greyergrey:hover > td,
.table-hover .table-greyergrey:hover > th {
  background-color: rgb(202.0748409894, 202.4449469965, 203.1851590106);
}

.table-red,
.table-red > th,
.table-red > td {
  background-color: rgb(237.36, 184.72, 190.32);
}
.table-red th,
.table-red td,
.table-red thead th,
.table-red tbody + tbody {
  border-color: rgb(222.24, 124.48, 134.88);
}

.table-hover .table-red:hover {
  background-color: rgb(232.2437579618, 164.3362420382, 171.5604458599);
}
.table-hover .table-red:hover > td,
.table-hover .table-red:hover > th {
  background-color: rgb(232.2437579618, 164.3362420382, 171.5604458599);
}

.table-green,
.table-green > th,
.table-green > td {
  background-color: rgb(183.6, 218.88, 205.72);
}
.table-green th,
.table-green td,
.table-green thead th,
.table-green tbody + tbody {
  border-color: rgb(122.4, 187.92, 163.48);
}

.table-hover .table-green:hover {
  background-color: rgb(166.66640625, 210.31359375, 194.0325);
}
.table-hover .table-green:hover > td,
.table-hover .table-green:hover > th {
  background-color: rgb(166.66640625, 210.31359375, 194.0325);
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}
.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th, .custom-accordion-widget__content table .thead-dark th, .custom-tabs-widget .tab-pane__content table .thead-dark th, .custom-nav-pills-widget .tab-pane__content table .thead-dark th {
  color: #fff;
  background-color: #343a40;
  border-color: rgb(69.1465517241, 77.125, 85.1034482759);
}
.table .thead-light th, .custom-accordion-widget__content table .thead-light th, .custom-tabs-widget .tab-pane__content table .thead-light th, .custom-nav-pills-widget .tab-pane__content table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.table-dark, .custom-accordion-widget__content table, .custom-tabs-widget .tab-pane__content table, .custom-nav-pills-widget .tab-pane__content table {
  color: #fff;
  background-color: #343a40;
}
.table-dark th, .custom-accordion-widget__content table th, .custom-tabs-widget .tab-pane__content table th, .custom-nav-pills-widget .tab-pane__content table th,
.table-dark td,
.custom-accordion-widget__content table td,
.custom-tabs-widget .tab-pane__content table td,
.custom-nav-pills-widget .tab-pane__content table td,
.table-dark thead th,
.custom-nav-pills-widget .tab-pane__content table thead th {
  border-color: rgb(69.1465517241, 77.125, 85.1034482759);
}
.table-dark.table-bordered, .custom-accordion-widget__content table.table-bordered, .custom-tabs-widget .tab-pane__content table.table-bordered, .custom-nav-pills-widget .tab-pane__content table.table-bordered {
  border: 0;
}
.table-dark.table-striped tbody tr:nth-of-type(odd), .custom-accordion-widget__content table tbody tr:nth-of-type(odd), .custom-tabs-widget .tab-pane__content table tbody tr:nth-of-type(odd), .custom-nav-pills-widget .tab-pane__content table tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}
.table-dark.table-hover tbody tr:hover, .custom-accordion-widget__content table.table-hover tbody tr:hover, .custom-tabs-widget .tab-pane__content table.table-hover tbody tr:hover, .custom-nav-pills-widget .tab-pane__content table.table-hover tbody tr:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 319.98px) {
  .table-responsive-xxs {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-xxs > .table-bordered {
    border: 0;
  }
}
@media (max-width: 567.98px) {
  .table-responsive-xs {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-xs > .table-bordered {
    border: 0;
  }
}
@media (max-width: 666.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}
@media (max-width: 991.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}
@media (max-width: 1099.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xxl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-xxl > .table-bordered {
    border: 0;
  }
}
@media (max-width: 1499.98px) {
  .table-responsive-xxxl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-xxxl > .table-bordered {
    border: 0;
  }
}
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table-responsive > .table-bordered {
  border: 0;
}

.form-control, .gform_wrapper input[type=email],
.gform_wrapper input[type=date],
.gform_wrapper input[type=datetime],
.gform_wrapper input[type=datetime-local],
.gform_wrapper input[type=month],
.gform_wrapper input[type=number],
.gform_wrapper input[type=password],
.gform_wrapper input[type=search],
.gform_wrapper input[type=tel],
.gform_wrapper input[type=text],
.gform_wrapper input[type=time],
.gform_wrapper input[type=week],
.gform_wrapper input[type=url],
.gform_wrapper select,
.gform_wrapper textarea {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 3px;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control, .gform_wrapper input[type=email],
  .gform_wrapper input[type=date],
  .gform_wrapper input[type=datetime],
  .gform_wrapper input[type=datetime-local],
  .gform_wrapper input[type=month],
  .gform_wrapper input[type=number],
  .gform_wrapper input[type=password],
  .gform_wrapper input[type=search],
  .gform_wrapper input[type=tel],
  .gform_wrapper input[type=text],
  .gform_wrapper input[type=time],
  .gform_wrapper input[type=week],
  .gform_wrapper input[type=url],
  .gform_wrapper select,
  .gform_wrapper textarea {
    -webkit-transition: none;
    transition: none;
  }
}
.form-control::-ms-expand, .gform_wrapper input[type=email]::-ms-expand,
.gform_wrapper input[type=date]::-ms-expand,
.gform_wrapper input[type=datetime]::-ms-expand,
.gform_wrapper input[type=datetime-local]::-ms-expand,
.gform_wrapper input[type=month]::-ms-expand,
.gform_wrapper input[type=number]::-ms-expand,
.gform_wrapper input[type=password]::-ms-expand,
.gform_wrapper input[type=search]::-ms-expand,
.gform_wrapper input[type=tel]::-ms-expand,
.gform_wrapper input[type=text]::-ms-expand,
.gform_wrapper input[type=time]::-ms-expand,
.gform_wrapper input[type=week]::-ms-expand,
.gform_wrapper input[type=url]::-ms-expand,
.gform_wrapper select::-ms-expand,
.gform_wrapper textarea::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:focus, .gform_wrapper input[type=email]:focus,
.gform_wrapper input[type=date]:focus,
.gform_wrapper input[type=datetime]:focus,
.gform_wrapper input[type=datetime-local]:focus,
.gform_wrapper input[type=month]:focus,
.gform_wrapper input[type=number]:focus,
.gform_wrapper input[type=password]:focus,
.gform_wrapper input[type=search]:focus,
.gform_wrapper input[type=tel]:focus,
.gform_wrapper input[type=text]:focus,
.gform_wrapper input[type=time]:focus,
.gform_wrapper input[type=week]:focus,
.gform_wrapper input[type=url]:focus,
.gform_wrapper select:focus,
.gform_wrapper textarea:focus {
  color: #495057;
  background-color: #fff;
  border-color: rgb(127.5, 237, 255);
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 219, 255, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 219, 255, 0.25);
}
.form-control::-webkit-input-placeholder, .gform_wrapper input[type=email]::-webkit-input-placeholder, .gform_wrapper input[type=date]::-webkit-input-placeholder, .gform_wrapper input[type=datetime]::-webkit-input-placeholder, .gform_wrapper input[type=datetime-local]::-webkit-input-placeholder, .gform_wrapper input[type=month]::-webkit-input-placeholder, .gform_wrapper input[type=number]::-webkit-input-placeholder, .gform_wrapper input[type=password]::-webkit-input-placeholder, .gform_wrapper input[type=search]::-webkit-input-placeholder, .gform_wrapper input[type=tel]::-webkit-input-placeholder, .gform_wrapper input[type=text]::-webkit-input-placeholder, .gform_wrapper input[type=time]::-webkit-input-placeholder, .gform_wrapper input[type=week]::-webkit-input-placeholder, .gform_wrapper input[type=url]::-webkit-input-placeholder, .gform_wrapper select::-webkit-input-placeholder, .gform_wrapper textarea::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::-moz-placeholder, .gform_wrapper input[type=email]::-moz-placeholder, .gform_wrapper input[type=date]::-moz-placeholder, .gform_wrapper input[type=datetime]::-moz-placeholder, .gform_wrapper input[type=datetime-local]::-moz-placeholder, .gform_wrapper input[type=month]::-moz-placeholder, .gform_wrapper input[type=number]::-moz-placeholder, .gform_wrapper input[type=password]::-moz-placeholder, .gform_wrapper input[type=search]::-moz-placeholder, .gform_wrapper input[type=tel]::-moz-placeholder, .gform_wrapper input[type=text]::-moz-placeholder, .gform_wrapper input[type=time]::-moz-placeholder, .gform_wrapper input[type=week]::-moz-placeholder, .gform_wrapper input[type=url]::-moz-placeholder, .gform_wrapper select::-moz-placeholder, .gform_wrapper textarea::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:-ms-input-placeholder, .gform_wrapper input[type=email]:-ms-input-placeholder, .gform_wrapper input[type=date]:-ms-input-placeholder, .gform_wrapper input[type=datetime]:-ms-input-placeholder, .gform_wrapper input[type=datetime-local]:-ms-input-placeholder, .gform_wrapper input[type=month]:-ms-input-placeholder, .gform_wrapper input[type=number]:-ms-input-placeholder, .gform_wrapper input[type=password]:-ms-input-placeholder, .gform_wrapper input[type=search]:-ms-input-placeholder, .gform_wrapper input[type=tel]:-ms-input-placeholder, .gform_wrapper input[type=text]:-ms-input-placeholder, .gform_wrapper input[type=time]:-ms-input-placeholder, .gform_wrapper input[type=week]:-ms-input-placeholder, .gform_wrapper input[type=url]:-ms-input-placeholder, .gform_wrapper select:-ms-input-placeholder, .gform_wrapper textarea:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::-ms-input-placeholder, .gform_wrapper input[type=email]::-ms-input-placeholder, .gform_wrapper input[type=date]::-ms-input-placeholder, .gform_wrapper input[type=datetime]::-ms-input-placeholder, .gform_wrapper input[type=datetime-local]::-ms-input-placeholder, .gform_wrapper input[type=month]::-ms-input-placeholder, .gform_wrapper input[type=number]::-ms-input-placeholder, .gform_wrapper input[type=password]::-ms-input-placeholder, .gform_wrapper input[type=search]::-ms-input-placeholder, .gform_wrapper input[type=tel]::-ms-input-placeholder, .gform_wrapper input[type=text]::-ms-input-placeholder, .gform_wrapper input[type=time]::-ms-input-placeholder, .gform_wrapper input[type=week]::-ms-input-placeholder, .gform_wrapper input[type=url]::-ms-input-placeholder, .gform_wrapper select::-ms-input-placeholder, .gform_wrapper textarea::-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control::placeholder, .gform_wrapper input[type=email]::placeholder,
.gform_wrapper input[type=date]::placeholder,
.gform_wrapper input[type=datetime]::placeholder,
.gform_wrapper input[type=datetime-local]::placeholder,
.gform_wrapper input[type=month]::placeholder,
.gform_wrapper input[type=number]::placeholder,
.gform_wrapper input[type=password]::placeholder,
.gform_wrapper input[type=search]::placeholder,
.gform_wrapper input[type=tel]::placeholder,
.gform_wrapper input[type=text]::placeholder,
.gform_wrapper input[type=time]::placeholder,
.gform_wrapper input[type=week]::placeholder,
.gform_wrapper input[type=url]::placeholder,
.gform_wrapper select::placeholder,
.gform_wrapper textarea::placeholder {
  color: #6c757d;
  opacity: 1;
}
.form-control:disabled, .gform_wrapper input[type=email]:disabled,
.gform_wrapper input[type=date]:disabled,
.gform_wrapper input[type=datetime]:disabled,
.gform_wrapper input[type=datetime-local]:disabled,
.gform_wrapper input[type=month]:disabled,
.gform_wrapper input[type=number]:disabled,
.gform_wrapper input[type=password]:disabled,
.gform_wrapper input[type=search]:disabled,
.gform_wrapper input[type=tel]:disabled,
.gform_wrapper input[type=text]:disabled,
.gform_wrapper input[type=time]:disabled,
.gform_wrapper input[type=week]:disabled,
.gform_wrapper input[type=url]:disabled,
.gform_wrapper select:disabled,
.gform_wrapper textarea:disabled, .form-control[readonly], .gform_wrapper input[readonly][type=email],
.gform_wrapper input[readonly][type=date],
.gform_wrapper input[readonly][type=datetime],
.gform_wrapper input[readonly][type=datetime-local],
.gform_wrapper input[readonly][type=month],
.gform_wrapper input[readonly][type=number],
.gform_wrapper input[readonly][type=password],
.gform_wrapper input[readonly][type=search],
.gform_wrapper input[readonly][type=tel],
.gform_wrapper input[readonly][type=text],
.gform_wrapper input[readonly][type=time],
.gform_wrapper input[readonly][type=week],
.gform_wrapper input[readonly][type=url],
.gform_wrapper select[readonly],
.gform_wrapper textarea[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

input[type=date].form-control,
.gform_wrapper input[type=date],
input[type=time].form-control,
.gform_wrapper input[type=time],
input[type=datetime-local].form-control,
.gform_wrapper input[type=datetime-local],
input[type=month].form-control,
.gform_wrapper input[type=month] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select.form-control:-moz-focusring,
.gform_wrapper select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}
select.form-control:focus::-ms-value,
.gform_wrapper select:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

select.form-control[size],
.gform_wrapper select[size], select.form-control[multiple],
.gform_wrapper select[multiple] {
  height: auto;
}

textarea.form-control,
.gform_wrapper textarea {
  height: auto;
}

.form-group, .gform_wrapper li {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.form-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}
.form-row > .col,
.form-row > [class*=col-] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}
.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #007E4F;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(0, 126, 79, 0.9);
  border-radius: 3px;
}
.form-row > .col > .valid-tooltip, .form-row > [class*=col-] > .valid-tooltip {
  left: 5px;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .was-validated .gform_wrapper input[type=email]:valid, .gform_wrapper .was-validated input[type=email]:valid,
.was-validated .gform_wrapper input[type=date]:valid,
.gform_wrapper .was-validated input[type=date]:valid,
.was-validated .gform_wrapper input[type=datetime]:valid,
.gform_wrapper .was-validated input[type=datetime]:valid,
.was-validated .gform_wrapper input[type=datetime-local]:valid,
.gform_wrapper .was-validated input[type=datetime-local]:valid,
.was-validated .gform_wrapper input[type=month]:valid,
.gform_wrapper .was-validated input[type=month]:valid,
.was-validated .gform_wrapper input[type=number]:valid,
.gform_wrapper .was-validated input[type=number]:valid,
.was-validated .gform_wrapper input[type=password]:valid,
.gform_wrapper .was-validated input[type=password]:valid,
.was-validated .gform_wrapper input[type=search]:valid,
.gform_wrapper .was-validated input[type=search]:valid,
.was-validated .gform_wrapper input[type=tel]:valid,
.gform_wrapper .was-validated input[type=tel]:valid,
.was-validated .gform_wrapper input[type=text]:valid,
.gform_wrapper .was-validated input[type=text]:valid,
.was-validated .gform_wrapper input[type=time]:valid,
.gform_wrapper .was-validated input[type=time]:valid,
.was-validated .gform_wrapper input[type=week]:valid,
.gform_wrapper .was-validated input[type=week]:valid,
.was-validated .gform_wrapper input[type=url]:valid,
.gform_wrapper .was-validated input[type=url]:valid,
.was-validated .gform_wrapper select:valid,
.gform_wrapper .was-validated select:valid,
.was-validated .gform_wrapper textarea:valid,
.gform_wrapper .was-validated textarea:valid, .form-control.is-valid, .gform_wrapper input.is-valid[type=email],
.gform_wrapper input.is-valid[type=date],
.gform_wrapper input.is-valid[type=datetime],
.gform_wrapper input.is-valid[type=datetime-local],
.gform_wrapper input.is-valid[type=month],
.gform_wrapper input.is-valid[type=number],
.gform_wrapper input.is-valid[type=password],
.gform_wrapper input.is-valid[type=search],
.gform_wrapper input.is-valid[type=tel],
.gform_wrapper input.is-valid[type=text],
.gform_wrapper input.is-valid[type=time],
.gform_wrapper input.is-valid[type=week],
.gform_wrapper input.is-valid[type=url],
.gform_wrapper select.is-valid,
.gform_wrapper textarea.is-valid {
  border-color: #007E4F;
  padding-right: calc(1.5em + 0.75rem) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23007E4F' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:valid:focus, .was-validated .gform_wrapper input[type=email]:valid:focus, .gform_wrapper .was-validated input[type=email]:valid:focus,
.was-validated .gform_wrapper input[type=date]:valid:focus,
.gform_wrapper .was-validated input[type=date]:valid:focus,
.was-validated .gform_wrapper input[type=datetime]:valid:focus,
.gform_wrapper .was-validated input[type=datetime]:valid:focus,
.was-validated .gform_wrapper input[type=datetime-local]:valid:focus,
.gform_wrapper .was-validated input[type=datetime-local]:valid:focus,
.was-validated .gform_wrapper input[type=month]:valid:focus,
.gform_wrapper .was-validated input[type=month]:valid:focus,
.was-validated .gform_wrapper input[type=number]:valid:focus,
.gform_wrapper .was-validated input[type=number]:valid:focus,
.was-validated .gform_wrapper input[type=password]:valid:focus,
.gform_wrapper .was-validated input[type=password]:valid:focus,
.was-validated .gform_wrapper input[type=search]:valid:focus,
.gform_wrapper .was-validated input[type=search]:valid:focus,
.was-validated .gform_wrapper input[type=tel]:valid:focus,
.gform_wrapper .was-validated input[type=tel]:valid:focus,
.was-validated .gform_wrapper input[type=text]:valid:focus,
.gform_wrapper .was-validated input[type=text]:valid:focus,
.was-validated .gform_wrapper input[type=time]:valid:focus,
.gform_wrapper .was-validated input[type=time]:valid:focus,
.was-validated .gform_wrapper input[type=week]:valid:focus,
.gform_wrapper .was-validated input[type=week]:valid:focus,
.was-validated .gform_wrapper input[type=url]:valid:focus,
.gform_wrapper .was-validated input[type=url]:valid:focus,
.was-validated .gform_wrapper select:valid:focus,
.gform_wrapper .was-validated select:valid:focus,
.was-validated .gform_wrapper textarea:valid:focus,
.gform_wrapper .was-validated textarea:valid:focus, .form-control.is-valid:focus, .gform_wrapper input.is-valid[type=email]:focus,
.gform_wrapper input.is-valid[type=date]:focus,
.gform_wrapper input.is-valid[type=datetime]:focus,
.gform_wrapper input.is-valid[type=datetime-local]:focus,
.gform_wrapper input.is-valid[type=month]:focus,
.gform_wrapper input.is-valid[type=number]:focus,
.gform_wrapper input.is-valid[type=password]:focus,
.gform_wrapper input.is-valid[type=search]:focus,
.gform_wrapper input.is-valid[type=tel]:focus,
.gform_wrapper input.is-valid[type=text]:focus,
.gform_wrapper input.is-valid[type=time]:focus,
.gform_wrapper input.is-valid[type=week]:focus,
.gform_wrapper input.is-valid[type=url]:focus,
.gform_wrapper select.is-valid:focus,
.gform_wrapper textarea.is-valid:focus {
  border-color: #007E4F;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 126, 79, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 126, 79, 0.25);
}

.was-validated select.form-control:valid,
.was-validated .gform_wrapper select:valid,
.gform_wrapper .was-validated select:valid, select.form-control.is-valid,
.gform_wrapper select.is-valid {
  padding-right: 3rem !important;
  background-position: right 1.5rem center;
}

.was-validated textarea.form-control:valid,
.was-validated .gform_wrapper textarea:valid,
.gform_wrapper .was-validated textarea:valid, textarea.form-control.is-valid,
.gform_wrapper textarea.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:valid, .custom-select.is-valid {
  border-color: #007E4F;
  padding-right: calc(0.75em + 2.3125rem) !important;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23007E4F' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat;
}
.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
  border-color: #007E4F;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 126, 79, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 126, 79, 0.25);
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #007E4F;
}
.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  color: #007E4F;
}
.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #007E4F;
}
.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: rgb(0, 177, 110.9761904762);
  background-color: rgb(0, 177, 110.9761904762);
}
.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 126, 79, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 126, 79, 0.25);
}
.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #007E4F;
}

.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #007E4F;
}
.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #007E4F;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 126, 79, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 126, 79, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #C00418;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(192, 4, 24, 0.9);
  border-radius: 3px;
}
.form-row > .col > .invalid-tooltip, .form-row > [class*=col-] > .invalid-tooltip {
  left: 5px;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .was-validated .gform_wrapper input[type=email]:invalid, .gform_wrapper .was-validated input[type=email]:invalid,
.was-validated .gform_wrapper input[type=date]:invalid,
.gform_wrapper .was-validated input[type=date]:invalid,
.was-validated .gform_wrapper input[type=datetime]:invalid,
.gform_wrapper .was-validated input[type=datetime]:invalid,
.was-validated .gform_wrapper input[type=datetime-local]:invalid,
.gform_wrapper .was-validated input[type=datetime-local]:invalid,
.was-validated .gform_wrapper input[type=month]:invalid,
.gform_wrapper .was-validated input[type=month]:invalid,
.was-validated .gform_wrapper input[type=number]:invalid,
.gform_wrapper .was-validated input[type=number]:invalid,
.was-validated .gform_wrapper input[type=password]:invalid,
.gform_wrapper .was-validated input[type=password]:invalid,
.was-validated .gform_wrapper input[type=search]:invalid,
.gform_wrapper .was-validated input[type=search]:invalid,
.was-validated .gform_wrapper input[type=tel]:invalid,
.gform_wrapper .was-validated input[type=tel]:invalid,
.was-validated .gform_wrapper input[type=text]:invalid,
.gform_wrapper .was-validated input[type=text]:invalid,
.was-validated .gform_wrapper input[type=time]:invalid,
.gform_wrapper .was-validated input[type=time]:invalid,
.was-validated .gform_wrapper input[type=week]:invalid,
.gform_wrapper .was-validated input[type=week]:invalid,
.was-validated .gform_wrapper input[type=url]:invalid,
.gform_wrapper .was-validated input[type=url]:invalid,
.was-validated .gform_wrapper select:invalid,
.gform_wrapper .was-validated select:invalid,
.was-validated .gform_wrapper textarea:invalid,
.gform_wrapper .was-validated textarea:invalid, .form-control.is-invalid, .gform_wrapper input.is-invalid[type=email],
.gform_wrapper input.is-invalid[type=date],
.gform_wrapper input.is-invalid[type=datetime],
.gform_wrapper input.is-invalid[type=datetime-local],
.gform_wrapper input.is-invalid[type=month],
.gform_wrapper input.is-invalid[type=number],
.gform_wrapper input.is-invalid[type=password],
.gform_wrapper input.is-invalid[type=search],
.gform_wrapper input.is-invalid[type=tel],
.gform_wrapper input.is-invalid[type=text],
.gform_wrapper input.is-invalid[type=time],
.gform_wrapper input.is-invalid[type=week],
.gform_wrapper input.is-invalid[type=url],
.gform_wrapper select.is-invalid,
.gform_wrapper textarea.is-invalid {
  border-color: #C00418;
  padding-right: calc(1.5em + 0.75rem) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23C00418' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23C00418' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.was-validated .form-control:invalid:focus, .was-validated .gform_wrapper input[type=email]:invalid:focus, .gform_wrapper .was-validated input[type=email]:invalid:focus,
.was-validated .gform_wrapper input[type=date]:invalid:focus,
.gform_wrapper .was-validated input[type=date]:invalid:focus,
.was-validated .gform_wrapper input[type=datetime]:invalid:focus,
.gform_wrapper .was-validated input[type=datetime]:invalid:focus,
.was-validated .gform_wrapper input[type=datetime-local]:invalid:focus,
.gform_wrapper .was-validated input[type=datetime-local]:invalid:focus,
.was-validated .gform_wrapper input[type=month]:invalid:focus,
.gform_wrapper .was-validated input[type=month]:invalid:focus,
.was-validated .gform_wrapper input[type=number]:invalid:focus,
.gform_wrapper .was-validated input[type=number]:invalid:focus,
.was-validated .gform_wrapper input[type=password]:invalid:focus,
.gform_wrapper .was-validated input[type=password]:invalid:focus,
.was-validated .gform_wrapper input[type=search]:invalid:focus,
.gform_wrapper .was-validated input[type=search]:invalid:focus,
.was-validated .gform_wrapper input[type=tel]:invalid:focus,
.gform_wrapper .was-validated input[type=tel]:invalid:focus,
.was-validated .gform_wrapper input[type=text]:invalid:focus,
.gform_wrapper .was-validated input[type=text]:invalid:focus,
.was-validated .gform_wrapper input[type=time]:invalid:focus,
.gform_wrapper .was-validated input[type=time]:invalid:focus,
.was-validated .gform_wrapper input[type=week]:invalid:focus,
.gform_wrapper .was-validated input[type=week]:invalid:focus,
.was-validated .gform_wrapper input[type=url]:invalid:focus,
.gform_wrapper .was-validated input[type=url]:invalid:focus,
.was-validated .gform_wrapper select:invalid:focus,
.gform_wrapper .was-validated select:invalid:focus,
.was-validated .gform_wrapper textarea:invalid:focus,
.gform_wrapper .was-validated textarea:invalid:focus, .form-control.is-invalid:focus, .gform_wrapper input.is-invalid[type=email]:focus,
.gform_wrapper input.is-invalid[type=date]:focus,
.gform_wrapper input.is-invalid[type=datetime]:focus,
.gform_wrapper input.is-invalid[type=datetime-local]:focus,
.gform_wrapper input.is-invalid[type=month]:focus,
.gform_wrapper input.is-invalid[type=number]:focus,
.gform_wrapper input.is-invalid[type=password]:focus,
.gform_wrapper input.is-invalid[type=search]:focus,
.gform_wrapper input.is-invalid[type=tel]:focus,
.gform_wrapper input.is-invalid[type=text]:focus,
.gform_wrapper input.is-invalid[type=time]:focus,
.gform_wrapper input.is-invalid[type=week]:focus,
.gform_wrapper input.is-invalid[type=url]:focus,
.gform_wrapper select.is-invalid:focus,
.gform_wrapper textarea.is-invalid:focus {
  border-color: #C00418;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(192, 4, 24, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(192, 4, 24, 0.25);
}

.was-validated select.form-control:invalid,
.was-validated .gform_wrapper select:invalid,
.gform_wrapper .was-validated select:invalid, select.form-control.is-invalid,
.gform_wrapper select.is-invalid {
  padding-right: 3rem !important;
  background-position: right 1.5rem center;
}

.was-validated textarea.form-control:invalid,
.was-validated .gform_wrapper textarea:invalid,
.gform_wrapper .was-validated textarea:invalid, textarea.form-control.is-invalid,
.gform_wrapper textarea.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:invalid, .custom-select.is-invalid {
  border-color: #C00418;
  padding-right: calc(0.75em + 2.3125rem) !important;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23C00418' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23C00418' stroke='none'/%3e%3c/svg%3e") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat;
}
.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
  border-color: #C00418;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(192, 4, 24, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(192, 4, 24, 0.25);
}

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #C00418;
}
.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  color: #C00418;
}
.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #C00418;
}
.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: rgb(241.9591836735, 5.0408163265, 30.2448979592);
  background-color: rgb(241.9591836735, 5.0408163265, 30.2448979592);
}
.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(192, 4, 24, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(192, 4, 24, 0.25);
}
.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #C00418;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #C00418;
}
.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #C00418;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(192, 4, 24, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(192, 4, 24, 0.25);
}

.form-inline {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.form-inline .form-check {
  width: 100%;
}
@media (min-width: 667px) {
  .form-inline label {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 0;
  }
  .form-inline .form-group, .form-inline .gform_wrapper li, .gform_wrapper .form-inline li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 0;
  }
  .form-inline .form-control, .form-inline .gform_wrapper input[type=email], .gform_wrapper .form-inline input[type=email],
  .form-inline .gform_wrapper input[type=date],
  .gform_wrapper .form-inline input[type=date],
  .form-inline .gform_wrapper input[type=datetime],
  .gform_wrapper .form-inline input[type=datetime],
  .form-inline .gform_wrapper input[type=datetime-local],
  .gform_wrapper .form-inline input[type=datetime-local],
  .form-inline .gform_wrapper input[type=month],
  .gform_wrapper .form-inline input[type=month],
  .form-inline .gform_wrapper input[type=number],
  .gform_wrapper .form-inline input[type=number],
  .form-inline .gform_wrapper input[type=password],
  .gform_wrapper .form-inline input[type=password],
  .form-inline .gform_wrapper input[type=search],
  .gform_wrapper .form-inline input[type=search],
  .form-inline .gform_wrapper input[type=tel],
  .gform_wrapper .form-inline input[type=tel],
  .form-inline .gform_wrapper input[type=text],
  .gform_wrapper .form-inline input[type=text],
  .form-inline .gform_wrapper input[type=time],
  .gform_wrapper .form-inline input[type=time],
  .form-inline .gform_wrapper input[type=week],
  .gform_wrapper .form-inline input[type=week],
  .form-inline .gform_wrapper input[type=url],
  .gform_wrapper .form-inline input[type=url],
  .form-inline .gform_wrapper select,
  .gform_wrapper .form-inline select,
  .form-inline .gform_wrapper textarea,
  .gform_wrapper .form-inline textarea {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-plaintext {
    display: inline-block;
  }
  .form-inline .input-group,
  .form-inline .custom-select {
    width: auto;
  }
  .form-inline .form-check {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: auto;
    padding-left: 0;
  }
  .form-inline .form-check-input {
    position: relative;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .form-inline .custom-control {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}

.btn, #BorlabsCookieBox ._brlbs-btn-accept-all, .has--btn-underline-white .elementor-button, .has--btn-underline .elementor-button, .gform_wrapper .button {
  display: inline-block;
  font-weight: 400;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 3px;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .btn, #BorlabsCookieBox ._brlbs-btn-accept-all, .has--btn-underline-white .elementor-button, .has--btn-underline .elementor-button, .gform_wrapper .button {
    -webkit-transition: none;
    transition: none;
  }
}
.btn:hover, #BorlabsCookieBox ._brlbs-btn-accept-all:hover, .has--btn-underline-white .elementor-button:hover, .has--btn-underline .elementor-button:hover, .gform_wrapper .button:hover {
  color: #fff;
  text-decoration: none;
}
.btn:focus, #BorlabsCookieBox ._brlbs-btn-accept-all:focus, .has--btn-underline-white .elementor-button:focus, .has--btn-underline .elementor-button:focus, .gform_wrapper .button:focus, .btn.focus, #BorlabsCookieBox .focus._brlbs-btn-accept-all, .has--btn-underline-white .focus.elementor-button, .has--btn-underline .focus.elementor-button, .gform_wrapper .focus.button {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 219, 255, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 219, 255, 0.25);
}
.btn.disabled, #BorlabsCookieBox .disabled._brlbs-btn-accept-all, .has--btn-underline-white .disabled.elementor-button, .has--btn-underline .disabled.elementor-button, .gform_wrapper .disabled.button, .btn:disabled, #BorlabsCookieBox ._brlbs-btn-accept-all:disabled, .has--btn-underline-white .elementor-button:disabled, .has--btn-underline .elementor-button:disabled, .gform_wrapper .button:disabled {
  opacity: 0.65;
}
.btn:not(:disabled):not(.disabled), #BorlabsCookieBox ._brlbs-btn-accept-all:not(:disabled):not(.disabled), .has--btn-underline-white .elementor-button:not(:disabled):not(.disabled), .has--btn-underline .elementor-button:not(:disabled):not(.disabled), .gform_wrapper .button:not(:disabled):not(.disabled) {
  cursor: pointer;
}
a.btn.disabled, #BorlabsCookieBox a.disabled._brlbs-btn-accept-all, .has--btn-underline-white a.disabled.elementor-button, .has--btn-underline a.disabled.elementor-button, .gform_wrapper a.disabled.button,
fieldset:disabled a.btn,
fieldset:disabled #BorlabsCookieBox a._brlbs-btn-accept-all,
#BorlabsCookieBox fieldset:disabled a._brlbs-btn-accept-all,
fieldset:disabled .has--btn-underline-white a.elementor-button,
.has--btn-underline-white fieldset:disabled a.elementor-button,
fieldset:disabled .has--btn-underline a.elementor-button,
.has--btn-underline fieldset:disabled a.elementor-button,
fieldset:disabled .gform_wrapper a.button,
.gform_wrapper fieldset:disabled a.button {
  pointer-events: none;
}

.btn-primary {
  color: #212529;
  background-color: #00DBFF;
  border-color: #00DBFF;
}
.btn-primary:hover {
  color: #fff;
  background-color: rgb(0, 186.15, 216.75);
  border-color: rgb(0, 175.2, 204);
}
.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: rgb(0, 186.15, 216.75);
  border-color: rgb(0, 175.2, 204);
  -webkit-box-shadow: 0 0 0 0.2rem rgba(4.95, 191.7, 222.9, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(4.95, 191.7, 222.9, 0.5);
}
.btn-primary.disabled, .btn-primary:disabled {
  color: #212529;
  background-color: #00DBFF;
  border-color: #00DBFF;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: rgb(0, 175.2, 204);
  border-color: rgb(0, 164.25, 191.25);
}
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(4.95, 191.7, 222.9, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(4.95, 191.7, 222.9, 0.5);
}

.btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:hover {
  color: #fff;
  background-color: rgb(90.2703862661, 97.7929184549, 104.4796137339);
  border-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
}
.btn-secondary:focus, .btn-secondary.focus {
  color: #fff;
  background-color: rgb(90.2703862661, 97.7929184549, 104.4796137339);
  border-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
  -webkit-box-shadow: 0 0 0 0.2rem rgba(130.05, 137.7, 144.5, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(130.05, 137.7, 144.5, 0.5);
}
.btn-secondary.disabled, .btn-secondary:disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
  border-color: rgb(78.4506437768, 84.9881974249, 90.7993562232);
}
.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(130.05, 137.7, 144.5, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(130.05, 137.7, 144.5, 0.5);
}

.btn-success {
  color: #fff;
  background-color: #007E4F;
  border-color: #007E4F;
}
.btn-success:hover {
  color: #fff;
  background-color: rgb(0, 87.75, 55.0178571429);
  border-color: rgb(0, 75, 47.0238095238);
}
.btn-success:focus, .btn-success.focus {
  color: #fff;
  background-color: rgb(0, 87.75, 55.0178571429);
  border-color: rgb(0, 75, 47.0238095238);
  -webkit-box-shadow: 0 0 0 0.2rem rgba(38.25, 145.35, 105.4, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(38.25, 145.35, 105.4, 0.5);
}
.btn-success.disabled, .btn-success:disabled {
  color: #fff;
  background-color: #007E4F;
  border-color: #007E4F;
}
.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: rgb(0, 75, 47.0238095238);
  border-color: rgb(0, 62.25, 39.0297619048);
}
.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(38.25, 145.35, 105.4, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(38.25, 145.35, 105.4, 0.5);
}

.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:hover {
  color: #fff;
  background-color: rgb(18.75, 132.0652173913, 150);
  border-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
}
.btn-info:focus, .btn-info.focus {
  color: #fff;
  background-color: rgb(18.75, 132.0652173913, 150);
  border-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
  -webkit-box-shadow: 0 0 0 0.2rem rgba(57.8, 175.95, 194.65, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(57.8, 175.95, 194.65, 0.5);
}
.btn-info.disabled, .btn-info:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
  border-color: rgb(15.9166666667, 112.1086956522, 127.3333333333);
}
.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(57.8, 175.95, 194.65, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(57.8, 175.95, 194.65, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:hover {
  color: #212529;
  background-color: rgb(223.75, 167.8125, 0);
  border-color: rgb(211, 158.25, 0);
}
.btn-warning:focus, .btn-warning.focus {
  color: #212529;
  background-color: rgb(223.75, 167.8125, 0);
  border-color: rgb(211, 158.25, 0);
  -webkit-box-shadow: 0 0 0 0.2rem rgba(221.7, 169.6, 12.1, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(221.7, 169.6, 12.1, 0.5);
}
.btn-warning.disabled, .btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: rgb(211, 158.25, 0);
  border-color: rgb(198.25, 148.6875, 0);
}
.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(221.7, 169.6, 12.1, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(221.7, 169.6, 12.1, 0.5);
}

.btn-danger {
  color: #fff;
  background-color: #C00418;
  border-color: #C00418;
}
.btn-danger:hover {
  color: #fff;
  background-color: rgb(154.5306122449, 3.2193877551, 19.3163265306);
  border-color: rgb(142.0408163265, 2.9591836735, 17.7551020408);
}
.btn-danger:focus, .btn-danger.focus {
  color: #fff;
  background-color: rgb(154.5306122449, 3.2193877551, 19.3163265306);
  border-color: rgb(142.0408163265, 2.9591836735, 17.7551020408);
  -webkit-box-shadow: 0 0 0 0.2rem rgba(201.45, 41.65, 58.65, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(201.45, 41.65, 58.65, 0.5);
}
.btn-danger.disabled, .btn-danger:disabled {
  color: #fff;
  background-color: #C00418;
  border-color: #C00418;
}
.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: rgb(142.0408163265, 2.9591836735, 17.7551020408);
  border-color: rgb(129.5510204082, 2.6989795918, 16.193877551);
}
.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(201.45, 41.65, 58.65, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(201.45, 41.65, 58.65, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:hover {
  color: #212529;
  background-color: rgb(225.6875, 229.875, 234.0625);
  border-color: rgb(218.25, 223.5, 228.75);
}
.btn-light:focus, .btn-light.focus {
  color: #212529;
  background-color: rgb(225.6875, 229.875, 234.0625);
  border-color: rgb(218.25, 223.5, 228.75);
  -webkit-box-shadow: 0 0 0 0.2rem rgba(215.75, 217.2, 218.65, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(215.75, 217.2, 218.65, 0.5);
}
.btn-light.disabled, .btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: rgb(218.25, 223.5, 228.75);
  border-color: rgb(210.8125, 217.125, 223.4375);
}
.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(215.75, 217.2, 218.65, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(215.75, 217.2, 218.65, 0.5);
}

.btn-dark {
  color: #fff;
  background-color: #706F6F;
  border-color: #706F6F;
}
.btn-dark:hover {
  color: #fff;
  background-color: rgb(92.7892376682, 91.9607623318, 91.9607623318);
  border-color: rgb(86.3856502242, 85.6143497758, 85.6143497758);
}
.btn-dark:focus, .btn-dark.focus {
  color: #fff;
  background-color: rgb(92.7892376682, 91.9607623318, 91.9607623318);
  border-color: rgb(86.3856502242, 85.6143497758, 85.6143497758);
  -webkit-box-shadow: 0 0 0 0.2rem rgba(133.45, 132.6, 132.6, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(133.45, 132.6, 132.6, 0.5);
}
.btn-dark.disabled, .btn-dark:disabled {
  color: #fff;
  background-color: #706F6F;
  border-color: #706F6F;
}
.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: rgb(86.3856502242, 85.6143497758, 85.6143497758);
  border-color: rgb(79.9820627803, 79.2679372197, 79.2679372197);
}
.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(133.45, 132.6, 132.6, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(133.45, 132.6, 132.6, 0.5);
}

.btn-darkgrey {
  color: #fff;
  background-color: #333333;
  border-color: #333333;
}
.btn-darkgrey:hover {
  color: #fff;
  background-color: rgb(31.875, 31.875, 31.875);
  border-color: rgb(25.5, 25.5, 25.5);
}
.btn-darkgrey:focus, .btn-darkgrey.focus {
  color: #fff;
  background-color: rgb(31.875, 31.875, 31.875);
  border-color: rgb(25.5, 25.5, 25.5);
  -webkit-box-shadow: 0 0 0 0.2rem rgba(81.6, 81.6, 81.6, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(81.6, 81.6, 81.6, 0.5);
}
.btn-darkgrey.disabled, .btn-darkgrey:disabled {
  color: #fff;
  background-color: #333333;
  border-color: #333333;
}
.btn-darkgrey:not(:disabled):not(.disabled):active, .btn-darkgrey:not(:disabled):not(.disabled).active, .show > .btn-darkgrey.dropdown-toggle {
  color: #fff;
  background-color: rgb(25.5, 25.5, 25.5);
  border-color: rgb(19.125, 19.125, 19.125);
}
.btn-darkgrey:not(:disabled):not(.disabled):active:focus, .btn-darkgrey:not(:disabled):not(.disabled).active:focus, .show > .btn-darkgrey.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(81.6, 81.6, 81.6, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(81.6, 81.6, 81.6, 0.5);
}

.btn-darkblue {
  color: #fff;
  background-color: #151B30;
  border-color: #151B30;
}
.btn-darkblue:hover {
  color: #fff;
  background-color: rgb(9.3586956522, 12.0326086957, 21.3913043478);
  border-color: rgb(5.4782608696, 7.0434782609, 12.5217391304);
}
.btn-darkblue:focus, .btn-darkblue.focus {
  color: #fff;
  background-color: rgb(9.3586956522, 12.0326086957, 21.3913043478);
  border-color: rgb(5.4782608696, 7.0434782609, 12.5217391304);
  -webkit-box-shadow: 0 0 0 0.2rem rgba(56.1, 61.2, 79.05, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(56.1, 61.2, 79.05, 0.5);
}
.btn-darkblue.disabled, .btn-darkblue:disabled {
  color: #fff;
  background-color: #151B30;
  border-color: #151B30;
}
.btn-darkblue:not(:disabled):not(.disabled):active, .btn-darkblue:not(:disabled):not(.disabled).active, .show > .btn-darkblue.dropdown-toggle {
  color: #fff;
  background-color: rgb(5.4782608696, 7.0434782609, 12.5217391304);
  border-color: rgb(1.597826087, 2.0543478261, 3.652173913);
}
.btn-darkblue:not(:disabled):not(.disabled):active:focus, .btn-darkblue:not(:disabled):not(.disabled).active:focus, .show > .btn-darkblue.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(56.1, 61.2, 79.05, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(56.1, 61.2, 79.05, 0.5);
}

.btn-lightgrey {
  color: #212529;
  background-color: #ECECED;
  border-color: #ECECED;
}
.btn-lightgrey:hover {
  color: #212529;
  background-color: rgb(216.3581081081, 216.3581081081, 218.3918918919);
  border-color: rgb(209.8108108108, 209.8108108108, 212.1891891892);
}
.btn-lightgrey:focus, .btn-lightgrey.focus {
  color: #212529;
  background-color: rgb(216.3581081081, 216.3581081081, 218.3918918919);
  border-color: rgb(209.8108108108, 209.8108108108, 212.1891891892);
  -webkit-box-shadow: 0 0 0 0.2rem rgba(205.55, 206.15, 207.6, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(205.55, 206.15, 207.6, 0.5);
}
.btn-lightgrey.disabled, .btn-lightgrey:disabled {
  color: #212529;
  background-color: #ECECED;
  border-color: #ECECED;
}
.btn-lightgrey:not(:disabled):not(.disabled):active, .btn-lightgrey:not(:disabled):not(.disabled).active, .show > .btn-lightgrey.dropdown-toggle {
  color: #212529;
  background-color: rgb(209.8108108108, 209.8108108108, 212.1891891892);
  border-color: rgb(203.2635135135, 203.2635135135, 205.9864864865);
}
.btn-lightgrey:not(:disabled):not(.disabled):active:focus, .btn-lightgrey:not(:disabled):not(.disabled).active:focus, .show > .btn-lightgrey.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(205.55, 206.15, 207.6, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(205.55, 206.15, 207.6, 0.5);
}

.btn-grey {
  color: #fff;
  background-color: #636362;
  border-color: #636362;
}
.btn-grey:hover {
  color: #fff;
  background-color: rgb(79.7779187817, 79.7779187817, 78.9720812183);
  border-color: rgb(73.3705583756, 73.3705583756, 72.6294416244);
}
.btn-grey:focus, .btn-grey.focus {
  color: #fff;
  background-color: rgb(79.7779187817, 79.7779187817, 78.9720812183);
  border-color: rgb(73.3705583756, 73.3705583756, 72.6294416244);
  -webkit-box-shadow: 0 0 0 0.2rem rgba(122.4, 122.4, 121.55, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(122.4, 122.4, 121.55, 0.5);
}
.btn-grey.disabled, .btn-grey:disabled {
  color: #fff;
  background-color: #636362;
  border-color: #636362;
}
.btn-grey:not(:disabled):not(.disabled):active, .btn-grey:not(:disabled):not(.disabled).active, .show > .btn-grey.dropdown-toggle {
  color: #fff;
  background-color: rgb(73.3705583756, 73.3705583756, 72.6294416244);
  border-color: rgb(66.9631979695, 66.9631979695, 66.2868020305);
}
.btn-grey:not(:disabled):not(.disabled):active:focus, .btn-grey:not(:disabled):not(.disabled).active:focus, .show > .btn-grey.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(122.4, 122.4, 121.55, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(122.4, 122.4, 121.55, 0.5);
}

.btn-orange {
  color: #212529;
  background-color: #00DBFF;
  border-color: #00DBFF;
}
.btn-orange:hover {
  color: #fff;
  background-color: rgb(0, 186.15, 216.75);
  border-color: rgb(0, 175.2, 204);
}
.btn-orange:focus, .btn-orange.focus {
  color: #fff;
  background-color: rgb(0, 186.15, 216.75);
  border-color: rgb(0, 175.2, 204);
  -webkit-box-shadow: 0 0 0 0.2rem rgba(4.95, 191.7, 222.9, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(4.95, 191.7, 222.9, 0.5);
}
.btn-orange.disabled, .btn-orange:disabled {
  color: #212529;
  background-color: #00DBFF;
  border-color: #00DBFF;
}
.btn-orange:not(:disabled):not(.disabled):active, .btn-orange:not(:disabled):not(.disabled).active, .show > .btn-orange.dropdown-toggle {
  color: #fff;
  background-color: rgb(0, 175.2, 204);
  border-color: rgb(0, 164.25, 191.25);
}
.btn-orange:not(:disabled):not(.disabled):active:focus, .btn-orange:not(:disabled):not(.disabled).active:focus, .show > .btn-orange.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(4.95, 191.7, 222.9, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(4.95, 191.7, 222.9, 0.5);
}

.btn-greyergrey {
  color: #fff;
  background-color: #707173;
  border-color: #707173;
}
.btn-greyergrey:hover {
  color: #fff;
  background-color: rgb(93.127753304, 93.9592511013, 95.622246696);
  border-color: rgb(86.8370044053, 87.6123348018, 89.1629955947);
}
.btn-greyergrey:focus, .btn-greyergrey.focus {
  color: #fff;
  background-color: rgb(93.127753304, 93.9592511013, 95.622246696);
  border-color: rgb(86.8370044053, 87.6123348018, 89.1629955947);
  -webkit-box-shadow: 0 0 0 0.2rem rgba(133.45, 134.3, 136, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(133.45, 134.3, 136, 0.5);
}
.btn-greyergrey.disabled, .btn-greyergrey:disabled {
  color: #fff;
  background-color: #707173;
  border-color: #707173;
}
.btn-greyergrey:not(:disabled):not(.disabled):active, .btn-greyergrey:not(:disabled):not(.disabled).active, .show > .btn-greyergrey.dropdown-toggle {
  color: #fff;
  background-color: rgb(86.8370044053, 87.6123348018, 89.1629955947);
  border-color: rgb(80.5462555066, 81.2654185022, 82.7037444934);
}
.btn-greyergrey:not(:disabled):not(.disabled):active:focus, .btn-greyergrey:not(:disabled):not(.disabled).active:focus, .show > .btn-greyergrey.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(133.45, 134.3, 136, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(133.45, 134.3, 136, 0.5);
}

.btn-red {
  color: #fff;
  background-color: #C00418;
  border-color: #C00418;
}
.btn-red:hover {
  color: #fff;
  background-color: rgb(154.5306122449, 3.2193877551, 19.3163265306);
  border-color: rgb(142.0408163265, 2.9591836735, 17.7551020408);
}
.btn-red:focus, .btn-red.focus {
  color: #fff;
  background-color: rgb(154.5306122449, 3.2193877551, 19.3163265306);
  border-color: rgb(142.0408163265, 2.9591836735, 17.7551020408);
  -webkit-box-shadow: 0 0 0 0.2rem rgba(201.45, 41.65, 58.65, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(201.45, 41.65, 58.65, 0.5);
}
.btn-red.disabled, .btn-red:disabled {
  color: #fff;
  background-color: #C00418;
  border-color: #C00418;
}
.btn-red:not(:disabled):not(.disabled):active, .btn-red:not(:disabled):not(.disabled).active, .show > .btn-red.dropdown-toggle {
  color: #fff;
  background-color: rgb(142.0408163265, 2.9591836735, 17.7551020408);
  border-color: rgb(129.5510204082, 2.6989795918, 16.193877551);
}
.btn-red:not(:disabled):not(.disabled):active:focus, .btn-red:not(:disabled):not(.disabled).active:focus, .show > .btn-red.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(201.45, 41.65, 58.65, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(201.45, 41.65, 58.65, 0.5);
}

.btn-green {
  color: #fff;
  background-color: #007E4F;
  border-color: #007E4F;
}
.btn-green:hover {
  color: #fff;
  background-color: rgb(0, 87.75, 55.0178571429);
  border-color: rgb(0, 75, 47.0238095238);
}
.btn-green:focus, .btn-green.focus {
  color: #fff;
  background-color: rgb(0, 87.75, 55.0178571429);
  border-color: rgb(0, 75, 47.0238095238);
  -webkit-box-shadow: 0 0 0 0.2rem rgba(38.25, 145.35, 105.4, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(38.25, 145.35, 105.4, 0.5);
}
.btn-green.disabled, .btn-green:disabled {
  color: #fff;
  background-color: #007E4F;
  border-color: #007E4F;
}
.btn-green:not(:disabled):not(.disabled):active, .btn-green:not(:disabled):not(.disabled).active, .show > .btn-green.dropdown-toggle {
  color: #fff;
  background-color: rgb(0, 75, 47.0238095238);
  border-color: rgb(0, 62.25, 39.0297619048);
}
.btn-green:not(:disabled):not(.disabled):active:focus, .btn-green:not(:disabled):not(.disabled).active:focus, .show > .btn-green.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(38.25, 145.35, 105.4, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(38.25, 145.35, 105.4, 0.5);
}

.btn-outline-primary {
  color: #00DBFF;
  border-color: #00DBFF;
}
.btn-outline-primary:hover {
  color: #212529;
  background-color: #00DBFF;
  border-color: #00DBFF;
}
.btn-outline-primary:focus, .btn-outline-primary.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 219, 255, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(0, 219, 255, 0.5);
}
.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #00DBFF;
  background-color: transparent;
}
.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle {
  color: #212529;
  background-color: #00DBFF;
  border-color: #00DBFF;
}
.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 219, 255, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(0, 219, 255, 0.5);
}

.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}
.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-success {
  color: #007E4F;
  border-color: #007E4F;
}
.btn-outline-success:hover {
  color: #fff;
  background-color: #007E4F;
  border-color: #007E4F;
}
.btn-outline-success:focus, .btn-outline-success.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 126, 79, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(0, 126, 79, 0.5);
}
.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #007E4F;
  background-color: transparent;
}
.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #007E4F;
  border-color: #007E4F;
}
.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 126, 79, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(0, 126, 79, 0.5);
}

.btn-outline-info {
  color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:focus, .btn-outline-info.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}
.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}
.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:focus, .btn-outline-warning.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}
.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}
.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-danger {
  color: #C00418;
  border-color: #C00418;
}
.btn-outline-danger:hover {
  color: #fff;
  background-color: #C00418;
  border-color: #C00418;
}
.btn-outline-danger:focus, .btn-outline-danger.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(192, 4, 24, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(192, 4, 24, 0.5);
}
.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #C00418;
  background-color: transparent;
}
.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #C00418;
  border-color: #C00418;
}
.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-danger.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(192, 4, 24, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(192, 4, 24, 0.5);
}

.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:focus, .btn-outline-light.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}
.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}
.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
  color: #706F6F;
  border-color: #706F6F;
}
.btn-outline-dark:hover {
  color: #fff;
  background-color: #706F6F;
  border-color: #706F6F;
}
.btn-outline-dark:focus, .btn-outline-dark.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(112, 111, 111, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(112, 111, 111, 0.5);
}
.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #706F6F;
  background-color: transparent;
}
.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #706F6F;
  border-color: #706F6F;
}
.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(112, 111, 111, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(112, 111, 111, 0.5);
}

.btn-outline-darkgrey {
  color: #333333;
  border-color: #333333;
}
.btn-outline-darkgrey:hover {
  color: #fff;
  background-color: #333333;
  border-color: #333333;
}
.btn-outline-darkgrey:focus, .btn-outline-darkgrey.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(51, 51, 51, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(51, 51, 51, 0.5);
}
.btn-outline-darkgrey.disabled, .btn-outline-darkgrey:disabled {
  color: #333333;
  background-color: transparent;
}
.btn-outline-darkgrey:not(:disabled):not(.disabled):active, .btn-outline-darkgrey:not(:disabled):not(.disabled).active, .show > .btn-outline-darkgrey.dropdown-toggle {
  color: #fff;
  background-color: #333333;
  border-color: #333333;
}
.btn-outline-darkgrey:not(:disabled):not(.disabled):active:focus, .btn-outline-darkgrey:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-darkgrey.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(51, 51, 51, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(51, 51, 51, 0.5);
}

.btn-outline-darkblue {
  color: #151B30;
  border-color: #151B30;
}
.btn-outline-darkblue:hover {
  color: #fff;
  background-color: #151B30;
  border-color: #151B30;
}
.btn-outline-darkblue:focus, .btn-outline-darkblue.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(21, 27, 48, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(21, 27, 48, 0.5);
}
.btn-outline-darkblue.disabled, .btn-outline-darkblue:disabled {
  color: #151B30;
  background-color: transparent;
}
.btn-outline-darkblue:not(:disabled):not(.disabled):active, .btn-outline-darkblue:not(:disabled):not(.disabled).active, .show > .btn-outline-darkblue.dropdown-toggle {
  color: #fff;
  background-color: #151B30;
  border-color: #151B30;
}
.btn-outline-darkblue:not(:disabled):not(.disabled):active:focus, .btn-outline-darkblue:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-darkblue.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(21, 27, 48, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(21, 27, 48, 0.5);
}

.btn-outline-lightgrey {
  color: #ECECED;
  border-color: #ECECED;
}
.btn-outline-lightgrey:hover {
  color: #212529;
  background-color: #ECECED;
  border-color: #ECECED;
}
.btn-outline-lightgrey:focus, .btn-outline-lightgrey.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(236, 236, 237, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(236, 236, 237, 0.5);
}
.btn-outline-lightgrey.disabled, .btn-outline-lightgrey:disabled {
  color: #ECECED;
  background-color: transparent;
}
.btn-outline-lightgrey:not(:disabled):not(.disabled):active, .btn-outline-lightgrey:not(:disabled):not(.disabled).active, .show > .btn-outline-lightgrey.dropdown-toggle {
  color: #212529;
  background-color: #ECECED;
  border-color: #ECECED;
}
.btn-outline-lightgrey:not(:disabled):not(.disabled):active:focus, .btn-outline-lightgrey:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-lightgrey.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(236, 236, 237, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(236, 236, 237, 0.5);
}

.btn-outline-grey {
  color: #636362;
  border-color: #636362;
}
.btn-outline-grey:hover {
  color: #fff;
  background-color: #636362;
  border-color: #636362;
}
.btn-outline-grey:focus, .btn-outline-grey.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(99, 99, 98, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(99, 99, 98, 0.5);
}
.btn-outline-grey.disabled, .btn-outline-grey:disabled {
  color: #636362;
  background-color: transparent;
}
.btn-outline-grey:not(:disabled):not(.disabled):active, .btn-outline-grey:not(:disabled):not(.disabled).active, .show > .btn-outline-grey.dropdown-toggle {
  color: #fff;
  background-color: #636362;
  border-color: #636362;
}
.btn-outline-grey:not(:disabled):not(.disabled):active:focus, .btn-outline-grey:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-grey.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(99, 99, 98, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(99, 99, 98, 0.5);
}

.btn-outline-orange {
  color: #00DBFF;
  border-color: #00DBFF;
}
.btn-outline-orange:hover {
  color: #212529;
  background-color: #00DBFF;
  border-color: #00DBFF;
}
.btn-outline-orange:focus, .btn-outline-orange.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 219, 255, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(0, 219, 255, 0.5);
}
.btn-outline-orange.disabled, .btn-outline-orange:disabled {
  color: #00DBFF;
  background-color: transparent;
}
.btn-outline-orange:not(:disabled):not(.disabled):active, .btn-outline-orange:not(:disabled):not(.disabled).active, .show > .btn-outline-orange.dropdown-toggle {
  color: #212529;
  background-color: #00DBFF;
  border-color: #00DBFF;
}
.btn-outline-orange:not(:disabled):not(.disabled):active:focus, .btn-outline-orange:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-orange.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 219, 255, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(0, 219, 255, 0.5);
}

.btn-outline-greyergrey {
  color: #707173;
  border-color: #707173;
}
.btn-outline-greyergrey:hover {
  color: #fff;
  background-color: #707173;
  border-color: #707173;
}
.btn-outline-greyergrey:focus, .btn-outline-greyergrey.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(112, 113, 115, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(112, 113, 115, 0.5);
}
.btn-outline-greyergrey.disabled, .btn-outline-greyergrey:disabled {
  color: #707173;
  background-color: transparent;
}
.btn-outline-greyergrey:not(:disabled):not(.disabled):active, .btn-outline-greyergrey:not(:disabled):not(.disabled).active, .show > .btn-outline-greyergrey.dropdown-toggle {
  color: #fff;
  background-color: #707173;
  border-color: #707173;
}
.btn-outline-greyergrey:not(:disabled):not(.disabled):active:focus, .btn-outline-greyergrey:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-greyergrey.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(112, 113, 115, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(112, 113, 115, 0.5);
}

.btn-outline-red {
  color: #C00418;
  border-color: #C00418;
}
.btn-outline-red:hover {
  color: #fff;
  background-color: #C00418;
  border-color: #C00418;
}
.btn-outline-red:focus, .btn-outline-red.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(192, 4, 24, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(192, 4, 24, 0.5);
}
.btn-outline-red.disabled, .btn-outline-red:disabled {
  color: #C00418;
  background-color: transparent;
}
.btn-outline-red:not(:disabled):not(.disabled):active, .btn-outline-red:not(:disabled):not(.disabled).active, .show > .btn-outline-red.dropdown-toggle {
  color: #fff;
  background-color: #C00418;
  border-color: #C00418;
}
.btn-outline-red:not(:disabled):not(.disabled):active:focus, .btn-outline-red:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-red.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(192, 4, 24, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(192, 4, 24, 0.5);
}

.btn-outline-green {
  color: #007E4F;
  border-color: #007E4F;
}
.btn-outline-green:hover {
  color: #fff;
  background-color: #007E4F;
  border-color: #007E4F;
}
.btn-outline-green:focus, .btn-outline-green.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 126, 79, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(0, 126, 79, 0.5);
}
.btn-outline-green.disabled, .btn-outline-green:disabled {
  color: #007E4F;
  background-color: transparent;
}
.btn-outline-green:not(:disabled):not(.disabled):active, .btn-outline-green:not(:disabled):not(.disabled).active, .show > .btn-outline-green.dropdown-toggle {
  color: #fff;
  background-color: #007E4F;
  border-color: #007E4F;
}
.btn-outline-green:not(:disabled):not(.disabled):active:focus, .btn-outline-green:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-green.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 126, 79, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(0, 126, 79, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #00DBFF;
  text-decoration: none;
}
.btn-link:hover {
  color: rgb(0, 153.3, 178.5);
  text-decoration: underline;
}
.btn-link:focus, .btn-link.focus {
  text-decoration: underline;
}
.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

.btn-lg, .btn-group-lg > .btn, #BorlabsCookieBox .btn-group-lg > ._brlbs-btn-accept-all, .has--btn-underline-white .btn-group-lg > .elementor-button, .has--btn-underline .btn-group-lg > .elementor-button, .gform_wrapper .btn-group-lg > .button {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.btn-sm, .btn-group-sm > .btn, #BorlabsCookieBox .btn-group-sm > ._brlbs-btn-accept-all, .has--btn-underline-white .btn-group-sm > .elementor-button, .has--btn-underline .btn-group-sm > .elementor-button, .gform_wrapper .btn-group-sm > .button {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.btn-block {
  display: block;
  width: 100%;
}
.btn-block + .btn-block {
  margin-top: 0.5rem;
}

input[type=submit].btn-block,
input[type=reset].btn-block,
input[type=button].btn-block {
  width: 100%;
}

.fade {
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    -webkit-transition: none;
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    -webkit-transition: none;
    transition: none;
  }
}
.collapsing.width {
  width: 0;
  height: auto;
  -webkit-transition: width 0.35s ease;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing.width {
    -webkit-transition: none;
    transition: none;
  }
}

.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #fff;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 3px;
}

.dropdown-menu-left {
  right: auto;
  left: 0;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

@media (min-width: 320px) {
  .dropdown-menu-xxs-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xxs-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 568px) {
  .dropdown-menu-xs-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xs-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 667px) {
  .dropdown-menu-sm-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 768px) {
  .dropdown-menu-md-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 992px) {
  .dropdown-menu-lg-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1100px) {
  .dropdown-menu-xl-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xxl-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xxl-right {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1500px) {
  .dropdown-menu-xxxl-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xxxl-right {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}
.dropright .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}
.dropleft .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropleft .dropdown-toggle::after {
  display: none;
}
.dropleft .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-menu[x-placement^=top], .dropdown-menu[x-placement^=right], .dropdown-menu[x-placement^=bottom], .dropdown-menu[x-placement^=left] {
  right: auto;
  bottom: auto;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: rgb(21.6283783784, 24.25, 26.8716216216);
  text-decoration: none;
  background-color: #e9ecef;
}
.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #00DBFF;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn, #BorlabsCookieBox .btn-group > ._brlbs-btn-accept-all, .has--btn-underline-white .btn-group > .elementor-button, .has--btn-underline .btn-group > .elementor-button, .gform_wrapper .btn-group > .button,
.btn-group-vertical > .btn,
#BorlabsCookieBox .btn-group-vertical > ._brlbs-btn-accept-all,
.has--btn-underline-white .btn-group-vertical > .elementor-button,
.has--btn-underline .btn-group-vertical > .elementor-button,
.gform_wrapper .btn-group-vertical > .button {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.btn-group > .btn:hover, #BorlabsCookieBox .btn-group > ._brlbs-btn-accept-all:hover, .has--btn-underline-white .btn-group > .elementor-button:hover, .has--btn-underline .btn-group > .elementor-button:hover, .gform_wrapper .btn-group > .button:hover,
.btn-group-vertical > .btn:hover,
#BorlabsCookieBox .btn-group-vertical > ._brlbs-btn-accept-all:hover,
.has--btn-underline-white .btn-group-vertical > .elementor-button:hover,
.has--btn-underline .btn-group-vertical > .elementor-button:hover,
.gform_wrapper .btn-group-vertical > .button:hover {
  z-index: 1;
}
.btn-group > .btn:focus, #BorlabsCookieBox .btn-group > ._brlbs-btn-accept-all:focus, .has--btn-underline-white .btn-group > .elementor-button:focus, .has--btn-underline .btn-group > .elementor-button:focus, .gform_wrapper .btn-group > .button:focus, .btn-group > .btn:active, #BorlabsCookieBox .btn-group > ._brlbs-btn-accept-all:active, .has--btn-underline-white .btn-group > .elementor-button:active, .has--btn-underline .btn-group > .elementor-button:active, .gform_wrapper .btn-group > .button:active, .btn-group > .btn.active, #BorlabsCookieBox .btn-group > .active._brlbs-btn-accept-all, .has--btn-underline-white .btn-group > .active.elementor-button, .has--btn-underline .btn-group > .active.elementor-button, .gform_wrapper .btn-group > .active.button,
.btn-group-vertical > .btn:focus,
#BorlabsCookieBox .btn-group-vertical > ._brlbs-btn-accept-all:focus,
.has--btn-underline-white .btn-group-vertical > .elementor-button:focus,
.has--btn-underline .btn-group-vertical > .elementor-button:focus,
.gform_wrapper .btn-group-vertical > .button:focus,
.btn-group-vertical > .btn:active,
#BorlabsCookieBox .btn-group-vertical > ._brlbs-btn-accept-all:active,
.has--btn-underline-white .btn-group-vertical > .elementor-button:active,
.has--btn-underline .btn-group-vertical > .elementor-button:active,
.gform_wrapper .btn-group-vertical > .button:active,
.btn-group-vertical > .btn.active,
#BorlabsCookieBox .btn-group-vertical > .active._brlbs-btn-accept-all,
.has--btn-underline-white .btn-group-vertical > .active.elementor-button,
.has--btn-underline .btn-group-vertical > .active.elementor-button,
.gform_wrapper .btn-group-vertical > .active.button {
  z-index: 1;
}

.btn-toolbar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:not(:first-child), #BorlabsCookieBox .btn-group > ._brlbs-btn-accept-all:not(:first-child), .has--btn-underline-white .btn-group > .elementor-button:not(:first-child), .has--btn-underline .btn-group > .elementor-button:not(:first-child), .gform_wrapper .btn-group > .button:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle), #BorlabsCookieBox .btn-group > ._brlbs-btn-accept-all:not(:last-child):not(.dropdown-toggle), .has--btn-underline-white .btn-group > .elementor-button:not(:last-child):not(.dropdown-toggle), .has--btn-underline .btn-group > .elementor-button:not(:last-child):not(.dropdown-toggle), .gform_wrapper .btn-group > .button:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn,
#BorlabsCookieBox .btn-group > .btn-group:not(:last-child) > ._brlbs-btn-accept-all,
.has--btn-underline-white .btn-group > .btn-group:not(:last-child) > .elementor-button,
.has--btn-underline .btn-group > .btn-group:not(:last-child) > .elementor-button,
.gform_wrapper .btn-group > .btn-group:not(:last-child) > .button {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:not(:first-child), #BorlabsCookieBox .btn-group > ._brlbs-btn-accept-all:not(:first-child), .has--btn-underline-white .btn-group > .elementor-button:not(:first-child), .has--btn-underline .btn-group > .elementor-button:not(:first-child), .gform_wrapper .btn-group > .button:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn,
#BorlabsCookieBox .btn-group > .btn-group:not(:first-child) > ._brlbs-btn-accept-all,
.has--btn-underline-white .btn-group > .btn-group:not(:first-child) > .elementor-button,
.has--btn-underline .btn-group > .btn-group:not(:first-child) > .elementor-button,
.gform_wrapper .btn-group > .btn-group:not(:first-child) > .button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}
.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropright .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropleft .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split, #BorlabsCookieBox .btn-group-sm > ._brlbs-btn-accept-all + .dropdown-toggle-split, .has--btn-underline-white .btn-group-sm > .elementor-button + .dropdown-toggle-split, .has--btn-underline .btn-group-sm > .elementor-button + .dropdown-toggle-split, .gform_wrapper .btn-group-sm > .button + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split, #BorlabsCookieBox .btn-group-lg > ._brlbs-btn-accept-all + .dropdown-toggle-split, .has--btn-underline-white .btn-group-lg > .elementor-button + .dropdown-toggle-split, .has--btn-underline .btn-group-lg > .elementor-button + .dropdown-toggle-split, .gform_wrapper .btn-group-lg > .button + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn-group-vertical > .btn, #BorlabsCookieBox .btn-group-vertical > ._brlbs-btn-accept-all, .has--btn-underline-white .btn-group-vertical > .elementor-button, .has--btn-underline .btn-group-vertical > .elementor-button, .gform_wrapper .btn-group-vertical > .button,
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn:not(:first-child), #BorlabsCookieBox .btn-group-vertical > ._brlbs-btn-accept-all:not(:first-child), .has--btn-underline-white .btn-group-vertical > .elementor-button:not(:first-child), .has--btn-underline .btn-group-vertical > .elementor-button:not(:first-child), .gform_wrapper .btn-group-vertical > .button:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), #BorlabsCookieBox .btn-group-vertical > ._brlbs-btn-accept-all:not(:last-child):not(.dropdown-toggle), .has--btn-underline-white .btn-group-vertical > .elementor-button:not(:last-child):not(.dropdown-toggle), .has--btn-underline .btn-group-vertical > .elementor-button:not(:last-child):not(.dropdown-toggle), .gform_wrapper .btn-group-vertical > .button:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn,
#BorlabsCookieBox .btn-group-vertical > .btn-group:not(:last-child) > ._brlbs-btn-accept-all,
.has--btn-underline-white .btn-group-vertical > .btn-group:not(:last-child) > .elementor-button,
.has--btn-underline .btn-group-vertical > .btn-group:not(:last-child) > .elementor-button,
.gform_wrapper .btn-group-vertical > .btn-group:not(:last-child) > .button {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:not(:first-child), #BorlabsCookieBox .btn-group-vertical > ._brlbs-btn-accept-all:not(:first-child), .has--btn-underline-white .btn-group-vertical > .elementor-button:not(:first-child), .has--btn-underline .btn-group-vertical > .elementor-button:not(:first-child), .gform_wrapper .btn-group-vertical > .button:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn,
#BorlabsCookieBox .btn-group-vertical > .btn-group:not(:first-child) > ._brlbs-btn-accept-all,
.has--btn-underline-white .btn-group-vertical > .btn-group:not(:first-child) > .elementor-button,
.has--btn-underline .btn-group-vertical > .btn-group:not(:first-child) > .elementor-button,
.gform_wrapper .btn-group-vertical > .btn-group:not(:first-child) > .button {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn-group-toggle > .btn, #BorlabsCookieBox .btn-group-toggle > ._brlbs-btn-accept-all, .has--btn-underline-white .btn-group-toggle > .elementor-button, .has--btn-underline .btn-group-toggle > .elementor-button, .gform_wrapper .btn-group-toggle > .button,
.btn-group-toggle > .btn-group > .btn,
#BorlabsCookieBox .btn-group-toggle > .btn-group > ._brlbs-btn-accept-all,
.has--btn-underline-white .btn-group-toggle > .btn-group > .elementor-button,
.has--btn-underline .btn-group-toggle > .btn-group > .elementor-button,
.gform_wrapper .btn-group-toggle > .btn-group > .button {
  margin-bottom: 0;
}
.btn-group-toggle > .btn input[type=radio], #BorlabsCookieBox .btn-group-toggle > ._brlbs-btn-accept-all input[type=radio], .has--btn-underline-white .btn-group-toggle > .elementor-button input[type=radio], .has--btn-underline .btn-group-toggle > .elementor-button input[type=radio], .gform_wrapper .btn-group-toggle > .button input[type=radio],
.btn-group-toggle > .btn input[type=checkbox],
#BorlabsCookieBox .btn-group-toggle > ._brlbs-btn-accept-all input[type=checkbox],
.has--btn-underline-white .btn-group-toggle > .elementor-button input[type=checkbox],
.has--btn-underline .btn-group-toggle > .elementor-button input[type=checkbox],
.gform_wrapper .btn-group-toggle > .button input[type=checkbox],
.btn-group-toggle > .btn-group > .btn input[type=radio],
#BorlabsCookieBox .btn-group-toggle > .btn-group > ._brlbs-btn-accept-all input[type=radio],
.has--btn-underline-white .btn-group-toggle > .btn-group > .elementor-button input[type=radio],
.has--btn-underline .btn-group-toggle > .btn-group > .elementor-button input[type=radio],
.gform_wrapper .btn-group-toggle > .btn-group > .button input[type=radio],
.btn-group-toggle > .btn-group > .btn input[type=checkbox],
#BorlabsCookieBox .btn-group-toggle > .btn-group > ._brlbs-btn-accept-all input[type=checkbox],
.has--btn-underline-white .btn-group-toggle > .btn-group > .elementor-button input[type=checkbox],
.has--btn-underline .btn-group-toggle > .btn-group > .elementor-button input[type=checkbox],
.gform_wrapper .btn-group-toggle > .btn-group > .button input[type=checkbox] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.input-group {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}
.input-group > .form-control, .gform_wrapper .input-group > input[type=email],
.gform_wrapper .input-group > input[type=date],
.gform_wrapper .input-group > input[type=datetime],
.gform_wrapper .input-group > input[type=datetime-local],
.gform_wrapper .input-group > input[type=month],
.gform_wrapper .input-group > input[type=number],
.gform_wrapper .input-group > input[type=password],
.gform_wrapper .input-group > input[type=search],
.gform_wrapper .input-group > input[type=tel],
.gform_wrapper .input-group > input[type=text],
.gform_wrapper .input-group > input[type=time],
.gform_wrapper .input-group > input[type=week],
.gform_wrapper .input-group > input[type=url],
.gform_wrapper .input-group > select,
.gform_wrapper .input-group > textarea,
.input-group > .form-control-plaintext,
.input-group > .custom-select,
.input-group > .custom-file {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  margin-bottom: 0;
}
.input-group > .form-control + .form-control, .gform_wrapper .input-group > input[type=email] + .form-control,
.gform_wrapper .input-group > input[type=date] + .form-control,
.gform_wrapper .input-group > input[type=datetime] + .form-control,
.gform_wrapper .input-group > input[type=datetime-local] + .form-control,
.gform_wrapper .input-group > input[type=month] + .form-control,
.gform_wrapper .input-group > input[type=number] + .form-control,
.gform_wrapper .input-group > input[type=password] + .form-control,
.gform_wrapper .input-group > input[type=search] + .form-control,
.gform_wrapper .input-group > input[type=tel] + .form-control,
.gform_wrapper .input-group > input[type=text] + .form-control,
.gform_wrapper .input-group > input[type=time] + .form-control,
.gform_wrapper .input-group > input[type=week] + .form-control,
.gform_wrapper .input-group > input[type=url] + .form-control,
.gform_wrapper .input-group > select + .form-control,
.gform_wrapper .input-group > textarea + .form-control, .gform_wrapper .input-group > .form-control + input[type=email], .gform_wrapper .input-group > input[type=email] + input[type=email],
.gform_wrapper .input-group > input[type=date] + input[type=email],
.gform_wrapper .input-group > input[type=datetime] + input[type=email],
.gform_wrapper .input-group > input[type=datetime-local] + input[type=email],
.gform_wrapper .input-group > input[type=month] + input[type=email],
.gform_wrapper .input-group > input[type=number] + input[type=email],
.gform_wrapper .input-group > input[type=password] + input[type=email],
.gform_wrapper .input-group > input[type=search] + input[type=email],
.gform_wrapper .input-group > input[type=tel] + input[type=email],
.gform_wrapper .input-group > input[type=text] + input[type=email],
.gform_wrapper .input-group > input[type=time] + input[type=email],
.gform_wrapper .input-group > input[type=week] + input[type=email],
.gform_wrapper .input-group > input[type=url] + input[type=email],
.gform_wrapper .input-group > select + input[type=email],
.gform_wrapper .input-group > textarea + input[type=email],
.gform_wrapper .input-group > .form-control + input[type=date],
.gform_wrapper .input-group > input[type=email] + input[type=date],
.gform_wrapper .input-group > input[type=date] + input[type=date],
.gform_wrapper .input-group > input[type=datetime] + input[type=date],
.gform_wrapper .input-group > input[type=datetime-local] + input[type=date],
.gform_wrapper .input-group > input[type=month] + input[type=date],
.gform_wrapper .input-group > input[type=number] + input[type=date],
.gform_wrapper .input-group > input[type=password] + input[type=date],
.gform_wrapper .input-group > input[type=search] + input[type=date],
.gform_wrapper .input-group > input[type=tel] + input[type=date],
.gform_wrapper .input-group > input[type=text] + input[type=date],
.gform_wrapper .input-group > input[type=time] + input[type=date],
.gform_wrapper .input-group > input[type=week] + input[type=date],
.gform_wrapper .input-group > input[type=url] + input[type=date],
.gform_wrapper .input-group > select + input[type=date],
.gform_wrapper .input-group > textarea + input[type=date],
.gform_wrapper .input-group > .form-control + input[type=datetime],
.gform_wrapper .input-group > input[type=email] + input[type=datetime],
.gform_wrapper .input-group > input[type=date] + input[type=datetime],
.gform_wrapper .input-group > input[type=datetime] + input[type=datetime],
.gform_wrapper .input-group > input[type=datetime-local] + input[type=datetime],
.gform_wrapper .input-group > input[type=month] + input[type=datetime],
.gform_wrapper .input-group > input[type=number] + input[type=datetime],
.gform_wrapper .input-group > input[type=password] + input[type=datetime],
.gform_wrapper .input-group > input[type=search] + input[type=datetime],
.gform_wrapper .input-group > input[type=tel] + input[type=datetime],
.gform_wrapper .input-group > input[type=text] + input[type=datetime],
.gform_wrapper .input-group > input[type=time] + input[type=datetime],
.gform_wrapper .input-group > input[type=week] + input[type=datetime],
.gform_wrapper .input-group > input[type=url] + input[type=datetime],
.gform_wrapper .input-group > select + input[type=datetime],
.gform_wrapper .input-group > textarea + input[type=datetime],
.gform_wrapper .input-group > .form-control + input[type=datetime-local],
.gform_wrapper .input-group > input[type=email] + input[type=datetime-local],
.gform_wrapper .input-group > input[type=date] + input[type=datetime-local],
.gform_wrapper .input-group > input[type=datetime] + input[type=datetime-local],
.gform_wrapper .input-group > input[type=datetime-local] + input[type=datetime-local],
.gform_wrapper .input-group > input[type=month] + input[type=datetime-local],
.gform_wrapper .input-group > input[type=number] + input[type=datetime-local],
.gform_wrapper .input-group > input[type=password] + input[type=datetime-local],
.gform_wrapper .input-group > input[type=search] + input[type=datetime-local],
.gform_wrapper .input-group > input[type=tel] + input[type=datetime-local],
.gform_wrapper .input-group > input[type=text] + input[type=datetime-local],
.gform_wrapper .input-group > input[type=time] + input[type=datetime-local],
.gform_wrapper .input-group > input[type=week] + input[type=datetime-local],
.gform_wrapper .input-group > input[type=url] + input[type=datetime-local],
.gform_wrapper .input-group > select + input[type=datetime-local],
.gform_wrapper .input-group > textarea + input[type=datetime-local],
.gform_wrapper .input-group > .form-control + input[type=month],
.gform_wrapper .input-group > input[type=email] + input[type=month],
.gform_wrapper .input-group > input[type=date] + input[type=month],
.gform_wrapper .input-group > input[type=datetime] + input[type=month],
.gform_wrapper .input-group > input[type=datetime-local] + input[type=month],
.gform_wrapper .input-group > input[type=month] + input[type=month],
.gform_wrapper .input-group > input[type=number] + input[type=month],
.gform_wrapper .input-group > input[type=password] + input[type=month],
.gform_wrapper .input-group > input[type=search] + input[type=month],
.gform_wrapper .input-group > input[type=tel] + input[type=month],
.gform_wrapper .input-group > input[type=text] + input[type=month],
.gform_wrapper .input-group > input[type=time] + input[type=month],
.gform_wrapper .input-group > input[type=week] + input[type=month],
.gform_wrapper .input-group > input[type=url] + input[type=month],
.gform_wrapper .input-group > select + input[type=month],
.gform_wrapper .input-group > textarea + input[type=month],
.gform_wrapper .input-group > .form-control + input[type=number],
.gform_wrapper .input-group > input[type=email] + input[type=number],
.gform_wrapper .input-group > input[type=date] + input[type=number],
.gform_wrapper .input-group > input[type=datetime] + input[type=number],
.gform_wrapper .input-group > input[type=datetime-local] + input[type=number],
.gform_wrapper .input-group > input[type=month] + input[type=number],
.gform_wrapper .input-group > input[type=number] + input[type=number],
.gform_wrapper .input-group > input[type=password] + input[type=number],
.gform_wrapper .input-group > input[type=search] + input[type=number],
.gform_wrapper .input-group > input[type=tel] + input[type=number],
.gform_wrapper .input-group > input[type=text] + input[type=number],
.gform_wrapper .input-group > input[type=time] + input[type=number],
.gform_wrapper .input-group > input[type=week] + input[type=number],
.gform_wrapper .input-group > input[type=url] + input[type=number],
.gform_wrapper .input-group > select + input[type=number],
.gform_wrapper .input-group > textarea + input[type=number],
.gform_wrapper .input-group > .form-control + input[type=password],
.gform_wrapper .input-group > input[type=email] + input[type=password],
.gform_wrapper .input-group > input[type=date] + input[type=password],
.gform_wrapper .input-group > input[type=datetime] + input[type=password],
.gform_wrapper .input-group > input[type=datetime-local] + input[type=password],
.gform_wrapper .input-group > input[type=month] + input[type=password],
.gform_wrapper .input-group > input[type=number] + input[type=password],
.gform_wrapper .input-group > input[type=password] + input[type=password],
.gform_wrapper .input-group > input[type=search] + input[type=password],
.gform_wrapper .input-group > input[type=tel] + input[type=password],
.gform_wrapper .input-group > input[type=text] + input[type=password],
.gform_wrapper .input-group > input[type=time] + input[type=password],
.gform_wrapper .input-group > input[type=week] + input[type=password],
.gform_wrapper .input-group > input[type=url] + input[type=password],
.gform_wrapper .input-group > select + input[type=password],
.gform_wrapper .input-group > textarea + input[type=password],
.gform_wrapper .input-group > .form-control + input[type=search],
.gform_wrapper .input-group > input[type=email] + input[type=search],
.gform_wrapper .input-group > input[type=date] + input[type=search],
.gform_wrapper .input-group > input[type=datetime] + input[type=search],
.gform_wrapper .input-group > input[type=datetime-local] + input[type=search],
.gform_wrapper .input-group > input[type=month] + input[type=search],
.gform_wrapper .input-group > input[type=number] + input[type=search],
.gform_wrapper .input-group > input[type=password] + input[type=search],
.gform_wrapper .input-group > input[type=search] + input[type=search],
.gform_wrapper .input-group > input[type=tel] + input[type=search],
.gform_wrapper .input-group > input[type=text] + input[type=search],
.gform_wrapper .input-group > input[type=time] + input[type=search],
.gform_wrapper .input-group > input[type=week] + input[type=search],
.gform_wrapper .input-group > input[type=url] + input[type=search],
.gform_wrapper .input-group > select + input[type=search],
.gform_wrapper .input-group > textarea + input[type=search],
.gform_wrapper .input-group > .form-control + input[type=tel],
.gform_wrapper .input-group > input[type=email] + input[type=tel],
.gform_wrapper .input-group > input[type=date] + input[type=tel],
.gform_wrapper .input-group > input[type=datetime] + input[type=tel],
.gform_wrapper .input-group > input[type=datetime-local] + input[type=tel],
.gform_wrapper .input-group > input[type=month] + input[type=tel],
.gform_wrapper .input-group > input[type=number] + input[type=tel],
.gform_wrapper .input-group > input[type=password] + input[type=tel],
.gform_wrapper .input-group > input[type=search] + input[type=tel],
.gform_wrapper .input-group > input[type=tel] + input[type=tel],
.gform_wrapper .input-group > input[type=text] + input[type=tel],
.gform_wrapper .input-group > input[type=time] + input[type=tel],
.gform_wrapper .input-group > input[type=week] + input[type=tel],
.gform_wrapper .input-group > input[type=url] + input[type=tel],
.gform_wrapper .input-group > select + input[type=tel],
.gform_wrapper .input-group > textarea + input[type=tel],
.gform_wrapper .input-group > .form-control + input[type=text],
.gform_wrapper .input-group > input[type=email] + input[type=text],
.gform_wrapper .input-group > input[type=date] + input[type=text],
.gform_wrapper .input-group > input[type=datetime] + input[type=text],
.gform_wrapper .input-group > input[type=datetime-local] + input[type=text],
.gform_wrapper .input-group > input[type=month] + input[type=text],
.gform_wrapper .input-group > input[type=number] + input[type=text],
.gform_wrapper .input-group > input[type=password] + input[type=text],
.gform_wrapper .input-group > input[type=search] + input[type=text],
.gform_wrapper .input-group > input[type=tel] + input[type=text],
.gform_wrapper .input-group > input[type=text] + input[type=text],
.gform_wrapper .input-group > input[type=time] + input[type=text],
.gform_wrapper .input-group > input[type=week] + input[type=text],
.gform_wrapper .input-group > input[type=url] + input[type=text],
.gform_wrapper .input-group > select + input[type=text],
.gform_wrapper .input-group > textarea + input[type=text],
.gform_wrapper .input-group > .form-control + input[type=time],
.gform_wrapper .input-group > input[type=email] + input[type=time],
.gform_wrapper .input-group > input[type=date] + input[type=time],
.gform_wrapper .input-group > input[type=datetime] + input[type=time],
.gform_wrapper .input-group > input[type=datetime-local] + input[type=time],
.gform_wrapper .input-group > input[type=month] + input[type=time],
.gform_wrapper .input-group > input[type=number] + input[type=time],
.gform_wrapper .input-group > input[type=password] + input[type=time],
.gform_wrapper .input-group > input[type=search] + input[type=time],
.gform_wrapper .input-group > input[type=tel] + input[type=time],
.gform_wrapper .input-group > input[type=text] + input[type=time],
.gform_wrapper .input-group > input[type=time] + input[type=time],
.gform_wrapper .input-group > input[type=week] + input[type=time],
.gform_wrapper .input-group > input[type=url] + input[type=time],
.gform_wrapper .input-group > select + input[type=time],
.gform_wrapper .input-group > textarea + input[type=time],
.gform_wrapper .input-group > .form-control + input[type=week],
.gform_wrapper .input-group > input[type=email] + input[type=week],
.gform_wrapper .input-group > input[type=date] + input[type=week],
.gform_wrapper .input-group > input[type=datetime] + input[type=week],
.gform_wrapper .input-group > input[type=datetime-local] + input[type=week],
.gform_wrapper .input-group > input[type=month] + input[type=week],
.gform_wrapper .input-group > input[type=number] + input[type=week],
.gform_wrapper .input-group > input[type=password] + input[type=week],
.gform_wrapper .input-group > input[type=search] + input[type=week],
.gform_wrapper .input-group > input[type=tel] + input[type=week],
.gform_wrapper .input-group > input[type=text] + input[type=week],
.gform_wrapper .input-group > input[type=time] + input[type=week],
.gform_wrapper .input-group > input[type=week] + input[type=week],
.gform_wrapper .input-group > input[type=url] + input[type=week],
.gform_wrapper .input-group > select + input[type=week],
.gform_wrapper .input-group > textarea + input[type=week],
.gform_wrapper .input-group > .form-control + input[type=url],
.gform_wrapper .input-group > input[type=email] + input[type=url],
.gform_wrapper .input-group > input[type=date] + input[type=url],
.gform_wrapper .input-group > input[type=datetime] + input[type=url],
.gform_wrapper .input-group > input[type=datetime-local] + input[type=url],
.gform_wrapper .input-group > input[type=month] + input[type=url],
.gform_wrapper .input-group > input[type=number] + input[type=url],
.gform_wrapper .input-group > input[type=password] + input[type=url],
.gform_wrapper .input-group > input[type=search] + input[type=url],
.gform_wrapper .input-group > input[type=tel] + input[type=url],
.gform_wrapper .input-group > input[type=text] + input[type=url],
.gform_wrapper .input-group > input[type=time] + input[type=url],
.gform_wrapper .input-group > input[type=week] + input[type=url],
.gform_wrapper .input-group > input[type=url] + input[type=url],
.gform_wrapper .input-group > select + input[type=url],
.gform_wrapper .input-group > textarea + input[type=url],
.gform_wrapper .input-group > .form-control + select,
.gform_wrapper .input-group > input[type=email] + select,
.gform_wrapper .input-group > input[type=date] + select,
.gform_wrapper .input-group > input[type=datetime] + select,
.gform_wrapper .input-group > input[type=datetime-local] + select,
.gform_wrapper .input-group > input[type=month] + select,
.gform_wrapper .input-group > input[type=number] + select,
.gform_wrapper .input-group > input[type=password] + select,
.gform_wrapper .input-group > input[type=search] + select,
.gform_wrapper .input-group > input[type=tel] + select,
.gform_wrapper .input-group > input[type=text] + select,
.gform_wrapper .input-group > input[type=time] + select,
.gform_wrapper .input-group > input[type=week] + select,
.gform_wrapper .input-group > input[type=url] + select,
.gform_wrapper .input-group > select + select,
.gform_wrapper .input-group > textarea + select,
.gform_wrapper .input-group > .form-control + textarea,
.gform_wrapper .input-group > input[type=email] + textarea,
.gform_wrapper .input-group > input[type=date] + textarea,
.gform_wrapper .input-group > input[type=datetime] + textarea,
.gform_wrapper .input-group > input[type=datetime-local] + textarea,
.gform_wrapper .input-group > input[type=month] + textarea,
.gform_wrapper .input-group > input[type=number] + textarea,
.gform_wrapper .input-group > input[type=password] + textarea,
.gform_wrapper .input-group > input[type=search] + textarea,
.gform_wrapper .input-group > input[type=tel] + textarea,
.gform_wrapper .input-group > input[type=text] + textarea,
.gform_wrapper .input-group > input[type=time] + textarea,
.gform_wrapper .input-group > input[type=week] + textarea,
.gform_wrapper .input-group > input[type=url] + textarea,
.gform_wrapper .input-group > select + textarea,
.gform_wrapper .input-group > textarea + textarea,
.input-group > .form-control + .custom-select,
.gform_wrapper .input-group > input[type=email] + .custom-select,
.gform_wrapper .input-group > input[type=date] + .custom-select,
.gform_wrapper .input-group > input[type=datetime] + .custom-select,
.gform_wrapper .input-group > input[type=datetime-local] + .custom-select,
.gform_wrapper .input-group > input[type=month] + .custom-select,
.gform_wrapper .input-group > input[type=number] + .custom-select,
.gform_wrapper .input-group > input[type=password] + .custom-select,
.gform_wrapper .input-group > input[type=search] + .custom-select,
.gform_wrapper .input-group > input[type=tel] + .custom-select,
.gform_wrapper .input-group > input[type=text] + .custom-select,
.gform_wrapper .input-group > input[type=time] + .custom-select,
.gform_wrapper .input-group > input[type=week] + .custom-select,
.gform_wrapper .input-group > input[type=url] + .custom-select,
.gform_wrapper .input-group > select + .custom-select,
.gform_wrapper .input-group > textarea + .custom-select,
.input-group > .form-control + .custom-file,
.gform_wrapper .input-group > input[type=email] + .custom-file,
.gform_wrapper .input-group > input[type=date] + .custom-file,
.gform_wrapper .input-group > input[type=datetime] + .custom-file,
.gform_wrapper .input-group > input[type=datetime-local] + .custom-file,
.gform_wrapper .input-group > input[type=month] + .custom-file,
.gform_wrapper .input-group > input[type=number] + .custom-file,
.gform_wrapper .input-group > input[type=password] + .custom-file,
.gform_wrapper .input-group > input[type=search] + .custom-file,
.gform_wrapper .input-group > input[type=tel] + .custom-file,
.gform_wrapper .input-group > input[type=text] + .custom-file,
.gform_wrapper .input-group > input[type=time] + .custom-file,
.gform_wrapper .input-group > input[type=week] + .custom-file,
.gform_wrapper .input-group > input[type=url] + .custom-file,
.gform_wrapper .input-group > select + .custom-file,
.gform_wrapper .input-group > textarea + .custom-file,
.input-group > .form-control-plaintext + .form-control,
.gform_wrapper .input-group > .form-control-plaintext + input[type=email],
.gform_wrapper .input-group > .form-control-plaintext + input[type=date],
.gform_wrapper .input-group > .form-control-plaintext + input[type=datetime],
.gform_wrapper .input-group > .form-control-plaintext + input[type=datetime-local],
.gform_wrapper .input-group > .form-control-plaintext + input[type=month],
.gform_wrapper .input-group > .form-control-plaintext + input[type=number],
.gform_wrapper .input-group > .form-control-plaintext + input[type=password],
.gform_wrapper .input-group > .form-control-plaintext + input[type=search],
.gform_wrapper .input-group > .form-control-plaintext + input[type=tel],
.gform_wrapper .input-group > .form-control-plaintext + input[type=text],
.gform_wrapper .input-group > .form-control-plaintext + input[type=time],
.gform_wrapper .input-group > .form-control-plaintext + input[type=week],
.gform_wrapper .input-group > .form-control-plaintext + input[type=url],
.gform_wrapper .input-group > .form-control-plaintext + select,
.gform_wrapper .input-group > .form-control-plaintext + textarea,
.input-group > .form-control-plaintext + .custom-select,
.input-group > .form-control-plaintext + .custom-file,
.input-group > .custom-select + .form-control,
.gform_wrapper .input-group > .custom-select + input[type=email],
.gform_wrapper .input-group > .custom-select + input[type=date],
.gform_wrapper .input-group > .custom-select + input[type=datetime],
.gform_wrapper .input-group > .custom-select + input[type=datetime-local],
.gform_wrapper .input-group > .custom-select + input[type=month],
.gform_wrapper .input-group > .custom-select + input[type=number],
.gform_wrapper .input-group > .custom-select + input[type=password],
.gform_wrapper .input-group > .custom-select + input[type=search],
.gform_wrapper .input-group > .custom-select + input[type=tel],
.gform_wrapper .input-group > .custom-select + input[type=text],
.gform_wrapper .input-group > .custom-select + input[type=time],
.gform_wrapper .input-group > .custom-select + input[type=week],
.gform_wrapper .input-group > .custom-select + input[type=url],
.gform_wrapper .input-group > .custom-select + select,
.gform_wrapper .input-group > .custom-select + textarea,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.gform_wrapper .input-group > .custom-file + input[type=email],
.gform_wrapper .input-group > .custom-file + input[type=date],
.gform_wrapper .input-group > .custom-file + input[type=datetime],
.gform_wrapper .input-group > .custom-file + input[type=datetime-local],
.gform_wrapper .input-group > .custom-file + input[type=month],
.gform_wrapper .input-group > .custom-file + input[type=number],
.gform_wrapper .input-group > .custom-file + input[type=password],
.gform_wrapper .input-group > .custom-file + input[type=search],
.gform_wrapper .input-group > .custom-file + input[type=tel],
.gform_wrapper .input-group > .custom-file + input[type=text],
.gform_wrapper .input-group > .custom-file + input[type=time],
.gform_wrapper .input-group > .custom-file + input[type=week],
.gform_wrapper .input-group > .custom-file + input[type=url],
.gform_wrapper .input-group > .custom-file + select,
.gform_wrapper .input-group > .custom-file + textarea,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
  margin-left: -1px;
}
.input-group > .form-control:focus, .gform_wrapper .input-group > input[type=email]:focus,
.gform_wrapper .input-group > input[type=date]:focus,
.gform_wrapper .input-group > input[type=datetime]:focus,
.gform_wrapper .input-group > input[type=datetime-local]:focus,
.gform_wrapper .input-group > input[type=month]:focus,
.gform_wrapper .input-group > input[type=number]:focus,
.gform_wrapper .input-group > input[type=password]:focus,
.gform_wrapper .input-group > input[type=search]:focus,
.gform_wrapper .input-group > input[type=tel]:focus,
.gform_wrapper .input-group > input[type=text]:focus,
.gform_wrapper .input-group > input[type=time]:focus,
.gform_wrapper .input-group > input[type=week]:focus,
.gform_wrapper .input-group > input[type=url]:focus,
.gform_wrapper .input-group > select:focus,
.gform_wrapper .input-group > textarea:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  z-index: 3;
}
.input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}
.input-group > .form-control:not(:first-child), .gform_wrapper .input-group > input[type=email]:not(:first-child),
.gform_wrapper .input-group > input[type=date]:not(:first-child),
.gform_wrapper .input-group > input[type=datetime]:not(:first-child),
.gform_wrapper .input-group > input[type=datetime-local]:not(:first-child),
.gform_wrapper .input-group > input[type=month]:not(:first-child),
.gform_wrapper .input-group > input[type=number]:not(:first-child),
.gform_wrapper .input-group > input[type=password]:not(:first-child),
.gform_wrapper .input-group > input[type=search]:not(:first-child),
.gform_wrapper .input-group > input[type=tel]:not(:first-child),
.gform_wrapper .input-group > input[type=text]:not(:first-child),
.gform_wrapper .input-group > input[type=time]:not(:first-child),
.gform_wrapper .input-group > input[type=week]:not(:first-child),
.gform_wrapper .input-group > input[type=url]:not(:first-child),
.gform_wrapper .input-group > select:not(:first-child),
.gform_wrapper .input-group > textarea:not(:first-child),
.input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group > .custom-file {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.input-group > .custom-file:not(:last-child) .custom-file-label, .input-group > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.input-group:not(.has-validation) > .form-control:not(:last-child), .gform_wrapper .input-group:not(.has-validation) > input[type=email]:not(:last-child),
.gform_wrapper .input-group:not(.has-validation) > input[type=date]:not(:last-child),
.gform_wrapper .input-group:not(.has-validation) > input[type=datetime]:not(:last-child),
.gform_wrapper .input-group:not(.has-validation) > input[type=datetime-local]:not(:last-child),
.gform_wrapper .input-group:not(.has-validation) > input[type=month]:not(:last-child),
.gform_wrapper .input-group:not(.has-validation) > input[type=number]:not(:last-child),
.gform_wrapper .input-group:not(.has-validation) > input[type=password]:not(:last-child),
.gform_wrapper .input-group:not(.has-validation) > input[type=search]:not(:last-child),
.gform_wrapper .input-group:not(.has-validation) > input[type=tel]:not(:last-child),
.gform_wrapper .input-group:not(.has-validation) > input[type=text]:not(:last-child),
.gform_wrapper .input-group:not(.has-validation) > input[type=time]:not(:last-child),
.gform_wrapper .input-group:not(.has-validation) > input[type=week]:not(:last-child),
.gform_wrapper .input-group:not(.has-validation) > input[type=url]:not(:last-child),
.gform_wrapper .input-group:not(.has-validation) > select:not(:last-child),
.gform_wrapper .input-group:not(.has-validation) > textarea:not(:last-child),
.input-group:not(.has-validation) > .custom-select:not(:last-child),
.input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label,
.input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group.has-validation > .form-control:nth-last-child(n+3), .gform_wrapper .input-group.has-validation > input[type=email]:nth-last-child(n+3),
.gform_wrapper .input-group.has-validation > input[type=date]:nth-last-child(n+3),
.gform_wrapper .input-group.has-validation > input[type=datetime]:nth-last-child(n+3),
.gform_wrapper .input-group.has-validation > input[type=datetime-local]:nth-last-child(n+3),
.gform_wrapper .input-group.has-validation > input[type=month]:nth-last-child(n+3),
.gform_wrapper .input-group.has-validation > input[type=number]:nth-last-child(n+3),
.gform_wrapper .input-group.has-validation > input[type=password]:nth-last-child(n+3),
.gform_wrapper .input-group.has-validation > input[type=search]:nth-last-child(n+3),
.gform_wrapper .input-group.has-validation > input[type=tel]:nth-last-child(n+3),
.gform_wrapper .input-group.has-validation > input[type=text]:nth-last-child(n+3),
.gform_wrapper .input-group.has-validation > input[type=time]:nth-last-child(n+3),
.gform_wrapper .input-group.has-validation > input[type=week]:nth-last-child(n+3),
.gform_wrapper .input-group.has-validation > input[type=url]:nth-last-child(n+3),
.gform_wrapper .input-group.has-validation > select:nth-last-child(n+3),
.gform_wrapper .input-group.has-validation > textarea:nth-last-child(n+3),
.input-group.has-validation > .custom-select:nth-last-child(n+3),
.input-group.has-validation > .custom-file:nth-last-child(n+3) .custom-file-label,
.input-group.has-validation > .custom-file:nth-last-child(n+3) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group-prepend,
.input-group-append {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.input-group-prepend .btn, .input-group-prepend #BorlabsCookieBox ._brlbs-btn-accept-all, #BorlabsCookieBox .input-group-prepend ._brlbs-btn-accept-all, .input-group-prepend .has--btn-underline-white .elementor-button, .has--btn-underline-white .input-group-prepend .elementor-button, .input-group-prepend .has--btn-underline .elementor-button, .has--btn-underline .input-group-prepend .elementor-button, .input-group-prepend .gform_wrapper .button, .gform_wrapper .input-group-prepend .button,
.input-group-append .btn,
.input-group-append #BorlabsCookieBox ._brlbs-btn-accept-all,
#BorlabsCookieBox .input-group-append ._brlbs-btn-accept-all,
.input-group-append .has--btn-underline-white .elementor-button,
.has--btn-underline-white .input-group-append .elementor-button,
.input-group-append .has--btn-underline .elementor-button,
.has--btn-underline .input-group-append .elementor-button,
.input-group-append .gform_wrapper .button,
.gform_wrapper .input-group-append .button {
  position: relative;
  z-index: 2;
}
.input-group-prepend .btn:focus, .input-group-prepend #BorlabsCookieBox ._brlbs-btn-accept-all:focus, #BorlabsCookieBox .input-group-prepend ._brlbs-btn-accept-all:focus, .input-group-prepend .has--btn-underline-white .elementor-button:focus, .has--btn-underline-white .input-group-prepend .elementor-button:focus, .input-group-prepend .has--btn-underline .elementor-button:focus, .has--btn-underline .input-group-prepend .elementor-button:focus, .input-group-prepend .gform_wrapper .button:focus, .gform_wrapper .input-group-prepend .button:focus,
.input-group-append .btn:focus,
.input-group-append #BorlabsCookieBox ._brlbs-btn-accept-all:focus,
#BorlabsCookieBox .input-group-append ._brlbs-btn-accept-all:focus,
.input-group-append .has--btn-underline-white .elementor-button:focus,
.has--btn-underline-white .input-group-append .elementor-button:focus,
.input-group-append .has--btn-underline .elementor-button:focus,
.has--btn-underline .input-group-append .elementor-button:focus,
.input-group-append .gform_wrapper .button:focus,
.gform_wrapper .input-group-append .button:focus {
  z-index: 3;
}
.input-group-prepend .btn + .btn, .input-group-prepend #BorlabsCookieBox ._brlbs-btn-accept-all + .btn, #BorlabsCookieBox .input-group-prepend ._brlbs-btn-accept-all + .btn, .input-group-prepend #BorlabsCookieBox .btn + ._brlbs-btn-accept-all, #BorlabsCookieBox .input-group-prepend .btn + ._brlbs-btn-accept-all, .input-group-prepend #BorlabsCookieBox ._brlbs-btn-accept-all + ._brlbs-btn-accept-all, #BorlabsCookieBox .input-group-prepend ._brlbs-btn-accept-all + ._brlbs-btn-accept-all, .input-group-prepend .has--btn-underline-white .elementor-button + .btn, .input-group-prepend .has--btn-underline-white #BorlabsCookieBox .elementor-button + ._brlbs-btn-accept-all, #BorlabsCookieBox .input-group-prepend .has--btn-underline-white .elementor-button + ._brlbs-btn-accept-all, .has--btn-underline-white .input-group-prepend .elementor-button + .btn, .has--btn-underline-white .input-group-prepend #BorlabsCookieBox .elementor-button + ._brlbs-btn-accept-all, #BorlabsCookieBox .has--btn-underline-white .input-group-prepend .elementor-button + ._brlbs-btn-accept-all, .input-group-prepend .has--btn-underline-white .btn + .elementor-button, .input-group-prepend .has--btn-underline-white #BorlabsCookieBox ._brlbs-btn-accept-all + .elementor-button, #BorlabsCookieBox .input-group-prepend .has--btn-underline-white ._brlbs-btn-accept-all + .elementor-button, .has--btn-underline-white .input-group-prepend .btn + .elementor-button, .has--btn-underline-white .input-group-prepend #BorlabsCookieBox ._brlbs-btn-accept-all + .elementor-button, #BorlabsCookieBox .has--btn-underline-white .input-group-prepend ._brlbs-btn-accept-all + .elementor-button, .input-group-prepend .has--btn-underline-white .elementor-button + .elementor-button, .has--btn-underline-white .input-group-prepend .elementor-button + .elementor-button, .input-group-prepend .has--btn-underline .elementor-button + .btn, .input-group-prepend .has--btn-underline #BorlabsCookieBox .elementor-button + ._brlbs-btn-accept-all, #BorlabsCookieBox .input-group-prepend .has--btn-underline .elementor-button + ._brlbs-btn-accept-all, .input-group-prepend .has--btn-underline .has--btn-underline-white .elementor-button + .elementor-button, .has--btn-underline-white .input-group-prepend .has--btn-underline .elementor-button + .elementor-button, .has--btn-underline .input-group-prepend .elementor-button + .btn, .has--btn-underline .input-group-prepend #BorlabsCookieBox .elementor-button + ._brlbs-btn-accept-all, #BorlabsCookieBox .has--btn-underline .input-group-prepend .elementor-button + ._brlbs-btn-accept-all, .has--btn-underline .input-group-prepend .has--btn-underline-white .elementor-button + .elementor-button, .has--btn-underline-white .has--btn-underline .input-group-prepend .elementor-button + .elementor-button, .input-group-prepend .has--btn-underline .btn + .elementor-button, .input-group-prepend .has--btn-underline #BorlabsCookieBox ._brlbs-btn-accept-all + .elementor-button, #BorlabsCookieBox .input-group-prepend .has--btn-underline ._brlbs-btn-accept-all + .elementor-button, .input-group-prepend .has--btn-underline .has--btn-underline-white .elementor-button + .elementor-button, .has--btn-underline-white .input-group-prepend .has--btn-underline .elementor-button + .elementor-button, .has--btn-underline .input-group-prepend .btn + .elementor-button, .has--btn-underline .input-group-prepend #BorlabsCookieBox ._brlbs-btn-accept-all + .elementor-button, #BorlabsCookieBox .has--btn-underline .input-group-prepend ._brlbs-btn-accept-all + .elementor-button, .has--btn-underline .input-group-prepend .has--btn-underline-white .elementor-button + .elementor-button, .has--btn-underline-white .has--btn-underline .input-group-prepend .elementor-button + .elementor-button, .input-group-prepend .has--btn-underline .elementor-button + .elementor-button, .has--btn-underline .input-group-prepend .elementor-button + .elementor-button, .input-group-prepend .gform_wrapper .button + .btn, .input-group-prepend .gform_wrapper #BorlabsCookieBox .button + ._brlbs-btn-accept-all, #BorlabsCookieBox .input-group-prepend .gform_wrapper .button + ._brlbs-btn-accept-all, .input-group-prepend .gform_wrapper .has--btn-underline-white .button + .elementor-button, .has--btn-underline-white .input-group-prepend .gform_wrapper .button + .elementor-button, .input-group-prepend .gform_wrapper .has--btn-underline .button + .elementor-button, .has--btn-underline .input-group-prepend .gform_wrapper .button + .elementor-button, .gform_wrapper .input-group-prepend .button + .btn, .gform_wrapper .input-group-prepend #BorlabsCookieBox .button + ._brlbs-btn-accept-all, #BorlabsCookieBox .gform_wrapper .input-group-prepend .button + ._brlbs-btn-accept-all, .gform_wrapper .input-group-prepend .has--btn-underline-white .button + .elementor-button, .has--btn-underline-white .gform_wrapper .input-group-prepend .button + .elementor-button, .gform_wrapper .input-group-prepend .has--btn-underline .button + .elementor-button, .has--btn-underline .gform_wrapper .input-group-prepend .button + .elementor-button, .input-group-prepend .gform_wrapper .btn + .button, .input-group-prepend .gform_wrapper #BorlabsCookieBox ._brlbs-btn-accept-all + .button, #BorlabsCookieBox .input-group-prepend .gform_wrapper ._brlbs-btn-accept-all + .button, .input-group-prepend .gform_wrapper .has--btn-underline-white .elementor-button + .button, .has--btn-underline-white .input-group-prepend .gform_wrapper .elementor-button + .button, .input-group-prepend .gform_wrapper .has--btn-underline .elementor-button + .button, .has--btn-underline .input-group-prepend .gform_wrapper .elementor-button + .button, .gform_wrapper .input-group-prepend .btn + .button, .gform_wrapper .input-group-prepend #BorlabsCookieBox ._brlbs-btn-accept-all + .button, #BorlabsCookieBox .gform_wrapper .input-group-prepend ._brlbs-btn-accept-all + .button, .gform_wrapper .input-group-prepend .has--btn-underline-white .elementor-button + .button, .has--btn-underline-white .gform_wrapper .input-group-prepend .elementor-button + .button, .gform_wrapper .input-group-prepend .has--btn-underline .elementor-button + .button, .has--btn-underline .gform_wrapper .input-group-prepend .elementor-button + .button, .input-group-prepend .gform_wrapper .button + .button, .gform_wrapper .input-group-prepend .button + .button,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend #BorlabsCookieBox ._brlbs-btn-accept-all + .input-group-text,
#BorlabsCookieBox .input-group-prepend ._brlbs-btn-accept-all + .input-group-text,
.input-group-prepend .has--btn-underline-white .elementor-button + .input-group-text,
.has--btn-underline-white .input-group-prepend .elementor-button + .input-group-text,
.input-group-prepend .has--btn-underline .elementor-button + .input-group-text,
.has--btn-underline .input-group-prepend .elementor-button + .input-group-text,
.input-group-prepend .gform_wrapper .button + .input-group-text,
.gform_wrapper .input-group-prepend .button + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-prepend #BorlabsCookieBox .input-group-text + ._brlbs-btn-accept-all,
#BorlabsCookieBox .input-group-prepend .input-group-text + ._brlbs-btn-accept-all,
.input-group-prepend .has--btn-underline-white .input-group-text + .elementor-button,
.has--btn-underline-white .input-group-prepend .input-group-text + .elementor-button,
.input-group-prepend .has--btn-underline .input-group-text + .elementor-button,
.has--btn-underline .input-group-prepend .input-group-text + .elementor-button,
.input-group-prepend .gform_wrapper .input-group-text + .button,
.gform_wrapper .input-group-prepend .input-group-text + .button,
.input-group-append .btn + .btn,
.input-group-append #BorlabsCookieBox ._brlbs-btn-accept-all + .btn,
#BorlabsCookieBox .input-group-append ._brlbs-btn-accept-all + .btn,
.input-group-append #BorlabsCookieBox .btn + ._brlbs-btn-accept-all,
#BorlabsCookieBox .input-group-append .btn + ._brlbs-btn-accept-all,
.input-group-append #BorlabsCookieBox ._brlbs-btn-accept-all + ._brlbs-btn-accept-all,
#BorlabsCookieBox .input-group-append ._brlbs-btn-accept-all + ._brlbs-btn-accept-all,
.input-group-append .has--btn-underline-white .elementor-button + .btn,
.input-group-append .has--btn-underline-white #BorlabsCookieBox .elementor-button + ._brlbs-btn-accept-all,
#BorlabsCookieBox .input-group-append .has--btn-underline-white .elementor-button + ._brlbs-btn-accept-all,
.has--btn-underline-white .input-group-append .elementor-button + .btn,
.has--btn-underline-white .input-group-append #BorlabsCookieBox .elementor-button + ._brlbs-btn-accept-all,
#BorlabsCookieBox .has--btn-underline-white .input-group-append .elementor-button + ._brlbs-btn-accept-all,
.input-group-append .has--btn-underline-white .btn + .elementor-button,
.input-group-append .has--btn-underline-white #BorlabsCookieBox ._brlbs-btn-accept-all + .elementor-button,
#BorlabsCookieBox .input-group-append .has--btn-underline-white ._brlbs-btn-accept-all + .elementor-button,
.has--btn-underline-white .input-group-append .btn + .elementor-button,
.has--btn-underline-white .input-group-append #BorlabsCookieBox ._brlbs-btn-accept-all + .elementor-button,
#BorlabsCookieBox .has--btn-underline-white .input-group-append ._brlbs-btn-accept-all + .elementor-button,
.input-group-append .has--btn-underline-white .elementor-button + .elementor-button,
.has--btn-underline-white .input-group-append .elementor-button + .elementor-button,
.input-group-append .has--btn-underline .elementor-button + .btn,
.input-group-append .has--btn-underline #BorlabsCookieBox .elementor-button + ._brlbs-btn-accept-all,
#BorlabsCookieBox .input-group-append .has--btn-underline .elementor-button + ._brlbs-btn-accept-all,
.input-group-append .has--btn-underline .has--btn-underline-white .elementor-button + .elementor-button,
.has--btn-underline-white .input-group-append .has--btn-underline .elementor-button + .elementor-button,
.has--btn-underline .input-group-append .elementor-button + .btn,
.has--btn-underline .input-group-append #BorlabsCookieBox .elementor-button + ._brlbs-btn-accept-all,
#BorlabsCookieBox .has--btn-underline .input-group-append .elementor-button + ._brlbs-btn-accept-all,
.has--btn-underline .input-group-append .has--btn-underline-white .elementor-button + .elementor-button,
.has--btn-underline-white .has--btn-underline .input-group-append .elementor-button + .elementor-button,
.input-group-append .has--btn-underline .btn + .elementor-button,
.input-group-append .has--btn-underline #BorlabsCookieBox ._brlbs-btn-accept-all + .elementor-button,
#BorlabsCookieBox .input-group-append .has--btn-underline ._brlbs-btn-accept-all + .elementor-button,
.input-group-append .has--btn-underline .has--btn-underline-white .elementor-button + .elementor-button,
.has--btn-underline-white .input-group-append .has--btn-underline .elementor-button + .elementor-button,
.has--btn-underline .input-group-append .btn + .elementor-button,
.has--btn-underline .input-group-append #BorlabsCookieBox ._brlbs-btn-accept-all + .elementor-button,
#BorlabsCookieBox .has--btn-underline .input-group-append ._brlbs-btn-accept-all + .elementor-button,
.has--btn-underline .input-group-append .has--btn-underline-white .elementor-button + .elementor-button,
.has--btn-underline-white .has--btn-underline .input-group-append .elementor-button + .elementor-button,
.input-group-append .has--btn-underline .elementor-button + .elementor-button,
.has--btn-underline .input-group-append .elementor-button + .elementor-button,
.input-group-append .gform_wrapper .button + .btn,
.input-group-append .gform_wrapper #BorlabsCookieBox .button + ._brlbs-btn-accept-all,
#BorlabsCookieBox .input-group-append .gform_wrapper .button + ._brlbs-btn-accept-all,
.input-group-append .gform_wrapper .has--btn-underline-white .button + .elementor-button,
.has--btn-underline-white .input-group-append .gform_wrapper .button + .elementor-button,
.input-group-append .gform_wrapper .has--btn-underline .button + .elementor-button,
.has--btn-underline .input-group-append .gform_wrapper .button + .elementor-button,
.gform_wrapper .input-group-append .button + .btn,
.gform_wrapper .input-group-append #BorlabsCookieBox .button + ._brlbs-btn-accept-all,
#BorlabsCookieBox .gform_wrapper .input-group-append .button + ._brlbs-btn-accept-all,
.gform_wrapper .input-group-append .has--btn-underline-white .button + .elementor-button,
.has--btn-underline-white .gform_wrapper .input-group-append .button + .elementor-button,
.gform_wrapper .input-group-append .has--btn-underline .button + .elementor-button,
.has--btn-underline .gform_wrapper .input-group-append .button + .elementor-button,
.input-group-append .gform_wrapper .btn + .button,
.input-group-append .gform_wrapper #BorlabsCookieBox ._brlbs-btn-accept-all + .button,
#BorlabsCookieBox .input-group-append .gform_wrapper ._brlbs-btn-accept-all + .button,
.input-group-append .gform_wrapper .has--btn-underline-white .elementor-button + .button,
.has--btn-underline-white .input-group-append .gform_wrapper .elementor-button + .button,
.input-group-append .gform_wrapper .has--btn-underline .elementor-button + .button,
.has--btn-underline .input-group-append .gform_wrapper .elementor-button + .button,
.gform_wrapper .input-group-append .btn + .button,
.gform_wrapper .input-group-append #BorlabsCookieBox ._brlbs-btn-accept-all + .button,
#BorlabsCookieBox .gform_wrapper .input-group-append ._brlbs-btn-accept-all + .button,
.gform_wrapper .input-group-append .has--btn-underline-white .elementor-button + .button,
.has--btn-underline-white .gform_wrapper .input-group-append .elementor-button + .button,
.gform_wrapper .input-group-append .has--btn-underline .elementor-button + .button,
.has--btn-underline .gform_wrapper .input-group-append .elementor-button + .button,
.input-group-append .gform_wrapper .button + .button,
.gform_wrapper .input-group-append .button + .button,
.input-group-append .btn + .input-group-text,
.input-group-append #BorlabsCookieBox ._brlbs-btn-accept-all + .input-group-text,
#BorlabsCookieBox .input-group-append ._brlbs-btn-accept-all + .input-group-text,
.input-group-append .has--btn-underline-white .elementor-button + .input-group-text,
.has--btn-underline-white .input-group-append .elementor-button + .input-group-text,
.input-group-append .has--btn-underline .elementor-button + .input-group-text,
.has--btn-underline .input-group-append .elementor-button + .input-group-text,
.input-group-append .gform_wrapper .button + .input-group-text,
.gform_wrapper .input-group-append .button + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn,
.input-group-append #BorlabsCookieBox .input-group-text + ._brlbs-btn-accept-all,
#BorlabsCookieBox .input-group-append .input-group-text + ._brlbs-btn-accept-all,
.input-group-append .has--btn-underline-white .input-group-text + .elementor-button,
.has--btn-underline-white .input-group-append .input-group-text + .elementor-button,
.input-group-append .has--btn-underline .input-group-text + .elementor-button,
.has--btn-underline .input-group-append .input-group-text + .elementor-button,
.input-group-append .gform_wrapper .input-group-text + .button,
.gform_wrapper .input-group-append .input-group-text + .button {
  margin-left: -1px;
}

.input-group-prepend {
  margin-right: -1px;
}

.input-group-append {
  margin-left: -1px;
}

.input-group-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 3px;
}
.input-group-text input[type=radio],
.input-group-text input[type=checkbox] {
  margin-top: 0;
}

.input-group-lg > .form-control:not(textarea), .gform_wrapper .input-group-lg > input[type=email]:not(textarea),
.gform_wrapper .input-group-lg > input[type=date]:not(textarea),
.gform_wrapper .input-group-lg > input[type=datetime]:not(textarea),
.gform_wrapper .input-group-lg > input[type=datetime-local]:not(textarea),
.gform_wrapper .input-group-lg > input[type=month]:not(textarea),
.gform_wrapper .input-group-lg > input[type=number]:not(textarea),
.gform_wrapper .input-group-lg > input[type=password]:not(textarea),
.gform_wrapper .input-group-lg > input[type=search]:not(textarea),
.gform_wrapper .input-group-lg > input[type=tel]:not(textarea),
.gform_wrapper .input-group-lg > input[type=text]:not(textarea),
.gform_wrapper .input-group-lg > input[type=time]:not(textarea),
.gform_wrapper .input-group-lg > input[type=week]:not(textarea),
.gform_wrapper .input-group-lg > input[type=url]:not(textarea),
.gform_wrapper .input-group-lg > select:not(textarea),
.gform_wrapper .input-group-lg > textarea:not(textarea),
.input-group-lg > .custom-select {
  height: calc(1.5em + 1rem + 2px);
}

.input-group-lg > .form-control, .gform_wrapper .input-group-lg > input[type=email],
.gform_wrapper .input-group-lg > input[type=date],
.gform_wrapper .input-group-lg > input[type=datetime],
.gform_wrapper .input-group-lg > input[type=datetime-local],
.gform_wrapper .input-group-lg > input[type=month],
.gform_wrapper .input-group-lg > input[type=number],
.gform_wrapper .input-group-lg > input[type=password],
.gform_wrapper .input-group-lg > input[type=search],
.gform_wrapper .input-group-lg > input[type=tel],
.gform_wrapper .input-group-lg > input[type=text],
.gform_wrapper .input-group-lg > input[type=time],
.gform_wrapper .input-group-lg > input[type=week],
.gform_wrapper .input-group-lg > input[type=url],
.gform_wrapper .input-group-lg > select,
.gform_wrapper .input-group-lg > textarea,
.input-group-lg > .custom-select,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
#BorlabsCookieBox .input-group-lg > .input-group-prepend > ._brlbs-btn-accept-all,
.has--btn-underline-white .input-group-lg > .input-group-prepend > .elementor-button,
.has--btn-underline .input-group-lg > .input-group-prepend > .elementor-button,
.gform_wrapper .input-group-lg > .input-group-prepend > .button,
.input-group-lg > .input-group-append > .btn,
#BorlabsCookieBox .input-group-lg > .input-group-append > ._brlbs-btn-accept-all,
.has--btn-underline-white .input-group-lg > .input-group-append > .elementor-button,
.has--btn-underline .input-group-lg > .input-group-append > .elementor-button,
.gform_wrapper .input-group-lg > .input-group-append > .button {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.input-group-sm > .form-control:not(textarea), .gform_wrapper .input-group-sm > input[type=email]:not(textarea),
.gform_wrapper .input-group-sm > input[type=date]:not(textarea),
.gform_wrapper .input-group-sm > input[type=datetime]:not(textarea),
.gform_wrapper .input-group-sm > input[type=datetime-local]:not(textarea),
.gform_wrapper .input-group-sm > input[type=month]:not(textarea),
.gform_wrapper .input-group-sm > input[type=number]:not(textarea),
.gform_wrapper .input-group-sm > input[type=password]:not(textarea),
.gform_wrapper .input-group-sm > input[type=search]:not(textarea),
.gform_wrapper .input-group-sm > input[type=tel]:not(textarea),
.gform_wrapper .input-group-sm > input[type=text]:not(textarea),
.gform_wrapper .input-group-sm > input[type=time]:not(textarea),
.gform_wrapper .input-group-sm > input[type=week]:not(textarea),
.gform_wrapper .input-group-sm > input[type=url]:not(textarea),
.gform_wrapper .input-group-sm > select:not(textarea),
.gform_wrapper .input-group-sm > textarea:not(textarea),
.input-group-sm > .custom-select {
  height: calc(1.5em + 0.5rem + 2px);
}

.input-group-sm > .form-control, .gform_wrapper .input-group-sm > input[type=email],
.gform_wrapper .input-group-sm > input[type=date],
.gform_wrapper .input-group-sm > input[type=datetime],
.gform_wrapper .input-group-sm > input[type=datetime-local],
.gform_wrapper .input-group-sm > input[type=month],
.gform_wrapper .input-group-sm > input[type=number],
.gform_wrapper .input-group-sm > input[type=password],
.gform_wrapper .input-group-sm > input[type=search],
.gform_wrapper .input-group-sm > input[type=tel],
.gform_wrapper .input-group-sm > input[type=text],
.gform_wrapper .input-group-sm > input[type=time],
.gform_wrapper .input-group-sm > input[type=week],
.gform_wrapper .input-group-sm > input[type=url],
.gform_wrapper .input-group-sm > select,
.gform_wrapper .input-group-sm > textarea,
.input-group-sm > .custom-select,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
#BorlabsCookieBox .input-group-sm > .input-group-prepend > ._brlbs-btn-accept-all,
.has--btn-underline-white .input-group-sm > .input-group-prepend > .elementor-button,
.has--btn-underline .input-group-sm > .input-group-prepend > .elementor-button,
.gform_wrapper .input-group-sm > .input-group-prepend > .button,
.input-group-sm > .input-group-append > .btn,
#BorlabsCookieBox .input-group-sm > .input-group-append > ._brlbs-btn-accept-all,
.has--btn-underline-white .input-group-sm > .input-group-append > .elementor-button,
.has--btn-underline .input-group-sm > .input-group-append > .elementor-button,
.gform_wrapper .input-group-sm > .input-group-append > .button {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.input-group-lg > .custom-select,
.input-group-sm > .custom-select {
  padding-right: 1.75rem;
}

.input-group > .input-group-prepend > .btn, #BorlabsCookieBox .input-group > .input-group-prepend > ._brlbs-btn-accept-all, .has--btn-underline-white .input-group > .input-group-prepend > .elementor-button, .has--btn-underline .input-group > .input-group-prepend > .elementor-button, .gform_wrapper .input-group > .input-group-prepend > .button,
.input-group > .input-group-prepend > .input-group-text,
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .btn,
#BorlabsCookieBox .input-group:not(.has-validation) > .input-group-append:not(:last-child) > ._brlbs-btn-accept-all,
.has--btn-underline-white .input-group:not(.has-validation) > .input-group-append:not(:last-child) > .elementor-button,
.has--btn-underline .input-group:not(.has-validation) > .input-group-append:not(:last-child) > .elementor-button,
.gform_wrapper .input-group:not(.has-validation) > .input-group-append:not(:last-child) > .button,
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .input-group-text,
.input-group.has-validation > .input-group-append:nth-last-child(n+3) > .btn,
#BorlabsCookieBox .input-group.has-validation > .input-group-append:nth-last-child(n+3) > ._brlbs-btn-accept-all,
.has--btn-underline-white .input-group.has-validation > .input-group-append:nth-last-child(n+3) > .elementor-button,
.has--btn-underline .input-group.has-validation > .input-group-append:nth-last-child(n+3) > .elementor-button,
.gform_wrapper .input-group.has-validation > .input-group-append:nth-last-child(n+3) > .button,
.input-group.has-validation > .input-group-append:nth-last-child(n+3) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
#BorlabsCookieBox .input-group > .input-group-append:last-child > ._brlbs-btn-accept-all:not(:last-child):not(.dropdown-toggle),
.has--btn-underline-white .input-group > .input-group-append:last-child > .elementor-button:not(:last-child):not(.dropdown-toggle),
.has--btn-underline .input-group > .input-group-append:last-child > .elementor-button:not(:last-child):not(.dropdown-toggle),
.gform_wrapper .input-group > .input-group-append:last-child > .button:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .input-group-append > .btn, #BorlabsCookieBox .input-group > .input-group-append > ._brlbs-btn-accept-all, .has--btn-underline-white .input-group > .input-group-append > .elementor-button, .has--btn-underline .input-group > .input-group-append > .elementor-button, .gform_wrapper .input-group > .input-group-append > .button,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
#BorlabsCookieBox .input-group > .input-group-prepend:not(:first-child) > ._brlbs-btn-accept-all,
.has--btn-underline-white .input-group > .input-group-prepend:not(:first-child) > .elementor-button,
.has--btn-underline .input-group > .input-group-prepend:not(:first-child) > .elementor-button,
.gform_wrapper .input-group > .input-group-prepend:not(:first-child) > .button,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
#BorlabsCookieBox .input-group > .input-group-prepend:first-child > ._brlbs-btn-accept-all:not(:first-child),
.has--btn-underline-white .input-group > .input-group-prepend:first-child > .elementor-button:not(:first-child),
.has--btn-underline .input-group > .input-group-prepend:first-child > .elementor-button:not(:first-child),
.gform_wrapper .input-group > .input-group-prepend:first-child > .button:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom-control {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
}

.custom-control-inline {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 1rem;
}

.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  opacity: 0;
}
.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #00DBFF;
  background-color: #00DBFF;
}
.custom-control-input:focus ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 219, 255, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 219, 255, 0.25);
}
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: rgb(127.5, 237, 255);
}
.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: rgb(178.5, 244.2, 255);
  border-color: rgb(178.5, 244.2, 255);
}
.custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}
.custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}
.custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: 1px solid #adb5bd;
}
.custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: 50%/50% 50% no-repeat;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 3px;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: #00DBFF;
  background-color: #00DBFF;
}
.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
}
.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 219, 255, 0.5);
}
.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(0, 219, 255, 0.5);
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 219, 255, 0.5);
}

.custom-switch {
  padding-left: 2.25rem;
}
.custom-switch .custom-control-label::before {
  left: -2.25rem;
  width: 1.75rem;
  pointer-events: all;
  border-radius: 0.5rem;
}
.custom-switch .custom-control-label::after {
  top: calc(0.25rem + 2px);
  left: calc(-2.25rem + 2px);
  width: calc(1rem - 4px);
  height: calc(1rem - 4px);
  background-color: #adb5bd;
  border-radius: 0.5rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .custom-switch .custom-control-label::after {
    -webkit-transition: none;
    transition: none;
  }
}
.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #fff;
  -webkit-transform: translateX(0.75rem);
      -ms-transform: translateX(0.75rem);
          transform: translateX(0.75rem);
}
.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 219, 255, 0.5);
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat;
  border: 1px solid #ced4da;
  border-radius: 3px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.custom-select:focus {
  border-color: rgb(127.5, 237, 255);
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 219, 255, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 219, 255, 0.25);
}
.custom-select:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}
.custom-select[multiple], .custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.75rem;
  background-image: none;
}
.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}
.custom-select::-ms-expand {
  display: none;
}
.custom-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

.custom-select-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
}

.custom-select-lg {
  height: calc(1.5em + 1rem + 2px);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
}

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin-bottom: 0;
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin: 0;
  overflow: hidden;
  opacity: 0;
}
.custom-file-input:focus ~ .custom-file-label {
  border-color: rgb(127.5, 237, 255);
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 219, 255, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 219, 255, 0.25);
}
.custom-file-input[disabled] ~ .custom-file-label, .custom-file-input:disabled ~ .custom-file-label {
  background-color: #e9ecef;
}
.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}
.custom-file-input ~ .custom-file-label[data-browse]::after {
  content: attr(data-browse);
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  overflow: hidden;
  font-weight: 300;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 3px;
}
.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(1.5em + 0.75rem);
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: inherit;
  border-radius: 0 3px 3px 0;
}

.custom-range {
  width: 100%;
  height: 1.4rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.custom-range:focus {
  outline: 0;
}
.custom-range:focus::-webkit-slider-thumb {
  -webkit-box-shadow: 0 0 0 1px #10111F, 0 0 0 0.2rem rgba(0, 219, 255, 0.25);
          box-shadow: 0 0 0 1px #10111F, 0 0 0 0.2rem rgba(0, 219, 255, 0.25);
}
.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #10111F, 0 0 0 0.2rem rgba(0, 219, 255, 0.25);
}
.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #10111F, 0 0 0 0.2rem rgba(0, 219, 255, 0.25);
}
.custom-range::-moz-focus-outer {
  border: 0;
}
.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #00DBFF;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
          appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}
.custom-range::-webkit-slider-thumb:active {
  background-color: rgb(178.5, 244.2, 255);
}
.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #00DBFF;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
       appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}
.custom-range::-moz-range-thumb:active {
  background-color: rgb(178.5, 244.2, 255);
}
.custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0.2rem;
  margin-left: 0.2rem;
  background-color: #00DBFF;
  border: 0;
  border-radius: 1rem;
  -ms-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .custom-range::-ms-thumb {
    -ms-transition: none;
    transition: none;
  }
}
.custom-range::-ms-thumb:active {
  background-color: rgb(178.5, 244.2, 255);
}
.custom-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.5rem;
}
.custom-range::-ms-fill-lower {
  background-color: #dee2e6;
  border-radius: 1rem;
}
.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
  border-radius: 1rem;
}
.custom-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}
.custom-range:disabled::-webkit-slider-runnable-track {
  cursor: default;
}
.custom-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}
.custom-range:disabled::-moz-range-track {
  cursor: default;
}
.custom-range:disabled::-ms-thumb {
  background-color: #adb5bd;
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .custom-control-label::before,
  .custom-file-label,
  .custom-select {
    -webkit-transition: none;
    transition: none;
  }
}

.nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}
.nav-link:hover, .nav-link:focus {
  text-decoration: none;
}
.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}
.nav-tabs .nav-link {
  margin-bottom: -1px;
  background-color: transparent;
  border: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  isolation: isolate;
  border-color: #e9ecef #e9ecef #dee2e6;
}
.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #10111F;
  border-color: #dee2e6 #dee2e6 #10111F;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 3px;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #00DBFF;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  -webkit-flex-basis: 0;
      -ms-flex-preferred-size: 0;
          flex-basis: 0;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.5rem 1rem;
}
.navbar .container, .navbar .elementor .e-container, .elementor .navbar .e-container,
.navbar .container-fluid,
.navbar .container-xxxs,
.navbar .container-xxs,
.navbar .container-xs,
.navbar .container-sm,
.navbar .container-md,
.navbar .container-lg,
.navbar .container-xl,
.navbar .container-xxl,
.navbar .container-xxxl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}
.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  -webkit-flex-basis: 100%;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 3px;
}
.navbar-toggler:hover, .navbar-toggler:focus {
  text-decoration: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: 50%/100% 100% no-repeat;
}

.navbar-nav-scroll {
  max-height: 75vh;
  overflow-y: auto;
}

@media (max-width: 319.98px) {
  .navbar-expand-xxs > .container, .elementor .navbar-expand-xxs > .e-container,
  .navbar-expand-xxs > .container-fluid,
  .navbar-expand-xxs > .container-xxxs,
  .navbar-expand-xxs > .container-xxs,
  .navbar-expand-xxs > .container-xs,
  .navbar-expand-xxs > .container-sm,
  .navbar-expand-xxs > .container-md,
  .navbar-expand-xxs > .container-lg,
  .navbar-expand-xxs > .container-xl,
  .navbar-expand-xxs > .container-xxl,
  .navbar-expand-xxs > .container-xxxl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 320px) {
  .navbar-expand-xxs {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-xxs .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-xxs .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxs .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xxs > .container, .elementor .navbar-expand-xxs > .e-container,
  .navbar-expand-xxs > .container-fluid,
  .navbar-expand-xxs > .container-xxxs,
  .navbar-expand-xxs > .container-xxs,
  .navbar-expand-xxs > .container-xs,
  .navbar-expand-xxs > .container-sm,
  .navbar-expand-xxs > .container-md,
  .navbar-expand-xxs > .container-lg,
  .navbar-expand-xxs > .container-xl,
  .navbar-expand-xxs > .container-xxl,
  .navbar-expand-xxs > .container-xxxl {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
  .navbar-expand-xxs .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxs .navbar-collapse {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-flex-basis: auto;
        -ms-flex-preferred-size: auto;
            flex-basis: auto;
  }
  .navbar-expand-xxs .navbar-toggler {
    display: none;
  }
}
@media (max-width: 567.98px) {
  .navbar-expand-xs > .container, .elementor .navbar-expand-xs > .e-container,
  .navbar-expand-xs > .container-fluid,
  .navbar-expand-xs > .container-xxxs,
  .navbar-expand-xs > .container-xxs,
  .navbar-expand-xs > .container-xs,
  .navbar-expand-xs > .container-sm,
  .navbar-expand-xs > .container-md,
  .navbar-expand-xs > .container-lg,
  .navbar-expand-xs > .container-xl,
  .navbar-expand-xs > .container-xxl,
  .navbar-expand-xs > .container-xxxl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 568px) {
  .navbar-expand-xs {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-xs .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-xs .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xs .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xs > .container, .elementor .navbar-expand-xs > .e-container,
  .navbar-expand-xs > .container-fluid,
  .navbar-expand-xs > .container-xxxs,
  .navbar-expand-xs > .container-xxs,
  .navbar-expand-xs > .container-xs,
  .navbar-expand-xs > .container-sm,
  .navbar-expand-xs > .container-md,
  .navbar-expand-xs > .container-lg,
  .navbar-expand-xs > .container-xl,
  .navbar-expand-xs > .container-xxl,
  .navbar-expand-xs > .container-xxxl {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
  .navbar-expand-xs .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xs .navbar-collapse {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-flex-basis: auto;
        -ms-flex-preferred-size: auto;
            flex-basis: auto;
  }
  .navbar-expand-xs .navbar-toggler {
    display: none;
  }
}
@media (max-width: 666.98px) {
  .navbar-expand-sm > .container, .elementor .navbar-expand-sm > .e-container,
  .navbar-expand-sm > .container-fluid,
  .navbar-expand-sm > .container-xxxs,
  .navbar-expand-sm > .container-xxs,
  .navbar-expand-sm > .container-xs,
  .navbar-expand-sm > .container-sm,
  .navbar-expand-sm > .container-md,
  .navbar-expand-sm > .container-lg,
  .navbar-expand-sm > .container-xl,
  .navbar-expand-sm > .container-xxl,
  .navbar-expand-sm > .container-xxxl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 667px) {
  .navbar-expand-sm {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm > .container, .elementor .navbar-expand-sm > .e-container,
  .navbar-expand-sm > .container-fluid,
  .navbar-expand-sm > .container-xxxs,
  .navbar-expand-sm > .container-xxs,
  .navbar-expand-sm > .container-xs,
  .navbar-expand-sm > .container-sm,
  .navbar-expand-sm > .container-md,
  .navbar-expand-sm > .container-lg,
  .navbar-expand-sm > .container-xl,
  .navbar-expand-sm > .container-xxl,
  .navbar-expand-sm > .container-xxxl {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-flex-basis: auto;
        -ms-flex-preferred-size: auto;
            flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .navbar-expand-md > .container, .elementor .navbar-expand-md > .e-container,
  .navbar-expand-md > .container-fluid,
  .navbar-expand-md > .container-xxxs,
  .navbar-expand-md > .container-xxs,
  .navbar-expand-md > .container-xs,
  .navbar-expand-md > .container-sm,
  .navbar-expand-md > .container-md,
  .navbar-expand-md > .container-lg,
  .navbar-expand-md > .container-xl,
  .navbar-expand-md > .container-xxl,
  .navbar-expand-md > .container-xxxl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md > .container, .elementor .navbar-expand-md > .e-container,
  .navbar-expand-md > .container-fluid,
  .navbar-expand-md > .container-xxxs,
  .navbar-expand-md > .container-xxs,
  .navbar-expand-md > .container-xs,
  .navbar-expand-md > .container-sm,
  .navbar-expand-md > .container-md,
  .navbar-expand-md > .container-lg,
  .navbar-expand-md > .container-xl,
  .navbar-expand-md > .container-xxl,
  .navbar-expand-md > .container-xxxl {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-flex-basis: auto;
        -ms-flex-preferred-size: auto;
            flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .navbar-expand-lg > .container, .elementor .navbar-expand-lg > .e-container,
  .navbar-expand-lg > .container-fluid,
  .navbar-expand-lg > .container-xxxs,
  .navbar-expand-lg > .container-xxs,
  .navbar-expand-lg > .container-xs,
  .navbar-expand-lg > .container-sm,
  .navbar-expand-lg > .container-md,
  .navbar-expand-lg > .container-lg,
  .navbar-expand-lg > .container-xl,
  .navbar-expand-lg > .container-xxl,
  .navbar-expand-lg > .container-xxxl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg > .container, .elementor .navbar-expand-lg > .e-container,
  .navbar-expand-lg > .container-fluid,
  .navbar-expand-lg > .container-xxxs,
  .navbar-expand-lg > .container-xxs,
  .navbar-expand-lg > .container-xs,
  .navbar-expand-lg > .container-sm,
  .navbar-expand-lg > .container-md,
  .navbar-expand-lg > .container-lg,
  .navbar-expand-lg > .container-xl,
  .navbar-expand-lg > .container-xxl,
  .navbar-expand-lg > .container-xxxl {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-flex-basis: auto;
        -ms-flex-preferred-size: auto;
            flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}
@media (max-width: 1099.98px) {
  .navbar-expand-xl > .container, .elementor .navbar-expand-xl > .e-container,
  .navbar-expand-xl > .container-fluid,
  .navbar-expand-xl > .container-xxxs,
  .navbar-expand-xl > .container-xxs,
  .navbar-expand-xl > .container-xs,
  .navbar-expand-xl > .container-sm,
  .navbar-expand-xl > .container-md,
  .navbar-expand-xl > .container-lg,
  .navbar-expand-xl > .container-xl,
  .navbar-expand-xl > .container-xxl,
  .navbar-expand-xl > .container-xxxl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 1100px) {
  .navbar-expand-xl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl > .container, .elementor .navbar-expand-xl > .e-container,
  .navbar-expand-xl > .container-fluid,
  .navbar-expand-xl > .container-xxxs,
  .navbar-expand-xl > .container-xxs,
  .navbar-expand-xl > .container-xs,
  .navbar-expand-xl > .container-sm,
  .navbar-expand-xl > .container-md,
  .navbar-expand-xl > .container-lg,
  .navbar-expand-xl > .container-xl,
  .navbar-expand-xl > .container-xxl,
  .navbar-expand-xl > .container-xxxl {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-flex-basis: auto;
        -ms-flex-preferred-size: auto;
            flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}
@media (max-width: 1199.98px) {
  .navbar-expand-xxl > .container, .elementor .navbar-expand-xxl > .e-container,
  .navbar-expand-xxl > .container-fluid,
  .navbar-expand-xxl > .container-xxxs,
  .navbar-expand-xxl > .container-xxs,
  .navbar-expand-xxl > .container-xs,
  .navbar-expand-xxl > .container-sm,
  .navbar-expand-xxl > .container-md,
  .navbar-expand-xxl > .container-lg,
  .navbar-expand-xxl > .container-xl,
  .navbar-expand-xxl > .container-xxl,
  .navbar-expand-xxl > .container-xxxl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xxl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-xxl .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xxl > .container, .elementor .navbar-expand-xxl > .e-container,
  .navbar-expand-xxl > .container-fluid,
  .navbar-expand-xxl > .container-xxxs,
  .navbar-expand-xxl > .container-xxs,
  .navbar-expand-xxl > .container-xs,
  .navbar-expand-xxl > .container-sm,
  .navbar-expand-xxl > .container-md,
  .navbar-expand-xxl > .container-lg,
  .navbar-expand-xxl > .container-xl,
  .navbar-expand-xxl > .container-xxl,
  .navbar-expand-xxl > .container-xxxl {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
  .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxl .navbar-collapse {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-flex-basis: auto;
        -ms-flex-preferred-size: auto;
            flex-basis: auto;
  }
  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
}
@media (max-width: 1499.98px) {
  .navbar-expand-xxxl > .container, .elementor .navbar-expand-xxxl > .e-container,
  .navbar-expand-xxxl > .container-fluid,
  .navbar-expand-xxxl > .container-xxxs,
  .navbar-expand-xxxl > .container-xxs,
  .navbar-expand-xxxl > .container-xs,
  .navbar-expand-xxxl > .container-sm,
  .navbar-expand-xxxl > .container-md,
  .navbar-expand-xxxl > .container-lg,
  .navbar-expand-xxxl > .container-xl,
  .navbar-expand-xxxl > .container-xxl,
  .navbar-expand-xxxl > .container-xxxl {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 1500px) {
  .navbar-expand-xxxl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row nowrap;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-xxxl .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-xxxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxxl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xxxl > .container, .elementor .navbar-expand-xxxl > .e-container,
  .navbar-expand-xxxl > .container-fluid,
  .navbar-expand-xxxl > .container-xxxs,
  .navbar-expand-xxxl > .container-xxs,
  .navbar-expand-xxxl > .container-xs,
  .navbar-expand-xxxl > .container-sm,
  .navbar-expand-xxxl > .container-md,
  .navbar-expand-xxxl > .container-lg,
  .navbar-expand-xxxl > .container-xl,
  .navbar-expand-xxxl > .container-xxl,
  .navbar-expand-xxxl > .container-xxxl {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
  .navbar-expand-xxxl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxxl .navbar-collapse {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-flex-basis: auto;
        -ms-flex-preferred-size: auto;
            flex-basis: auto;
  }
  .navbar-expand-xxxl .navbar-toggler {
    display: none;
  }
}
.navbar-expand {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.navbar-expand > .container, .elementor .navbar-expand > .e-container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-xxxs,
.navbar-expand > .container-xxs,
.navbar-expand > .container-xs,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl,
.navbar-expand > .container-xxl,
.navbar-expand > .container-xxxl {
  padding-right: 0;
  padding-left: 0;
}
.navbar-expand .navbar-nav {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.navbar-expand > .container, .elementor .navbar-expand > .e-container,
.navbar-expand > .container-fluid,
.navbar-expand > .container-xxxs,
.navbar-expand > .container-xxs,
.navbar-expand > .container-xs,
.navbar-expand > .container-sm,
.navbar-expand > .container-md,
.navbar-expand > .container-lg,
.navbar-expand > .container-xl,
.navbar-expand > .container-xxl,
.navbar-expand > .container-xxxl {
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}
.navbar-expand .navbar-collapse {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-flex-basis: auto;
      -ms-flex-preferred-size: auto;
          flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}
.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}
.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #fff;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}
.navbar-dark .navbar-text a {
  color: #fff;
}
.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
  color: #fff;
}

.card {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 3px;
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}
.card-link + .card-link {
  margin-left: 1.25rem;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.card-header:first-child {
  border-radius: 2px 2px 0 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}
.card-footer:last-child {
  border-radius: 0 0 2px 2px;
}

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
  border-radius: 2px;
}

.card-img,
.card-img-top,
.card-img-bottom {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
}

.card-deck .card {
  margin-bottom: 15px;
}
@media (min-width: 667px) {
  .card-deck {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .card-deck .card {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 0%;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

.card-group > .card {
  margin-bottom: 15px;
}
@media (min-width: 667px) {
  .card-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
  .card-group > .card {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 0%;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
  .card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
  .card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
  .card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
  .card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.card-columns .card {
  margin-bottom: 0.75rem;
}
@media (min-width: 667px) {
  .card-columns {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

.accordion {
  overflow-anchor: none;
}
.accordion > .card {
  overflow: hidden;
}
.accordion > .card:not(:last-of-type) {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.accordion > .card:not(:first-of-type) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.accordion > .card > .card-header {
  border-radius: 0;
  margin-bottom: -1px;
}

.breadcrumb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: 3px;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}
.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}
.breadcrumb-item.active {
  color: #6c757d;
}

.pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 3px;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #00DBFF;
  background-color: #fff;
  border: 1px solid #dee2e6;
}
.page-link:hover {
  z-index: 2;
  color: rgb(0, 153.3, 178.5);
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.page-link:focus {
  z-index: 3;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 219, 255, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 219, 255, 0.25);
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.page-item:last-child .page-link {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #00DBFF;
  border-color: #00DBFF;
}
.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}
.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}
.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}
.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 3px;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .badge {
    -webkit-transition: none;
    transition: none;
  }
}
a.badge:hover, a.badge:focus {
  text-decoration: none;
}

.badge:empty {
  display: none;
}

.btn .badge, #BorlabsCookieBox ._brlbs-btn-accept-all .badge, .has--btn-underline-white .elementor-button .badge, .has--btn-underline .elementor-button .badge, .gform_wrapper .button .badge {
  position: relative;
  top: -1px;
}

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}

.badge-primary {
  color: #212529;
  background-color: #00DBFF;
}
a.badge-primary:hover, a.badge-primary:focus {
  color: #212529;
  background-color: rgb(0, 175.2, 204);
}
a.badge-primary:focus, a.badge-primary.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 219, 255, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(0, 219, 255, 0.5);
}

.badge-secondary {
  color: #fff;
  background-color: #6c757d;
}
a.badge-secondary:hover, a.badge-secondary:focus {
  color: #fff;
  background-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
}
a.badge-secondary:focus, a.badge-secondary.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.badge-success {
  color: #fff;
  background-color: #007E4F;
}
a.badge-success:hover, a.badge-success:focus {
  color: #fff;
  background-color: rgb(0, 75, 47.0238095238);
}
a.badge-success:focus, a.badge-success.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 126, 79, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(0, 126, 79, 0.5);
}

.badge-info {
  color: #fff;
  background-color: #17a2b8;
}
a.badge-info:hover, a.badge-info:focus {
  color: #fff;
  background-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
}
a.badge-info:focus, a.badge-info.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.badge-warning {
  color: #212529;
  background-color: #ffc107;
}
a.badge-warning:hover, a.badge-warning:focus {
  color: #212529;
  background-color: rgb(211, 158.25, 0);
}
a.badge-warning:focus, a.badge-warning.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.badge-danger {
  color: #fff;
  background-color: #C00418;
}
a.badge-danger:hover, a.badge-danger:focus {
  color: #fff;
  background-color: rgb(142.0408163265, 2.9591836735, 17.7551020408);
}
a.badge-danger:focus, a.badge-danger.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(192, 4, 24, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(192, 4, 24, 0.5);
}

.badge-light {
  color: #212529;
  background-color: #f8f9fa;
}
a.badge-light:hover, a.badge-light:focus {
  color: #212529;
  background-color: rgb(218.25, 223.5, 228.75);
}
a.badge-light:focus, a.badge-light.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.badge-dark {
  color: #fff;
  background-color: #706F6F;
}
a.badge-dark:hover, a.badge-dark:focus {
  color: #fff;
  background-color: rgb(86.3856502242, 85.6143497758, 85.6143497758);
}
a.badge-dark:focus, a.badge-dark.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(112, 111, 111, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(112, 111, 111, 0.5);
}

.badge-darkgrey {
  color: #fff;
  background-color: #333333;
}
a.badge-darkgrey:hover, a.badge-darkgrey:focus {
  color: #fff;
  background-color: rgb(25.5, 25.5, 25.5);
}
a.badge-darkgrey:focus, a.badge-darkgrey.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(51, 51, 51, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(51, 51, 51, 0.5);
}

.badge-darkblue {
  color: #fff;
  background-color: #151B30;
}
a.badge-darkblue:hover, a.badge-darkblue:focus {
  color: #fff;
  background-color: rgb(5.4782608696, 7.0434782609, 12.5217391304);
}
a.badge-darkblue:focus, a.badge-darkblue.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(21, 27, 48, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(21, 27, 48, 0.5);
}

.badge-lightgrey {
  color: #212529;
  background-color: #ECECED;
}
a.badge-lightgrey:hover, a.badge-lightgrey:focus {
  color: #212529;
  background-color: rgb(209.8108108108, 209.8108108108, 212.1891891892);
}
a.badge-lightgrey:focus, a.badge-lightgrey.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(236, 236, 237, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(236, 236, 237, 0.5);
}

.badge-grey {
  color: #fff;
  background-color: #636362;
}
a.badge-grey:hover, a.badge-grey:focus {
  color: #fff;
  background-color: rgb(73.3705583756, 73.3705583756, 72.6294416244);
}
a.badge-grey:focus, a.badge-grey.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(99, 99, 98, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(99, 99, 98, 0.5);
}

.badge-orange {
  color: #212529;
  background-color: #00DBFF;
}
a.badge-orange:hover, a.badge-orange:focus {
  color: #212529;
  background-color: rgb(0, 175.2, 204);
}
a.badge-orange:focus, a.badge-orange.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 219, 255, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(0, 219, 255, 0.5);
}

.badge-greyergrey {
  color: #fff;
  background-color: #707173;
}
a.badge-greyergrey:hover, a.badge-greyergrey:focus {
  color: #fff;
  background-color: rgb(86.8370044053, 87.6123348018, 89.1629955947);
}
a.badge-greyergrey:focus, a.badge-greyergrey.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(112, 113, 115, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(112, 113, 115, 0.5);
}

.badge-red {
  color: #fff;
  background-color: #C00418;
}
a.badge-red:hover, a.badge-red:focus {
  color: #fff;
  background-color: rgb(142.0408163265, 2.9591836735, 17.7551020408);
}
a.badge-red:focus, a.badge-red.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(192, 4, 24, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(192, 4, 24, 0.5);
}

.badge-green {
  color: #fff;
  background-color: #007E4F;
}
a.badge-green:hover, a.badge-green:focus {
  color: #fff;
  background-color: rgb(0, 75, 47.0238095238);
}
a.badge-green:focus, a.badge-green.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 126, 79, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(0, 126, 79, 0.5);
}

.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: 0.3rem;
}
@media (min-width: 667px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}

.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}

.alert, .validation_error {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 3px;
}

.alert-heading {
  color: inherit;
}

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

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

.alert-primary {
  color: rgb(0, 113.88, 132.6);
  background-color: rgb(204, 247.8, 255);
  border-color: rgb(183.6, 244.92, 255);
}
.alert-primary hr {
  border-top-color: rgb(158.1, 241.32, 255);
}
.alert-primary .alert-link {
  color: rgb(0, 70.08, 81.6);
}

.alert-secondary {
  color: rgb(56.16, 60.84, 65);
  background-color: rgb(225.6, 227.4, 229);
  border-color: rgb(213.84, 216.36, 218.6);
}
.alert-secondary hr {
  border-top-color: rgb(200.3075090253, 203.6560288809, 206.6324909747);
}
.alert-secondary .alert-link {
  color: rgb(32.5205150215, 35.2305579399, 37.6394849785);
}

.alert-success {
  color: rgb(0, 65.52, 41.08);
  background-color: rgb(204, 229.2, 219.8);
  border-color: rgb(183.6, 218.88, 205.72);
}
.alert-success hr {
  border-top-color: rgb(166.66640625, 210.31359375, 194.0325);
}
.alert-success .alert-link {
  color: rgb(0, 14.52, 9.1038095238);
}

.alert-info {
  color: rgb(11.96, 84.24, 95.68);
  background-color: rgb(208.6, 236.4, 240.8);
  border-color: rgb(190.04, 228.96, 235.12);
}
.alert-info hr {
  border-top-color: rgb(170.5152475248, 221.1332673267, 229.1447524752);
}
.alert-info .alert-link {
  color: rgb(6.2933333333, 44.3269565217, 50.3466666667);
}

.alert-warning {
  color: rgb(132.6, 100.36, 3.64);
  background-color: rgb(255, 242.6, 205.4);
  border-color: rgb(255, 237.64, 185.56);
}
.alert-warning hr {
  border-top-color: rgb(255, 231.265, 160.06);
}
.alert-warning .alert-link {
  color: rgb(82.9625954198, 62.7912977099, 2.2774045802);
}

.alert-danger, .validation_error, .gform_wrapper .gfield_error input,
.gform_wrapper .gfield_error select,
.gform_wrapper .gfield_error textarea, .gform_wrapper .gfield_error .gfield_label {
  color: rgb(99.84, 2.08, 12.48);
  background-color: rgb(242.4, 204.8, 208.8);
  border-color: rgb(237.36, 184.72, 190.32);
}
.alert-danger hr, .validation_error hr, .gform_wrapper .gfield_error input hr,
.gform_wrapper .gfield_error select hr,
.gform_wrapper .gfield_error textarea hr, .gform_wrapper .gfield_error .gfield_label hr {
  border-top-color: rgb(232.2437579618, 164.3362420382, 171.5604458599);
}
.alert-danger .alert-link, .validation_error .alert-link, .gform_wrapper .gfield_error input .alert-link,
.gform_wrapper .gfield_error select .alert-link,
.gform_wrapper .gfield_error textarea .alert-link, .gform_wrapper .gfield_error .gfield_label .alert-link {
  color: rgb(49.8808163265, 1.0391836735, 6.2351020408);
}

.alert-light {
  color: rgb(128.96, 129.48, 130);
  background-color: rgb(253.6, 253.8, 254);
  border-color: rgb(253.04, 253.32, 253.6);
}
.alert-light hr {
  border-top-color: rgb(238.165, 240.57, 242.975);
}
.alert-light .alert-link {
  color: rgb(103.5492351816, 103.98, 104.4107648184);
}

.alert-dark {
  color: rgb(58.24, 57.72, 57.72);
  background-color: rgb(226.4, 226.2, 226.2);
  border-color: rgb(214.96, 214.68, 214.68);
}
.alert-dark hr {
  border-top-color: rgb(202.2544250871, 201.8855749129, 201.8855749129);
}
.alert-dark .alert-link {
  color: rgb(32.6256502242, 32.3343497758, 32.3343497758);
}

.alert-darkgrey {
  color: rgb(26.52, 26.52, 26.52);
  background-color: rgb(214.2, 214.2, 214.2);
  border-color: rgb(197.88, 197.88, 197.88);
}
.alert-darkgrey hr {
  border-top-color: rgb(185.13, 185.13, 185.13);
}
.alert-darkgrey .alert-link {
  color: rgb(1.02, 1.02, 1.02);
}

.alert-darkblue {
  color: rgb(10.92, 14.04, 24.96);
  background-color: rgb(208.2, 209.4, 213.6);
  border-color: rgb(189.48, 191.16, 197.04);
}
.alert-darkblue hr {
  border-top-color: rgb(175.9493877551, 177.9763265306, 185.0706122449);
}
.alert-darkblue .alert-link {
  color: black;
}

.alert-lightgrey {
  color: rgb(122.72, 122.72, 123.24);
  background-color: rgb(251.2, 251.2, 251.4);
  border-color: rgb(249.68, 249.68, 249.96);
}
.alert-lightgrey hr {
  border-top-color: rgb(236.5854054054, 236.5854054054, 237.5545945946);
}
.alert-lightgrey .alert-link {
  color: rgb(97.2739112051, 97.2739112051, 97.6860887949);
}

.alert-grey {
  color: rgb(51.48, 51.48, 50.96);
  background-color: rgb(223.8, 223.8, 223.6);
  border-color: rgb(211.32, 211.32, 211.04);
}
.alert-grey hr {
  border-top-color: rgb(198.6107348243, 198.6107348243, 198.2492651757);
}
.alert-grey .alert-link {
  color: rgb(25.8505583756, 25.8505583756, 25.5894416244);
}

.alert-orange {
  color: rgb(0, 113.88, 132.6);
  background-color: rgb(204, 247.8, 255);
  border-color: rgb(183.6, 244.92, 255);
}
.alert-orange hr {
  border-top-color: rgb(158.1, 241.32, 255);
}
.alert-orange .alert-link {
  color: rgb(0, 70.08, 81.6);
}

.alert-greyergrey {
  color: rgb(58.24, 58.76, 59.8);
  background-color: rgb(226.4, 226.6, 227);
  border-color: rgb(214.96, 215.24, 215.8);
}
.alert-greyergrey hr {
  border-top-color: rgb(202.0748409894, 202.4449469965, 203.1851590106);
}
.alert-greyergrey .alert-link {
  color: rgb(33.0770044053, 33.3723348018, 33.9629955947);
}

.alert-red {
  color: rgb(99.84, 2.08, 12.48);
  background-color: rgb(242.4, 204.8, 208.8);
  border-color: rgb(237.36, 184.72, 190.32);
}
.alert-red hr {
  border-top-color: rgb(232.2437579618, 164.3362420382, 171.5604458599);
}
.alert-red .alert-link {
  color: rgb(49.8808163265, 1.0391836735, 6.2351020408);
}

.alert-green {
  color: rgb(0, 65.52, 41.08);
  background-color: rgb(204, 229.2, 219.8);
  border-color: rgb(183.6, 218.88, 205.72);
}
.alert-green hr {
  border-top-color: rgb(166.66640625, 210.31359375, 194.0325);
}
.alert-green .alert-link {
  color: rgb(0, 14.52, 9.1038095238);
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}
.progress {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 1rem;
  overflow: hidden;
  line-height: 0;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 3px;
}

.progress-bar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #00DBFF;
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    -webkit-transition: none;
    transition: none;
  }
}

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  -webkit-animation: 1s linear infinite progress-bar-stripes;
          animation: 1s linear infinite progress-bar-stripes;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    -webkit-animation: none;
            animation: none;
  }
}

.media {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.media-body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.list-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 3px;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}
.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}
.list-group-item-action:active {
  color: #fff;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}
.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}
.list-group-item.disabled, .list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
}
.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #00DBFF;
  border-color: #00DBFF;
}
.list-group-item + .list-group-item {
  border-top-width: 0;
}
.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}

.list-group-horizontal {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}
.list-group-horizontal > .list-group-item:first-child {
  border-bottom-left-radius: 3px;
  border-top-right-radius: 0;
}
.list-group-horizontal > .list-group-item:last-child {
  border-top-right-radius: 3px;
  border-bottom-left-radius: 0;
}
.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}

@media (min-width: 320px) {
  .list-group-horizontal-xxs {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .list-group-horizontal-xxs > .list-group-item:first-child {
    border-bottom-left-radius: 3px;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xxs > .list-group-item:last-child {
    border-top-right-radius: 3px;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xxs > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xxs > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xxs > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 568px) {
  .list-group-horizontal-xs {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .list-group-horizontal-xs > .list-group-item:first-child {
    border-bottom-left-radius: 3px;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xs > .list-group-item:last-child {
    border-top-right-radius: 3px;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xs > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xs > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xs > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 667px) {
  .list-group-horizontal-sm {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .list-group-horizontal-sm > .list-group-item:first-child {
    border-bottom-left-radius: 3px;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item:last-child {
    border-top-right-radius: 3px;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 768px) {
  .list-group-horizontal-md {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .list-group-horizontal-md > .list-group-item:first-child {
    border-bottom-left-radius: 3px;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item:last-child {
    border-top-right-radius: 3px;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 992px) {
  .list-group-horizontal-lg {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .list-group-horizontal-lg > .list-group-item:first-child {
    border-bottom-left-radius: 3px;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item:last-child {
    border-top-right-radius: 3px;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1100px) {
  .list-group-horizontal-xl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .list-group-horizontal-xl > .list-group-item:first-child {
    border-bottom-left-radius: 3px;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item:last-child {
    border-top-right-radius: 3px;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1200px) {
  .list-group-horizontal-xxl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .list-group-horizontal-xxl > .list-group-item:first-child {
    border-bottom-left-radius: 3px;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item:last-child {
    border-top-right-radius: 3px;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1500px) {
  .list-group-horizontal-xxxl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .list-group-horizontal-xxxl > .list-group-item:first-child {
    border-bottom-left-radius: 3px;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xxxl > .list-group-item:last-child {
    border-top-right-radius: 3px;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xxxl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xxxl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xxxl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
.list-group-flush {
  border-radius: 0;
}
.list-group-flush > .list-group-item {
  border-width: 0 0 1px;
}
.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  color: rgb(0, 113.88, 132.6);
  background-color: rgb(183.6, 244.92, 255);
}
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: rgb(0, 113.88, 132.6);
  background-color: rgb(158.1, 241.32, 255);
}
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: rgb(0, 113.88, 132.6);
  border-color: rgb(0, 113.88, 132.6);
}

.list-group-item-secondary {
  color: rgb(56.16, 60.84, 65);
  background-color: rgb(213.84, 216.36, 218.6);
}
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: rgb(56.16, 60.84, 65);
  background-color: rgb(200.3075090253, 203.6560288809, 206.6324909747);
}
.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: rgb(56.16, 60.84, 65);
  border-color: rgb(56.16, 60.84, 65);
}

.list-group-item-success {
  color: rgb(0, 65.52, 41.08);
  background-color: rgb(183.6, 218.88, 205.72);
}
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: rgb(0, 65.52, 41.08);
  background-color: rgb(166.66640625, 210.31359375, 194.0325);
}
.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: rgb(0, 65.52, 41.08);
  border-color: rgb(0, 65.52, 41.08);
}

.list-group-item-info {
  color: rgb(11.96, 84.24, 95.68);
  background-color: rgb(190.04, 228.96, 235.12);
}
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: rgb(11.96, 84.24, 95.68);
  background-color: rgb(170.5152475248, 221.1332673267, 229.1447524752);
}
.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: rgb(11.96, 84.24, 95.68);
  border-color: rgb(11.96, 84.24, 95.68);
}

.list-group-item-warning {
  color: rgb(132.6, 100.36, 3.64);
  background-color: rgb(255, 237.64, 185.56);
}
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: rgb(132.6, 100.36, 3.64);
  background-color: rgb(255, 231.265, 160.06);
}
.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: rgb(132.6, 100.36, 3.64);
  border-color: rgb(132.6, 100.36, 3.64);
}

.list-group-item-danger {
  color: rgb(99.84, 2.08, 12.48);
  background-color: rgb(237.36, 184.72, 190.32);
}
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: rgb(99.84, 2.08, 12.48);
  background-color: rgb(232.2437579618, 164.3362420382, 171.5604458599);
}
.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: rgb(99.84, 2.08, 12.48);
  border-color: rgb(99.84, 2.08, 12.48);
}

.list-group-item-light {
  color: rgb(128.96, 129.48, 130);
  background-color: rgb(253.04, 253.32, 253.6);
}
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: rgb(128.96, 129.48, 130);
  background-color: rgb(238.165, 240.57, 242.975);
}
.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: rgb(128.96, 129.48, 130);
  border-color: rgb(128.96, 129.48, 130);
}

.list-group-item-dark {
  color: rgb(58.24, 57.72, 57.72);
  background-color: rgb(214.96, 214.68, 214.68);
}
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: rgb(58.24, 57.72, 57.72);
  background-color: rgb(202.2544250871, 201.8855749129, 201.8855749129);
}
.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: rgb(58.24, 57.72, 57.72);
  border-color: rgb(58.24, 57.72, 57.72);
}

.list-group-item-darkgrey {
  color: rgb(26.52, 26.52, 26.52);
  background-color: rgb(197.88, 197.88, 197.88);
}
.list-group-item-darkgrey.list-group-item-action:hover, .list-group-item-darkgrey.list-group-item-action:focus {
  color: rgb(26.52, 26.52, 26.52);
  background-color: rgb(185.13, 185.13, 185.13);
}
.list-group-item-darkgrey.list-group-item-action.active {
  color: #fff;
  background-color: rgb(26.52, 26.52, 26.52);
  border-color: rgb(26.52, 26.52, 26.52);
}

.list-group-item-darkblue {
  color: rgb(10.92, 14.04, 24.96);
  background-color: rgb(189.48, 191.16, 197.04);
}
.list-group-item-darkblue.list-group-item-action:hover, .list-group-item-darkblue.list-group-item-action:focus {
  color: rgb(10.92, 14.04, 24.96);
  background-color: rgb(175.9493877551, 177.9763265306, 185.0706122449);
}
.list-group-item-darkblue.list-group-item-action.active {
  color: #fff;
  background-color: rgb(10.92, 14.04, 24.96);
  border-color: rgb(10.92, 14.04, 24.96);
}

.list-group-item-lightgrey {
  color: rgb(122.72, 122.72, 123.24);
  background-color: rgb(249.68, 249.68, 249.96);
}
.list-group-item-lightgrey.list-group-item-action:hover, .list-group-item-lightgrey.list-group-item-action:focus {
  color: rgb(122.72, 122.72, 123.24);
  background-color: rgb(236.5854054054, 236.5854054054, 237.5545945946);
}
.list-group-item-lightgrey.list-group-item-action.active {
  color: #fff;
  background-color: rgb(122.72, 122.72, 123.24);
  border-color: rgb(122.72, 122.72, 123.24);
}

.list-group-item-grey {
  color: rgb(51.48, 51.48, 50.96);
  background-color: rgb(211.32, 211.32, 211.04);
}
.list-group-item-grey.list-group-item-action:hover, .list-group-item-grey.list-group-item-action:focus {
  color: rgb(51.48, 51.48, 50.96);
  background-color: rgb(198.6107348243, 198.6107348243, 198.2492651757);
}
.list-group-item-grey.list-group-item-action.active {
  color: #fff;
  background-color: rgb(51.48, 51.48, 50.96);
  border-color: rgb(51.48, 51.48, 50.96);
}

.list-group-item-orange {
  color: rgb(0, 113.88, 132.6);
  background-color: rgb(183.6, 244.92, 255);
}
.list-group-item-orange.list-group-item-action:hover, .list-group-item-orange.list-group-item-action:focus {
  color: rgb(0, 113.88, 132.6);
  background-color: rgb(158.1, 241.32, 255);
}
.list-group-item-orange.list-group-item-action.active {
  color: #fff;
  background-color: rgb(0, 113.88, 132.6);
  border-color: rgb(0, 113.88, 132.6);
}

.list-group-item-greyergrey {
  color: rgb(58.24, 58.76, 59.8);
  background-color: rgb(214.96, 215.24, 215.8);
}
.list-group-item-greyergrey.list-group-item-action:hover, .list-group-item-greyergrey.list-group-item-action:focus {
  color: rgb(58.24, 58.76, 59.8);
  background-color: rgb(202.0748409894, 202.4449469965, 203.1851590106);
}
.list-group-item-greyergrey.list-group-item-action.active {
  color: #fff;
  background-color: rgb(58.24, 58.76, 59.8);
  border-color: rgb(58.24, 58.76, 59.8);
}

.list-group-item-red {
  color: rgb(99.84, 2.08, 12.48);
  background-color: rgb(237.36, 184.72, 190.32);
}
.list-group-item-red.list-group-item-action:hover, .list-group-item-red.list-group-item-action:focus {
  color: rgb(99.84, 2.08, 12.48);
  background-color: rgb(232.2437579618, 164.3362420382, 171.5604458599);
}
.list-group-item-red.list-group-item-action.active {
  color: #fff;
  background-color: rgb(99.84, 2.08, 12.48);
  border-color: rgb(99.84, 2.08, 12.48);
}

.list-group-item-green {
  color: rgb(0, 65.52, 41.08);
  background-color: rgb(183.6, 218.88, 205.72);
}
.list-group-item-green.list-group-item-action:hover, .list-group-item-green.list-group-item-action:focus {
  color: rgb(0, 65.52, 41.08);
  background-color: rgb(166.66640625, 210.31359375, 194.0325);
}
.list-group-item-green.list-group-item-action.active {
  color: #fff;
  background-color: rgb(0, 65.52, 41.08);
  border-color: rgb(0, 65.52, 41.08);
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
}
.close:hover {
  color: #000;
  text-decoration: none;
}
.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
  opacity: 0.75;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
}

a.close.disabled {
  pointer-events: none;
}

.toast {
  -webkit-flex-basis: 350px;
      -ms-flex-preferred-size: 350px;
          flex-basis: 350px;
  max-width: 350px;
  font-size: 0.875rem;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  opacity: 0;
  border-radius: 0.25rem;
}
.toast:not(:last-child) {
  margin-bottom: 0.75rem;
}
.toast.showing {
  opacity: 1;
}
.toast.show {
  display: block;
  opacity: 1;
}
.toast.hide {
  display: none;
}

.toast-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.25rem 0.75rem;
  color: #6c757d;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.toast-body {
  padding: 0.75rem;
}

.modal-open {
  overflow: hidden;
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
      -ms-transform: translate(0, -50px);
          transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    -webkit-transition: none;
    transition: none;
  }
}
.modal.show .modal-dialog {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.modal.modal-static .modal-dialog {
  -webkit-transform: scale(1.02);
      -ms-transform: scale(1.02);
          transform: scale(1.02);
}

.modal-dialog-scrollable {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}
.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: calc(100% - 1rem);
}
.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  content: "";
}
.modal-dialog-centered.modal-dialog-scrollable {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}
.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > * {
  margin: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 667px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
  }
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1100px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: "Campton-Light";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: 0.9;
}
.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}
.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top, .bs-tooltip-auto[x-placement^=top] {
  padding: 0.4rem 0;
}
.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^=top] .arrow {
  bottom: 0;
}
.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^=top] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.bs-tooltip-right, .bs-tooltip-auto[x-placement^=right] {
  padding: 0 0.4rem;
}
.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^=right] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^=right] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^=bottom] {
  padding: 0.4rem 0;
}
.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^=bottom] .arrow {
  top: 0;
}
.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^=bottom] .arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

.bs-tooltip-left, .bs-tooltip-auto[x-placement^=left] {
  padding: 0 0.4rem;
}
.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^=left] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^=left] .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 3px;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: "Campton-Light";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}
.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
  margin: 0 0.3rem;
}
.popover .arrow::before, .popover .arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top, .bs-popover-auto[x-placement^=top] {
  margin-bottom: 0.5rem;
}
.bs-popover-top > .arrow, .bs-popover-auto[x-placement^=top] > .arrow {
  bottom: calc(-0.5rem - 1px);
}
.bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^=top] > .arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^=top] > .arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}

.bs-popover-right, .bs-popover-auto[x-placement^=right] {
  margin-left: 0.5rem;
}
.bs-popover-right > .arrow, .bs-popover-auto[x-placement^=right] > .arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}
.bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^=right] > .arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^=right] > .arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #fff;
}

.bs-popover-bottom, .bs-popover-auto[x-placement^=bottom] {
  margin-top: 0.5rem;
}
.bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^=bottom] > .arrow {
  top: calc(-0.5rem - 1px);
}
.bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^=bottom] > .arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^=bottom] > .arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #fff;
}
.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid rgb(247.35, 247.35, 247.35);
}

.bs-popover-left, .bs-popover-auto[x-placement^=left] {
  margin-right: 0.5rem;
}
.bs-popover-left > .arrow, .bs-popover-auto[x-placement^=left] > .arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}
.bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^=left] > .arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}
.bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^=left] > .arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #fff;
}

.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  background-color: rgb(247.35, 247.35, 247.35);
  border-bottom: 1px solid rgb(234.6, 234.6, 234.6);
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 0.5rem 0.75rem;
  color: #fff;
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    -webkit-transition: none;
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  z-index: 1;
  opacity: 1;
}
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
  -webkit-transition: opacity 0s 0.6s;
  transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-right {
    -webkit-transition: none;
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  border: 0;
  opacity: 0.5;
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    -webkit-transition: none;
    transition: none;
  }
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: 50%/100% 100% no-repeat;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}
.carousel-indicators li {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators li {
    -webkit-transition: none;
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

@-webkit-keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  border: 0.25em solid currentcolor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: 0.75s linear infinite spinner-border;
          animation: 0.75s linear infinite spinner-border;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

@-webkit-keyframes spinner-grow {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes spinner-grow {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  background-color: currentcolor;
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: 0.75s linear infinite spinner-grow;
          animation: 0.75s linear infinite spinner-grow;
}

.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .spinner-border,
  .spinner-grow {
    -webkit-animation-duration: 1.5s;
            animation-duration: 1.5s;
  }
}
.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #00DBFF !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: rgb(0, 175.2, 204) !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: rgb(84.3605150215, 91.3905579399, 97.6394849785) !important;
}

.bg-success {
  background-color: #007E4F !important;
}

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: rgb(0, 75, 47.0238095238) !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: rgb(17.3333333333, 122.0869565217, 138.6666666667) !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: rgb(211, 158.25, 0) !important;
}

.bg-danger {
  background-color: #C00418 !important;
}

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: rgb(142.0408163265, 2.9591836735, 17.7551020408) !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: rgb(218.25, 223.5, 228.75) !important;
}

.bg-dark {
  background-color: #706F6F !important;
}

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: rgb(86.3856502242, 85.6143497758, 85.6143497758) !important;
}

.bg-darkgrey {
  background-color: #333333 !important;
}

a.bg-darkgrey:hover, a.bg-darkgrey:focus,
button.bg-darkgrey:hover,
button.bg-darkgrey:focus {
  background-color: rgb(25.5, 25.5, 25.5) !important;
}

.bg-darkblue {
  background-color: #151B30 !important;
}

a.bg-darkblue:hover, a.bg-darkblue:focus,
button.bg-darkblue:hover,
button.bg-darkblue:focus {
  background-color: rgb(5.4782608696, 7.0434782609, 12.5217391304) !important;
}

.bg-lightgrey {
  background-color: #ECECED !important;
}

a.bg-lightgrey:hover, a.bg-lightgrey:focus,
button.bg-lightgrey:hover,
button.bg-lightgrey:focus {
  background-color: rgb(209.8108108108, 209.8108108108, 212.1891891892) !important;
}

.bg-grey {
  background-color: #636362 !important;
}

a.bg-grey:hover, a.bg-grey:focus,
button.bg-grey:hover,
button.bg-grey:focus {
  background-color: rgb(73.3705583756, 73.3705583756, 72.6294416244) !important;
}

.bg-orange {
  background-color: #00DBFF !important;
}

a.bg-orange:hover, a.bg-orange:focus,
button.bg-orange:hover,
button.bg-orange:focus {
  background-color: rgb(0, 175.2, 204) !important;
}

.bg-greyergrey {
  background-color: #707173 !important;
}

a.bg-greyergrey:hover, a.bg-greyergrey:focus,
button.bg-greyergrey:hover,
button.bg-greyergrey:focus {
  background-color: rgb(86.8370044053, 87.6123348018, 89.1629955947) !important;
}

.bg-red {
  background-color: #C00418 !important;
}

a.bg-red:hover, a.bg-red:focus,
button.bg-red:hover,
button.bg-red:focus {
  background-color: rgb(142.0408163265, 2.9591836735, 17.7551020408) !important;
}

.bg-green {
  background-color: #007E4F !important;
}

a.bg-green:hover, a.bg-green:focus,
button.bg-green:hover,
button.bg-green:focus {
  background-color: rgb(0, 75, 47.0238095238) !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #00DBFF !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #007E4F !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #C00418 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #706F6F !important;
}

.border-darkgrey {
  border-color: #333333 !important;
}

.border-darkblue {
  border-color: #151B30 !important;
}

.border-lightgrey {
  border-color: #ECECED !important;
}

.border-grey {
  border-color: #636362 !important;
}

.border-orange {
  border-color: #00DBFF !important;
}

.border-greyergrey {
  border-color: #707173 !important;
}

.border-red {
  border-color: #C00418 !important;
}

.border-green {
  border-color: #007E4F !important;
}

.border-white {
  border-color: #fff !important;
}

.rounded-sm {
  border-radius: 0.2rem !important;
}

.rounded {
  border-radius: 3px !important;
}

.rounded-top {
  border-top-left-radius: 3px !important;
  border-top-right-radius: 3px !important;
}

.rounded-right {
  border-top-right-radius: 3px !important;
  border-bottom-right-radius: 3px !important;
}

.rounded-bottom {
  border-bottom-right-radius: 3px !important;
  border-bottom-left-radius: 3px !important;
}

.rounded-left {
  border-top-left-radius: 3px !important;
  border-bottom-left-radius: 3px !important;
}

.rounded-lg {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.d-none {
  display: none !important;
}

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

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

.d-block, .menu-toggle {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex, #BorlabsCookieBox .cookie-preference > .container > .row > .col-12 > .row > .col-2, #BorlabsCookieBox .related-posts-widget .cookie-preference > .container > ul > .col-12 > .row > .col-2, .related-posts-widget #BorlabsCookieBox .cookie-preference > .container > ul > .col-12 > .row > .col-2, #BorlabsCookieBox .related-posts-widget .cookie-preference > .container > .row > .col-12 > ul > .col-2, .related-posts-widget #BorlabsCookieBox .cookie-preference > .container > .row > .col-12 > ul > .col-2, #BorlabsCookieBox .related-posts-widget .cookie-preference > .container > ul > .col-12 > ul > .col-2, .related-posts-widget #BorlabsCookieBox .cookie-preference > .container > ul > .col-12 > ul > .col-2, #BorlabsCookieBox .elementor .cookie-preference > .e-container > .row > .col-12 > .row > .col-2, #BorlabsCookieBox .elementor .related-posts-widget .cookie-preference > .e-container > ul > .col-12 > .row > .col-2, .related-posts-widget #BorlabsCookieBox .elementor .cookie-preference > .e-container > ul > .col-12 > .row > .col-2, #BorlabsCookieBox .elementor .related-posts-widget .cookie-preference > .e-container > .row > .col-12 > ul > .col-2, .related-posts-widget #BorlabsCookieBox .elementor .cookie-preference > .e-container > .row > .col-12 > ul > .col-2, #BorlabsCookieBox .elementor .related-posts-widget .cookie-preference > .e-container > ul > .col-12 > ul > .col-2, .related-posts-widget #BorlabsCookieBox .elementor .cookie-preference > .e-container > ul > .col-12 > ul > .col-2, .elementor #BorlabsCookieBox .cookie-preference > .e-container > .row > .col-12 > .row > .col-2, .elementor #BorlabsCookieBox .related-posts-widget .cookie-preference > .e-container > ul > .col-12 > .row > .col-2, .related-posts-widget .elementor #BorlabsCookieBox .cookie-preference > .e-container > ul > .col-12 > .row > .col-2, .elementor #BorlabsCookieBox .related-posts-widget .cookie-preference > .e-container > .row > .col-12 > ul > .col-2, .related-posts-widget .elementor #BorlabsCookieBox .cookie-preference > .e-container > .row > .col-12 > ul > .col-2, .elementor #BorlabsCookieBox .related-posts-widget .cookie-preference > .e-container > ul > .col-12 > ul > .col-2, .related-posts-widget .elementor #BorlabsCookieBox .cookie-preference > .e-container > ul > .col-12 > ul > .col-2 {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -webkit-inline-flex !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media (min-width: 320px) {
  .d-xxs-none {
    display: none !important;
  }
  .d-xxs-inline {
    display: inline !important;
  }
  .d-xxs-inline-block {
    display: inline-block !important;
  }
  .d-xxs-block {
    display: block !important;
  }
  .d-xxs-table {
    display: table !important;
  }
  .d-xxs-table-row {
    display: table-row !important;
  }
  .d-xxs-table-cell {
    display: table-cell !important;
  }
  .d-xxs-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xxs-inline-flex {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 568px) {
  .d-xs-none {
    display: none !important;
  }
  .d-xs-inline {
    display: inline !important;
  }
  .d-xs-inline-block {
    display: inline-block !important;
  }
  .d-xs-block {
    display: block !important;
  }
  .d-xs-table {
    display: table !important;
  }
  .d-xs-table-row {
    display: table-row !important;
  }
  .d-xs-table-cell {
    display: table-cell !important;
  }
  .d-xs-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xs-inline-flex {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 667px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none, .menu-toggle {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1100px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xxl-none {
    display: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1500px) {
  .d-xxxl-none {
    display: none !important;
  }
  .d-xxxl-inline {
    display: inline !important;
  }
  .d-xxxl-inline-block {
    display: inline-block !important;
  }
  .d-xxxl-block {
    display: block !important;
  }
  .d-xxxl-table {
    display: table !important;
  }
  .d-xxxl-table-row {
    display: table-row !important;
  }
  .d-xxxl-table-cell {
    display: table-cell !important;
  }
  .d-xxxl-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xxxl-inline-flex {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.embed-responsive::before {
  display: block;
  content: "";
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.85714286%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.embed-responsive-21by9::before {
  padding-top: 42.85714286%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -webkit-flex-direction: row !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -webkit-flex-direction: column !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
  -webkit-flex-direction: row-reverse !important;
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
  -webkit-flex-direction: column-reverse !important;
      -ms-flex-direction: column-reverse !important;
          flex-direction: column-reverse !important;
}

.flex-wrap {
  -webkit-flex-wrap: wrap !important;
      -ms-flex-wrap: wrap !important;
          flex-wrap: wrap !important;
}

.flex-nowrap {
  -webkit-flex-wrap: nowrap !important;
      -ms-flex-wrap: nowrap !important;
          flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -webkit-flex-wrap: wrap-reverse !important;
      -ms-flex-wrap: wrap-reverse !important;
          flex-wrap: wrap-reverse !important;
}

.flex-fill {
  -webkit-box-flex: 1 !important;
  -webkit-flex: 1 1 auto !important;
      -ms-flex: 1 1 auto !important;
          flex: 1 1 auto !important;
}

.flex-grow-0 {
  -webkit-box-flex: 0 !important;
  -webkit-flex-grow: 0 !important;
      -ms-flex-positive: 0 !important;
          flex-grow: 0 !important;
}

.flex-grow-1 {
  -webkit-box-flex: 1 !important;
  -webkit-flex-grow: 1 !important;
      -ms-flex-positive: 1 !important;
          flex-grow: 1 !important;
}

.flex-shrink-0 {
  -webkit-flex-shrink: 0 !important;
      -ms-flex-negative: 0 !important;
          flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -webkit-flex-shrink: 1 !important;
      -ms-flex-negative: 1 !important;
          flex-shrink: 1 !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
  -webkit-justify-content: flex-start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
  -webkit-justify-content: flex-end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -webkit-justify-content: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
  -webkit-justify-content: space-between !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

.justify-content-around {
  -webkit-justify-content: space-around !important;
      -ms-flex-pack: distribute !important;
          justify-content: space-around !important;
}

.align-items-start {
  -webkit-box-align: start !important;
  -webkit-align-items: flex-start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
  -webkit-align-items: flex-end !important;
      -ms-flex-align: end !important;
          align-items: flex-end !important;
}

.align-items-center, #BorlabsCookieBox .cookie-preference > .container > .row > .col-12 > .row > .col-2, #BorlabsCookieBox .related-posts-widget .cookie-preference > .container > ul > .col-12 > .row > .col-2, .related-posts-widget #BorlabsCookieBox .cookie-preference > .container > ul > .col-12 > .row > .col-2, #BorlabsCookieBox .related-posts-widget .cookie-preference > .container > .row > .col-12 > ul > .col-2, .related-posts-widget #BorlabsCookieBox .cookie-preference > .container > .row > .col-12 > ul > .col-2, #BorlabsCookieBox .related-posts-widget .cookie-preference > .container > ul > .col-12 > ul > .col-2, .related-posts-widget #BorlabsCookieBox .cookie-preference > .container > ul > .col-12 > ul > .col-2, #BorlabsCookieBox .elementor .cookie-preference > .e-container > .row > .col-12 > .row > .col-2, #BorlabsCookieBox .elementor .related-posts-widget .cookie-preference > .e-container > ul > .col-12 > .row > .col-2, .related-posts-widget #BorlabsCookieBox .elementor .cookie-preference > .e-container > ul > .col-12 > .row > .col-2, #BorlabsCookieBox .elementor .related-posts-widget .cookie-preference > .e-container > .row > .col-12 > ul > .col-2, .related-posts-widget #BorlabsCookieBox .elementor .cookie-preference > .e-container > .row > .col-12 > ul > .col-2, #BorlabsCookieBox .elementor .related-posts-widget .cookie-preference > .e-container > ul > .col-12 > ul > .col-2, .related-posts-widget #BorlabsCookieBox .elementor .cookie-preference > .e-container > ul > .col-12 > ul > .col-2, .elementor #BorlabsCookieBox .cookie-preference > .e-container > .row > .col-12 > .row > .col-2, .elementor #BorlabsCookieBox .related-posts-widget .cookie-preference > .e-container > ul > .col-12 > .row > .col-2, .related-posts-widget .elementor #BorlabsCookieBox .cookie-preference > .e-container > ul > .col-12 > .row > .col-2, .elementor #BorlabsCookieBox .related-posts-widget .cookie-preference > .e-container > .row > .col-12 > ul > .col-2, .related-posts-widget .elementor #BorlabsCookieBox .cookie-preference > .e-container > .row > .col-12 > ul > .col-2, .elementor #BorlabsCookieBox .related-posts-widget .cookie-preference > .e-container > ul > .col-12 > ul > .col-2, .related-posts-widget .elementor #BorlabsCookieBox .cookie-preference > .e-container > ul > .col-12 > ul > .col-2 {
  -webkit-box-align: center !important;
  -webkit-align-items: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
  -webkit-align-items: baseline !important;
      -ms-flex-align: baseline !important;
          align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
  -webkit-align-items: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important;
}

.align-content-start {
  -webkit-align-content: flex-start !important;
      -ms-flex-line-pack: start !important;
          align-content: flex-start !important;
}

.align-content-end {
  -webkit-align-content: flex-end !important;
      -ms-flex-line-pack: end !important;
          align-content: flex-end !important;
}

.align-content-center {
  -webkit-align-content: center !important;
      -ms-flex-line-pack: center !important;
          align-content: center !important;
}

.align-content-between {
  -webkit-align-content: space-between !important;
      -ms-flex-line-pack: justify !important;
          align-content: space-between !important;
}

.align-content-around {
  -webkit-align-content: space-around !important;
      -ms-flex-line-pack: distribute !important;
          align-content: space-around !important;
}

.align-content-stretch {
  -webkit-align-content: stretch !important;
      -ms-flex-line-pack: stretch !important;
          align-content: stretch !important;
}

.align-self-auto {
  -webkit-align-self: auto !important;
      -ms-flex-item-align: auto !important;
          align-self: auto !important;
}

.align-self-start {
  -webkit-align-self: flex-start !important;
      -ms-flex-item-align: start !important;
          align-self: flex-start !important;
}

.align-self-end {
  -webkit-align-self: flex-end !important;
      -ms-flex-item-align: end !important;
          align-self: flex-end !important;
}

.align-self-center {
  -webkit-align-self: center !important;
      -ms-flex-item-align: center !important;
          align-self: center !important;
}

.align-self-baseline {
  -webkit-align-self: baseline !important;
      -ms-flex-item-align: baseline !important;
          align-self: baseline !important;
}

.align-self-stretch {
  -webkit-align-self: stretch !important;
      -ms-flex-item-align: stretch !important;
          align-self: stretch !important;
}

@media (min-width: 320px) {
  .flex-xxs-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-xxs-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-xxs-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-xxs-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-xxs-wrap {
    -webkit-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
            flex-wrap: wrap !important;
  }
  .flex-xxs-nowrap {
    -webkit-flex-wrap: nowrap !important;
        -ms-flex-wrap: nowrap !important;
            flex-wrap: nowrap !important;
  }
  .flex-xxs-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
        -ms-flex-wrap: wrap-reverse !important;
            flex-wrap: wrap-reverse !important;
  }
  .flex-xxs-fill {
    -webkit-box-flex: 1 !important;
    -webkit-flex: 1 1 auto !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-xxs-grow-0 {
    -webkit-box-flex: 0 !important;
    -webkit-flex-grow: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-xxs-grow-1 {
    -webkit-box-flex: 1 !important;
    -webkit-flex-grow: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-xxs-shrink-0 {
    -webkit-flex-shrink: 0 !important;
        -ms-flex-negative: 0 !important;
            flex-shrink: 0 !important;
  }
  .flex-xxs-shrink-1 {
    -webkit-flex-shrink: 1 !important;
        -ms-flex-negative: 1 !important;
            flex-shrink: 1 !important;
  }
  .justify-content-xxs-start {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-xxs-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-xxs-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-xxs-between {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-xxs-around {
    -webkit-justify-content: space-around !important;
        -ms-flex-pack: distribute !important;
            justify-content: space-around !important;
  }
  .align-items-xxs-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-xxs-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-xxs-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-xxs-baseline {
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-xxs-stretch {
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-xxs-start {
    -webkit-align-content: flex-start !important;
        -ms-flex-line-pack: start !important;
            align-content: flex-start !important;
  }
  .align-content-xxs-end {
    -webkit-align-content: flex-end !important;
        -ms-flex-line-pack: end !important;
            align-content: flex-end !important;
  }
  .align-content-xxs-center {
    -webkit-align-content: center !important;
        -ms-flex-line-pack: center !important;
            align-content: center !important;
  }
  .align-content-xxs-between {
    -webkit-align-content: space-between !important;
        -ms-flex-line-pack: justify !important;
            align-content: space-between !important;
  }
  .align-content-xxs-around {
    -webkit-align-content: space-around !important;
        -ms-flex-line-pack: distribute !important;
            align-content: space-around !important;
  }
  .align-content-xxs-stretch {
    -webkit-align-content: stretch !important;
        -ms-flex-line-pack: stretch !important;
            align-content: stretch !important;
  }
  .align-self-xxs-auto {
    -webkit-align-self: auto !important;
        -ms-flex-item-align: auto !important;
            align-self: auto !important;
  }
  .align-self-xxs-start {
    -webkit-align-self: flex-start !important;
        -ms-flex-item-align: start !important;
            align-self: flex-start !important;
  }
  .align-self-xxs-end {
    -webkit-align-self: flex-end !important;
        -ms-flex-item-align: end !important;
            align-self: flex-end !important;
  }
  .align-self-xxs-center {
    -webkit-align-self: center !important;
        -ms-flex-item-align: center !important;
            align-self: center !important;
  }
  .align-self-xxs-baseline {
    -webkit-align-self: baseline !important;
        -ms-flex-item-align: baseline !important;
            align-self: baseline !important;
  }
  .align-self-xxs-stretch {
    -webkit-align-self: stretch !important;
        -ms-flex-item-align: stretch !important;
            align-self: stretch !important;
  }
}
@media (min-width: 568px) {
  .flex-xs-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-xs-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-xs-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-xs-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-xs-wrap {
    -webkit-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
            flex-wrap: wrap !important;
  }
  .flex-xs-nowrap {
    -webkit-flex-wrap: nowrap !important;
        -ms-flex-wrap: nowrap !important;
            flex-wrap: nowrap !important;
  }
  .flex-xs-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
        -ms-flex-wrap: wrap-reverse !important;
            flex-wrap: wrap-reverse !important;
  }
  .flex-xs-fill {
    -webkit-box-flex: 1 !important;
    -webkit-flex: 1 1 auto !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-xs-grow-0 {
    -webkit-box-flex: 0 !important;
    -webkit-flex-grow: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-xs-grow-1 {
    -webkit-box-flex: 1 !important;
    -webkit-flex-grow: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-xs-shrink-0 {
    -webkit-flex-shrink: 0 !important;
        -ms-flex-negative: 0 !important;
            flex-shrink: 0 !important;
  }
  .flex-xs-shrink-1 {
    -webkit-flex-shrink: 1 !important;
        -ms-flex-negative: 1 !important;
            flex-shrink: 1 !important;
  }
  .justify-content-xs-start {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-xs-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-xs-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-xs-between {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-xs-around {
    -webkit-justify-content: space-around !important;
        -ms-flex-pack: distribute !important;
            justify-content: space-around !important;
  }
  .align-items-xs-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-xs-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-xs-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-xs-baseline {
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-xs-stretch {
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-xs-start {
    -webkit-align-content: flex-start !important;
        -ms-flex-line-pack: start !important;
            align-content: flex-start !important;
  }
  .align-content-xs-end {
    -webkit-align-content: flex-end !important;
        -ms-flex-line-pack: end !important;
            align-content: flex-end !important;
  }
  .align-content-xs-center {
    -webkit-align-content: center !important;
        -ms-flex-line-pack: center !important;
            align-content: center !important;
  }
  .align-content-xs-between {
    -webkit-align-content: space-between !important;
        -ms-flex-line-pack: justify !important;
            align-content: space-between !important;
  }
  .align-content-xs-around {
    -webkit-align-content: space-around !important;
        -ms-flex-line-pack: distribute !important;
            align-content: space-around !important;
  }
  .align-content-xs-stretch {
    -webkit-align-content: stretch !important;
        -ms-flex-line-pack: stretch !important;
            align-content: stretch !important;
  }
  .align-self-xs-auto {
    -webkit-align-self: auto !important;
        -ms-flex-item-align: auto !important;
            align-self: auto !important;
  }
  .align-self-xs-start {
    -webkit-align-self: flex-start !important;
        -ms-flex-item-align: start !important;
            align-self: flex-start !important;
  }
  .align-self-xs-end {
    -webkit-align-self: flex-end !important;
        -ms-flex-item-align: end !important;
            align-self: flex-end !important;
  }
  .align-self-xs-center {
    -webkit-align-self: center !important;
        -ms-flex-item-align: center !important;
            align-self: center !important;
  }
  .align-self-xs-baseline {
    -webkit-align-self: baseline !important;
        -ms-flex-item-align: baseline !important;
            align-self: baseline !important;
  }
  .align-self-xs-stretch {
    -webkit-align-self: stretch !important;
        -ms-flex-item-align: stretch !important;
            align-self: stretch !important;
  }
}
@media (min-width: 667px) {
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    -webkit-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
            flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -webkit-flex-wrap: nowrap !important;
        -ms-flex-wrap: nowrap !important;
            flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
        -ms-flex-wrap: wrap-reverse !important;
            flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
    -webkit-flex: 1 1 auto !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
    -webkit-flex-grow: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
    -webkit-flex-grow: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    -webkit-flex-shrink: 0 !important;
        -ms-flex-negative: 0 !important;
            flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    -webkit-flex-shrink: 1 !important;
        -ms-flex-negative: 1 !important;
            flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -webkit-justify-content: space-around !important;
        -ms-flex-pack: distribute !important;
            justify-content: space-around !important;
  }
  .align-items-sm-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-sm-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-sm-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-sm-start {
    -webkit-align-content: flex-start !important;
        -ms-flex-line-pack: start !important;
            align-content: flex-start !important;
  }
  .align-content-sm-end {
    -webkit-align-content: flex-end !important;
        -ms-flex-line-pack: end !important;
            align-content: flex-end !important;
  }
  .align-content-sm-center {
    -webkit-align-content: center !important;
        -ms-flex-line-pack: center !important;
            align-content: center !important;
  }
  .align-content-sm-between {
    -webkit-align-content: space-between !important;
        -ms-flex-line-pack: justify !important;
            align-content: space-between !important;
  }
  .align-content-sm-around {
    -webkit-align-content: space-around !important;
        -ms-flex-line-pack: distribute !important;
            align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -webkit-align-content: stretch !important;
        -ms-flex-line-pack: stretch !important;
            align-content: stretch !important;
  }
  .align-self-sm-auto {
    -webkit-align-self: auto !important;
        -ms-flex-item-align: auto !important;
            align-self: auto !important;
  }
  .align-self-sm-start {
    -webkit-align-self: flex-start !important;
        -ms-flex-item-align: start !important;
            align-self: flex-start !important;
  }
  .align-self-sm-end {
    -webkit-align-self: flex-end !important;
        -ms-flex-item-align: end !important;
            align-self: flex-end !important;
  }
  .align-self-sm-center {
    -webkit-align-self: center !important;
        -ms-flex-item-align: center !important;
            align-self: center !important;
  }
  .align-self-sm-baseline {
    -webkit-align-self: baseline !important;
        -ms-flex-item-align: baseline !important;
            align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -webkit-align-self: stretch !important;
        -ms-flex-item-align: stretch !important;
            align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    -webkit-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
            flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -webkit-flex-wrap: nowrap !important;
        -ms-flex-wrap: nowrap !important;
            flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
        -ms-flex-wrap: wrap-reverse !important;
            flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    -webkit-box-flex: 1 !important;
    -webkit-flex: 1 1 auto !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
    -webkit-flex-grow: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
    -webkit-flex-grow: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    -webkit-flex-shrink: 0 !important;
        -ms-flex-negative: 0 !important;
            flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    -webkit-flex-shrink: 1 !important;
        -ms-flex-negative: 1 !important;
            flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-md-between {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-md-around {
    -webkit-justify-content: space-around !important;
        -ms-flex-pack: distribute !important;
            justify-content: space-around !important;
  }
  .align-items-md-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-md-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-md-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-md-start {
    -webkit-align-content: flex-start !important;
        -ms-flex-line-pack: start !important;
            align-content: flex-start !important;
  }
  .align-content-md-end {
    -webkit-align-content: flex-end !important;
        -ms-flex-line-pack: end !important;
            align-content: flex-end !important;
  }
  .align-content-md-center {
    -webkit-align-content: center !important;
        -ms-flex-line-pack: center !important;
            align-content: center !important;
  }
  .align-content-md-between {
    -webkit-align-content: space-between !important;
        -ms-flex-line-pack: justify !important;
            align-content: space-between !important;
  }
  .align-content-md-around {
    -webkit-align-content: space-around !important;
        -ms-flex-line-pack: distribute !important;
            align-content: space-around !important;
  }
  .align-content-md-stretch {
    -webkit-align-content: stretch !important;
        -ms-flex-line-pack: stretch !important;
            align-content: stretch !important;
  }
  .align-self-md-auto {
    -webkit-align-self: auto !important;
        -ms-flex-item-align: auto !important;
            align-self: auto !important;
  }
  .align-self-md-start {
    -webkit-align-self: flex-start !important;
        -ms-flex-item-align: start !important;
            align-self: flex-start !important;
  }
  .align-self-md-end {
    -webkit-align-self: flex-end !important;
        -ms-flex-item-align: end !important;
            align-self: flex-end !important;
  }
  .align-self-md-center {
    -webkit-align-self: center !important;
        -ms-flex-item-align: center !important;
            align-self: center !important;
  }
  .align-self-md-baseline {
    -webkit-align-self: baseline !important;
        -ms-flex-item-align: baseline !important;
            align-self: baseline !important;
  }
  .align-self-md-stretch {
    -webkit-align-self: stretch !important;
        -ms-flex-item-align: stretch !important;
            align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    -webkit-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
            flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -webkit-flex-wrap: nowrap !important;
        -ms-flex-wrap: nowrap !important;
            flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
        -ms-flex-wrap: wrap-reverse !important;
            flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
    -webkit-flex: 1 1 auto !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
    -webkit-flex-grow: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
    -webkit-flex-grow: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    -webkit-flex-shrink: 0 !important;
        -ms-flex-negative: 0 !important;
            flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    -webkit-flex-shrink: 1 !important;
        -ms-flex-negative: 1 !important;
            flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -webkit-justify-content: space-around !important;
        -ms-flex-pack: distribute !important;
            justify-content: space-around !important;
  }
  .align-items-lg-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-lg-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-lg-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-lg-start {
    -webkit-align-content: flex-start !important;
        -ms-flex-line-pack: start !important;
            align-content: flex-start !important;
  }
  .align-content-lg-end {
    -webkit-align-content: flex-end !important;
        -ms-flex-line-pack: end !important;
            align-content: flex-end !important;
  }
  .align-content-lg-center {
    -webkit-align-content: center !important;
        -ms-flex-line-pack: center !important;
            align-content: center !important;
  }
  .align-content-lg-between {
    -webkit-align-content: space-between !important;
        -ms-flex-line-pack: justify !important;
            align-content: space-between !important;
  }
  .align-content-lg-around {
    -webkit-align-content: space-around !important;
        -ms-flex-line-pack: distribute !important;
            align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -webkit-align-content: stretch !important;
        -ms-flex-line-pack: stretch !important;
            align-content: stretch !important;
  }
  .align-self-lg-auto {
    -webkit-align-self: auto !important;
        -ms-flex-item-align: auto !important;
            align-self: auto !important;
  }
  .align-self-lg-start {
    -webkit-align-self: flex-start !important;
        -ms-flex-item-align: start !important;
            align-self: flex-start !important;
  }
  .align-self-lg-end {
    -webkit-align-self: flex-end !important;
        -ms-flex-item-align: end !important;
            align-self: flex-end !important;
  }
  .align-self-lg-center {
    -webkit-align-self: center !important;
        -ms-flex-item-align: center !important;
            align-self: center !important;
  }
  .align-self-lg-baseline {
    -webkit-align-self: baseline !important;
        -ms-flex-item-align: baseline !important;
            align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -webkit-align-self: stretch !important;
        -ms-flex-item-align: stretch !important;
            align-self: stretch !important;
  }
}
@media (min-width: 1100px) {
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    -webkit-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
            flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -webkit-flex-wrap: nowrap !important;
        -ms-flex-wrap: nowrap !important;
            flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
        -ms-flex-wrap: wrap-reverse !important;
            flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
    -webkit-flex: 1 1 auto !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
    -webkit-flex-grow: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
    -webkit-flex-grow: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    -webkit-flex-shrink: 0 !important;
        -ms-flex-negative: 0 !important;
            flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    -webkit-flex-shrink: 1 !important;
        -ms-flex-negative: 1 !important;
            flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -webkit-justify-content: space-around !important;
        -ms-flex-pack: distribute !important;
            justify-content: space-around !important;
  }
  .align-items-xl-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-xl-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-xl-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-xl-start {
    -webkit-align-content: flex-start !important;
        -ms-flex-line-pack: start !important;
            align-content: flex-start !important;
  }
  .align-content-xl-end {
    -webkit-align-content: flex-end !important;
        -ms-flex-line-pack: end !important;
            align-content: flex-end !important;
  }
  .align-content-xl-center {
    -webkit-align-content: center !important;
        -ms-flex-line-pack: center !important;
            align-content: center !important;
  }
  .align-content-xl-between {
    -webkit-align-content: space-between !important;
        -ms-flex-line-pack: justify !important;
            align-content: space-between !important;
  }
  .align-content-xl-around {
    -webkit-align-content: space-around !important;
        -ms-flex-line-pack: distribute !important;
            align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -webkit-align-content: stretch !important;
        -ms-flex-line-pack: stretch !important;
            align-content: stretch !important;
  }
  .align-self-xl-auto {
    -webkit-align-self: auto !important;
        -ms-flex-item-align: auto !important;
            align-self: auto !important;
  }
  .align-self-xl-start {
    -webkit-align-self: flex-start !important;
        -ms-flex-item-align: start !important;
            align-self: flex-start !important;
  }
  .align-self-xl-end {
    -webkit-align-self: flex-end !important;
        -ms-flex-item-align: end !important;
            align-self: flex-end !important;
  }
  .align-self-xl-center {
    -webkit-align-self: center !important;
        -ms-flex-item-align: center !important;
            align-self: center !important;
  }
  .align-self-xl-baseline {
    -webkit-align-self: baseline !important;
        -ms-flex-item-align: baseline !important;
            align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -webkit-align-self: stretch !important;
        -ms-flex-item-align: stretch !important;
            align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xxl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-xxl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-xxl-wrap {
    -webkit-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
            flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    -webkit-flex-wrap: nowrap !important;
        -ms-flex-wrap: nowrap !important;
            flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
        -ms-flex-wrap: wrap-reverse !important;
            flex-wrap: wrap-reverse !important;
  }
  .flex-xxl-fill {
    -webkit-box-flex: 1 !important;
    -webkit-flex: 1 1 auto !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-xxl-grow-0 {
    -webkit-box-flex: 0 !important;
    -webkit-flex-grow: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    -webkit-box-flex: 1 !important;
    -webkit-flex-grow: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    -webkit-flex-shrink: 0 !important;
        -ms-flex-negative: 0 !important;
            flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    -webkit-flex-shrink: 1 !important;
        -ms-flex-negative: 1 !important;
            flex-shrink: 1 !important;
  }
  .justify-content-xxl-start {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-xxl-between {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    -webkit-justify-content: space-around !important;
        -ms-flex-pack: distribute !important;
            justify-content: space-around !important;
  }
  .align-items-xxl-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-xxl-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-xxl-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-xxl-baseline {
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-xxl-start {
    -webkit-align-content: flex-start !important;
        -ms-flex-line-pack: start !important;
            align-content: flex-start !important;
  }
  .align-content-xxl-end {
    -webkit-align-content: flex-end !important;
        -ms-flex-line-pack: end !important;
            align-content: flex-end !important;
  }
  .align-content-xxl-center {
    -webkit-align-content: center !important;
        -ms-flex-line-pack: center !important;
            align-content: center !important;
  }
  .align-content-xxl-between {
    -webkit-align-content: space-between !important;
        -ms-flex-line-pack: justify !important;
            align-content: space-between !important;
  }
  .align-content-xxl-around {
    -webkit-align-content: space-around !important;
        -ms-flex-line-pack: distribute !important;
            align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    -webkit-align-content: stretch !important;
        -ms-flex-line-pack: stretch !important;
            align-content: stretch !important;
  }
  .align-self-xxl-auto {
    -webkit-align-self: auto !important;
        -ms-flex-item-align: auto !important;
            align-self: auto !important;
  }
  .align-self-xxl-start {
    -webkit-align-self: flex-start !important;
        -ms-flex-item-align: start !important;
            align-self: flex-start !important;
  }
  .align-self-xxl-end {
    -webkit-align-self: flex-end !important;
        -ms-flex-item-align: end !important;
            align-self: flex-end !important;
  }
  .align-self-xxl-center {
    -webkit-align-self: center !important;
        -ms-flex-item-align: center !important;
            align-self: center !important;
  }
  .align-self-xxl-baseline {
    -webkit-align-self: baseline !important;
        -ms-flex-item-align: baseline !important;
            align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    -webkit-align-self: stretch !important;
        -ms-flex-item-align: stretch !important;
            align-self: stretch !important;
  }
}
@media (min-width: 1500px) {
  .flex-xxxl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-xxxl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-xxxl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-xxxl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-xxxl-wrap {
    -webkit-flex-wrap: wrap !important;
        -ms-flex-wrap: wrap !important;
            flex-wrap: wrap !important;
  }
  .flex-xxxl-nowrap {
    -webkit-flex-wrap: nowrap !important;
        -ms-flex-wrap: nowrap !important;
            flex-wrap: nowrap !important;
  }
  .flex-xxxl-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
        -ms-flex-wrap: wrap-reverse !important;
            flex-wrap: wrap-reverse !important;
  }
  .flex-xxxl-fill {
    -webkit-box-flex: 1 !important;
    -webkit-flex: 1 1 auto !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-xxxl-grow-0 {
    -webkit-box-flex: 0 !important;
    -webkit-flex-grow: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-xxxl-grow-1 {
    -webkit-box-flex: 1 !important;
    -webkit-flex-grow: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-xxxl-shrink-0 {
    -webkit-flex-shrink: 0 !important;
        -ms-flex-negative: 0 !important;
            flex-shrink: 0 !important;
  }
  .flex-xxxl-shrink-1 {
    -webkit-flex-shrink: 1 !important;
        -ms-flex-negative: 1 !important;
            flex-shrink: 1 !important;
  }
  .justify-content-xxxl-start {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-xxxl-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-xxxl-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-xxxl-between {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-xxxl-around {
    -webkit-justify-content: space-around !important;
        -ms-flex-pack: distribute !important;
            justify-content: space-around !important;
  }
  .align-items-xxxl-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-xxxl-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-xxxl-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-xxxl-baseline {
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-xxxl-stretch {
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-xxxl-start {
    -webkit-align-content: flex-start !important;
        -ms-flex-line-pack: start !important;
            align-content: flex-start !important;
  }
  .align-content-xxxl-end {
    -webkit-align-content: flex-end !important;
        -ms-flex-line-pack: end !important;
            align-content: flex-end !important;
  }
  .align-content-xxxl-center {
    -webkit-align-content: center !important;
        -ms-flex-line-pack: center !important;
            align-content: center !important;
  }
  .align-content-xxxl-between {
    -webkit-align-content: space-between !important;
        -ms-flex-line-pack: justify !important;
            align-content: space-between !important;
  }
  .align-content-xxxl-around {
    -webkit-align-content: space-around !important;
        -ms-flex-line-pack: distribute !important;
            align-content: space-around !important;
  }
  .align-content-xxxl-stretch {
    -webkit-align-content: stretch !important;
        -ms-flex-line-pack: stretch !important;
            align-content: stretch !important;
  }
  .align-self-xxxl-auto {
    -webkit-align-self: auto !important;
        -ms-flex-item-align: auto !important;
            align-self: auto !important;
  }
  .align-self-xxxl-start {
    -webkit-align-self: flex-start !important;
        -ms-flex-item-align: start !important;
            align-self: flex-start !important;
  }
  .align-self-xxxl-end {
    -webkit-align-self: flex-end !important;
        -ms-flex-item-align: end !important;
            align-self: flex-end !important;
  }
  .align-self-xxxl-center {
    -webkit-align-self: center !important;
        -ms-flex-item-align: center !important;
            align-self: center !important;
  }
  .align-self-xxxl-baseline {
    -webkit-align-self: baseline !important;
        -ms-flex-item-align: baseline !important;
            align-self: baseline !important;
  }
  .align-self-xxxl-stretch {
    -webkit-align-self: stretch !important;
        -ms-flex-item-align: stretch !important;
            align-self: stretch !important;
  }
}
.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

@media (min-width: 320px) {
  .float-xxs-left {
    float: left !important;
  }
  .float-xxs-right {
    float: right !important;
  }
  .float-xxs-none {
    float: none !important;
  }
}
@media (min-width: 568px) {
  .float-xs-left {
    float: left !important;
  }
  .float-xs-right {
    float: right !important;
  }
  .float-xs-none {
    float: none !important;
  }
}
@media (min-width: 667px) {
  .float-sm-left {
    float: left !important;
  }
  .float-sm-right {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
}
@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }
  .float-md-right {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
}
@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }
  .float-lg-right {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
}
@media (min-width: 1100px) {
  .float-xl-left {
    float: left !important;
  }
  .float-xl-right {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
}
@media (min-width: 1200px) {
  .float-xxl-left {
    float: left !important;
  }
  .float-xxl-right {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
}
@media (min-width: 1500px) {
  .float-xxxl-left {
    float: left !important;
  }
  .float-xxxl-right {
    float: right !important;
  }
  .float-xxxl-none {
    float: none !important;
  }
}
.user-select-all {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
          user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
      -ms-user-select: auto !important;
          user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.position-static {
  position: static !important;
}

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

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

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

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

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.shadow-sm {
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
          box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

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

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

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

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

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

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

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0, .gform_wrapper .gfield_label,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3, .ausstattung-icons-widget__right,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

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

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

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

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

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

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

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

@media (min-width: 320px) {
  .m-xxs-0 {
    margin: 0 !important;
  }
  .mt-xxs-0,
  .my-xxs-0 {
    margin-top: 0 !important;
  }
  .mr-xxs-0,
  .mx-xxs-0 {
    margin-right: 0 !important;
  }
  .mb-xxs-0,
  .my-xxs-0 {
    margin-bottom: 0 !important;
  }
  .ml-xxs-0,
  .mx-xxs-0 {
    margin-left: 0 !important;
  }
  .m-xxs-1 {
    margin: 0.25rem !important;
  }
  .mt-xxs-1,
  .my-xxs-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xxs-1,
  .mx-xxs-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xxs-1,
  .my-xxs-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xxs-1,
  .mx-xxs-1 {
    margin-left: 0.25rem !important;
  }
  .m-xxs-2 {
    margin: 0.5rem !important;
  }
  .mt-xxs-2,
  .my-xxs-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xxs-2,
  .mx-xxs-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xxs-2,
  .my-xxs-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xxs-2,
  .mx-xxs-2 {
    margin-left: 0.5rem !important;
  }
  .m-xxs-3 {
    margin: 1rem !important;
  }
  .mt-xxs-3,
  .my-xxs-3 {
    margin-top: 1rem !important;
  }
  .mr-xxs-3,
  .mx-xxs-3 {
    margin-right: 1rem !important;
  }
  .mb-xxs-3,
  .my-xxs-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xxs-3,
  .mx-xxs-3 {
    margin-left: 1rem !important;
  }
  .m-xxs-4 {
    margin: 1.5rem !important;
  }
  .mt-xxs-4,
  .my-xxs-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xxs-4,
  .mx-xxs-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xxs-4,
  .my-xxs-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xxs-4,
  .mx-xxs-4 {
    margin-left: 1.5rem !important;
  }
  .m-xxs-5 {
    margin: 3rem !important;
  }
  .mt-xxs-5,
  .my-xxs-5 {
    margin-top: 3rem !important;
  }
  .mr-xxs-5,
  .mx-xxs-5 {
    margin-right: 3rem !important;
  }
  .mb-xxs-5,
  .my-xxs-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xxs-5,
  .mx-xxs-5 {
    margin-left: 3rem !important;
  }
  .p-xxs-0 {
    padding: 0 !important;
  }
  .pt-xxs-0,
  .py-xxs-0 {
    padding-top: 0 !important;
  }
  .pr-xxs-0,
  .px-xxs-0 {
    padding-right: 0 !important;
  }
  .pb-xxs-0,
  .py-xxs-0 {
    padding-bottom: 0 !important;
  }
  .pl-xxs-0,
  .px-xxs-0 {
    padding-left: 0 !important;
  }
  .p-xxs-1 {
    padding: 0.25rem !important;
  }
  .pt-xxs-1,
  .py-xxs-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xxs-1,
  .px-xxs-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xxs-1,
  .py-xxs-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xxs-1,
  .px-xxs-1 {
    padding-left: 0.25rem !important;
  }
  .p-xxs-2 {
    padding: 0.5rem !important;
  }
  .pt-xxs-2,
  .py-xxs-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xxs-2,
  .px-xxs-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xxs-2,
  .py-xxs-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xxs-2,
  .px-xxs-2 {
    padding-left: 0.5rem !important;
  }
  .p-xxs-3 {
    padding: 1rem !important;
  }
  .pt-xxs-3,
  .py-xxs-3 {
    padding-top: 1rem !important;
  }
  .pr-xxs-3,
  .px-xxs-3 {
    padding-right: 1rem !important;
  }
  .pb-xxs-3,
  .py-xxs-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xxs-3,
  .px-xxs-3 {
    padding-left: 1rem !important;
  }
  .p-xxs-4 {
    padding: 1.5rem !important;
  }
  .pt-xxs-4,
  .py-xxs-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xxs-4,
  .px-xxs-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xxs-4,
  .py-xxs-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xxs-4,
  .px-xxs-4 {
    padding-left: 1.5rem !important;
  }
  .p-xxs-5 {
    padding: 3rem !important;
  }
  .pt-xxs-5,
  .py-xxs-5 {
    padding-top: 3rem !important;
  }
  .pr-xxs-5,
  .px-xxs-5 {
    padding-right: 3rem !important;
  }
  .pb-xxs-5,
  .py-xxs-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xxs-5,
  .px-xxs-5 {
    padding-left: 3rem !important;
  }
  .m-xxs-n1 {
    margin: -0.25rem !important;
  }
  .mt-xxs-n1,
  .my-xxs-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xxs-n1,
  .mx-xxs-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xxs-n1,
  .my-xxs-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xxs-n1,
  .mx-xxs-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xxs-n2 {
    margin: -0.5rem !important;
  }
  .mt-xxs-n2,
  .my-xxs-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xxs-n2,
  .mx-xxs-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xxs-n2,
  .my-xxs-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xxs-n2,
  .mx-xxs-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xxs-n3 {
    margin: -1rem !important;
  }
  .mt-xxs-n3,
  .my-xxs-n3 {
    margin-top: -1rem !important;
  }
  .mr-xxs-n3,
  .mx-xxs-n3 {
    margin-right: -1rem !important;
  }
  .mb-xxs-n3,
  .my-xxs-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xxs-n3,
  .mx-xxs-n3 {
    margin-left: -1rem !important;
  }
  .m-xxs-n4 {
    margin: -1.5rem !important;
  }
  .mt-xxs-n4,
  .my-xxs-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xxs-n4,
  .mx-xxs-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xxs-n4,
  .my-xxs-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xxs-n4,
  .mx-xxs-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xxs-n5 {
    margin: -3rem !important;
  }
  .mt-xxs-n5,
  .my-xxs-n5 {
    margin-top: -3rem !important;
  }
  .mr-xxs-n5,
  .mx-xxs-n5 {
    margin-right: -3rem !important;
  }
  .mb-xxs-n5,
  .my-xxs-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xxs-n5,
  .mx-xxs-n5 {
    margin-left: -3rem !important;
  }
  .m-xxs-auto {
    margin: auto !important;
  }
  .mt-xxs-auto,
  .my-xxs-auto {
    margin-top: auto !important;
  }
  .mr-xxs-auto,
  .mx-xxs-auto {
    margin-right: auto !important;
  }
  .mb-xxs-auto,
  .my-xxs-auto {
    margin-bottom: auto !important;
  }
  .ml-xxs-auto,
  .mx-xxs-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 568px) {
  .m-xs-0 {
    margin: 0 !important;
  }
  .mt-xs-0,
  .my-xs-0 {
    margin-top: 0 !important;
  }
  .mr-xs-0,
  .mx-xs-0 {
    margin-right: 0 !important;
  }
  .mb-xs-0,
  .my-xs-0 {
    margin-bottom: 0 !important;
  }
  .ml-xs-0,
  .mx-xs-0 {
    margin-left: 0 !important;
  }
  .m-xs-1 {
    margin: 0.25rem !important;
  }
  .mt-xs-1,
  .my-xs-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xs-1,
  .mx-xs-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xs-1,
  .my-xs-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xs-1,
  .mx-xs-1 {
    margin-left: 0.25rem !important;
  }
  .m-xs-2 {
    margin: 0.5rem !important;
  }
  .mt-xs-2,
  .my-xs-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xs-2,
  .mx-xs-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xs-2,
  .my-xs-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xs-2,
  .mx-xs-2 {
    margin-left: 0.5rem !important;
  }
  .m-xs-3 {
    margin: 1rem !important;
  }
  .mt-xs-3,
  .my-xs-3 {
    margin-top: 1rem !important;
  }
  .mr-xs-3,
  .mx-xs-3 {
    margin-right: 1rem !important;
  }
  .mb-xs-3,
  .my-xs-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xs-3,
  .mx-xs-3 {
    margin-left: 1rem !important;
  }
  .m-xs-4 {
    margin: 1.5rem !important;
  }
  .mt-xs-4,
  .my-xs-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xs-4,
  .mx-xs-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xs-4,
  .my-xs-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xs-4,
  .mx-xs-4 {
    margin-left: 1.5rem !important;
  }
  .m-xs-5 {
    margin: 3rem !important;
  }
  .mt-xs-5,
  .my-xs-5 {
    margin-top: 3rem !important;
  }
  .mr-xs-5,
  .mx-xs-5 {
    margin-right: 3rem !important;
  }
  .mb-xs-5,
  .my-xs-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xs-5,
  .mx-xs-5 {
    margin-left: 3rem !important;
  }
  .p-xs-0 {
    padding: 0 !important;
  }
  .pt-xs-0,
  .py-xs-0 {
    padding-top: 0 !important;
  }
  .pr-xs-0,
  .px-xs-0 {
    padding-right: 0 !important;
  }
  .pb-xs-0,
  .py-xs-0 {
    padding-bottom: 0 !important;
  }
  .pl-xs-0,
  .px-xs-0 {
    padding-left: 0 !important;
  }
  .p-xs-1 {
    padding: 0.25rem !important;
  }
  .pt-xs-1,
  .py-xs-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xs-1,
  .px-xs-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xs-1,
  .py-xs-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xs-1,
  .px-xs-1 {
    padding-left: 0.25rem !important;
  }
  .p-xs-2 {
    padding: 0.5rem !important;
  }
  .pt-xs-2,
  .py-xs-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xs-2,
  .px-xs-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xs-2,
  .py-xs-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xs-2,
  .px-xs-2 {
    padding-left: 0.5rem !important;
  }
  .p-xs-3 {
    padding: 1rem !important;
  }
  .pt-xs-3,
  .py-xs-3 {
    padding-top: 1rem !important;
  }
  .pr-xs-3,
  .px-xs-3 {
    padding-right: 1rem !important;
  }
  .pb-xs-3,
  .py-xs-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xs-3,
  .px-xs-3 {
    padding-left: 1rem !important;
  }
  .p-xs-4 {
    padding: 1.5rem !important;
  }
  .pt-xs-4,
  .py-xs-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xs-4,
  .px-xs-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xs-4,
  .py-xs-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xs-4,
  .px-xs-4 {
    padding-left: 1.5rem !important;
  }
  .p-xs-5 {
    padding: 3rem !important;
  }
  .pt-xs-5,
  .py-xs-5 {
    padding-top: 3rem !important;
  }
  .pr-xs-5,
  .px-xs-5 {
    padding-right: 3rem !important;
  }
  .pb-xs-5,
  .py-xs-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xs-5,
  .px-xs-5 {
    padding-left: 3rem !important;
  }
  .m-xs-n1 {
    margin: -0.25rem !important;
  }
  .mt-xs-n1,
  .my-xs-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xs-n1,
  .mx-xs-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xs-n1,
  .my-xs-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xs-n1,
  .mx-xs-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xs-n2 {
    margin: -0.5rem !important;
  }
  .mt-xs-n2,
  .my-xs-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xs-n2,
  .mx-xs-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xs-n2,
  .my-xs-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xs-n2,
  .mx-xs-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xs-n3 {
    margin: -1rem !important;
  }
  .mt-xs-n3,
  .my-xs-n3 {
    margin-top: -1rem !important;
  }
  .mr-xs-n3,
  .mx-xs-n3 {
    margin-right: -1rem !important;
  }
  .mb-xs-n3,
  .my-xs-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xs-n3,
  .mx-xs-n3 {
    margin-left: -1rem !important;
  }
  .m-xs-n4 {
    margin: -1.5rem !important;
  }
  .mt-xs-n4,
  .my-xs-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xs-n4,
  .mx-xs-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xs-n4,
  .my-xs-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xs-n4,
  .mx-xs-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xs-n5 {
    margin: -3rem !important;
  }
  .mt-xs-n5,
  .my-xs-n5 {
    margin-top: -3rem !important;
  }
  .mr-xs-n5,
  .mx-xs-n5 {
    margin-right: -3rem !important;
  }
  .mb-xs-n5,
  .my-xs-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xs-n5,
  .mx-xs-n5 {
    margin-left: -3rem !important;
  }
  .m-xs-auto {
    margin: auto !important;
  }
  .mt-xs-auto,
  .my-xs-auto {
    margin-top: auto !important;
  }
  .mr-xs-auto,
  .mx-xs-auto {
    margin-right: auto !important;
  }
  .mb-xs-auto,
  .my-xs-auto {
    margin-bottom: auto !important;
  }
  .ml-xs-auto,
  .mx-xs-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 667px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .m-sm-n3 {
    margin: -1rem !important;
  }
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .m-sm-n5 {
    margin: -3rem !important;
  }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important;
  }
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important;
  }
  .m-md-n3 {
    margin: -1rem !important;
  }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }
  .m-md-n5 {
    margin: -3rem !important;
  }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .m-lg-n3 {
    margin: -1rem !important;
  }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .m-lg-n5 {
    margin: -3rem !important;
  }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1100px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xl-n3 {
    margin: -1rem !important;
  }
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xl-n5 {
    margin: -3rem !important;
  }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xxl-0 {
    margin: 0 !important;
  }
  .mt-xxl-0,
  .my-xxl-0 {
    margin-top: 0 !important;
  }
  .mr-xxl-0,
  .mx-xxl-0 {
    margin-right: 0 !important;
  }
  .mb-xxl-0,
  .my-xxl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xxl-0,
  .mx-xxl-0 {
    margin-left: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .mt-xxl-1,
  .my-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xxl-1,
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xxl-1,
  .my-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xxl-1,
  .mx-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .mt-xxl-2,
  .my-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xxl-2,
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xxl-2,
  .my-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xxl-2,
  .mx-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .mt-xxl-3,
  .my-xxl-3 {
    margin-top: 1rem !important;
  }
  .mr-xxl-3,
  .mx-xxl-3 {
    margin-right: 1rem !important;
  }
  .mb-xxl-3,
  .my-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xxl-3,
  .mx-xxl-3 {
    margin-left: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .mt-xxl-4,
  .my-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xxl-4,
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xxl-4,
  .my-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xxl-4,
  .mx-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .mt-xxl-5,
  .my-xxl-5 {
    margin-top: 3rem !important;
  }
  .mr-xxl-5,
  .mx-xxl-5 {
    margin-right: 3rem !important;
  }
  .mb-xxl-5,
  .my-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xxl-5,
  .mx-xxl-5 {
    margin-left: 3rem !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .pt-xxl-0,
  .py-xxl-0 {
    padding-top: 0 !important;
  }
  .pr-xxl-0,
  .px-xxl-0 {
    padding-right: 0 !important;
  }
  .pb-xxl-0,
  .py-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xxl-0,
  .px-xxl-0 {
    padding-left: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .pt-xxl-1,
  .py-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xxl-1,
  .px-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xxl-1,
  .py-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xxl-1,
  .px-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .pt-xxl-2,
  .py-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xxl-2,
  .px-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xxl-2,
  .py-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xxl-2,
  .px-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .pt-xxl-3,
  .py-xxl-3 {
    padding-top: 1rem !important;
  }
  .pr-xxl-3,
  .px-xxl-3 {
    padding-right: 1rem !important;
  }
  .pb-xxl-3,
  .py-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xxl-3,
  .px-xxl-3 {
    padding-left: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .pt-xxl-4,
  .py-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xxl-4,
  .px-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xxl-4,
  .py-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xxl-4,
  .px-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .pt-xxl-5,
  .py-xxl-5 {
    padding-top: 3rem !important;
  }
  .pr-xxl-5,
  .px-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-5,
  .py-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xxl-5,
  .px-xxl-5 {
    padding-left: 3rem !important;
  }
  .m-xxl-n1 {
    margin: -0.25rem !important;
  }
  .mt-xxl-n1,
  .my-xxl-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xxl-n1,
  .mx-xxl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xxl-n1,
  .my-xxl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xxl-n1,
  .mx-xxl-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xxl-n2 {
    margin: -0.5rem !important;
  }
  .mt-xxl-n2,
  .my-xxl-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xxl-n2,
  .mx-xxl-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xxl-n2,
  .my-xxl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xxl-n2,
  .mx-xxl-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xxl-n3 {
    margin: -1rem !important;
  }
  .mt-xxl-n3,
  .my-xxl-n3 {
    margin-top: -1rem !important;
  }
  .mr-xxl-n3,
  .mx-xxl-n3 {
    margin-right: -1rem !important;
  }
  .mb-xxl-n3,
  .my-xxl-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xxl-n3,
  .mx-xxl-n3 {
    margin-left: -1rem !important;
  }
  .m-xxl-n4 {
    margin: -1.5rem !important;
  }
  .mt-xxl-n4,
  .my-xxl-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xxl-n4,
  .mx-xxl-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xxl-n4,
  .my-xxl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xxl-n4,
  .mx-xxl-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xxl-n5 {
    margin: -3rem !important;
  }
  .mt-xxl-n5,
  .my-xxl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xxl-n5,
  .mx-xxl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xxl-n5,
  .my-xxl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xxl-n5,
  .mx-xxl-n5 {
    margin-left: -3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mt-xxl-auto,
  .my-xxl-auto {
    margin-top: auto !important;
  }
  .mr-xxl-auto,
  .mx-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-auto,
  .my-xxl-auto {
    margin-bottom: auto !important;
  }
  .ml-xxl-auto,
  .mx-xxl-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1500px) {
  .m-xxxl-0 {
    margin: 0 !important;
  }
  .mt-xxxl-0,
  .my-xxxl-0 {
    margin-top: 0 !important;
  }
  .mr-xxxl-0,
  .mx-xxxl-0 {
    margin-right: 0 !important;
  }
  .mb-xxxl-0,
  .my-xxxl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xxxl-0,
  .mx-xxxl-0 {
    margin-left: 0 !important;
  }
  .m-xxxl-1 {
    margin: 0.25rem !important;
  }
  .mt-xxxl-1,
  .my-xxxl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xxxl-1,
  .mx-xxxl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xxxl-1,
  .my-xxxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xxxl-1,
  .mx-xxxl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xxxl-2 {
    margin: 0.5rem !important;
  }
  .mt-xxxl-2,
  .my-xxxl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xxxl-2,
  .mx-xxxl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xxxl-2,
  .my-xxxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xxxl-2,
  .mx-xxxl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xxxl-3 {
    margin: 1rem !important;
  }
  .mt-xxxl-3,
  .my-xxxl-3 {
    margin-top: 1rem !important;
  }
  .mr-xxxl-3,
  .mx-xxxl-3 {
    margin-right: 1rem !important;
  }
  .mb-xxxl-3,
  .my-xxxl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xxxl-3,
  .mx-xxxl-3 {
    margin-left: 1rem !important;
  }
  .m-xxxl-4 {
    margin: 1.5rem !important;
  }
  .mt-xxxl-4,
  .my-xxxl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xxxl-4,
  .mx-xxxl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xxxl-4,
  .my-xxxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xxxl-4,
  .mx-xxxl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xxxl-5 {
    margin: 3rem !important;
  }
  .mt-xxxl-5,
  .my-xxxl-5 {
    margin-top: 3rem !important;
  }
  .mr-xxxl-5,
  .mx-xxxl-5 {
    margin-right: 3rem !important;
  }
  .mb-xxxl-5,
  .my-xxxl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xxxl-5,
  .mx-xxxl-5 {
    margin-left: 3rem !important;
  }
  .p-xxxl-0 {
    padding: 0 !important;
  }
  .pt-xxxl-0,
  .py-xxxl-0 {
    padding-top: 0 !important;
  }
  .pr-xxxl-0,
  .px-xxxl-0 {
    padding-right: 0 !important;
  }
  .pb-xxxl-0,
  .py-xxxl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xxxl-0,
  .px-xxxl-0 {
    padding-left: 0 !important;
  }
  .p-xxxl-1 {
    padding: 0.25rem !important;
  }
  .pt-xxxl-1,
  .py-xxxl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xxxl-1,
  .px-xxxl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xxxl-1,
  .py-xxxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xxxl-1,
  .px-xxxl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xxxl-2 {
    padding: 0.5rem !important;
  }
  .pt-xxxl-2,
  .py-xxxl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xxxl-2,
  .px-xxxl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xxxl-2,
  .py-xxxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xxxl-2,
  .px-xxxl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xxxl-3 {
    padding: 1rem !important;
  }
  .pt-xxxl-3,
  .py-xxxl-3 {
    padding-top: 1rem !important;
  }
  .pr-xxxl-3,
  .px-xxxl-3 {
    padding-right: 1rem !important;
  }
  .pb-xxxl-3,
  .py-xxxl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xxxl-3,
  .px-xxxl-3 {
    padding-left: 1rem !important;
  }
  .p-xxxl-4 {
    padding: 1.5rem !important;
  }
  .pt-xxxl-4,
  .py-xxxl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xxxl-4,
  .px-xxxl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xxxl-4,
  .py-xxxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xxxl-4,
  .px-xxxl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xxxl-5 {
    padding: 3rem !important;
  }
  .pt-xxxl-5,
  .py-xxxl-5 {
    padding-top: 3rem !important;
  }
  .pr-xxxl-5,
  .px-xxxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxxl-5,
  .py-xxxl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xxxl-5,
  .px-xxxl-5 {
    padding-left: 3rem !important;
  }
  .m-xxxl-n1 {
    margin: -0.25rem !important;
  }
  .mt-xxxl-n1,
  .my-xxxl-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xxxl-n1,
  .mx-xxxl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xxxl-n1,
  .my-xxxl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xxxl-n1,
  .mx-xxxl-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xxxl-n2 {
    margin: -0.5rem !important;
  }
  .mt-xxxl-n2,
  .my-xxxl-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xxxl-n2,
  .mx-xxxl-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xxxl-n2,
  .my-xxxl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xxxl-n2,
  .mx-xxxl-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xxxl-n3 {
    margin: -1rem !important;
  }
  .mt-xxxl-n3,
  .my-xxxl-n3 {
    margin-top: -1rem !important;
  }
  .mr-xxxl-n3,
  .mx-xxxl-n3 {
    margin-right: -1rem !important;
  }
  .mb-xxxl-n3,
  .my-xxxl-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xxxl-n3,
  .mx-xxxl-n3 {
    margin-left: -1rem !important;
  }
  .m-xxxl-n4 {
    margin: -1.5rem !important;
  }
  .mt-xxxl-n4,
  .my-xxxl-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xxxl-n4,
  .mx-xxxl-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xxxl-n4,
  .my-xxxl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xxxl-n4,
  .mx-xxxl-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xxxl-n5 {
    margin: -3rem !important;
  }
  .mt-xxxl-n5,
  .my-xxxl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xxxl-n5,
  .mx-xxxl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xxxl-n5,
  .my-xxxl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xxxl-n5,
  .mx-xxxl-n5 {
    margin-left: -3rem !important;
  }
  .m-xxxl-auto {
    margin: auto !important;
  }
  .mt-xxxl-auto,
  .my-xxxl-auto {
    margin-top: auto !important;
  }
  .mr-xxxl-auto,
  .mx-xxxl-auto {
    margin-right: auto !important;
  }
  .mb-xxxl-auto,
  .my-xxxl-auto {
    margin-bottom: auto !important;
  }
  .ml-xxxl-auto,
  .mx-xxxl-auto {
    margin-left: auto !important;
  }
}
.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

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

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-left {
  text-align: left !important;
}

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

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

@media (min-width: 320px) {
  .text-xxs-left {
    text-align: left !important;
  }
  .text-xxs-right {
    text-align: right !important;
  }
  .text-xxs-center {
    text-align: center !important;
  }
}
@media (min-width: 568px) {
  .text-xs-left {
    text-align: left !important;
  }
  .text-xs-right {
    text-align: right !important;
  }
  .text-xs-center {
    text-align: center !important;
  }
}
@media (min-width: 667px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1100px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .text-xxl-left {
    text-align: left !important;
  }
  .text-xxl-right {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1500px) {
  .text-xxxl-left {
    text-align: left !important;
  }
  .text-xxxl-right {
    text-align: right !important;
  }
  .text-xxxl-center {
    text-align: center !important;
  }
}
.text-lowercase {
  text-transform: lowercase !important;
}

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

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

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #00DBFF !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: rgb(0, 153.3, 178.5) !important;
}

.text-secondary {
  color: #6c757d !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: rgb(72.5407725322, 78.5858369099, 83.9592274678) !important;
}

.text-success {
  color: #007E4F !important;
}

a.text-success:hover, a.text-success:focus {
  color: rgb(0, 49.5, 31.0357142857) !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:hover, a.text-info:focus {
  color: rgb(14.5, 102.1304347826, 116) !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:hover, a.text-warning:focus {
  color: rgb(185.5, 139.125, 0) !important;
}

.text-danger {
  color: #C00418 !important;
}

a.text-danger:hover, a.text-danger:focus {
  color: rgb(117.0612244898, 2.4387755102, 14.6326530612) !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:hover, a.text-light:focus {
  color: rgb(203.375, 210.75, 218.125) !important;
}

.text-dark {
  color: #706F6F !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: rgb(73.5784753363, 72.9215246637, 72.9215246637) !important;
}

.text-darkgrey {
  color: #333333 !important;
}

a.text-darkgrey:hover, a.text-darkgrey:focus {
  color: rgb(12.75, 12.75, 12.75) !important;
}

.text-darkblue {
  color: #151B30 !important;
}

a.text-darkblue:hover, a.text-darkblue:focus {
  color: black !important;
}

.text-lightgrey {
  color: #ECECED !important;
}

a.text-lightgrey:hover, a.text-lightgrey:focus {
  color: rgb(196.7162162162, 196.7162162162, 199.7837837838) !important;
}

.text-grey {
  color: #636362 !important;
}

a.text-grey:hover, a.text-grey:focus {
  color: rgb(60.5558375635, 60.5558375635, 59.9441624365) !important;
}

.text-orange {
  color: #00DBFF !important;
}

a.text-orange:hover, a.text-orange:focus {
  color: rgb(0, 153.3, 178.5) !important;
}

.text-greyergrey {
  color: #707173 !important;
}

a.text-greyergrey:hover, a.text-greyergrey:focus {
  color: rgb(74.2555066079, 74.9185022026, 76.2444933921) !important;
}

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

a.text-red:hover, a.text-red:focus {
  color: rgb(117.0612244898, 2.4387755102, 14.6326530612) !important;
}

.text-green {
  color: #007E4F !important;
}

a.text-green:hover, a.text-green:focus {
  color: rgb(0, 49.5, 31.0357142857) !important;
}

.text-body {
  color: #fff !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  word-break: break-word !important;
  word-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
  a:not(.btn) {
    text-decoration: underline;
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  @page {
    size: a3;
  }
  body {
    min-width: 992px !important;
  }
  .container, .elementor .e-container {
    min-width: 992px !important;
  }
  .navbar {
    display: none;
  }
  .badge {
    border: 1px solid #000;
  }
  .table, .custom-accordion-widget__content table, .custom-tabs-widget .tab-pane__content table, .custom-nav-pills-widget .tab-pane__content table {
    border-collapse: collapse !important;
  }
  .table td, .custom-accordion-widget__content table td, .custom-tabs-widget .tab-pane__content table td, .custom-nav-pills-widget .tab-pane__content table td,
  .table th,
  .custom-accordion-widget__content table th,
  .custom-tabs-widget .tab-pane__content table th,
  .custom-nav-pills-widget .tab-pane__content table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6 !important;
  }
  .table-dark, .custom-accordion-widget__content table, .custom-tabs-widget .tab-pane__content table, .custom-nav-pills-widget .tab-pane__content table {
    color: inherit;
  }
  .table-dark th, .custom-accordion-widget__content table th, .custom-tabs-widget .tab-pane__content table th, .custom-nav-pills-widget .tab-pane__content table th,
  .table-dark td,
  .custom-accordion-widget__content table td,
  .custom-tabs-widget .tab-pane__content table td,
  .custom-nav-pills-widget .tab-pane__content table td,
  .table-dark thead th,
  .custom-nav-pills-widget .tab-pane__content table thead th,
  .table-dark tbody + tbody,
  .custom-accordion-widget__content table tbody + tbody,
  .custom-tabs-widget .tab-pane__content table tbody + tbody,
  .custom-nav-pills-widget .tab-pane__content table tbody + tbody {
    border-color: #dee2e6;
  }
  .table .thead-dark th, .custom-accordion-widget__content table .thead-dark th, .custom-tabs-widget .tab-pane__content table .thead-dark th, .custom-nav-pills-widget .tab-pane__content table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}
@font-face {
  font-family: "Campton-Light";
  src: url("../fonts/CamptonLight.woff2") format("woff2"), url("../fonts/CamptonLight.woff") format("woff");
}
@font-face {
  font-family: "Campton-Book";
  src: url("../fonts/CamptonBook.woff2") format("woff2"), url("../fonts/CamptonBook.woff") format("woff");
}
@font-face {
  font-family: "Campton-SemiBold";
  src: url("../fonts/CamptonSemiBold.woff2") format("woff2"), url("../fonts/CamptonSemiBold.woff") format("woff");
}
.font-campton-light, .related-posts-widget__subtitel, .hersteller-map-widget .custom-marker__card, .listing__summary {
  font-family: "Campton-Light";
}

.font-campton-book, .table .small th, .table .related-posts-widget__subtitel th, .custom-accordion-widget__content table .small th, .custom-accordion-widget__content table .related-posts-widget__subtitel th, .table .listings-widget__summary th, .custom-accordion-widget__content table .listings-widget__summary th, .custom-tabs-widget .tab-pane__content table .small th, .custom-tabs-widget .tab-pane__content table .related-posts-widget__subtitel th, .custom-tabs-widget .tab-pane__content table .listings-widget__summary th, .custom-nav-pills-widget .tab-pane__content table .small th, .custom-nav-pills-widget .tab-pane__content table .related-posts-widget__subtitel th, .custom-nav-pills-widget .tab-pane__content table .listings-widget__summary th, .table .listing__summary th, .custom-accordion-widget__content table .listing__summary th, .custom-tabs-widget .tab-pane__content table .listing__summary th, .custom-nav-pills-widget .tab-pane__content table .listing__summary th {
  font-family: "Campton-Book";
}

.font-campton-semibold, .select2-container--default .select2-results__option--selected, .ausstattung-icons-widget__title, .ausstattung-table-widget .table tbody td, .ausstattung-table-widget .custom-accordion-widget__content table tbody td, .custom-accordion-widget__content .ausstattung-table-widget table tbody td, .ausstattung-table-widget .custom-tabs-widget .tab-pane__content table tbody td, .custom-tabs-widget .tab-pane__content .ausstattung-table-widget table tbody td, .ausstattung-table-widget .custom-nav-pills-widget .tab-pane__content table tbody td, .custom-nav-pills-widget .tab-pane__content .ausstattung-table-widget table tbody td, .product-bar__cta:after, .table th, .custom-accordion-widget__content table th, .custom-tabs-widget .tab-pane__content table th, .custom-nav-pills-widget .tab-pane__content table th,
.table thead th,
.custom-nav-pills-widget .tab-pane__content table thead th,
.table tbody.thead td,
.custom-accordion-widget__content table tbody.thead td,
.custom-tabs-widget .tab-pane__content table tbody.thead td,
.custom-nav-pills-widget .tab-pane__content table tbody.thead td, .btn-underline, #BorlabsCookieBox ._brlbs-btn-accept-all, .has--btn-underline-white .elementor-button, .has--btn-underline .elementor-button, .gform_wrapper .button, a {
  font-family: "Campton-SemiBold";
}

.font-gill-sans-light {
  font-family: gill-sans-nova, sans-serif;
  font-weight: 300;
  font-style: normal;
}

.font-gill-sans-book {
  font-family: gill-sans-nova, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.font-gill-sans-medium, .filter-widget__title, .product-bar__breadcrumbs a, .product-bar__breadcrumbs {
  font-family: gill-sans-nova, sans-serif;
  font-weight: 500;
  font-style: normal;
}

.form-control::-webkit-input-placeholder, .gform_wrapper input[type=email]::-webkit-input-placeholder, .gform_wrapper input[type=date]::-webkit-input-placeholder, .gform_wrapper input[type=datetime]::-webkit-input-placeholder, .gform_wrapper input[type=datetime-local]::-webkit-input-placeholder, .gform_wrapper input[type=month]::-webkit-input-placeholder, .gform_wrapper input[type=number]::-webkit-input-placeholder, .gform_wrapper input[type=password]::-webkit-input-placeholder, .gform_wrapper input[type=search]::-webkit-input-placeholder, .gform_wrapper input[type=tel]::-webkit-input-placeholder, .gform_wrapper input[type=text]::-webkit-input-placeholder, .gform_wrapper input[type=time]::-webkit-input-placeholder, .gform_wrapper input[type=week]::-webkit-input-placeholder, .gform_wrapper input[type=url]::-webkit-input-placeholder, .gform_wrapper select::-webkit-input-placeholder, .gform_wrapper textarea::-webkit-input-placeholder {
  font-family: gill-sans-nova, sans-serif;
  font-weight: 600;
  font-style: normal;
}

.form-control::-moz-placeholder, .gform_wrapper input[type=email]::-moz-placeholder, .gform_wrapper input[type=date]::-moz-placeholder, .gform_wrapper input[type=datetime]::-moz-placeholder, .gform_wrapper input[type=datetime-local]::-moz-placeholder, .gform_wrapper input[type=month]::-moz-placeholder, .gform_wrapper input[type=number]::-moz-placeholder, .gform_wrapper input[type=password]::-moz-placeholder, .gform_wrapper input[type=search]::-moz-placeholder, .gform_wrapper input[type=tel]::-moz-placeholder, .gform_wrapper input[type=text]::-moz-placeholder, .gform_wrapper input[type=time]::-moz-placeholder, .gform_wrapper input[type=week]::-moz-placeholder, .gform_wrapper input[type=url]::-moz-placeholder, .gform_wrapper select::-moz-placeholder, .gform_wrapper textarea::-moz-placeholder {
  font-family: gill-sans-nova, sans-serif;
  font-weight: 600;
  font-style: normal;
}

.form-control:-ms-input-placeholder, .gform_wrapper input[type=email]:-ms-input-placeholder, .gform_wrapper input[type=date]:-ms-input-placeholder, .gform_wrapper input[type=datetime]:-ms-input-placeholder, .gform_wrapper input[type=datetime-local]:-ms-input-placeholder, .gform_wrapper input[type=month]:-ms-input-placeholder, .gform_wrapper input[type=number]:-ms-input-placeholder, .gform_wrapper input[type=password]:-ms-input-placeholder, .gform_wrapper input[type=search]:-ms-input-placeholder, .gform_wrapper input[type=tel]:-ms-input-placeholder, .gform_wrapper input[type=text]:-ms-input-placeholder, .gform_wrapper input[type=time]:-ms-input-placeholder, .gform_wrapper input[type=week]:-ms-input-placeholder, .gform_wrapper input[type=url]:-ms-input-placeholder, .gform_wrapper select:-ms-input-placeholder, .gform_wrapper textarea:-ms-input-placeholder {
  font-family: gill-sans-nova, sans-serif;
  font-weight: 600;
  font-style: normal;
}

.form-control::-ms-input-placeholder, .gform_wrapper input[type=email]::-ms-input-placeholder, .gform_wrapper input[type=date]::-ms-input-placeholder, .gform_wrapper input[type=datetime]::-ms-input-placeholder, .gform_wrapper input[type=datetime-local]::-ms-input-placeholder, .gform_wrapper input[type=month]::-ms-input-placeholder, .gform_wrapper input[type=number]::-ms-input-placeholder, .gform_wrapper input[type=password]::-ms-input-placeholder, .gform_wrapper input[type=search]::-ms-input-placeholder, .gform_wrapper input[type=tel]::-ms-input-placeholder, .gform_wrapper input[type=text]::-ms-input-placeholder, .gform_wrapper input[type=time]::-ms-input-placeholder, .gform_wrapper input[type=week]::-ms-input-placeholder, .gform_wrapper input[type=url]::-ms-input-placeholder, .gform_wrapper select::-ms-input-placeholder, .gform_wrapper textarea::-ms-input-placeholder {
  font-family: gill-sans-nova, sans-serif;
  font-weight: 600;
  font-style: normal;
}

.font-gill-sans-semibold, .footer__nav .nav-link, .header .nav-link, .header__nav-mobile .nav-link, .related-posts-widget__title, .einsatzbereiche-circle-widget__title, .einsatzbereiche-circle-widget__top, .einsatzbereiche-circle-widget__next, .custom-accordion-widget__title, .filter-widget .custom-select, .filter-widget .select2-selection, .custom-tabs-widget .nav-link, .ilda-awards-widget .nav-pills .nav-item, .mitarbeiter-widget__text, .custom-nav-pills-widget .nav-pills .nav-item, .hersteller-map-widget .gm-style, .news-single-widget__categories div, .news-widget__categories div, .stimmenfang-widget__text, .projekte-widget__title, .listing__image-box .custom-checkbox, .aa-Item a, #BorlabsCookieBox ._brlbs-manage-btn a, .form-control::placeholder, .gform_wrapper input[type=email]::placeholder,
.gform_wrapper input[type=date]::placeholder,
.gform_wrapper input[type=datetime]::placeholder,
.gform_wrapper input[type=datetime-local]::placeholder,
.gform_wrapper input[type=month]::placeholder,
.gform_wrapper input[type=number]::placeholder,
.gform_wrapper input[type=password]::placeholder,
.gform_wrapper input[type=search]::placeholder,
.gform_wrapper input[type=tel]::placeholder,
.gform_wrapper input[type=text]::placeholder,
.gform_wrapper input[type=time]::placeholder,
.gform_wrapper input[type=week]::placeholder,
.gform_wrapper input[type=url]::placeholder,
.gform_wrapper select::placeholder,
.gform_wrapper textarea::placeholder, .form-control, .gform_wrapper input[type=email],
.gform_wrapper input[type=date],
.gform_wrapper input[type=datetime],
.gform_wrapper input[type=datetime-local],
.gform_wrapper input[type=month],
.gform_wrapper input[type=number],
.gform_wrapper input[type=password],
.gform_wrapper input[type=search],
.gform_wrapper input[type=tel],
.gform_wrapper input[type=text],
.gform_wrapper input[type=time],
.gform_wrapper input[type=week],
.gform_wrapper input[type=url],
.gform_wrapper select,
.gform_wrapper textarea, h3, .h3, .listings-widget__title, .hero-widget.is--einsatzbereich .hero-widget__title, .listing__title, h2, .h2, .news-widget__title, #BorlabsCookieBox ._brlbs-bar ._brlbs-h3, strong, .strong,
b, .b {
  font-family: gill-sans-nova, sans-serif;
  font-weight: 600;
  font-style: normal;
}

.font-gill-sans-bold, .mitarbeiter-widget__name, .elementor-post-navigation__link a, .projekte-widget__meta, .historie-widget span, .hero-widget__arrow span, .hero-widget.is--einsatzbereich .hero-widget__title, .sub-nav__nav .nav-link, .product-bar__nav .nav-link, .back-to-top__percentage, .back-to-top__above, h1, .h1, .news-single-widget__title, .hero-h1, .flagge-widget, .hero-widget__title {
  font-family: gill-sans-nova, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.break-word {
  -ms-word-break: break-all;
  word-break: break-all;
  /* Non standard for WebKit */
  word-break: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
      hyphens: auto;
}

body {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
@media (min-width: 1100px) {
  body {
    font-size: 17px;
  }
}
@media (min-width: 1500px) {
  body {
    font-size: 18px;
  }
}

.hero-h1, .flagge-widget, .hero-widget__title {
  font-size: 1.75rem;
}
@media (min-width: 568px) {
  .hero-h1, .flagge-widget, .hero-widget__title {
    font-size: 2rem;
  }
}
@media (min-width: 768px) {
  .hero-h1, .flagge-widget, .hero-widget__title {
    font-size: 2.25rem;
  }
}
@media (min-width: 992px) {
  .hero-h1, .flagge-widget, .hero-widget__title {
    font-size: 2.5rem;
  }
}
@media (min-width: 1100px) {
  .hero-h1, .flagge-widget, .hero-widget__title {
    font-size: 2.75rem;
  }
}
@media (min-width: 1200px) {
  .hero-h1, .flagge-widget, .hero-widget__title {
    font-size: 3rem;
  }
}
@media (min-width: 1500px) {
  .hero-h1, .flagge-widget, .hero-widget__title {
    font-size: 3.125rem;
  }
}

h1, .h1, .news-single-widget__title {
  font-size: 1.6rem;
}
@media (min-width: 568px) {
  h1, .h1, .news-single-widget__title {
    font-size: 2rem;
  }
}
@media (min-width: 768px) {
  h1, .h1, .news-single-widget__title {
    font-size: 2.1rem;
  }
}
@media (min-width: 992px) {
  h1, .h1, .news-single-widget__title {
    font-size: 2.2rem;
  }
}
@media (min-width: 1100px) {
  h1, .h1, .news-single-widget__title {
    font-size: 2.3rem;
  }
}
@media (min-width: 1200px) {
  h1, .h1, .news-single-widget__title {
    font-size: 2.4rem;
  }
}
@media (min-width: 1500px) {
  h1, .h1, .news-single-widget__title {
    font-size: 2.5rem;
  }
}

h2, .h2, .news-widget__title, #BorlabsCookieBox ._brlbs-bar ._brlbs-h3 {
  font-size: 1.4rem;
}
@media (min-width: 568px) {
  h2, .h2, .news-widget__title, #BorlabsCookieBox ._brlbs-bar ._brlbs-h3 {
    font-size: 1.5rem;
  }
}
@media (min-width: 768px) {
  h2, .h2, .news-widget__title, #BorlabsCookieBox ._brlbs-bar ._brlbs-h3 {
    font-size: 1.6rem;
  }
}
@media (min-width: 992px) {
  h2, .h2, .news-widget__title, #BorlabsCookieBox ._brlbs-bar ._brlbs-h3 {
    font-size: 1.7rem;
  }
}
@media (min-width: 1100px) {
  h2, .h2, .news-widget__title, #BorlabsCookieBox ._brlbs-bar ._brlbs-h3 {
    font-size: 1.8rem;
  }
}
@media (min-width: 1200px) {
  h2, .h2, .news-widget__title, #BorlabsCookieBox ._brlbs-bar ._brlbs-h3 {
    font-size: 1.9rem;
  }
}
@media (min-width: 1500px) {
  h2, .h2, .news-widget__title, #BorlabsCookieBox ._brlbs-bar ._brlbs-h3 {
    font-size: 2rem;
  }
}

h3, .h3, .listings-widget__title, .hero-widget.is--einsatzbereich .hero-widget__title, .listing__title {
  font-size: 1.2rem;
}
@media (min-width: 568px) {
  h3, .h3, .listings-widget__title, .hero-widget.is--einsatzbereich .hero-widget__title, .listing__title {
    font-size: 1.225rem;
  }
}
@media (min-width: 768px) {
  h3, .h3, .listings-widget__title, .hero-widget.is--einsatzbereich .hero-widget__title, .listing__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 992px) {
  h3, .h3, .listings-widget__title, .hero-widget.is--einsatzbereich .hero-widget__title, .listing__title {
    font-size: 1.3rem;
  }
}
@media (min-width: 1100px) {
  h3, .h3, .listings-widget__title, .hero-widget.is--einsatzbereich .hero-widget__title, .listing__title {
    font-size: 1.45rem;
  }
}
@media (min-width: 1200px) {
  h3, .h3, .listings-widget__title, .hero-widget.is--einsatzbereich .hero-widget__title, .listing__title {
    font-size: 1.5rem;
  }
}
@media (min-width: 1500px) {
  h3, .h3, .listings-widget__title, .hero-widget.is--einsatzbereich .hero-widget__title, .listing__title {
    font-size: 1.6rem;
  }
}

h4, .h4, .einsatzbereiche-circle-widget__title {
  font-size: 1.15rem;
}
@media (min-width: 568px) {
  h4, .h4, .einsatzbereiche-circle-widget__title {
    font-size: 1.2rem;
  }
}
@media (min-width: 768px) {
  h4, .h4, .einsatzbereiche-circle-widget__title {
    font-size: 1.225rem;
  }
}
@media (min-width: 992px) {
  h4, .h4, .einsatzbereiche-circle-widget__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 1100px) {
  h4, .h4, .einsatzbereiche-circle-widget__title {
    font-size: 1.3rem;
  }
}
@media (min-width: 1200px) {
  h4, .h4, .einsatzbereiche-circle-widget__title {
    font-size: 1.35rem;
  }
}
@media (min-width: 1500px) {
  h4, .h4, .einsatzbereiche-circle-widget__title {
    font-size: 1.45rem;
  }
}

a {
  color: #EB3DF7;
  -webkit-transition: color 0.25s ease-in-out;
  transition: color 0.25s ease-in-out;
  text-decoration: none;
}
a:hover {
  color: #01dbff;
  text-decoration: none;
}

.einsatzbereich-hover:hover {
  color: #01dbff;
  text-decoration: none;
}

/*! purgecss start ignore */
.btn, #BorlabsCookieBox ._brlbs-btn-accept-all, .has--btn-underline-white .elementor-button, .has--btn-underline .elementor-button, .gform_wrapper .button {
  border-radius: 3px;
  text-transform: uppercase;
  padding: 5px 20px;
}

.btn-underline, #BorlabsCookieBox ._brlbs-btn-accept-all, .has--btn-underline-white .elementor-button, .has--btn-underline .elementor-button, .gform_wrapper .button {
  color: #EB3DF7;
  position: relative;
  -webkit-transition: text-shadow 0.25s ease-in-out;
  transition: text-shadow 0.25s ease-in-out;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
@media (hover: hover) {
  .btn-underline:hover, #BorlabsCookieBox ._brlbs-btn-accept-all:hover, .has--btn-underline-white .elementor-button:hover, .has--btn-underline .elementor-button:hover, .gform_wrapper .button:hover {
    color: #EB3DF7;
    text-shadow: 0 0 7px #EB3DF7;
  }
  .btn-underline:hover:after, #BorlabsCookieBox ._brlbs-btn-accept-all:hover:after, .has--btn-underline-white .elementor-button:hover:after, .has--btn-underline .elementor-button:hover:after, .gform_wrapper .button:hover:after {
    -webkit-box-shadow: 0 0 7px #EB3DF7;
            box-shadow: 0 0 7px #EB3DF7;
  }
}
.btn-underline.has--no-underline:after, #BorlabsCookieBox .has--no-underline._brlbs-btn-accept-all:after, .has--btn-underline-white .has--no-underline.elementor-button:after, .has--btn-underline .has--no-underline.elementor-button:after, .gform_wrapper .has--no-underline.button:after {
  content: none !important;
}
.btn-underline:after, #BorlabsCookieBox ._brlbs-btn-accept-all:after, .has--btn-underline-white .elementor-button:after, .has--btn-underline .elementor-button:after, .gform_wrapper .button:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  border-radius: 2px;
  background-color: #EB3DF7;
  border: 1px solid #EB3DF7;
  -webkit-transition: -webkit-box-shadow 0.25s ease-in-out;
  transition: -webkit-box-shadow 0.25s ease-in-out;
  transition: box-shadow 0.25s ease-in-out;
  transition: box-shadow 0.25s ease-in-out, -webkit-box-shadow 0.25s ease-in-out;
}
.btn-underline.is--blue, #BorlabsCookieBox .is--blue._brlbs-btn-accept-all, .has--btn-underline-white .is--blue.elementor-button, .has--btn-underline .is--blue.elementor-button, .gform_wrapper .is--blue.button {
  color: #00DBFF;
}
.btn-underline.is--blue:hover, #BorlabsCookieBox .is--blue._brlbs-btn-accept-all:hover, .has--btn-underline-white .is--blue.elementor-button:hover, .has--btn-underline .is--blue.elementor-button:hover, .gform_wrapper .is--blue.button:hover {
  color: #00DBFF;
  text-shadow: 0 0 7px #00DBFF;
}
.btn-underline.is--blue:hover:after, #BorlabsCookieBox .is--blue._brlbs-btn-accept-all:hover:after, .has--btn-underline-white .is--blue.elementor-button:hover:after, .has--btn-underline .is--blue.elementor-button:hover:after, .gform_wrapper .is--blue.button:hover:after {
  -webkit-box-shadow: 0 0 7px #00DBFF;
          box-shadow: 0 0 7px #00DBFF;
}
.btn-underline.is--blue:after, #BorlabsCookieBox .is--blue._brlbs-btn-accept-all:after, .has--btn-underline-white .is--blue.elementor-button:after, .has--btn-underline .is--blue.elementor-button:after, .gform_wrapper .is--blue.button:after {
  background-color: #00DBFF;
  border-color: #00DBFF;
}

.btn.btn-primary, #BorlabsCookieBox .btn-primary._brlbs-btn-accept-all, .has--btn-underline-white .btn-primary.elementor-button, .has--btn-underline .btn-primary.elementor-button, .gform_wrapper .btn-primary.button {
  color: #fff;
}

.btn-outline-dark {
  border-width: 2px;
}

:root {
  --input-padding-x: 1rem;
  --input-padding-y: 1rem;
}

/** Gravity Forms */
.gform_wrapper form {
  margin-bottom: 0;
}

.gform_wrapper .gfield_required {
  color: #fff !important;
  font-size: 1em !important;
}

.gform_wrapper .gfield_required {
  padding-left: 1px;
  color: #C00418;
}

.gform_wrapper .gfield_label {
  text-transform: uppercase;
}

.gform_wrapper .gform_footer {
  display: inline-block !important;
  padding: 0 !important;
}
.gform_wrapper .gform_footer:after {
  border-color: #EB3DF7 !important;
  background-color: #EB3DF7 !important;
}

.form-control-wrapper, .gform_wrapper .gform_footer, .ginput_container.ginput_container_text, .ginput_container.ginput_container_email {
  position: relative;
}
.form-control-wrapper.is--focused:after, .gform_wrapper .is--focused.gform_footer:after, .is--focused.ginput_container.ginput_container_text:after, .is--focused.ginput_container.ginput_container_email:after {
  -webkit-box-shadow: 0 0 7px #01DBFF;
          box-shadow: 0 0 7px #01DBFF;
}
.form-control-wrapper:after, .gform_wrapper .gform_footer:after, .ginput_container.ginput_container_text:after, .ginput_container.ginput_container_email:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  border-radius: 2px;
  background-color: #01DBFF;
  border: 1px solid #01DBFF;
  -webkit-transition: -webkit-box-shadow 0.25s ease-in-out;
  transition: -webkit-box-shadow 0.25s ease-in-out;
  transition: box-shadow 0.25s ease-in-out;
  transition: box-shadow 0.25s ease-in-out, -webkit-box-shadow 0.25s ease-in-out;
}

.form-control, .gform_wrapper input[type=email],
.gform_wrapper input[type=date],
.gform_wrapper input[type=datetime],
.gform_wrapper input[type=datetime-local],
.gform_wrapper input[type=month],
.gform_wrapper input[type=number],
.gform_wrapper input[type=password],
.gform_wrapper input[type=search],
.gform_wrapper input[type=tel],
.gform_wrapper input[type=text],
.gform_wrapper input[type=time],
.gform_wrapper input[type=week],
.gform_wrapper input[type=url],
.gform_wrapper select,
.gform_wrapper textarea {
  background-color: transparent;
  border-radius: 0;
  border-top: 0;
  border-bottom: 0;
  border-left: 0;
  color: #01DBFF;
  border-right: 0;
  position: relative;
  -webkit-transition: color 0.25s ease-in-out, text-shadow 0.25s ease-in-out;
  transition: color 0.25s ease-in-out, text-shadow 0.25s ease-in-out;
}
.form-control:focus, .gform_wrapper input[type=email]:focus,
.gform_wrapper input[type=date]:focus,
.gform_wrapper input[type=datetime]:focus,
.gform_wrapper input[type=datetime-local]:focus,
.gform_wrapper input[type=month]:focus,
.gform_wrapper input[type=number]:focus,
.gform_wrapper input[type=password]:focus,
.gform_wrapper input[type=search]:focus,
.gform_wrapper input[type=tel]:focus,
.gform_wrapper input[type=text]:focus,
.gform_wrapper input[type=time]:focus,
.gform_wrapper input[type=week]:focus,
.gform_wrapper input[type=url]:focus,
.gform_wrapper select:focus,
.gform_wrapper textarea:focus {
  color: #01DBFF;
  border-color: #01DBFF;
  background-color: transparent;
  text-shadow: 0 0 7px #01DBFF;
}
.form-control::-webkit-input-placeholder, .gform_wrapper input[type=email]::-webkit-input-placeholder, .gform_wrapper input[type=date]::-webkit-input-placeholder, .gform_wrapper input[type=datetime]::-webkit-input-placeholder, .gform_wrapper input[type=datetime-local]::-webkit-input-placeholder, .gform_wrapper input[type=month]::-webkit-input-placeholder, .gform_wrapper input[type=number]::-webkit-input-placeholder, .gform_wrapper input[type=password]::-webkit-input-placeholder, .gform_wrapper input[type=search]::-webkit-input-placeholder, .gform_wrapper input[type=tel]::-webkit-input-placeholder, .gform_wrapper input[type=text]::-webkit-input-placeholder, .gform_wrapper input[type=time]::-webkit-input-placeholder, .gform_wrapper input[type=week]::-webkit-input-placeholder, .gform_wrapper input[type=url]::-webkit-input-placeholder, .gform_wrapper select::-webkit-input-placeholder, .gform_wrapper textarea::-webkit-input-placeholder {
  color: #fff;
}
.form-control::-moz-placeholder, .gform_wrapper input[type=email]::-moz-placeholder, .gform_wrapper input[type=date]::-moz-placeholder, .gform_wrapper input[type=datetime]::-moz-placeholder, .gform_wrapper input[type=datetime-local]::-moz-placeholder, .gform_wrapper input[type=month]::-moz-placeholder, .gform_wrapper input[type=number]::-moz-placeholder, .gform_wrapper input[type=password]::-moz-placeholder, .gform_wrapper input[type=search]::-moz-placeholder, .gform_wrapper input[type=tel]::-moz-placeholder, .gform_wrapper input[type=text]::-moz-placeholder, .gform_wrapper input[type=time]::-moz-placeholder, .gform_wrapper input[type=week]::-moz-placeholder, .gform_wrapper input[type=url]::-moz-placeholder, .gform_wrapper select::-moz-placeholder, .gform_wrapper textarea::-moz-placeholder {
  color: #fff;
}
.form-control:-ms-input-placeholder, .gform_wrapper input[type=email]:-ms-input-placeholder, .gform_wrapper input[type=date]:-ms-input-placeholder, .gform_wrapper input[type=datetime]:-ms-input-placeholder, .gform_wrapper input[type=datetime-local]:-ms-input-placeholder, .gform_wrapper input[type=month]:-ms-input-placeholder, .gform_wrapper input[type=number]:-ms-input-placeholder, .gform_wrapper input[type=password]:-ms-input-placeholder, .gform_wrapper input[type=search]:-ms-input-placeholder, .gform_wrapper input[type=tel]:-ms-input-placeholder, .gform_wrapper input[type=text]:-ms-input-placeholder, .gform_wrapper input[type=time]:-ms-input-placeholder, .gform_wrapper input[type=week]:-ms-input-placeholder, .gform_wrapper input[type=url]:-ms-input-placeholder, .gform_wrapper select:-ms-input-placeholder, .gform_wrapper textarea:-ms-input-placeholder {
  color: #fff;
}
.form-control::-ms-input-placeholder, .gform_wrapper input[type=email]::-ms-input-placeholder, .gform_wrapper input[type=date]::-ms-input-placeholder, .gform_wrapper input[type=datetime]::-ms-input-placeholder, .gform_wrapper input[type=datetime-local]::-ms-input-placeholder, .gform_wrapper input[type=month]::-ms-input-placeholder, .gform_wrapper input[type=number]::-ms-input-placeholder, .gform_wrapper input[type=password]::-ms-input-placeholder, .gform_wrapper input[type=search]::-ms-input-placeholder, .gform_wrapper input[type=tel]::-ms-input-placeholder, .gform_wrapper input[type=text]::-ms-input-placeholder, .gform_wrapper input[type=time]::-ms-input-placeholder, .gform_wrapper input[type=week]::-ms-input-placeholder, .gform_wrapper input[type=url]::-ms-input-placeholder, .gform_wrapper select::-ms-input-placeholder, .gform_wrapper textarea::-ms-input-placeholder {
  color: #fff;
}
.form-control::placeholder, .gform_wrapper input[type=email]::placeholder,
.gform_wrapper input[type=date]::placeholder,
.gform_wrapper input[type=datetime]::placeholder,
.gform_wrapper input[type=datetime-local]::placeholder,
.gform_wrapper input[type=month]::placeholder,
.gform_wrapper input[type=number]::placeholder,
.gform_wrapper input[type=password]::placeholder,
.gform_wrapper input[type=search]::placeholder,
.gform_wrapper input[type=tel]::placeholder,
.gform_wrapper input[type=text]::placeholder,
.gform_wrapper input[type=time]::placeholder,
.gform_wrapper input[type=week]::placeholder,
.gform_wrapper input[type=url]::placeholder,
.gform_wrapper select::placeholder,
.gform_wrapper textarea::placeholder {
  color: #fff;
}

.gform_wrapper input[type=email],
.gform_wrapper input[type=date],
.gform_wrapper input[type=datetime],
.gform_wrapper input[type=datetime-local],
.gform_wrapper input[type=month],
.gform_wrapper input[type=number],
.gform_wrapper input[type=password],
.gform_wrapper input[type=search],
.gform_wrapper input[type=tel],
.gform_wrapper input[type=text],
.gform_wrapper input[type=time],
.gform_wrapper input[type=week],
.gform_wrapper input[type=url],
.gform_wrapper select,
.gform_wrapper textarea {
  background-color: transparent;
  border-radius: 0;
  border-top: 0;
  border-left: 0;
  color: #01DBFF;
  border-right: 0;
  position: relative;
  -webkit-transition: color 0.25s ease-in-out, text-shadow 0.25s ease-in-out;
  transition: color 0.25s ease-in-out, text-shadow 0.25s ease-in-out;
}
.gform_wrapper input[type=email]:focus,
.gform_wrapper input[type=date]:focus,
.gform_wrapper input[type=datetime]:focus,
.gform_wrapper input[type=datetime-local]:focus,
.gform_wrapper input[type=month]:focus,
.gform_wrapper input[type=number]:focus,
.gform_wrapper input[type=password]:focus,
.gform_wrapper input[type=search]:focus,
.gform_wrapper input[type=tel]:focus,
.gform_wrapper input[type=text]:focus,
.gform_wrapper input[type=time]:focus,
.gform_wrapper input[type=week]:focus,
.gform_wrapper input[type=url]:focus,
.gform_wrapper select:focus,
.gform_wrapper textarea:focus {
  color: #01DBFF;
  border-color: #01DBFF;
  background-color: transparent;
  text-shadow: 0 0 7px #01DBFF;
}
.gform_wrapper input[type=email]::-webkit-input-placeholder, .gform_wrapper input[type=date]::-webkit-input-placeholder, .gform_wrapper input[type=datetime]::-webkit-input-placeholder, .gform_wrapper input[type=datetime-local]::-webkit-input-placeholder, .gform_wrapper input[type=month]::-webkit-input-placeholder, .gform_wrapper input[type=number]::-webkit-input-placeholder, .gform_wrapper input[type=password]::-webkit-input-placeholder, .gform_wrapper input[type=search]::-webkit-input-placeholder, .gform_wrapper input[type=tel]::-webkit-input-placeholder, .gform_wrapper input[type=text]::-webkit-input-placeholder, .gform_wrapper input[type=time]::-webkit-input-placeholder, .gform_wrapper input[type=week]::-webkit-input-placeholder, .gform_wrapper input[type=url]::-webkit-input-placeholder, .gform_wrapper select::-webkit-input-placeholder, .gform_wrapper textarea::-webkit-input-placeholder {
  color: #fff;
}
.gform_wrapper input[type=email]::-moz-placeholder, .gform_wrapper input[type=date]::-moz-placeholder, .gform_wrapper input[type=datetime]::-moz-placeholder, .gform_wrapper input[type=datetime-local]::-moz-placeholder, .gform_wrapper input[type=month]::-moz-placeholder, .gform_wrapper input[type=number]::-moz-placeholder, .gform_wrapper input[type=password]::-moz-placeholder, .gform_wrapper input[type=search]::-moz-placeholder, .gform_wrapper input[type=tel]::-moz-placeholder, .gform_wrapper input[type=text]::-moz-placeholder, .gform_wrapper input[type=time]::-moz-placeholder, .gform_wrapper input[type=week]::-moz-placeholder, .gform_wrapper input[type=url]::-moz-placeholder, .gform_wrapper select::-moz-placeholder, .gform_wrapper textarea::-moz-placeholder {
  color: #fff;
}
.gform_wrapper input[type=email]:-ms-input-placeholder, .gform_wrapper input[type=date]:-ms-input-placeholder, .gform_wrapper input[type=datetime]:-ms-input-placeholder, .gform_wrapper input[type=datetime-local]:-ms-input-placeholder, .gform_wrapper input[type=month]:-ms-input-placeholder, .gform_wrapper input[type=number]:-ms-input-placeholder, .gform_wrapper input[type=password]:-ms-input-placeholder, .gform_wrapper input[type=search]:-ms-input-placeholder, .gform_wrapper input[type=tel]:-ms-input-placeholder, .gform_wrapper input[type=text]:-ms-input-placeholder, .gform_wrapper input[type=time]:-ms-input-placeholder, .gform_wrapper input[type=week]:-ms-input-placeholder, .gform_wrapper input[type=url]:-ms-input-placeholder, .gform_wrapper select:-ms-input-placeholder, .gform_wrapper textarea:-ms-input-placeholder {
  color: #fff;
}
.gform_wrapper input[type=email]::-ms-input-placeholder, .gform_wrapper input[type=date]::-ms-input-placeholder, .gform_wrapper input[type=datetime]::-ms-input-placeholder, .gform_wrapper input[type=datetime-local]::-ms-input-placeholder, .gform_wrapper input[type=month]::-ms-input-placeholder, .gform_wrapper input[type=number]::-ms-input-placeholder, .gform_wrapper input[type=password]::-ms-input-placeholder, .gform_wrapper input[type=search]::-ms-input-placeholder, .gform_wrapper input[type=tel]::-ms-input-placeholder, .gform_wrapper input[type=text]::-ms-input-placeholder, .gform_wrapper input[type=time]::-ms-input-placeholder, .gform_wrapper input[type=week]::-ms-input-placeholder, .gform_wrapper input[type=url]::-ms-input-placeholder, .gform_wrapper select::-ms-input-placeholder, .gform_wrapper textarea::-ms-input-placeholder {
  color: #fff;
}
.gform_wrapper input[type=email]::placeholder,
.gform_wrapper input[type=date]::placeholder,
.gform_wrapper input[type=datetime]::placeholder,
.gform_wrapper input[type=datetime-local]::placeholder,
.gform_wrapper input[type=month]::placeholder,
.gform_wrapper input[type=number]::placeholder,
.gform_wrapper input[type=password]::placeholder,
.gform_wrapper input[type=search]::placeholder,
.gform_wrapper input[type=tel]::placeholder,
.gform_wrapper input[type=text]::placeholder,
.gform_wrapper input[type=time]::placeholder,
.gform_wrapper input[type=week]::placeholder,
.gform_wrapper input[type=url]::placeholder,
.gform_wrapper select::placeholder,
.gform_wrapper textarea::placeholder {
  color: #fff;
}

.gform_wrapper textarea {
  border: 3px solid #01DBFF;
  border-radius: 2px;
}

.gform_wrapper .button {
  margin-bottom: 0 !important;
}
.gform_wrapper .button:after {
  content: none;
}

.validation_message {
  display: none;
}

.form-label-group {
  position: relative;
  margin-bottom: 1rem;
}

.form-label-group > input,
.form-label-group > textarea,
.form-label-group > label {
  padding: var(--input-padding-y) var(--input-padding-x);
}

.form-label-group > input,
.form-label-group > label {
  height: auto;
}

.form-label-group > label {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  text-transform: uppercase;
  margin-bottom: 0;
  /* Override default `<label>` margin */
  line-height: 1.5;
  color: #ECECED;
  border: 1px solid transparent;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}

.form-label-group input::-webkit-input-placeholder,
.form-label-group textarea::-webkit-input-placeholder {
  color: transparent;
}

.form-label-group input:-ms-input-placeholder,
.form-label-group textarea:-ms-input-placeholder {
  color: transparent;
}

.form-label-group input::-ms-input-placeholder,
.form-label-group textarea::-ms-input-placeholder {
  color: transparent;
}

.form-label-group input::-moz-placeholder,
.form-label-group textarea::-moz-placeholder {
  color: transparent;
}

.form-label-group input::-webkit-input-placeholder, .form-label-group textarea::-webkit-input-placeholder {
  color: transparent;
}

.form-label-group input::-moz-placeholder, .form-label-group textarea::-moz-placeholder {
  color: transparent;
}

.form-label-group input:-ms-input-placeholder, .form-label-group textarea:-ms-input-placeholder {
  color: transparent;
}

.form-label-group input::-ms-input-placeholder, .form-label-group textarea::-ms-input-placeholder {
  color: transparent;
}

.form-label-group input::placeholder,
.form-label-group textarea::placeholder {
  color: transparent;
}

.form-label-group input:not(:-moz-placeholder), .form-label-group textarea:not(:-moz-placeholder) {
  padding-top: calc(var(--input-padding-y) + var(--input-padding-y) * 0.6666666667);
  padding-bottom: calc(var(--input-padding-y) / 3);
}

.form-label-group input:not(:-ms-input-placeholder), .form-label-group textarea:not(:-ms-input-placeholder) {
  padding-top: calc(var(--input-padding-y) + var(--input-padding-y) * 0.6666666667);
  padding-bottom: calc(var(--input-padding-y) / 3);
}

.form-label-group input:not(:placeholder-shown),
.form-label-group textarea:not(:placeholder-shown) {
  padding-top: calc(var(--input-padding-y) + var(--input-padding-y) * 0.6666666667);
  padding-bottom: calc(var(--input-padding-y) / 3);
}

.form-label-group input:not(:-moz-placeholder) ~ label, .form-label-group textarea:not(:-moz-placeholder) ~ label {
  padding-top: calc(var(--input-padding-y) / 3);
  padding-bottom: calc(var(--input-padding-y) / 3);
  font-size: 10px;
  color: #333333;
}

.form-label-group input:not(:-ms-input-placeholder) ~ label, .form-label-group textarea:not(:-ms-input-placeholder) ~ label {
  padding-top: calc(var(--input-padding-y) / 3);
  padding-bottom: calc(var(--input-padding-y) / 3);
  font-size: 10px;
  color: #333333;
}

.form-label-group input:not(:placeholder-shown) ~ label,
.form-label-group textarea:not(:placeholder-shown) ~ label {
  padding-top: calc(var(--input-padding-y) / 3);
  padding-bottom: calc(var(--input-padding-y) / 3);
  font-size: 10px;
  color: #333333;
}

.btn:active, #BorlabsCookieBox ._brlbs-btn-accept-all:active, .has--btn-underline-white .elementor-button:active, .has--btn-underline .elementor-button:active, .btn:focus, #BorlabsCookieBox ._brlbs-btn-accept-all:focus, .has--btn-underline-white .elementor-button:focus, .has--btn-underline .elementor-button:focus,
.form-control:active,
.gform_wrapper input[type=email]:active,
.gform_wrapper input[type=date]:active,
.gform_wrapper input[type=datetime]:active,
.gform_wrapper input[type=datetime-local]:active,
.gform_wrapper input[type=month]:active,
.gform_wrapper input[type=number]:active,
.gform_wrapper input[type=password]:active,
.gform_wrapper input[type=search]:active,
.gform_wrapper input[type=tel]:active,
.gform_wrapper input[type=text]:active,
.gform_wrapper input[type=time]:active,
.gform_wrapper input[type=week]:active,
.gform_wrapper input[type=url]:active,
.gform_wrapper select:active,
.gform_wrapper textarea:active,
.form-control:focus,
.gform_wrapper input[type=email]:focus,
.gform_wrapper input[type=date]:focus,
.gform_wrapper input[type=datetime]:focus,
.gform_wrapper input[type=datetime-local]:focus,
.gform_wrapper input[type=month]:focus,
.gform_wrapper input[type=number]:focus,
.gform_wrapper input[type=password]:focus,
.gform_wrapper input[type=search]:focus,
.gform_wrapper input[type=tel]:focus,
.gform_wrapper input[type=text]:focus,
.gform_wrapper input[type=time]:focus,
.gform_wrapper input[type=week]:focus,
.gform_wrapper input[type=url]:focus,
.gform_wrapper select:focus,
.gform_wrapper textarea:focus,
.button:active,
.button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-link {
  text-transform: uppercase;
  text-decoration: none;
}
@media (min-width: 768px) {
  .btn-link {
    font-size: 1.625rem;
  }
}
.btn-link.btn-sm, .btn-group-sm > .btn-link.btn, #BorlabsCookieBox .btn-group-sm > .btn-link._brlbs-btn-accept-all, .has--btn-underline-white .btn-group-sm > .btn-link.elementor-button, .has--btn-underline .btn-group-sm > .btn-link.elementor-button, .gform_wrapper .btn-group-sm > .btn-link.button {
  font-size: 1rem;
}
.btn-link:hover {
  text-decoration: none;
  color: #00DBFF;
}
.btn-link:focus, .btn-link:active {
  text-decoration: none;
}

.btn-arrow-right {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.btn-arrow-right span {
  display: block;
  margin-top: 4px;
}
.btn-arrow-right svg {
  margin-left: 0.5rem;
}
.btn-arrow-right.btn-sm svg, .btn-group-sm > .btn-arrow-right.btn svg, #BorlabsCookieBox .btn-group-sm > .btn-arrow-right._brlbs-btn-accept-all svg, .has--btn-underline-white .btn-group-sm > .btn-arrow-right.elementor-button svg, .has--btn-underline .btn-group-sm > .btn-arrow-right.elementor-button svg, .gform_wrapper .btn-group-sm > .btn-arrow-right.button svg {
  width: 10px;
  height: 12px;
}

.btn-lg, .btn-group-lg > .btn, #BorlabsCookieBox .btn-group-lg > ._brlbs-btn-accept-all, .has--btn-underline-white .btn-group-lg > .elementor-button, .has--btn-underline .btn-group-lg > .elementor-button, .gform_wrapper .btn-group-lg > .button {
  border-radius: 0;
}

.g-recaptcha-response {
  padding: 0 !important;
}

.gform_required_legend {
  display: none;
}

.hover-buttons .elementor-button {
  -webkit-transition: text-shadow 0.25s ease-in-out, color 0.25s ease-in-out, border-color 0.25s ease-in-out, -webkit-box-shadow 0.25s ease-in-out;
  transition: text-shadow 0.25s ease-in-out, color 0.25s ease-in-out, border-color 0.25s ease-in-out, -webkit-box-shadow 0.25s ease-in-out;
  transition: box-shadow 0.25s ease-in-out, text-shadow 0.25s ease-in-out, color 0.25s ease-in-out, border-color 0.25s ease-in-out;
  transition: box-shadow 0.25s ease-in-out, text-shadow 0.25s ease-in-out, color 0.25s ease-in-out, border-color 0.25s ease-in-out, -webkit-box-shadow 0.25s ease-in-out;
  border: 2px solid transparent;
}
.hover-buttons .elementor-button:hover {
  text-shadow: 0 0 7px #01dbff;
  -webkit-box-shadow: 0 0 7px #01dbff, inset 0 0 7px #01dbff;
          box-shadow: 0 0 7px #01dbff, inset 0 0 7px #01dbff;
  border: 2px solid #01dbff;
}
.hover-buttons .elementor-button .elementor-button-text {
  margin-top: 2px;
}

.has--btn-underline .elementor-button {
  line-height: 1 !important;
  text-decoration: none !important;
}

.has--btn-underline-white .elementor-button {
  line-height: 1 !important;
  text-decoration: none !important;
}

#BorlabsCookieBox ._brlbs-manage-btn a {
  color: #EB3DF7;
  padding: 0;
  font-size: 0.9rem;
  -webkit-transition: text-shadow 0.25s ease-in-out;
  transition: text-shadow 0.25s ease-in-out;
}
#BorlabsCookieBox ._brlbs-manage-btn a:hover {
  color: #EB3DF7;
  text-shadow: 0 0 7px #EB3DF7;
}

#BorlabsCookieBox ._brlbs-btn-accept-all {
  color: #00dbff !important;
}
#BorlabsCookieBox ._brlbs-btn-accept-all::after {
  background-color: #00dbff !important;
  border-color: #00dbff !important;
}
#BorlabsCookieBox ._brlbs-btn-accept-all:hover {
  background: none;
  color: #00dbff !important;
  text-shadow: 0 0 7px #00dbff;
  background-color: transparent;
}
#BorlabsCookieBox ._brlbs-btn-accept-all:hover:after {
  -webkit-box-shadow: 0 0 7px #00dbff;
          box-shadow: 0 0 7px #00dbff;
}

#BorlabsCookieBox .cookie-preference .cookie-logo {
  max-width: 64px;
}
@media (min-width: 992px) {
  #BorlabsCookieBox .cookie-preference .cookie-logo {
    max-width: 120px;
  }
}

#BorlabsCookieBox ._brlbs-bar .cookie-logo {
  padding-right: 1rem;
}

/*! purgecss end ignore */
.table-dark, .custom-accordion-widget__content table, .custom-tabs-widget .tab-pane__content table, .custom-nav-pills-widget .tab-pane__content table {
  background-color: transparent;
}

.table tbody td, .custom-accordion-widget__content table tbody td, .custom-tabs-widget .tab-pane__content table tbody td, .custom-nav-pills-widget .tab-pane__content table tbody td {
  border: 0;
}

.table th, .custom-accordion-widget__content table th, .custom-tabs-widget .tab-pane__content table th, .custom-nav-pills-widget .tab-pane__content table th,
.table thead th,
.custom-nav-pills-widget .tab-pane__content table thead th,
.table tbody.thead td,
.custom-accordion-widget__content table tbody.thead td,
.custom-tabs-widget .tab-pane__content table tbody.thead td,
.custom-nav-pills-widget .tab-pane__content table tbody.thead td {
  vertical-align: bottom;
  border: 0;
}

.table-dark.table-striped tbody tr:nth-of-type(odd), .custom-accordion-widget__content table tbody tr:nth-of-type(odd), .custom-tabs-widget .tab-pane__content table tbody tr:nth-of-type(odd), .custom-nav-pills-widget .tab-pane__content table tbody tr:nth-of-type(odd) {
  background-color: transparent;
}

.table-dark.table-striped tbody tr:nth-of-type(even), .custom-accordion-widget__content table tbody tr:nth-of-type(even), .custom-tabs-widget .tab-pane__content table tbody tr:nth-of-type(even), .custom-nav-pills-widget .tab-pane__content table tbody tr:nth-of-type(even) {
  background-color: #151B30;
}

.table-fixed {
  table-layout: fixed;
}

.table-auto {
  table-layout: auto;
}

.table .small th, .table .related-posts-widget__subtitel th, .custom-accordion-widget__content table .small th, .custom-accordion-widget__content table .related-posts-widget__subtitel th, .table .listings-widget__summary th, .custom-accordion-widget__content table .listings-widget__summary th, .custom-tabs-widget .tab-pane__content table .small th, .custom-tabs-widget .tab-pane__content table .related-posts-widget__subtitel th, .custom-tabs-widget .tab-pane__content table .listings-widget__summary th, .custom-nav-pills-widget .tab-pane__content table .small th, .custom-nav-pills-widget .tab-pane__content table .related-posts-widget__subtitel th, .custom-nav-pills-widget .tab-pane__content table .listings-widget__summary th, .table .listing__summary th, .custom-accordion-widget__content table .listing__summary th, .custom-tabs-widget .tab-pane__content table .listing__summary th, .custom-nav-pills-widget .tab-pane__content table .listing__summary th {
  background-color: transparent;
  font-size: 0.75rem;
}

.icon-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.icon-list__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0.25rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 992px) {
  .icon-list__item {
    margin-bottom: 1rem;
  }
}
.icon-list__icon svg {
  width: 40px;
  height: 40px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.icon-list__text {
  margin-left: 1rem;
}

.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(16, 17, 31, 0.7);
  opacity: 0;
  z-index: 1;
  visibility: hidden;
  -webkit-transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out, -webkit-backdrop-filter 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out, -webkit-backdrop-filter 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out, backdrop-filter 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out, backdrop-filter 0.25s ease-in-out, -webkit-backdrop-filter 0.25s ease-in-out;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.search-overlay.is--visible {
  opacity: 1;
  visibility: visible;
}

.footer-newsletter {
  padding: 2rem 0 1rem 0;
}
@media (min-width: 768px) {
  .footer-newsletter {
    padding: 5rem 0 3rem 0;
  }
}

.search-dropdown .dropdown-menu {
  background-color: transparent;
  border: none;
}
.search-dropdown .dropdown-menu .dropdown-item {
  background-color: transparent;
  color: #00DBFF;
  padding: 0.5rem 0;
}

.aa-Panel {
  z-index: 9999;
  background-color: #10111F;
  border-radius: 0;
}

.aa-Label {
  margin: 0;
}

.aa-Input {
  color: #2FFFFF;
  text-shadow: 0 0 7px #2FFFFF;
}
.aa-Input::-webkit-input-placeholder {
  color: #fff;
  text-shadow: none;
}
.aa-Input::-moz-placeholder {
  color: #fff;
  text-shadow: none;
}
.aa-Input:-ms-input-placeholder {
  color: #fff;
  text-shadow: none;
}
.aa-Input::-ms-input-placeholder {
  color: #fff;
  text-shadow: none;
}
.aa-Input::placeholder {
  color: #fff;
  text-shadow: none;
}

.aa-ClearIcon {
  color: #fff;
}

.aa-Label svg,
.aa-LoadingIndicator svg {
  color: #00DBFF;
}

.aa-Form {
  border: 0;
  background-color: #10111F;
}

.aa-Form:focus-within {
  border: none;
  -webkit-box-shadow: rgba(0, 219, 255, 0.2) 0 0 0 2px, inset rgba(0, 219, 255, 0.2) 0 0 0 2px;
          box-shadow: rgba(0, 219, 255, 0.2) 0 0 0 2px, inset rgba(0, 219, 255, 0.2) 0 0 0 2px;
}

.aa-SourceHeader {
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #fff;
}

.aa-GradientBottom {
  display: none;
}

.aa-Item {
  padding: 0 !important;
  min-height: 0 !important;
}
.aa-Item[aria-selected=true] {
  background-color: transparent;
}
.aa-Item[aria-selected=true] a {
  color: #2FFFFF;
}
.aa-Item a {
  padding: 10px 10px;
  text-decoration: none;
  color: #fff;
  -webkit-transition: color 0.25s ease-in-out;
  transition: color 0.25s ease-in-out;
}

#searchModal .modal-dialog {
  max-width: 900px;
}

.aa-SubmitButton {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 23.21 23.2'%3E%3Cpath id='Pfad_218' data-name='Pfad 218' d='M2.47,2.47a8.45,8.45,0,1,0,12,0h0A8.47,8.47,0,0,0,2.47,2.47Zm.65.65a7.53,7.53,0,1,1,0,10.65,7.53,7.53,0,0,1,0-10.65Z' fill='%23fff' /%3E%3Cpath id='Pfad_219' data-name='Pfad 219' d='M12.84,15.15l2.32-2.31,8.05,8.05L20.9,23.2Z' fill='%23fff' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 55%;
}
.aa-SubmitButton svg {
  display: none;
}

.aa-Form {
  border: 0;
  border-radius: 0;
}

.aa-Form[focus-within] {
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: 0;
}

.aa-Form:focus-within {
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: 0;
}

.nav-overlay {
  background-color: #10111F;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  visibility: hidden;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  padding: 1rem 2rem 1.5rem 2rem;
  -webkit-transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out;
}
.nav-overlay .nav-link:focus, .nav-overlay .nav-link:active {
  opacity: 0.5;
}
.nav-overlay .nav-link {
  -webkit-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
}
.nav-overlay__nav {
  max-height: 90%;
  position: relative;
  overflow-y: auto;
}
.nav-overlay.is--open {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}
.nav-overlay .menu-toggle {
  position: absolute;
  top: 20px;
  right: 15px;
  z-index: 1;
}
.nav-overlay__back {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  visibility: hidden;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 15px;
  left: 15px;
  -webkit-transition: visibility 0.25s ease-in-out, opacity 0.25s ease-in-out;
  transition: visibility 0.25s ease-in-out, opacity 0.25s ease-in-out;
}
.nav-overlay__back.is--visible {
  opacity: 1;
  visibility: visible;
}
.nav-overlay__back:active, .nav-overlay__back:focus {
  opacity: 0.5;
}
.nav-overlay__sub-nav {
  list-style-type: none;
  padding-left: 0;
}
.nav-overlay__sub-nav .nav-item {
  margin-bottom: 0 !important;
}
.nav-overlay__sub-nav .nav-link {
  font-size: 1.125rem !important;
}
.nav-overlay__sub-nav .nav-link.is--open {
  text-decoration: underline;
  color: #fff !important;
  text-shadow: none !important;
}
.nav-overlay__sub-sub-nav {
  list-style-type: none;
  padding: 0;
}
.nav-overlay__sub-sub-nav .nav-item {
  opacity: 0;
}
.nav-overlay__sub-sub-nav .nav-link {
  font-size: 0.875rem !important;
  line-height: 1.1;
}
@media (min-width: 667px) {
  .nav-overlay__sub-sub-nav .nav-link {
    font-size: 1rem !important;
  }
}
.nav-overlay__sub-sub-nav .nav-link.has--icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 0.75rem !important;
}
@media (min-width: 667px) {
  .nav-overlay__sub-sub-nav .nav-link.has--icon {
    font-size: 1rem !important;
  }
}
.nav-overlay__sub-sub-nav .nav-link__icon {
  margin-right: 0.5rem;
}
.nav-overlay__sub-sub-nav .nav-link__icon img {
  width: 50px;
  height: auto;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0;
  height: 0;
  overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/**
 * Swiper 8.4.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: January 30, 2023
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

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

.swiper-pointer-events.swiper-vertical {
  -ms-touch-action: pan-x;
      touch-action: pan-x;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide, .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top, .swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  -webkit-scroll-snap-type: x mandatory;
      -ms-scroll-snap-type: x mandatory;
          scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  -webkit-scroll-snap-type: y mandatory;
      -ms-scroll-snap-type: y mandatory;
          scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
  -webkit-order: 9999;
      -ms-flex-order: 9999;
          order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-button-next:after, .swiper-button-prev:after {
  color: #fff;
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0.25s ease-in-out, opacity 0.25s ease-in-out;
  transition: visibility 0.25s ease-in-out, opacity 0.25s ease-in-out;
  cursor: pointer;
}
.back-to-top.is--hidden {
  opacity: 0 !important;
  visibility: hidden !important;
}
.back-to-top.is--visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top__above {
  color: #00DBFF;
  font-size: 9px;
  text-transform: uppercase;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: visibility 0.25s ease-in-out, opacity 0.25s ease-in-out;
  transition: visibility 0.25s ease-in-out, opacity 0.25s ease-in-out;
}
.back-to-top__above.is--visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top__battery {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 52.58 60.57'%3E%3Crect x='17.61' y='2' width='17.39' height='2' fill='none' /%3E%3Crect x='2' y='6.12' width='48.58' height='52.45' fill='%2310111f' /%3E%3Cpath d='M51.58,4.12H37V1a1.05,1.05,0,0,0-.29-.71A1.05,1.05,0,0,0,36,0H16.61a1.05,1.05,0,0,0-.71.29,1.05,1.05,0,0,0-.29.71V4.12H1a1.05,1.05,0,0,0-.71.29A1.05,1.05,0,0,0,0,5.12V59.57a1,1,0,0,0,1,1H51.58a1,1,0,0,0,1-1V5.12A1,1,0,0,0,51.58,4.12ZM2,6.12H50.58V58.57H2ZM17.61,2H35V4H17.61Z' fill='%2300dbff' /%3E%3C/svg%3E");
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: contain;
  position: relative;
  width: 53px;
  height: 60px;
}
.back-to-top__percentage {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  position: absolute;
  top: 7px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 1;
}
.back-to-top__arrow {
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  text-align: center;
}
.back-to-top__charge-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 9px 5px 5px 5px;
}
.back-to-top__charge {
  border-radius: 2px;
  border: 2px solid #00DBFF;
  width: 100%;
  height: 0;
  background-color: #00DBFF;
}

[data-read-more=true] {
  overflow: hidden;
  -webkit-transition: height 0.25s ease-in-out;
  transition: height 0.25s ease-in-out;
}
[data-read-more=true] p:last-of-type {
  margin-bottom: 0;
}
[data-read-more=true] p {
  -webkit-transition: margin-bottom 0.1s ease-in-out;
  transition: margin-bottom 0.1s ease-in-out;
}
[data-read-more=true] p {
  margin-bottom: 0;
}

.read-more__less,
.read-more__more {
  color: #00DBFF;
  padding-top: 0.25rem;
  display: block;
}
.read-more__less:hover,
.read-more__more:hover {
  color: #00DBFF;
  text-decoration: none;
}
.read-more__less:after,
.read-more__more:after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='20.117' height='11.64' viewBox='0 0 20.117 11.64'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rechteck_632' data-name='Rechteck 632' width='20.117' height='11.64' transform='translate(-3 -2)' fill='none' stroke='%2369d8fb' stroke-width='1'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Gruppe_5143' data-name='Gruppe 5143' transform='translate(3 2)'%3E%3Cg id='Gruppe_4098' data-name='Gruppe 4098' transform='translate(0 0)' clip-path='url(%23clip-path)'%3E%3Cpath id='Pfad_605' data-name='Pfad 605' d='M13.954,1,7.477,7.477,1,1' transform='translate(-0.418 -0.418)' fill='none' stroke='%2369d8fb' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: cover;
  width: 20px;
  height: 12px;
  display: inline-block;
  margin-left: 0.5rem;
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
}

.read-more__less:after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.listing {
  -webkit-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
}
.listing.is--loading {
  opacity: 0.5;
}
.listing__item {
  display: block;
  -webkit-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
}
.listing__item.is--zubehoer:hover .listing__image-box,
.listing__item.is--zubehoer:hover .listing__image-wrapper {
  background-color: transparent;
}
.listing__item.is--zubehoer:hover .listing__image-wrapper img {
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
}
.listing__item.is--link:hover {
  text-decoration: none;
}
.listing__item.is--link:hover .listing__image-wrapper {
  background-color: transparent;
}
.listing__item.is--link:hover .listing__image-wrapper img {
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
}
.listing__image-box {
  background-color: #151B30;
  text-align: center;
  padding: 1rem;
  -webkit-transition: background-color 0.25s ease-in-out;
  transition: background-color 0.25s ease-in-out;
}
.listing__image-box .custom-checkbox {
  color: #00DBFF;
  text-align: left;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.listing__image-box .custom-checkbox .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #00DBFF;
}
.listing__image-box .custom-checkbox .custom-control-input:focus ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 219, 255, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 219, 255, 0.25);
}
.listing__image-box .custom-checkbox .custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: #00DBFF;
  border-color: #00DBFF;
}
.listing__image-box .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #00DBFF;
  background-color: #00DBFF;
}
.listing__image-box .custom-checkbox .custom-control-label::before {
  border-radius: 50%;
  border: 2px solid #00DBFF;
  background-color: transparent;
}
.listing__image-box .custom-checkbox .custom-control-label::after {
  background-color: transparent;
  border-radius: 50%;
}
.listing__image-wrapper {
  position: relative;
  width: 100%;
  background-color: #151b2f;
  -webkit-transition: background-color 0.25s ease-in-out;
  transition: background-color 0.25s ease-in-out;
}
.listing__image-wrapper:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 100%;
}
.listing__image-wrapper > .content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.listing__image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
}
.listing__content-wrapper {
  text-align: center;
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .listing__content-wrapper {
    margin-top: 1rem;
  }
}
.listing__title {
  margin-bottom: 0.25rem;
  line-height: 1;
  color: #00DBFF;
}
@media (min-width: 768px) {
  .listing__title {
    margin-bottom: 0.5rem;
  }
}
.listing__summary {
  color: #fff;
  line-height: 1.1;
}

.product-bar {
  background-color: #151B30;
  margin-top: 50px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 0.25rem 0 0.25rem 0;
}
@media (min-width: 768px) {
  .product-bar {
    padding: 0.5rem 0 0.75rem 0;
  }
}
.product-bar__breadcrumbs {
  color: rgba(0, 219, 255, 0.45);
  font-size: 0.875rem;
}
@media (max-width: 991.98px) {
  .product-bar__breadcrumbs {
    width: 70%;
  }
}
.product-bar__breadcrumbs .breadcrumbs_home {
  margin-right: 0.25rem;
}
.product-bar__breadcrumbs img,
.product-bar__breadcrumbs svg {
  width: 16px;
  height: auto;
  display: block;
  opacity: 0.45;
  -webkit-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
}
.product-bar__breadcrumbs > span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.product-bar__breadcrumbs > span > span {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.product-bar__breadcrumbs > span > span > span {
  margin-left: 0.25rem;
}
.product-bar__breadcrumbs a {
  color: rgba(0, 219, 255, 0.45);
  text-decoration: none;
}
.product-bar__breadcrumbs a:hover {
  color: #00DBFF;
  text-decoration: none;
}
.product-bar__breadcrumbs a:hover img,
.product-bar__breadcrumbs a:hover svg {
  opacity: 1;
}
.product-bar__nav .nav-link {
  color: #fff;
  text-decoration: none;
}
@media (max-width: 991.98px) {
  .product-bar__nav {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
    overflow-x: scroll;
  }
  .product-bar__nav.has--gradient-right:after {
    opacity: 1;
  }
  .product-bar__nav.has--gradient-left:before {
    opacity: 1;
  }
  .product-bar__nav:after {
    content: "";
    z-index: 1;
    pointer-events: none;
    background: -webkit-gradient(linear, left top, right top, from(rgba(21, 27, 48, 0)), color-stop(50%, rgb(21, 27, 48)), to(rgb(21, 27, 48)));
    background: linear-gradient(90deg, rgba(21, 27, 48, 0) 0%, rgb(21, 27, 48) 50%, rgb(21, 27, 48) 100%);
    position: absolute;
    top: 0;
    right: -1px;
    width: 50px;
    height: 100%;
    opacity: 0;
    -webkit-transition: opacity 0.25s ease-in-out;
    transition: opacity 0.25s ease-in-out;
  }
  .product-bar__nav:before {
    content: "";
    z-index: 1;
    pointer-events: none;
    background: -webkit-gradient(linear, right top, left top, from(rgba(21, 27, 48, 0)), color-stop(50%, rgb(21, 27, 48)), to(rgb(21, 27, 48)));
    background: linear-gradient(-90deg, rgba(21, 27, 48, 0) 0%, rgb(21, 27, 48) 50%, rgb(21, 27, 48) 100%);
    position: absolute;
    top: 0;
    left: -1px;
    width: 50px;
    height: 100%;
    opacity: 0;
    -webkit-transition: opacity 0.25s ease-in-out;
    transition: opacity 0.25s ease-in-out;
  }
  .product-bar__nav .nav {
    width: 100%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    overflow-x: scroll;
  }
}
@media (max-width: 991.98px) and (min-width: 768px) {
  .product-bar__nav .nav {
    overflow-x: hidden;
  }
}
@media (max-width: 991.98px) {
  .product-bar__nav .nav-link {
    padding: 0.25rem 0.5rem;
    font-size: 0.9rem;
  }
  .product-bar__nav .nav-item {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
  .product-bar__nav .nav-item:first-of-type .nav-link {
    padding-left: 0;
  }
  .product-bar__nav .nav-item:last-of-type .nav-link {
    padding-right: 0;
  }
}
.product-bar__cta {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 991.98px) {
  .product-bar__cta {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    width: 30%;
  }
  .product-bar__cta .btn, .product-bar__cta .gform_wrapper .button, .gform_wrapper .product-bar__cta .button, .product-bar__cta .has--btn-underline .elementor-button, .has--btn-underline .product-bar__cta .elementor-button, .product-bar__cta .has--btn-underline-white .elementor-button, .has--btn-underline-white .product-bar__cta .elementor-button, .product-bar__cta #BorlabsCookieBox ._brlbs-btn-accept-all, #BorlabsCookieBox .product-bar__cta ._brlbs-btn-accept-all {
    font-size: 0.8rem;
    padding: 0;
    padding: 0.2rem 0.25rem 0.05rem 0.25rem;
  }
  .product-bar__cta .btn:after, .product-bar__cta .gform_wrapper .button:after, .gform_wrapper .product-bar__cta .button:after, .product-bar__cta .has--btn-underline .elementor-button:after, .has--btn-underline .product-bar__cta .elementor-button:after, .product-bar__cta .has--btn-underline-white .elementor-button:after, .has--btn-underline-white .product-bar__cta .elementor-button:after, .product-bar__cta #BorlabsCookieBox ._brlbs-btn-accept-all:after, #BorlabsCookieBox .product-bar__cta ._brlbs-btn-accept-all:after {
    height: 2px;
    border-radius: 1px;
  }
}
.product-bar__cta .btn, .product-bar__cta .gform_wrapper .button, .gform_wrapper .product-bar__cta .button, .product-bar__cta .has--btn-underline .elementor-button, .has--btn-underline .product-bar__cta .elementor-button, .product-bar__cta .has--btn-underline-white .elementor-button, .has--btn-underline-white .product-bar__cta .elementor-button, .product-bar__cta #BorlabsCookieBox ._brlbs-btn-accept-all, #BorlabsCookieBox .product-bar__cta ._brlbs-btn-accept-all {
  padding: 0.25rem 0.5rem 0.1rem 0.5rem;
  margin-left: auto;
}
.product-bar__cta:after {
  content: attr(data-anfragen-multiple);
  text-transform: uppercase;
  height: 0;
  padding: 0 0.5rem;
  visibility: hidden;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}
.product-bar .container, .product-bar .elementor .e-container, .elementor .product-bar .e-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media (min-width: 992px) {
  .product-bar .container, .product-bar .elementor .e-container, .elementor .product-bar .e-container {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
  }
}

.sub-nav {
  background-color: #151B30;
  margin-top: 50px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 99999;
  padding: 0.5rem 0 0.75rem 0;
  -webkit-transition: -webkit-filter 0.25s ease-in-out;
  transition: -webkit-filter 0.25s ease-in-out;
  transition: filter 0.25s ease-in-out;
  transition: filter 0.25s ease-in-out, -webkit-filter 0.25s ease-in-out;
}
.sub-nav.is--blurry {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}
.sub-nav.is--sticky {
  margin-top: 0;
}
.sub-nav__nav {
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}
@media (max-width: 1499.98px) {
  .sub-nav__nav.has--gradient-right:after {
    opacity: 1;
  }
  .sub-nav__nav.has--gradient-left:before {
    opacity: 1;
  }
  .sub-nav__nav:after {
    content: "";
    z-index: 1;
    pointer-events: none;
    background: -webkit-gradient(linear, left top, right top, from(rgba(21, 27, 48, 0)), color-stop(50%, rgb(21, 27, 48)), to(rgb(21, 27, 48)));
    background: linear-gradient(90deg, rgba(21, 27, 48, 0) 0%, rgb(21, 27, 48) 50%, rgb(21, 27, 48) 100%);
    position: absolute;
    top: 0;
    right: -1px;
    width: 50px;
    height: 100%;
    opacity: 0;
    -webkit-transition: opacity 0.25s ease-in-out;
    transition: opacity 0.25s ease-in-out;
  }
  .sub-nav__nav:before {
    content: "";
    z-index: 1;
    pointer-events: none;
    background: -webkit-gradient(linear, right top, left top, from(rgba(21, 27, 48, 0)), color-stop(50%, rgb(21, 27, 48)), to(rgb(21, 27, 48)));
    background: linear-gradient(-90deg, rgba(21, 27, 48, 0) 0%, rgb(21, 27, 48) 50%, rgb(21, 27, 48) 100%);
    position: absolute;
    top: 0;
    left: -1px;
    width: 50px;
    height: 100%;
    opacity: 0;
    -webkit-transition: opacity 0.25s ease-in-out;
    transition: opacity 0.25s ease-in-out;
  }
}
.sub-nav__nav .nav {
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  overflow-x: scroll;
}
@media (min-width: 1200px) {
  .sub-nav__nav .nav {
    overflow-x: hidden;
  }
}
.sub-nav__nav .nav-item {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.sub-nav__nav .nav-link {
  color: #fff;
  text-decoration: none;
}
@media (max-width: 991.98px) {
  .sub-nav__nav .nav-link {
    padding: 0.4rem 0.5rem;
    font-size: 0.9rem;
  }
}
.sub-nav__nav .nav-link.active {
  color: #00DBFF;
}

.sticky-cursor {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  background-color: #151B30;
  border-color: #151B30;
  color: #151B30;
  z-index: 999999;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  -webkit-transition: border-width 0.25s ease-in-out;
  transition: border-width 0.25s ease-in-out;
  pointer-events: none;
  visibility: hidden;
}
@media (hover: none) {
  .sticky-cursor {
    top: 50% !important;
    left: 50% !important;
  }
}
.sticky-cursor__wrapper {
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  pointer-events: none;
}

.laser-beam {
  position: absolute;
  left: 50%;
  top: 3px;
  width: 3px;
  height: 200vh;
  background: rgba(99, 195, 231, 0.6);
  -webkit-box-shadow: 0px 0px 15px 0px rgb(99, 195, 231);
          box-shadow: 0px 0px 15px 0px rgb(99, 195, 231);
  -webkit-transform-origin: 0, 100%;
      -ms-transform-origin: 0, 100%;
          transform-origin: 0, 100%;
  -webkit-animation: laser 7s infinite;
          animation: laser 7s infinite;
}
.laser-beam.magenta {
  -webkit-animation: laser 6.5s infinite;
          animation: laser 6.5s infinite;
  background: #eb3df7;
  -webkit-box-shadow: 0px 0px 15px 0px #eb3df7;
          box-shadow: 0px 0px 15px 0px #eb3df7;
}
.laser-beam.white {
  -webkit-animation: laser 7.3s infinite;
          animation: laser 7.3s infinite;
  background: rgb(255, 255, 255);
  -webkit-box-shadow: 0px 0px 15px 0px rgb(255, 255, 255);
          box-shadow: 0px 0px 15px 0px rgb(255, 255, 255);
}
.laser-beam.blue {
  -webkit-animation: laser 9.7s infinite;
          animation: laser 9.7s infinite;
  background: #01dbff;
  -webkit-box-shadow: 0px 0px 15px 0px #01dbff;
          box-shadow: 0px 0px 15px 0px #01dbff;
}

@-webkit-keyframes laser {
  0% {
    -webkit-transform: rotateZ(-75deg);
            transform: rotateZ(-75deg);
  }
  50% {
    -webkit-transform: rotateZ(75deg);
            transform: rotateZ(75deg);
  }
  100% {
    -webkit-transform: rotateZ(-75deg);
            transform: rotateZ(-75deg);
  }
}

@keyframes laser {
  0% {
    -webkit-transform: rotateZ(-75deg);
            transform: rotateZ(-75deg);
  }
  50% {
    -webkit-transform: rotateZ(75deg);
            transform: rotateZ(75deg);
  }
  100% {
    -webkit-transform: rotateZ(-75deg);
            transform: rotateZ(-75deg);
  }
}
.otgs-development-site-front-end {
  display: none !important;
}

.elementor .elementor-column-gap-default > .elementor-column > .elementor-element-populated {
  padding: 0;
}

.elementor-column {
  min-height: 0;
}

@media (min-width: 568px) {
  .e-con {
    --content-width: 568px;
  }
}
@media (min-width: 667px) {
  .e-con {
    --content-width: 667px;
  }
}
@media (min-width: 768px) {
  .e-con {
    --content-width: 768px;
  }
}
@media (min-width: 992px) {
  .e-con {
    --content-width: 992px;
  }
}
@media (min-width: 1100px) {
  .e-con {
    --content-width: 1100px;
  }
}
@media (min-width: 1200px) {
  .e-con {
    --content-width: 1200px;
  }
}
@media (min-width: 1500px) {
  .e-con {
    --content-width: 1500px;
  }
}

.elementor .elementor-section.elementor-section-boxed > .elementor-container {
  max-width: 100% !important;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 568px) {
  .elementor .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 568px !important;
  }
}
@media (min-width: 667px) {
  .elementor .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 667px !important;
  }
}
@media (min-width: 768px) {
  .elementor .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 768px !important;
  }
}
@media (min-width: 992px) {
  .elementor .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 992px !important;
  }
}
@media (min-width: 1100px) {
  .elementor .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 1100px !important;
  }
}
@media (min-width: 1200px) {
  .elementor .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 1200px !important;
  }
}
@media (min-width: 1500px) {
  .elementor .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 1500px !important;
  }
}

.elementor .e-container.is--full {
  max-width: 100%;
  padding-top: var(--padding-top, 0);
  padding-bottom: var(--padding-bottom, 0);
  padding-left: var(--padding-left, 0);
  padding-right: var(--padding-right, 0);
}

.elementor .e-container .e-container {
  padding-left: var(--padding-left, 0);
  padding-right: var(--padding-right, 0);
}

.elementor-editor-active .hero-widget__padding-top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.elementor {
  opacity: 0;
  visibility: hidden;
}

.no-flexbox-gap .elementor .e-container--row,
.no-flexbox-gap .elementor .e-container--column {
  gap: 0;
}
.no-flexbox-gap .elementor .e-container--column.has--gap-px > * + * {
  margin-top: 20px;
}
.no-flexbox-gap .elementor .e-container--column.has--gap-5px > * + * {
  margin-top: 5px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-5px > * + * {
    margin-top: 5px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-5px > * + * {
    margin-top: 5px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-5px > * + * {
    margin-top: 5px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-5px > * + * {
    margin-top: 5px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-5px > * + * {
    margin-top: 5px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-5px > * + * {
    margin-top: 5px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-6px > * + * {
  margin-top: 6px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-6px > * + * {
    margin-top: 6px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-6px > * + * {
    margin-top: 6px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-6px > * + * {
    margin-top: 6px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-6px > * + * {
    margin-top: 6px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-6px > * + * {
    margin-top: 6px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-6px > * + * {
    margin-top: 6px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-7px > * + * {
  margin-top: 7px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-7px > * + * {
    margin-top: 7px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-7px > * + * {
    margin-top: 7px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-7px > * + * {
    margin-top: 7px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-7px > * + * {
    margin-top: 7px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-7px > * + * {
    margin-top: 7px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-7px > * + * {
    margin-top: 7px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-8px > * + * {
  margin-top: 8px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-8px > * + * {
    margin-top: 8px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-8px > * + * {
    margin-top: 8px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-8px > * + * {
    margin-top: 8px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-8px > * + * {
    margin-top: 8px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-8px > * + * {
    margin-top: 8px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-8px > * + * {
    margin-top: 8px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-9px > * + * {
  margin-top: 9px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-9px > * + * {
    margin-top: 9px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-9px > * + * {
    margin-top: 9px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-9px > * + * {
    margin-top: 9px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-9px > * + * {
    margin-top: 9px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-9px > * + * {
    margin-top: 9px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-9px > * + * {
    margin-top: 9px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-10px > * + * {
  margin-top: 10px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-10px > * + * {
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-10px > * + * {
    margin-top: 10px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-10px > * + * {
    margin-top: 10px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-10px > * + * {
    margin-top: 10px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-10px > * + * {
    margin-top: 10px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-10px > * + * {
    margin-top: 10px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-11px > * + * {
  margin-top: 11px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-11px > * + * {
    margin-top: 11px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-11px > * + * {
    margin-top: 11px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-11px > * + * {
    margin-top: 11px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-11px > * + * {
    margin-top: 11px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-11px > * + * {
    margin-top: 11px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-11px > * + * {
    margin-top: 11px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-12px > * + * {
  margin-top: 12px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-12px > * + * {
    margin-top: 12px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-12px > * + * {
    margin-top: 12px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-12px > * + * {
    margin-top: 12px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-12px > * + * {
    margin-top: 12px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-12px > * + * {
    margin-top: 12px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-12px > * + * {
    margin-top: 12px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-13px > * + * {
  margin-top: 13px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-13px > * + * {
    margin-top: 13px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-13px > * + * {
    margin-top: 13px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-13px > * + * {
    margin-top: 13px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-13px > * + * {
    margin-top: 13px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-13px > * + * {
    margin-top: 13px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-13px > * + * {
    margin-top: 13px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-14px > * + * {
  margin-top: 14px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-14px > * + * {
    margin-top: 14px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-14px > * + * {
    margin-top: 14px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-14px > * + * {
    margin-top: 14px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-14px > * + * {
    margin-top: 14px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-14px > * + * {
    margin-top: 14px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-14px > * + * {
    margin-top: 14px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-15px > * + * {
  margin-top: 15px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-15px > * + * {
    margin-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-15px > * + * {
    margin-top: 15px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-15px > * + * {
    margin-top: 15px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-15px > * + * {
    margin-top: 15px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-15px > * + * {
    margin-top: 15px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-15px > * + * {
    margin-top: 15px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-16px > * + * {
  margin-top: 16px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-16px > * + * {
    margin-top: 16px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-16px > * + * {
    margin-top: 16px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-16px > * + * {
    margin-top: 16px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-16px > * + * {
    margin-top: 16px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-16px > * + * {
    margin-top: 16px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-16px > * + * {
    margin-top: 16px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-17px > * + * {
  margin-top: 17px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-17px > * + * {
    margin-top: 17px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-17px > * + * {
    margin-top: 17px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-17px > * + * {
    margin-top: 17px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-17px > * + * {
    margin-top: 17px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-17px > * + * {
    margin-top: 17px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-17px > * + * {
    margin-top: 17px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-18px > * + * {
  margin-top: 18px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-18px > * + * {
    margin-top: 18px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-18px > * + * {
    margin-top: 18px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-18px > * + * {
    margin-top: 18px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-18px > * + * {
    margin-top: 18px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-18px > * + * {
    margin-top: 18px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-18px > * + * {
    margin-top: 18px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-19px > * + * {
  margin-top: 19px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-19px > * + * {
    margin-top: 19px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-19px > * + * {
    margin-top: 19px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-19px > * + * {
    margin-top: 19px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-19px > * + * {
    margin-top: 19px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-19px > * + * {
    margin-top: 19px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-19px > * + * {
    margin-top: 19px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-20px > * + * {
  margin-top: 20px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-20px > * + * {
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-20px > * + * {
    margin-top: 20px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-20px > * + * {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-20px > * + * {
    margin-top: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-20px > * + * {
    margin-top: 20px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-20px > * + * {
    margin-top: 20px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-21px > * + * {
  margin-top: 21px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-21px > * + * {
    margin-top: 21px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-21px > * + * {
    margin-top: 21px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-21px > * + * {
    margin-top: 21px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-21px > * + * {
    margin-top: 21px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-21px > * + * {
    margin-top: 21px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-21px > * + * {
    margin-top: 21px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-22px > * + * {
  margin-top: 22px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-22px > * + * {
    margin-top: 22px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-22px > * + * {
    margin-top: 22px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-22px > * + * {
    margin-top: 22px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-22px > * + * {
    margin-top: 22px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-22px > * + * {
    margin-top: 22px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-22px > * + * {
    margin-top: 22px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-23px > * + * {
  margin-top: 23px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-23px > * + * {
    margin-top: 23px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-23px > * + * {
    margin-top: 23px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-23px > * + * {
    margin-top: 23px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-23px > * + * {
    margin-top: 23px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-23px > * + * {
    margin-top: 23px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-23px > * + * {
    margin-top: 23px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-24px > * + * {
  margin-top: 24px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-24px > * + * {
    margin-top: 24px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-24px > * + * {
    margin-top: 24px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-24px > * + * {
    margin-top: 24px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-24px > * + * {
    margin-top: 24px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-24px > * + * {
    margin-top: 24px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-24px > * + * {
    margin-top: 24px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-25px > * + * {
  margin-top: 25px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-25px > * + * {
    margin-top: 25px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-25px > * + * {
    margin-top: 25px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-25px > * + * {
    margin-top: 25px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-25px > * + * {
    margin-top: 25px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-25px > * + * {
    margin-top: 25px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-25px > * + * {
    margin-top: 25px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-26px > * + * {
  margin-top: 26px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-26px > * + * {
    margin-top: 26px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-26px > * + * {
    margin-top: 26px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-26px > * + * {
    margin-top: 26px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-26px > * + * {
    margin-top: 26px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-26px > * + * {
    margin-top: 26px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-26px > * + * {
    margin-top: 26px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-27px > * + * {
  margin-top: 27px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-27px > * + * {
    margin-top: 27px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-27px > * + * {
    margin-top: 27px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-27px > * + * {
    margin-top: 27px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-27px > * + * {
    margin-top: 27px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-27px > * + * {
    margin-top: 27px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-27px > * + * {
    margin-top: 27px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-28px > * + * {
  margin-top: 28px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-28px > * + * {
    margin-top: 28px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-28px > * + * {
    margin-top: 28px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-28px > * + * {
    margin-top: 28px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-28px > * + * {
    margin-top: 28px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-28px > * + * {
    margin-top: 28px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-28px > * + * {
    margin-top: 28px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-29px > * + * {
  margin-top: 29px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-29px > * + * {
    margin-top: 29px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-29px > * + * {
    margin-top: 29px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-29px > * + * {
    margin-top: 29px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-29px > * + * {
    margin-top: 29px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-29px > * + * {
    margin-top: 29px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-29px > * + * {
    margin-top: 29px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-30px > * + * {
  margin-top: 30px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-30px > * + * {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-30px > * + * {
    margin-top: 30px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-30px > * + * {
    margin-top: 30px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-30px > * + * {
    margin-top: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-30px > * + * {
    margin-top: 30px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-30px > * + * {
    margin-top: 30px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-31px > * + * {
  margin-top: 31px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-31px > * + * {
    margin-top: 31px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-31px > * + * {
    margin-top: 31px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-31px > * + * {
    margin-top: 31px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-31px > * + * {
    margin-top: 31px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-31px > * + * {
    margin-top: 31px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-31px > * + * {
    margin-top: 31px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-32px > * + * {
  margin-top: 32px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-32px > * + * {
    margin-top: 32px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-32px > * + * {
    margin-top: 32px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-32px > * + * {
    margin-top: 32px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-32px > * + * {
    margin-top: 32px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-32px > * + * {
    margin-top: 32px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-32px > * + * {
    margin-top: 32px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-33px > * + * {
  margin-top: 33px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-33px > * + * {
    margin-top: 33px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-33px > * + * {
    margin-top: 33px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-33px > * + * {
    margin-top: 33px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-33px > * + * {
    margin-top: 33px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-33px > * + * {
    margin-top: 33px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-33px > * + * {
    margin-top: 33px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-34px > * + * {
  margin-top: 34px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-34px > * + * {
    margin-top: 34px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-34px > * + * {
    margin-top: 34px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-34px > * + * {
    margin-top: 34px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-34px > * + * {
    margin-top: 34px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-34px > * + * {
    margin-top: 34px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-34px > * + * {
    margin-top: 34px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-35px > * + * {
  margin-top: 35px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-35px > * + * {
    margin-top: 35px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-35px > * + * {
    margin-top: 35px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-35px > * + * {
    margin-top: 35px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-35px > * + * {
    margin-top: 35px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-35px > * + * {
    margin-top: 35px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-35px > * + * {
    margin-top: 35px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-36px > * + * {
  margin-top: 36px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-36px > * + * {
    margin-top: 36px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-36px > * + * {
    margin-top: 36px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-36px > * + * {
    margin-top: 36px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-36px > * + * {
    margin-top: 36px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-36px > * + * {
    margin-top: 36px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-36px > * + * {
    margin-top: 36px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-37px > * + * {
  margin-top: 37px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-37px > * + * {
    margin-top: 37px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-37px > * + * {
    margin-top: 37px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-37px > * + * {
    margin-top: 37px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-37px > * + * {
    margin-top: 37px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-37px > * + * {
    margin-top: 37px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-37px > * + * {
    margin-top: 37px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-38px > * + * {
  margin-top: 38px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-38px > * + * {
    margin-top: 38px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-38px > * + * {
    margin-top: 38px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-38px > * + * {
    margin-top: 38px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-38px > * + * {
    margin-top: 38px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-38px > * + * {
    margin-top: 38px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-38px > * + * {
    margin-top: 38px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-39px > * + * {
  margin-top: 39px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-39px > * + * {
    margin-top: 39px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-39px > * + * {
    margin-top: 39px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-39px > * + * {
    margin-top: 39px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-39px > * + * {
    margin-top: 39px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-39px > * + * {
    margin-top: 39px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-39px > * + * {
    margin-top: 39px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-40px > * + * {
  margin-top: 40px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-40px > * + * {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-40px > * + * {
    margin-top: 40px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-40px > * + * {
    margin-top: 40px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-40px > * + * {
    margin-top: 40px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-40px > * + * {
    margin-top: 40px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-40px > * + * {
    margin-top: 40px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-41px > * + * {
  margin-top: 41px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-41px > * + * {
    margin-top: 41px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-41px > * + * {
    margin-top: 41px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-41px > * + * {
    margin-top: 41px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-41px > * + * {
    margin-top: 41px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-41px > * + * {
    margin-top: 41px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-41px > * + * {
    margin-top: 41px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-42px > * + * {
  margin-top: 42px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-42px > * + * {
    margin-top: 42px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-42px > * + * {
    margin-top: 42px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-42px > * + * {
    margin-top: 42px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-42px > * + * {
    margin-top: 42px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-42px > * + * {
    margin-top: 42px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-42px > * + * {
    margin-top: 42px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-43px > * + * {
  margin-top: 43px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-43px > * + * {
    margin-top: 43px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-43px > * + * {
    margin-top: 43px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-43px > * + * {
    margin-top: 43px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-43px > * + * {
    margin-top: 43px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-43px > * + * {
    margin-top: 43px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-43px > * + * {
    margin-top: 43px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-44px > * + * {
  margin-top: 44px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-44px > * + * {
    margin-top: 44px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-44px > * + * {
    margin-top: 44px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-44px > * + * {
    margin-top: 44px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-44px > * + * {
    margin-top: 44px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-44px > * + * {
    margin-top: 44px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-44px > * + * {
    margin-top: 44px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-45px > * + * {
  margin-top: 45px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-45px > * + * {
    margin-top: 45px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-45px > * + * {
    margin-top: 45px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-45px > * + * {
    margin-top: 45px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-45px > * + * {
    margin-top: 45px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-45px > * + * {
    margin-top: 45px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-45px > * + * {
    margin-top: 45px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-46px > * + * {
  margin-top: 46px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-46px > * + * {
    margin-top: 46px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-46px > * + * {
    margin-top: 46px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-46px > * + * {
    margin-top: 46px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-46px > * + * {
    margin-top: 46px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-46px > * + * {
    margin-top: 46px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-46px > * + * {
    margin-top: 46px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-47px > * + * {
  margin-top: 47px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-47px > * + * {
    margin-top: 47px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-47px > * + * {
    margin-top: 47px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-47px > * + * {
    margin-top: 47px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-47px > * + * {
    margin-top: 47px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-47px > * + * {
    margin-top: 47px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-47px > * + * {
    margin-top: 47px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-48px > * + * {
  margin-top: 48px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-48px > * + * {
    margin-top: 48px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-48px > * + * {
    margin-top: 48px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-48px > * + * {
    margin-top: 48px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-48px > * + * {
    margin-top: 48px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-48px > * + * {
    margin-top: 48px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-48px > * + * {
    margin-top: 48px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-49px > * + * {
  margin-top: 49px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-49px > * + * {
    margin-top: 49px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-49px > * + * {
    margin-top: 49px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-49px > * + * {
    margin-top: 49px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-49px > * + * {
    margin-top: 49px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-49px > * + * {
    margin-top: 49px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-49px > * + * {
    margin-top: 49px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-50px > * + * {
  margin-top: 50px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-50px > * + * {
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-50px > * + * {
    margin-top: 50px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-50px > * + * {
    margin-top: 50px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-50px > * + * {
    margin-top: 50px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-50px > * + * {
    margin-top: 50px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-50px > * + * {
    margin-top: 50px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-51px > * + * {
  margin-top: 51px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-51px > * + * {
    margin-top: 51px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-51px > * + * {
    margin-top: 51px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-51px > * + * {
    margin-top: 51px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-51px > * + * {
    margin-top: 51px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-51px > * + * {
    margin-top: 51px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-51px > * + * {
    margin-top: 51px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-52px > * + * {
  margin-top: 52px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-52px > * + * {
    margin-top: 52px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-52px > * + * {
    margin-top: 52px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-52px > * + * {
    margin-top: 52px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-52px > * + * {
    margin-top: 52px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-52px > * + * {
    margin-top: 52px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-52px > * + * {
    margin-top: 52px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-53px > * + * {
  margin-top: 53px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-53px > * + * {
    margin-top: 53px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-53px > * + * {
    margin-top: 53px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-53px > * + * {
    margin-top: 53px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-53px > * + * {
    margin-top: 53px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-53px > * + * {
    margin-top: 53px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-53px > * + * {
    margin-top: 53px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-54px > * + * {
  margin-top: 54px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-54px > * + * {
    margin-top: 54px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-54px > * + * {
    margin-top: 54px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-54px > * + * {
    margin-top: 54px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-54px > * + * {
    margin-top: 54px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-54px > * + * {
    margin-top: 54px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-54px > * + * {
    margin-top: 54px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-55px > * + * {
  margin-top: 55px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-55px > * + * {
    margin-top: 55px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-55px > * + * {
    margin-top: 55px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-55px > * + * {
    margin-top: 55px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-55px > * + * {
    margin-top: 55px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-55px > * + * {
    margin-top: 55px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-55px > * + * {
    margin-top: 55px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-56px > * + * {
  margin-top: 56px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-56px > * + * {
    margin-top: 56px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-56px > * + * {
    margin-top: 56px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-56px > * + * {
    margin-top: 56px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-56px > * + * {
    margin-top: 56px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-56px > * + * {
    margin-top: 56px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-56px > * + * {
    margin-top: 56px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-57px > * + * {
  margin-top: 57px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-57px > * + * {
    margin-top: 57px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-57px > * + * {
    margin-top: 57px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-57px > * + * {
    margin-top: 57px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-57px > * + * {
    margin-top: 57px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-57px > * + * {
    margin-top: 57px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-57px > * + * {
    margin-top: 57px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-58px > * + * {
  margin-top: 58px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-58px > * + * {
    margin-top: 58px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-58px > * + * {
    margin-top: 58px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-58px > * + * {
    margin-top: 58px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-58px > * + * {
    margin-top: 58px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-58px > * + * {
    margin-top: 58px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-58px > * + * {
    margin-top: 58px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-59px > * + * {
  margin-top: 59px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-59px > * + * {
    margin-top: 59px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-59px > * + * {
    margin-top: 59px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-59px > * + * {
    margin-top: 59px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-59px > * + * {
    margin-top: 59px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-59px > * + * {
    margin-top: 59px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-59px > * + * {
    margin-top: 59px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-60px > * + * {
  margin-top: 60px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-60px > * + * {
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-60px > * + * {
    margin-top: 60px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-60px > * + * {
    margin-top: 60px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-60px > * + * {
    margin-top: 60px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-60px > * + * {
    margin-top: 60px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-60px > * + * {
    margin-top: 60px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-61px > * + * {
  margin-top: 61px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-61px > * + * {
    margin-top: 61px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-61px > * + * {
    margin-top: 61px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-61px > * + * {
    margin-top: 61px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-61px > * + * {
    margin-top: 61px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-61px > * + * {
    margin-top: 61px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-61px > * + * {
    margin-top: 61px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-62px > * + * {
  margin-top: 62px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-62px > * + * {
    margin-top: 62px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-62px > * + * {
    margin-top: 62px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-62px > * + * {
    margin-top: 62px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-62px > * + * {
    margin-top: 62px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-62px > * + * {
    margin-top: 62px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-62px > * + * {
    margin-top: 62px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-63px > * + * {
  margin-top: 63px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-63px > * + * {
    margin-top: 63px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-63px > * + * {
    margin-top: 63px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-63px > * + * {
    margin-top: 63px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-63px > * + * {
    margin-top: 63px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-63px > * + * {
    margin-top: 63px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-63px > * + * {
    margin-top: 63px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-64px > * + * {
  margin-top: 64px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-64px > * + * {
    margin-top: 64px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-64px > * + * {
    margin-top: 64px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-64px > * + * {
    margin-top: 64px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-64px > * + * {
    margin-top: 64px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-64px > * + * {
    margin-top: 64px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-64px > * + * {
    margin-top: 64px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-65px > * + * {
  margin-top: 65px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-65px > * + * {
    margin-top: 65px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-65px > * + * {
    margin-top: 65px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-65px > * + * {
    margin-top: 65px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-65px > * + * {
    margin-top: 65px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-65px > * + * {
    margin-top: 65px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-65px > * + * {
    margin-top: 65px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-66px > * + * {
  margin-top: 66px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-66px > * + * {
    margin-top: 66px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-66px > * + * {
    margin-top: 66px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-66px > * + * {
    margin-top: 66px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-66px > * + * {
    margin-top: 66px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-66px > * + * {
    margin-top: 66px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-66px > * + * {
    margin-top: 66px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-67px > * + * {
  margin-top: 67px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-67px > * + * {
    margin-top: 67px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-67px > * + * {
    margin-top: 67px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-67px > * + * {
    margin-top: 67px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-67px > * + * {
    margin-top: 67px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-67px > * + * {
    margin-top: 67px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-67px > * + * {
    margin-top: 67px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-68px > * + * {
  margin-top: 68px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-68px > * + * {
    margin-top: 68px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-68px > * + * {
    margin-top: 68px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-68px > * + * {
    margin-top: 68px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-68px > * + * {
    margin-top: 68px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-68px > * + * {
    margin-top: 68px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-68px > * + * {
    margin-top: 68px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-69px > * + * {
  margin-top: 69px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-69px > * + * {
    margin-top: 69px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-69px > * + * {
    margin-top: 69px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-69px > * + * {
    margin-top: 69px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-69px > * + * {
    margin-top: 69px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-69px > * + * {
    margin-top: 69px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-69px > * + * {
    margin-top: 69px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-70px > * + * {
  margin-top: 70px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-70px > * + * {
    margin-top: 70px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-70px > * + * {
    margin-top: 70px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-70px > * + * {
    margin-top: 70px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-70px > * + * {
    margin-top: 70px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-70px > * + * {
    margin-top: 70px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-70px > * + * {
    margin-top: 70px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-71px > * + * {
  margin-top: 71px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-71px > * + * {
    margin-top: 71px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-71px > * + * {
    margin-top: 71px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-71px > * + * {
    margin-top: 71px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-71px > * + * {
    margin-top: 71px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-71px > * + * {
    margin-top: 71px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-71px > * + * {
    margin-top: 71px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-72px > * + * {
  margin-top: 72px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-72px > * + * {
    margin-top: 72px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-72px > * + * {
    margin-top: 72px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-72px > * + * {
    margin-top: 72px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-72px > * + * {
    margin-top: 72px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-72px > * + * {
    margin-top: 72px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-72px > * + * {
    margin-top: 72px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-73px > * + * {
  margin-top: 73px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-73px > * + * {
    margin-top: 73px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-73px > * + * {
    margin-top: 73px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-73px > * + * {
    margin-top: 73px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-73px > * + * {
    margin-top: 73px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-73px > * + * {
    margin-top: 73px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-73px > * + * {
    margin-top: 73px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-74px > * + * {
  margin-top: 74px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-74px > * + * {
    margin-top: 74px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-74px > * + * {
    margin-top: 74px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-74px > * + * {
    margin-top: 74px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-74px > * + * {
    margin-top: 74px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-74px > * + * {
    margin-top: 74px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-74px > * + * {
    margin-top: 74px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-75px > * + * {
  margin-top: 75px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-75px > * + * {
    margin-top: 75px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-75px > * + * {
    margin-top: 75px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-75px > * + * {
    margin-top: 75px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-75px > * + * {
    margin-top: 75px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-75px > * + * {
    margin-top: 75px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-75px > * + * {
    margin-top: 75px;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-1prozent > * + * {
  margin-top: 1%;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-1prozent > * + * {
    margin-top: 1%;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-1prozent > * + * {
    margin-top: 1%;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-1prozent > * + * {
    margin-top: 1%;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-1prozent > * + * {
    margin-top: 1%;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-1prozent > * + * {
    margin-top: 1%;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-1prozent > * + * {
    margin-top: 1%;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-2prozent > * + * {
  margin-top: 2%;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-2prozent > * + * {
    margin-top: 2%;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-2prozent > * + * {
    margin-top: 2%;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-2prozent > * + * {
    margin-top: 2%;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-2prozent > * + * {
    margin-top: 2%;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-2prozent > * + * {
    margin-top: 2%;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-2prozent > * + * {
    margin-top: 2%;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-3prozent > * + * {
  margin-top: 3%;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-3prozent > * + * {
    margin-top: 3%;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-3prozent > * + * {
    margin-top: 3%;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-3prozent > * + * {
    margin-top: 3%;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-3prozent > * + * {
    margin-top: 3%;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-3prozent > * + * {
    margin-top: 3%;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-3prozent > * + * {
    margin-top: 3%;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-4prozent > * + * {
  margin-top: 4%;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-4prozent > * + * {
    margin-top: 4%;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-4prozent > * + * {
    margin-top: 4%;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-4prozent > * + * {
    margin-top: 4%;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-4prozent > * + * {
    margin-top: 4%;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-4prozent > * + * {
    margin-top: 4%;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-4prozent > * + * {
    margin-top: 4%;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-5prozent > * + * {
  margin-top: 5%;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-5prozent > * + * {
    margin-top: 5%;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-5prozent > * + * {
    margin-top: 5%;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-5prozent > * + * {
    margin-top: 5%;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-5prozent > * + * {
    margin-top: 5%;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-5prozent > * + * {
    margin-top: 5%;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-5prozent > * + * {
    margin-top: 5%;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-6prozent > * + * {
  margin-top: 6%;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-6prozent > * + * {
    margin-top: 6%;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-6prozent > * + * {
    margin-top: 6%;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-6prozent > * + * {
    margin-top: 6%;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-6prozent > * + * {
    margin-top: 6%;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-6prozent > * + * {
    margin-top: 6%;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-6prozent > * + * {
    margin-top: 6%;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-7prozent > * + * {
  margin-top: 7%;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-7prozent > * + * {
    margin-top: 7%;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-7prozent > * + * {
    margin-top: 7%;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-7prozent > * + * {
    margin-top: 7%;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-7prozent > * + * {
    margin-top: 7%;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-7prozent > * + * {
    margin-top: 7%;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-7prozent > * + * {
    margin-top: 7%;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-8prozent > * + * {
  margin-top: 8%;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-8prozent > * + * {
    margin-top: 8%;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-8prozent > * + * {
    margin-top: 8%;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-8prozent > * + * {
    margin-top: 8%;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-8prozent > * + * {
    margin-top: 8%;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-8prozent > * + * {
    margin-top: 8%;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-8prozent > * + * {
    margin-top: 8%;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-9prozent > * + * {
  margin-top: 9%;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-9prozent > * + * {
    margin-top: 9%;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-9prozent > * + * {
    margin-top: 9%;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-9prozent > * + * {
    margin-top: 9%;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-9prozent > * + * {
    margin-top: 9%;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-9prozent > * + * {
    margin-top: 9%;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-9prozent > * + * {
    margin-top: 9%;
  }
}
.no-flexbox-gap .elementor .e-container--column.has--gap-10prozent > * + * {
  margin-top: 10%;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile-10prozent > * + * {
    margin-top: 10%;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-mobile_extra-10prozent > * + * {
    margin-top: 10%;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet-10prozent > * + * {
    margin-top: 10%;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-tablet_extra-10prozent > * + * {
    margin-top: 10%;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-laptop-10prozent > * + * {
    margin-top: 10%;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--column.has--gap-widescreen-10prozent > * + * {
    margin-top: 10%;
  }
}
.no-flexbox-gap .elementor .e-container--row {
  gap: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  margin-top: var(--margin-top, -25px);
  margin-left: -25px;
}
.no-flexbox-gap .elementor .e-container--row > * {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 25px;
  margin-left: 25px;
}
.no-flexbox-gap .elementor .e-container--row.has--gap-5px {
  margin-left: calc(-1 * 5px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-5px > * {
  margin-left: 5px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-5px {
    margin-left: calc(-1 * 5px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-5px > * {
    margin-left: 5px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-5px {
    margin-left: calc(-1 * 5px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-5px > * {
    margin-left: 5px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-5px {
    margin-left: calc(-1 * 5px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-5px > * {
    margin-left: 5px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-5px {
    margin-left: calc(-1 * 5px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-5px > * {
    margin-left: 5px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-5px {
    margin-left: calc(-1 * 5px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-5px > * {
    margin-left: 5px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-5px {
    margin-left: calc(-1 * 5px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-5px > * {
    margin-left: 5px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-6px {
  margin-left: calc(-1 * 6px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-6px > * {
  margin-left: 6px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-6px {
    margin-left: calc(-1 * 6px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-6px > * {
    margin-left: 6px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-6px {
    margin-left: calc(-1 * 6px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-6px > * {
    margin-left: 6px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-6px {
    margin-left: calc(-1 * 6px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-6px > * {
    margin-left: 6px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-6px {
    margin-left: calc(-1 * 6px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-6px > * {
    margin-left: 6px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-6px {
    margin-left: calc(-1 * 6px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-6px > * {
    margin-left: 6px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-6px {
    margin-left: calc(-1 * 6px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-6px > * {
    margin-left: 6px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-7px {
  margin-left: calc(-1 * 7px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-7px > * {
  margin-left: 7px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-7px {
    margin-left: calc(-1 * 7px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-7px > * {
    margin-left: 7px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-7px {
    margin-left: calc(-1 * 7px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-7px > * {
    margin-left: 7px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-7px {
    margin-left: calc(-1 * 7px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-7px > * {
    margin-left: 7px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-7px {
    margin-left: calc(-1 * 7px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-7px > * {
    margin-left: 7px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-7px {
    margin-left: calc(-1 * 7px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-7px > * {
    margin-left: 7px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-7px {
    margin-left: calc(-1 * 7px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-7px > * {
    margin-left: 7px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-8px {
  margin-left: calc(-1 * 8px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-8px > * {
  margin-left: 8px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-8px {
    margin-left: calc(-1 * 8px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-8px > * {
    margin-left: 8px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-8px {
    margin-left: calc(-1 * 8px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-8px > * {
    margin-left: 8px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-8px {
    margin-left: calc(-1 * 8px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-8px > * {
    margin-left: 8px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-8px {
    margin-left: calc(-1 * 8px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-8px > * {
    margin-left: 8px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-8px {
    margin-left: calc(-1 * 8px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-8px > * {
    margin-left: 8px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-8px {
    margin-left: calc(-1 * 8px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-8px > * {
    margin-left: 8px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-9px {
  margin-left: calc(-1 * 9px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-9px > * {
  margin-left: 9px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-9px {
    margin-left: calc(-1 * 9px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-9px > * {
    margin-left: 9px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-9px {
    margin-left: calc(-1 * 9px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-9px > * {
    margin-left: 9px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-9px {
    margin-left: calc(-1 * 9px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-9px > * {
    margin-left: 9px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-9px {
    margin-left: calc(-1 * 9px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-9px > * {
    margin-left: 9px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-9px {
    margin-left: calc(-1 * 9px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-9px > * {
    margin-left: 9px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-9px {
    margin-left: calc(-1 * 9px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-9px > * {
    margin-left: 9px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-10px {
  margin-left: calc(-1 * 10px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-10px > * {
  margin-left: 10px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-10px {
    margin-left: calc(-1 * 10px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-10px > * {
    margin-left: 10px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-10px {
    margin-left: calc(-1 * 10px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-10px > * {
    margin-left: 10px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-10px {
    margin-left: calc(-1 * 10px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-10px > * {
    margin-left: 10px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-10px {
    margin-left: calc(-1 * 10px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-10px > * {
    margin-left: 10px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-10px {
    margin-left: calc(-1 * 10px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-10px > * {
    margin-left: 10px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-10px {
    margin-left: calc(-1 * 10px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-10px > * {
    margin-left: 10px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-11px {
  margin-left: calc(-1 * 11px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-11px > * {
  margin-left: 11px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-11px {
    margin-left: calc(-1 * 11px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-11px > * {
    margin-left: 11px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-11px {
    margin-left: calc(-1 * 11px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-11px > * {
    margin-left: 11px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-11px {
    margin-left: calc(-1 * 11px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-11px > * {
    margin-left: 11px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-11px {
    margin-left: calc(-1 * 11px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-11px > * {
    margin-left: 11px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-11px {
    margin-left: calc(-1 * 11px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-11px > * {
    margin-left: 11px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-11px {
    margin-left: calc(-1 * 11px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-11px > * {
    margin-left: 11px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-12px {
  margin-left: calc(-1 * 12px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-12px > * {
  margin-left: 12px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-12px {
    margin-left: calc(-1 * 12px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-12px > * {
    margin-left: 12px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-12px {
    margin-left: calc(-1 * 12px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-12px > * {
    margin-left: 12px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-12px {
    margin-left: calc(-1 * 12px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-12px > * {
    margin-left: 12px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-12px {
    margin-left: calc(-1 * 12px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-12px > * {
    margin-left: 12px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-12px {
    margin-left: calc(-1 * 12px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-12px > * {
    margin-left: 12px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-12px {
    margin-left: calc(-1 * 12px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-12px > * {
    margin-left: 12px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-13px {
  margin-left: calc(-1 * 13px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-13px > * {
  margin-left: 13px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-13px {
    margin-left: calc(-1 * 13px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-13px > * {
    margin-left: 13px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-13px {
    margin-left: calc(-1 * 13px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-13px > * {
    margin-left: 13px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-13px {
    margin-left: calc(-1 * 13px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-13px > * {
    margin-left: 13px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-13px {
    margin-left: calc(-1 * 13px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-13px > * {
    margin-left: 13px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-13px {
    margin-left: calc(-1 * 13px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-13px > * {
    margin-left: 13px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-13px {
    margin-left: calc(-1 * 13px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-13px > * {
    margin-left: 13px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-14px {
  margin-left: calc(-1 * 14px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-14px > * {
  margin-left: 14px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-14px {
    margin-left: calc(-1 * 14px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-14px > * {
    margin-left: 14px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-14px {
    margin-left: calc(-1 * 14px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-14px > * {
    margin-left: 14px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-14px {
    margin-left: calc(-1 * 14px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-14px > * {
    margin-left: 14px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-14px {
    margin-left: calc(-1 * 14px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-14px > * {
    margin-left: 14px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-14px {
    margin-left: calc(-1 * 14px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-14px > * {
    margin-left: 14px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-14px {
    margin-left: calc(-1 * 14px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-14px > * {
    margin-left: 14px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-15px {
  margin-left: calc(-1 * 15px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-15px > * {
  margin-left: 15px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-15px {
    margin-left: calc(-1 * 15px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-15px > * {
    margin-left: 15px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-15px {
    margin-left: calc(-1 * 15px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-15px > * {
    margin-left: 15px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-15px {
    margin-left: calc(-1 * 15px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-15px > * {
    margin-left: 15px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-15px {
    margin-left: calc(-1 * 15px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-15px > * {
    margin-left: 15px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-15px {
    margin-left: calc(-1 * 15px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-15px > * {
    margin-left: 15px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-15px {
    margin-left: calc(-1 * 15px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-15px > * {
    margin-left: 15px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-16px {
  margin-left: calc(-1 * 16px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-16px > * {
  margin-left: 16px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-16px {
    margin-left: calc(-1 * 16px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-16px > * {
    margin-left: 16px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-16px {
    margin-left: calc(-1 * 16px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-16px > * {
    margin-left: 16px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-16px {
    margin-left: calc(-1 * 16px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-16px > * {
    margin-left: 16px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-16px {
    margin-left: calc(-1 * 16px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-16px > * {
    margin-left: 16px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-16px {
    margin-left: calc(-1 * 16px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-16px > * {
    margin-left: 16px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-16px {
    margin-left: calc(-1 * 16px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-16px > * {
    margin-left: 16px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-17px {
  margin-left: calc(-1 * 17px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-17px > * {
  margin-left: 17px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-17px {
    margin-left: calc(-1 * 17px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-17px > * {
    margin-left: 17px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-17px {
    margin-left: calc(-1 * 17px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-17px > * {
    margin-left: 17px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-17px {
    margin-left: calc(-1 * 17px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-17px > * {
    margin-left: 17px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-17px {
    margin-left: calc(-1 * 17px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-17px > * {
    margin-left: 17px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-17px {
    margin-left: calc(-1 * 17px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-17px > * {
    margin-left: 17px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-17px {
    margin-left: calc(-1 * 17px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-17px > * {
    margin-left: 17px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-18px {
  margin-left: calc(-1 * 18px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-18px > * {
  margin-left: 18px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-18px {
    margin-left: calc(-1 * 18px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-18px > * {
    margin-left: 18px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-18px {
    margin-left: calc(-1 * 18px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-18px > * {
    margin-left: 18px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-18px {
    margin-left: calc(-1 * 18px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-18px > * {
    margin-left: 18px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-18px {
    margin-left: calc(-1 * 18px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-18px > * {
    margin-left: 18px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-18px {
    margin-left: calc(-1 * 18px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-18px > * {
    margin-left: 18px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-18px {
    margin-left: calc(-1 * 18px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-18px > * {
    margin-left: 18px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-19px {
  margin-left: calc(-1 * 19px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-19px > * {
  margin-left: 19px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-19px {
    margin-left: calc(-1 * 19px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-19px > * {
    margin-left: 19px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-19px {
    margin-left: calc(-1 * 19px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-19px > * {
    margin-left: 19px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-19px {
    margin-left: calc(-1 * 19px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-19px > * {
    margin-left: 19px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-19px {
    margin-left: calc(-1 * 19px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-19px > * {
    margin-left: 19px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-19px {
    margin-left: calc(-1 * 19px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-19px > * {
    margin-left: 19px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-19px {
    margin-left: calc(-1 * 19px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-19px > * {
    margin-left: 19px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-20px {
  margin-left: calc(-1 * 20px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-20px > * {
  margin-left: 20px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-20px {
    margin-left: calc(-1 * 20px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-20px > * {
    margin-left: 20px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-20px {
    margin-left: calc(-1 * 20px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-20px > * {
    margin-left: 20px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-20px {
    margin-left: calc(-1 * 20px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-20px > * {
    margin-left: 20px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-20px {
    margin-left: calc(-1 * 20px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-20px > * {
    margin-left: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-20px {
    margin-left: calc(-1 * 20px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-20px > * {
    margin-left: 20px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-20px {
    margin-left: calc(-1 * 20px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-20px > * {
    margin-left: 20px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-21px {
  margin-left: calc(-1 * 21px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-21px > * {
  margin-left: 21px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-21px {
    margin-left: calc(-1 * 21px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-21px > * {
    margin-left: 21px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-21px {
    margin-left: calc(-1 * 21px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-21px > * {
    margin-left: 21px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-21px {
    margin-left: calc(-1 * 21px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-21px > * {
    margin-left: 21px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-21px {
    margin-left: calc(-1 * 21px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-21px > * {
    margin-left: 21px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-21px {
    margin-left: calc(-1 * 21px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-21px > * {
    margin-left: 21px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-21px {
    margin-left: calc(-1 * 21px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-21px > * {
    margin-left: 21px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-22px {
  margin-left: calc(-1 * 22px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-22px > * {
  margin-left: 22px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-22px {
    margin-left: calc(-1 * 22px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-22px > * {
    margin-left: 22px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-22px {
    margin-left: calc(-1 * 22px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-22px > * {
    margin-left: 22px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-22px {
    margin-left: calc(-1 * 22px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-22px > * {
    margin-left: 22px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-22px {
    margin-left: calc(-1 * 22px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-22px > * {
    margin-left: 22px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-22px {
    margin-left: calc(-1 * 22px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-22px > * {
    margin-left: 22px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-22px {
    margin-left: calc(-1 * 22px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-22px > * {
    margin-left: 22px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-23px {
  margin-left: calc(-1 * 23px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-23px > * {
  margin-left: 23px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-23px {
    margin-left: calc(-1 * 23px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-23px > * {
    margin-left: 23px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-23px {
    margin-left: calc(-1 * 23px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-23px > * {
    margin-left: 23px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-23px {
    margin-left: calc(-1 * 23px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-23px > * {
    margin-left: 23px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-23px {
    margin-left: calc(-1 * 23px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-23px > * {
    margin-left: 23px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-23px {
    margin-left: calc(-1 * 23px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-23px > * {
    margin-left: 23px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-23px {
    margin-left: calc(-1 * 23px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-23px > * {
    margin-left: 23px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-24px {
  margin-left: calc(-1 * 24px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-24px > * {
  margin-left: 24px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-24px {
    margin-left: calc(-1 * 24px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-24px > * {
    margin-left: 24px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-24px {
    margin-left: calc(-1 * 24px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-24px > * {
    margin-left: 24px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-24px {
    margin-left: calc(-1 * 24px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-24px > * {
    margin-left: 24px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-24px {
    margin-left: calc(-1 * 24px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-24px > * {
    margin-left: 24px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-24px {
    margin-left: calc(-1 * 24px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-24px > * {
    margin-left: 24px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-24px {
    margin-left: calc(-1 * 24px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-24px > * {
    margin-left: 24px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-25px {
  margin-left: calc(-1 * 25px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-25px > * {
  margin-left: 25px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-25px {
    margin-left: calc(-1 * 25px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-25px > * {
    margin-left: 25px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-25px {
    margin-left: calc(-1 * 25px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-25px > * {
    margin-left: 25px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-25px {
    margin-left: calc(-1 * 25px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-25px > * {
    margin-left: 25px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-25px {
    margin-left: calc(-1 * 25px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-25px > * {
    margin-left: 25px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-25px {
    margin-left: calc(-1 * 25px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-25px > * {
    margin-left: 25px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-25px {
    margin-left: calc(-1 * 25px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-25px > * {
    margin-left: 25px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-26px {
  margin-left: calc(-1 * 26px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-26px > * {
  margin-left: 26px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-26px {
    margin-left: calc(-1 * 26px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-26px > * {
    margin-left: 26px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-26px {
    margin-left: calc(-1 * 26px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-26px > * {
    margin-left: 26px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-26px {
    margin-left: calc(-1 * 26px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-26px > * {
    margin-left: 26px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-26px {
    margin-left: calc(-1 * 26px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-26px > * {
    margin-left: 26px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-26px {
    margin-left: calc(-1 * 26px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-26px > * {
    margin-left: 26px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-26px {
    margin-left: calc(-1 * 26px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-26px > * {
    margin-left: 26px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-27px {
  margin-left: calc(-1 * 27px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-27px > * {
  margin-left: 27px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-27px {
    margin-left: calc(-1 * 27px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-27px > * {
    margin-left: 27px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-27px {
    margin-left: calc(-1 * 27px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-27px > * {
    margin-left: 27px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-27px {
    margin-left: calc(-1 * 27px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-27px > * {
    margin-left: 27px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-27px {
    margin-left: calc(-1 * 27px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-27px > * {
    margin-left: 27px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-27px {
    margin-left: calc(-1 * 27px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-27px > * {
    margin-left: 27px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-27px {
    margin-left: calc(-1 * 27px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-27px > * {
    margin-left: 27px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-28px {
  margin-left: calc(-1 * 28px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-28px > * {
  margin-left: 28px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-28px {
    margin-left: calc(-1 * 28px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-28px > * {
    margin-left: 28px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-28px {
    margin-left: calc(-1 * 28px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-28px > * {
    margin-left: 28px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-28px {
    margin-left: calc(-1 * 28px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-28px > * {
    margin-left: 28px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-28px {
    margin-left: calc(-1 * 28px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-28px > * {
    margin-left: 28px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-28px {
    margin-left: calc(-1 * 28px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-28px > * {
    margin-left: 28px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-28px {
    margin-left: calc(-1 * 28px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-28px > * {
    margin-left: 28px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-29px {
  margin-left: calc(-1 * 29px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-29px > * {
  margin-left: 29px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-29px {
    margin-left: calc(-1 * 29px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-29px > * {
    margin-left: 29px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-29px {
    margin-left: calc(-1 * 29px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-29px > * {
    margin-left: 29px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-29px {
    margin-left: calc(-1 * 29px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-29px > * {
    margin-left: 29px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-29px {
    margin-left: calc(-1 * 29px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-29px > * {
    margin-left: 29px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-29px {
    margin-left: calc(-1 * 29px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-29px > * {
    margin-left: 29px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-29px {
    margin-left: calc(-1 * 29px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-29px > * {
    margin-left: 29px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-30px {
  margin-left: calc(-1 * 30px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-30px > * {
  margin-left: 30px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-30px {
    margin-left: calc(-1 * 30px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-30px > * {
    margin-left: 30px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-30px {
    margin-left: calc(-1 * 30px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-30px > * {
    margin-left: 30px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-30px {
    margin-left: calc(-1 * 30px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-30px > * {
    margin-left: 30px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-30px {
    margin-left: calc(-1 * 30px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-30px > * {
    margin-left: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-30px {
    margin-left: calc(-1 * 30px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-30px > * {
    margin-left: 30px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-30px {
    margin-left: calc(-1 * 30px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-30px > * {
    margin-left: 30px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-31px {
  margin-left: calc(-1 * 31px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-31px > * {
  margin-left: 31px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-31px {
    margin-left: calc(-1 * 31px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-31px > * {
    margin-left: 31px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-31px {
    margin-left: calc(-1 * 31px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-31px > * {
    margin-left: 31px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-31px {
    margin-left: calc(-1 * 31px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-31px > * {
    margin-left: 31px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-31px {
    margin-left: calc(-1 * 31px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-31px > * {
    margin-left: 31px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-31px {
    margin-left: calc(-1 * 31px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-31px > * {
    margin-left: 31px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-31px {
    margin-left: calc(-1 * 31px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-31px > * {
    margin-left: 31px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-32px {
  margin-left: calc(-1 * 32px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-32px > * {
  margin-left: 32px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-32px {
    margin-left: calc(-1 * 32px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-32px > * {
    margin-left: 32px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-32px {
    margin-left: calc(-1 * 32px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-32px > * {
    margin-left: 32px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-32px {
    margin-left: calc(-1 * 32px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-32px > * {
    margin-left: 32px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-32px {
    margin-left: calc(-1 * 32px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-32px > * {
    margin-left: 32px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-32px {
    margin-left: calc(-1 * 32px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-32px > * {
    margin-left: 32px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-32px {
    margin-left: calc(-1 * 32px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-32px > * {
    margin-left: 32px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-33px {
  margin-left: calc(-1 * 33px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-33px > * {
  margin-left: 33px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-33px {
    margin-left: calc(-1 * 33px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-33px > * {
    margin-left: 33px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-33px {
    margin-left: calc(-1 * 33px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-33px > * {
    margin-left: 33px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-33px {
    margin-left: calc(-1 * 33px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-33px > * {
    margin-left: 33px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-33px {
    margin-left: calc(-1 * 33px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-33px > * {
    margin-left: 33px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-33px {
    margin-left: calc(-1 * 33px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-33px > * {
    margin-left: 33px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-33px {
    margin-left: calc(-1 * 33px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-33px > * {
    margin-left: 33px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-34px {
  margin-left: calc(-1 * 34px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-34px > * {
  margin-left: 34px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-34px {
    margin-left: calc(-1 * 34px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-34px > * {
    margin-left: 34px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-34px {
    margin-left: calc(-1 * 34px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-34px > * {
    margin-left: 34px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-34px {
    margin-left: calc(-1 * 34px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-34px > * {
    margin-left: 34px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-34px {
    margin-left: calc(-1 * 34px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-34px > * {
    margin-left: 34px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-34px {
    margin-left: calc(-1 * 34px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-34px > * {
    margin-left: 34px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-34px {
    margin-left: calc(-1 * 34px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-34px > * {
    margin-left: 34px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-35px {
  margin-left: calc(-1 * 35px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-35px > * {
  margin-left: 35px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-35px {
    margin-left: calc(-1 * 35px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-35px > * {
    margin-left: 35px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-35px {
    margin-left: calc(-1 * 35px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-35px > * {
    margin-left: 35px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-35px {
    margin-left: calc(-1 * 35px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-35px > * {
    margin-left: 35px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-35px {
    margin-left: calc(-1 * 35px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-35px > * {
    margin-left: 35px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-35px {
    margin-left: calc(-1 * 35px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-35px > * {
    margin-left: 35px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-35px {
    margin-left: calc(-1 * 35px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-35px > * {
    margin-left: 35px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-36px {
  margin-left: calc(-1 * 36px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-36px > * {
  margin-left: 36px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-36px {
    margin-left: calc(-1 * 36px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-36px > * {
    margin-left: 36px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-36px {
    margin-left: calc(-1 * 36px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-36px > * {
    margin-left: 36px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-36px {
    margin-left: calc(-1 * 36px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-36px > * {
    margin-left: 36px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-36px {
    margin-left: calc(-1 * 36px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-36px > * {
    margin-left: 36px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-36px {
    margin-left: calc(-1 * 36px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-36px > * {
    margin-left: 36px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-36px {
    margin-left: calc(-1 * 36px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-36px > * {
    margin-left: 36px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-37px {
  margin-left: calc(-1 * 37px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-37px > * {
  margin-left: 37px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-37px {
    margin-left: calc(-1 * 37px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-37px > * {
    margin-left: 37px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-37px {
    margin-left: calc(-1 * 37px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-37px > * {
    margin-left: 37px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-37px {
    margin-left: calc(-1 * 37px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-37px > * {
    margin-left: 37px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-37px {
    margin-left: calc(-1 * 37px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-37px > * {
    margin-left: 37px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-37px {
    margin-left: calc(-1 * 37px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-37px > * {
    margin-left: 37px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-37px {
    margin-left: calc(-1 * 37px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-37px > * {
    margin-left: 37px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-38px {
  margin-left: calc(-1 * 38px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-38px > * {
  margin-left: 38px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-38px {
    margin-left: calc(-1 * 38px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-38px > * {
    margin-left: 38px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-38px {
    margin-left: calc(-1 * 38px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-38px > * {
    margin-left: 38px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-38px {
    margin-left: calc(-1 * 38px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-38px > * {
    margin-left: 38px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-38px {
    margin-left: calc(-1 * 38px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-38px > * {
    margin-left: 38px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-38px {
    margin-left: calc(-1 * 38px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-38px > * {
    margin-left: 38px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-38px {
    margin-left: calc(-1 * 38px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-38px > * {
    margin-left: 38px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-39px {
  margin-left: calc(-1 * 39px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-39px > * {
  margin-left: 39px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-39px {
    margin-left: calc(-1 * 39px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-39px > * {
    margin-left: 39px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-39px {
    margin-left: calc(-1 * 39px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-39px > * {
    margin-left: 39px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-39px {
    margin-left: calc(-1 * 39px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-39px > * {
    margin-left: 39px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-39px {
    margin-left: calc(-1 * 39px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-39px > * {
    margin-left: 39px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-39px {
    margin-left: calc(-1 * 39px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-39px > * {
    margin-left: 39px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-39px {
    margin-left: calc(-1 * 39px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-39px > * {
    margin-left: 39px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-40px {
  margin-left: calc(-1 * 40px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-40px > * {
  margin-left: 40px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-40px {
    margin-left: calc(-1 * 40px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-40px > * {
    margin-left: 40px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-40px {
    margin-left: calc(-1 * 40px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-40px > * {
    margin-left: 40px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-40px {
    margin-left: calc(-1 * 40px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-40px > * {
    margin-left: 40px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-40px {
    margin-left: calc(-1 * 40px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-40px > * {
    margin-left: 40px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-40px {
    margin-left: calc(-1 * 40px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-40px > * {
    margin-left: 40px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-40px {
    margin-left: calc(-1 * 40px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-40px > * {
    margin-left: 40px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-41px {
  margin-left: calc(-1 * 41px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-41px > * {
  margin-left: 41px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-41px {
    margin-left: calc(-1 * 41px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-41px > * {
    margin-left: 41px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-41px {
    margin-left: calc(-1 * 41px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-41px > * {
    margin-left: 41px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-41px {
    margin-left: calc(-1 * 41px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-41px > * {
    margin-left: 41px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-41px {
    margin-left: calc(-1 * 41px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-41px > * {
    margin-left: 41px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-41px {
    margin-left: calc(-1 * 41px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-41px > * {
    margin-left: 41px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-41px {
    margin-left: calc(-1 * 41px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-41px > * {
    margin-left: 41px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-42px {
  margin-left: calc(-1 * 42px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-42px > * {
  margin-left: 42px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-42px {
    margin-left: calc(-1 * 42px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-42px > * {
    margin-left: 42px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-42px {
    margin-left: calc(-1 * 42px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-42px > * {
    margin-left: 42px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-42px {
    margin-left: calc(-1 * 42px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-42px > * {
    margin-left: 42px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-42px {
    margin-left: calc(-1 * 42px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-42px > * {
    margin-left: 42px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-42px {
    margin-left: calc(-1 * 42px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-42px > * {
    margin-left: 42px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-42px {
    margin-left: calc(-1 * 42px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-42px > * {
    margin-left: 42px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-43px {
  margin-left: calc(-1 * 43px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-43px > * {
  margin-left: 43px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-43px {
    margin-left: calc(-1 * 43px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-43px > * {
    margin-left: 43px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-43px {
    margin-left: calc(-1 * 43px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-43px > * {
    margin-left: 43px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-43px {
    margin-left: calc(-1 * 43px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-43px > * {
    margin-left: 43px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-43px {
    margin-left: calc(-1 * 43px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-43px > * {
    margin-left: 43px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-43px {
    margin-left: calc(-1 * 43px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-43px > * {
    margin-left: 43px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-43px {
    margin-left: calc(-1 * 43px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-43px > * {
    margin-left: 43px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-44px {
  margin-left: calc(-1 * 44px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-44px > * {
  margin-left: 44px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-44px {
    margin-left: calc(-1 * 44px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-44px > * {
    margin-left: 44px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-44px {
    margin-left: calc(-1 * 44px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-44px > * {
    margin-left: 44px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-44px {
    margin-left: calc(-1 * 44px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-44px > * {
    margin-left: 44px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-44px {
    margin-left: calc(-1 * 44px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-44px > * {
    margin-left: 44px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-44px {
    margin-left: calc(-1 * 44px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-44px > * {
    margin-left: 44px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-44px {
    margin-left: calc(-1 * 44px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-44px > * {
    margin-left: 44px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-45px {
  margin-left: calc(-1 * 45px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-45px > * {
  margin-left: 45px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-45px {
    margin-left: calc(-1 * 45px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-45px > * {
    margin-left: 45px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-45px {
    margin-left: calc(-1 * 45px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-45px > * {
    margin-left: 45px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-45px {
    margin-left: calc(-1 * 45px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-45px > * {
    margin-left: 45px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-45px {
    margin-left: calc(-1 * 45px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-45px > * {
    margin-left: 45px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-45px {
    margin-left: calc(-1 * 45px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-45px > * {
    margin-left: 45px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-45px {
    margin-left: calc(-1 * 45px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-45px > * {
    margin-left: 45px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-46px {
  margin-left: calc(-1 * 46px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-46px > * {
  margin-left: 46px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-46px {
    margin-left: calc(-1 * 46px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-46px > * {
    margin-left: 46px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-46px {
    margin-left: calc(-1 * 46px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-46px > * {
    margin-left: 46px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-46px {
    margin-left: calc(-1 * 46px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-46px > * {
    margin-left: 46px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-46px {
    margin-left: calc(-1 * 46px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-46px > * {
    margin-left: 46px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-46px {
    margin-left: calc(-1 * 46px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-46px > * {
    margin-left: 46px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-46px {
    margin-left: calc(-1 * 46px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-46px > * {
    margin-left: 46px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-47px {
  margin-left: calc(-1 * 47px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-47px > * {
  margin-left: 47px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-47px {
    margin-left: calc(-1 * 47px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-47px > * {
    margin-left: 47px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-47px {
    margin-left: calc(-1 * 47px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-47px > * {
    margin-left: 47px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-47px {
    margin-left: calc(-1 * 47px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-47px > * {
    margin-left: 47px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-47px {
    margin-left: calc(-1 * 47px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-47px > * {
    margin-left: 47px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-47px {
    margin-left: calc(-1 * 47px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-47px > * {
    margin-left: 47px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-47px {
    margin-left: calc(-1 * 47px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-47px > * {
    margin-left: 47px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-48px {
  margin-left: calc(-1 * 48px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-48px > * {
  margin-left: 48px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-48px {
    margin-left: calc(-1 * 48px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-48px > * {
    margin-left: 48px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-48px {
    margin-left: calc(-1 * 48px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-48px > * {
    margin-left: 48px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-48px {
    margin-left: calc(-1 * 48px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-48px > * {
    margin-left: 48px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-48px {
    margin-left: calc(-1 * 48px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-48px > * {
    margin-left: 48px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-48px {
    margin-left: calc(-1 * 48px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-48px > * {
    margin-left: 48px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-48px {
    margin-left: calc(-1 * 48px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-48px > * {
    margin-left: 48px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-49px {
  margin-left: calc(-1 * 49px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-49px > * {
  margin-left: 49px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-49px {
    margin-left: calc(-1 * 49px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-49px > * {
    margin-left: 49px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-49px {
    margin-left: calc(-1 * 49px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-49px > * {
    margin-left: 49px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-49px {
    margin-left: calc(-1 * 49px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-49px > * {
    margin-left: 49px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-49px {
    margin-left: calc(-1 * 49px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-49px > * {
    margin-left: 49px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-49px {
    margin-left: calc(-1 * 49px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-49px > * {
    margin-left: 49px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-49px {
    margin-left: calc(-1 * 49px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-49px > * {
    margin-left: 49px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-50px {
  margin-left: calc(-1 * 50px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-50px > * {
  margin-left: 50px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-50px {
    margin-left: calc(-1 * 50px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-50px > * {
    margin-left: 50px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-50px {
    margin-left: calc(-1 * 50px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-50px > * {
    margin-left: 50px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-50px {
    margin-left: calc(-1 * 50px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-50px > * {
    margin-left: 50px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-50px {
    margin-left: calc(-1 * 50px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-50px > * {
    margin-left: 50px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-50px {
    margin-left: calc(-1 * 50px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-50px > * {
    margin-left: 50px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-50px {
    margin-left: calc(-1 * 50px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-50px > * {
    margin-left: 50px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-51px {
  margin-left: calc(-1 * 51px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-51px > * {
  margin-left: 51px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-51px {
    margin-left: calc(-1 * 51px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-51px > * {
    margin-left: 51px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-51px {
    margin-left: calc(-1 * 51px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-51px > * {
    margin-left: 51px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-51px {
    margin-left: calc(-1 * 51px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-51px > * {
    margin-left: 51px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-51px {
    margin-left: calc(-1 * 51px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-51px > * {
    margin-left: 51px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-51px {
    margin-left: calc(-1 * 51px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-51px > * {
    margin-left: 51px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-51px {
    margin-left: calc(-1 * 51px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-51px > * {
    margin-left: 51px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-52px {
  margin-left: calc(-1 * 52px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-52px > * {
  margin-left: 52px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-52px {
    margin-left: calc(-1 * 52px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-52px > * {
    margin-left: 52px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-52px {
    margin-left: calc(-1 * 52px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-52px > * {
    margin-left: 52px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-52px {
    margin-left: calc(-1 * 52px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-52px > * {
    margin-left: 52px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-52px {
    margin-left: calc(-1 * 52px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-52px > * {
    margin-left: 52px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-52px {
    margin-left: calc(-1 * 52px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-52px > * {
    margin-left: 52px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-52px {
    margin-left: calc(-1 * 52px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-52px > * {
    margin-left: 52px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-53px {
  margin-left: calc(-1 * 53px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-53px > * {
  margin-left: 53px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-53px {
    margin-left: calc(-1 * 53px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-53px > * {
    margin-left: 53px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-53px {
    margin-left: calc(-1 * 53px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-53px > * {
    margin-left: 53px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-53px {
    margin-left: calc(-1 * 53px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-53px > * {
    margin-left: 53px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-53px {
    margin-left: calc(-1 * 53px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-53px > * {
    margin-left: 53px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-53px {
    margin-left: calc(-1 * 53px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-53px > * {
    margin-left: 53px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-53px {
    margin-left: calc(-1 * 53px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-53px > * {
    margin-left: 53px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-54px {
  margin-left: calc(-1 * 54px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-54px > * {
  margin-left: 54px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-54px {
    margin-left: calc(-1 * 54px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-54px > * {
    margin-left: 54px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-54px {
    margin-left: calc(-1 * 54px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-54px > * {
    margin-left: 54px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-54px {
    margin-left: calc(-1 * 54px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-54px > * {
    margin-left: 54px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-54px {
    margin-left: calc(-1 * 54px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-54px > * {
    margin-left: 54px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-54px {
    margin-left: calc(-1 * 54px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-54px > * {
    margin-left: 54px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-54px {
    margin-left: calc(-1 * 54px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-54px > * {
    margin-left: 54px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-55px {
  margin-left: calc(-1 * 55px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-55px > * {
  margin-left: 55px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-55px {
    margin-left: calc(-1 * 55px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-55px > * {
    margin-left: 55px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-55px {
    margin-left: calc(-1 * 55px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-55px > * {
    margin-left: 55px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-55px {
    margin-left: calc(-1 * 55px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-55px > * {
    margin-left: 55px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-55px {
    margin-left: calc(-1 * 55px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-55px > * {
    margin-left: 55px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-55px {
    margin-left: calc(-1 * 55px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-55px > * {
    margin-left: 55px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-55px {
    margin-left: calc(-1 * 55px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-55px > * {
    margin-left: 55px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-56px {
  margin-left: calc(-1 * 56px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-56px > * {
  margin-left: 56px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-56px {
    margin-left: calc(-1 * 56px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-56px > * {
    margin-left: 56px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-56px {
    margin-left: calc(-1 * 56px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-56px > * {
    margin-left: 56px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-56px {
    margin-left: calc(-1 * 56px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-56px > * {
    margin-left: 56px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-56px {
    margin-left: calc(-1 * 56px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-56px > * {
    margin-left: 56px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-56px {
    margin-left: calc(-1 * 56px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-56px > * {
    margin-left: 56px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-56px {
    margin-left: calc(-1 * 56px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-56px > * {
    margin-left: 56px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-57px {
  margin-left: calc(-1 * 57px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-57px > * {
  margin-left: 57px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-57px {
    margin-left: calc(-1 * 57px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-57px > * {
    margin-left: 57px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-57px {
    margin-left: calc(-1 * 57px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-57px > * {
    margin-left: 57px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-57px {
    margin-left: calc(-1 * 57px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-57px > * {
    margin-left: 57px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-57px {
    margin-left: calc(-1 * 57px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-57px > * {
    margin-left: 57px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-57px {
    margin-left: calc(-1 * 57px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-57px > * {
    margin-left: 57px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-57px {
    margin-left: calc(-1 * 57px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-57px > * {
    margin-left: 57px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-58px {
  margin-left: calc(-1 * 58px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-58px > * {
  margin-left: 58px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-58px {
    margin-left: calc(-1 * 58px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-58px > * {
    margin-left: 58px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-58px {
    margin-left: calc(-1 * 58px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-58px > * {
    margin-left: 58px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-58px {
    margin-left: calc(-1 * 58px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-58px > * {
    margin-left: 58px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-58px {
    margin-left: calc(-1 * 58px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-58px > * {
    margin-left: 58px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-58px {
    margin-left: calc(-1 * 58px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-58px > * {
    margin-left: 58px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-58px {
    margin-left: calc(-1 * 58px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-58px > * {
    margin-left: 58px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-59px {
  margin-left: calc(-1 * 59px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-59px > * {
  margin-left: 59px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-59px {
    margin-left: calc(-1 * 59px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-59px > * {
    margin-left: 59px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-59px {
    margin-left: calc(-1 * 59px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-59px > * {
    margin-left: 59px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-59px {
    margin-left: calc(-1 * 59px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-59px > * {
    margin-left: 59px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-59px {
    margin-left: calc(-1 * 59px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-59px > * {
    margin-left: 59px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-59px {
    margin-left: calc(-1 * 59px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-59px > * {
    margin-left: 59px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-59px {
    margin-left: calc(-1 * 59px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-59px > * {
    margin-left: 59px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-60px {
  margin-left: calc(-1 * 60px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-60px > * {
  margin-left: 60px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-60px {
    margin-left: calc(-1 * 60px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-60px > * {
    margin-left: 60px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-60px {
    margin-left: calc(-1 * 60px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-60px > * {
    margin-left: 60px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-60px {
    margin-left: calc(-1 * 60px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-60px > * {
    margin-left: 60px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-60px {
    margin-left: calc(-1 * 60px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-60px > * {
    margin-left: 60px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-60px {
    margin-left: calc(-1 * 60px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-60px > * {
    margin-left: 60px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-60px {
    margin-left: calc(-1 * 60px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-60px > * {
    margin-left: 60px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-61px {
  margin-left: calc(-1 * 61px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-61px > * {
  margin-left: 61px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-61px {
    margin-left: calc(-1 * 61px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-61px > * {
    margin-left: 61px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-61px {
    margin-left: calc(-1 * 61px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-61px > * {
    margin-left: 61px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-61px {
    margin-left: calc(-1 * 61px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-61px > * {
    margin-left: 61px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-61px {
    margin-left: calc(-1 * 61px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-61px > * {
    margin-left: 61px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-61px {
    margin-left: calc(-1 * 61px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-61px > * {
    margin-left: 61px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-61px {
    margin-left: calc(-1 * 61px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-61px > * {
    margin-left: 61px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-62px {
  margin-left: calc(-1 * 62px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-62px > * {
  margin-left: 62px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-62px {
    margin-left: calc(-1 * 62px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-62px > * {
    margin-left: 62px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-62px {
    margin-left: calc(-1 * 62px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-62px > * {
    margin-left: 62px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-62px {
    margin-left: calc(-1 * 62px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-62px > * {
    margin-left: 62px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-62px {
    margin-left: calc(-1 * 62px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-62px > * {
    margin-left: 62px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-62px {
    margin-left: calc(-1 * 62px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-62px > * {
    margin-left: 62px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-62px {
    margin-left: calc(-1 * 62px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-62px > * {
    margin-left: 62px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-63px {
  margin-left: calc(-1 * 63px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-63px > * {
  margin-left: 63px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-63px {
    margin-left: calc(-1 * 63px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-63px > * {
    margin-left: 63px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-63px {
    margin-left: calc(-1 * 63px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-63px > * {
    margin-left: 63px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-63px {
    margin-left: calc(-1 * 63px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-63px > * {
    margin-left: 63px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-63px {
    margin-left: calc(-1 * 63px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-63px > * {
    margin-left: 63px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-63px {
    margin-left: calc(-1 * 63px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-63px > * {
    margin-left: 63px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-63px {
    margin-left: calc(-1 * 63px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-63px > * {
    margin-left: 63px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-64px {
  margin-left: calc(-1 * 64px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-64px > * {
  margin-left: 64px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-64px {
    margin-left: calc(-1 * 64px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-64px > * {
    margin-left: 64px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-64px {
    margin-left: calc(-1 * 64px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-64px > * {
    margin-left: 64px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-64px {
    margin-left: calc(-1 * 64px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-64px > * {
    margin-left: 64px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-64px {
    margin-left: calc(-1 * 64px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-64px > * {
    margin-left: 64px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-64px {
    margin-left: calc(-1 * 64px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-64px > * {
    margin-left: 64px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-64px {
    margin-left: calc(-1 * 64px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-64px > * {
    margin-left: 64px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-65px {
  margin-left: calc(-1 * 65px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-65px > * {
  margin-left: 65px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-65px {
    margin-left: calc(-1 * 65px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-65px > * {
    margin-left: 65px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-65px {
    margin-left: calc(-1 * 65px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-65px > * {
    margin-left: 65px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-65px {
    margin-left: calc(-1 * 65px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-65px > * {
    margin-left: 65px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-65px {
    margin-left: calc(-1 * 65px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-65px > * {
    margin-left: 65px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-65px {
    margin-left: calc(-1 * 65px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-65px > * {
    margin-left: 65px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-65px {
    margin-left: calc(-1 * 65px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-65px > * {
    margin-left: 65px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-66px {
  margin-left: calc(-1 * 66px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-66px > * {
  margin-left: 66px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-66px {
    margin-left: calc(-1 * 66px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-66px > * {
    margin-left: 66px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-66px {
    margin-left: calc(-1 * 66px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-66px > * {
    margin-left: 66px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-66px {
    margin-left: calc(-1 * 66px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-66px > * {
    margin-left: 66px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-66px {
    margin-left: calc(-1 * 66px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-66px > * {
    margin-left: 66px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-66px {
    margin-left: calc(-1 * 66px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-66px > * {
    margin-left: 66px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-66px {
    margin-left: calc(-1 * 66px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-66px > * {
    margin-left: 66px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-67px {
  margin-left: calc(-1 * 67px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-67px > * {
  margin-left: 67px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-67px {
    margin-left: calc(-1 * 67px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-67px > * {
    margin-left: 67px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-67px {
    margin-left: calc(-1 * 67px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-67px > * {
    margin-left: 67px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-67px {
    margin-left: calc(-1 * 67px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-67px > * {
    margin-left: 67px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-67px {
    margin-left: calc(-1 * 67px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-67px > * {
    margin-left: 67px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-67px {
    margin-left: calc(-1 * 67px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-67px > * {
    margin-left: 67px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-67px {
    margin-left: calc(-1 * 67px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-67px > * {
    margin-left: 67px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-68px {
  margin-left: calc(-1 * 68px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-68px > * {
  margin-left: 68px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-68px {
    margin-left: calc(-1 * 68px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-68px > * {
    margin-left: 68px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-68px {
    margin-left: calc(-1 * 68px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-68px > * {
    margin-left: 68px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-68px {
    margin-left: calc(-1 * 68px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-68px > * {
    margin-left: 68px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-68px {
    margin-left: calc(-1 * 68px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-68px > * {
    margin-left: 68px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-68px {
    margin-left: calc(-1 * 68px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-68px > * {
    margin-left: 68px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-68px {
    margin-left: calc(-1 * 68px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-68px > * {
    margin-left: 68px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-69px {
  margin-left: calc(-1 * 69px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-69px > * {
  margin-left: 69px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-69px {
    margin-left: calc(-1 * 69px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-69px > * {
    margin-left: 69px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-69px {
    margin-left: calc(-1 * 69px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-69px > * {
    margin-left: 69px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-69px {
    margin-left: calc(-1 * 69px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-69px > * {
    margin-left: 69px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-69px {
    margin-left: calc(-1 * 69px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-69px > * {
    margin-left: 69px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-69px {
    margin-left: calc(-1 * 69px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-69px > * {
    margin-left: 69px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-69px {
    margin-left: calc(-1 * 69px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-69px > * {
    margin-left: 69px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-70px {
  margin-left: calc(-1 * 70px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-70px > * {
  margin-left: 70px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-70px {
    margin-left: calc(-1 * 70px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-70px > * {
    margin-left: 70px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-70px {
    margin-left: calc(-1 * 70px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-70px > * {
    margin-left: 70px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-70px {
    margin-left: calc(-1 * 70px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-70px > * {
    margin-left: 70px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-70px {
    margin-left: calc(-1 * 70px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-70px > * {
    margin-left: 70px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-70px {
    margin-left: calc(-1 * 70px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-70px > * {
    margin-left: 70px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-70px {
    margin-left: calc(-1 * 70px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-70px > * {
    margin-left: 70px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-71px {
  margin-left: calc(-1 * 71px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-71px > * {
  margin-left: 71px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-71px {
    margin-left: calc(-1 * 71px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-71px > * {
    margin-left: 71px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-71px {
    margin-left: calc(-1 * 71px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-71px > * {
    margin-left: 71px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-71px {
    margin-left: calc(-1 * 71px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-71px > * {
    margin-left: 71px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-71px {
    margin-left: calc(-1 * 71px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-71px > * {
    margin-left: 71px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-71px {
    margin-left: calc(-1 * 71px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-71px > * {
    margin-left: 71px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-71px {
    margin-left: calc(-1 * 71px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-71px > * {
    margin-left: 71px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-72px {
  margin-left: calc(-1 * 72px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-72px > * {
  margin-left: 72px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-72px {
    margin-left: calc(-1 * 72px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-72px > * {
    margin-left: 72px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-72px {
    margin-left: calc(-1 * 72px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-72px > * {
    margin-left: 72px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-72px {
    margin-left: calc(-1 * 72px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-72px > * {
    margin-left: 72px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-72px {
    margin-left: calc(-1 * 72px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-72px > * {
    margin-left: 72px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-72px {
    margin-left: calc(-1 * 72px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-72px > * {
    margin-left: 72px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-72px {
    margin-left: calc(-1 * 72px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-72px > * {
    margin-left: 72px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-73px {
  margin-left: calc(-1 * 73px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-73px > * {
  margin-left: 73px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-73px {
    margin-left: calc(-1 * 73px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-73px > * {
    margin-left: 73px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-73px {
    margin-left: calc(-1 * 73px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-73px > * {
    margin-left: 73px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-73px {
    margin-left: calc(-1 * 73px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-73px > * {
    margin-left: 73px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-73px {
    margin-left: calc(-1 * 73px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-73px > * {
    margin-left: 73px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-73px {
    margin-left: calc(-1 * 73px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-73px > * {
    margin-left: 73px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-73px {
    margin-left: calc(-1 * 73px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-73px > * {
    margin-left: 73px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-74px {
  margin-left: calc(-1 * 74px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-74px > * {
  margin-left: 74px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-74px {
    margin-left: calc(-1 * 74px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-74px > * {
    margin-left: 74px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-74px {
    margin-left: calc(-1 * 74px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-74px > * {
    margin-left: 74px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-74px {
    margin-left: calc(-1 * 74px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-74px > * {
    margin-left: 74px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-74px {
    margin-left: calc(-1 * 74px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-74px > * {
    margin-left: 74px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-74px {
    margin-left: calc(-1 * 74px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-74px > * {
    margin-left: 74px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-74px {
    margin-left: calc(-1 * 74px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-74px > * {
    margin-left: 74px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-75px {
  margin-left: calc(-1 * 75px);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-75px > * {
  margin-left: 75px;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-75px {
    margin-left: calc(-1 * 75px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-75px > * {
    margin-left: 75px;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-75px {
    margin-left: calc(-1 * 75px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-75px > * {
    margin-left: 75px;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-75px {
    margin-left: calc(-1 * 75px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-75px > * {
    margin-left: 75px;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-75px {
    margin-left: calc(-1 * 75px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-75px > * {
    margin-left: 75px;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-75px {
    margin-left: calc(-1 * 75px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-75px > * {
    margin-left: 75px;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-75px {
    margin-left: calc(-1 * 75px);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-75px > * {
    margin-left: 75px;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-1prozent {
  margin-left: calc(-1 * 1%);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-1prozent > * {
  margin-left: 1%;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-1prozent {
    margin-left: calc(-1 * 1%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-1prozent > * {
    margin-left: 1%;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-1prozent {
    margin-left: calc(-1 * 1%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-1prozent > * {
    margin-left: 1%;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-1prozent {
    margin-left: calc(-1 * 1%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-1prozent > * {
    margin-left: 1%;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-1prozent {
    margin-left: calc(-1 * 1%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-1prozent > * {
    margin-left: 1%;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-1prozent {
    margin-left: calc(-1 * 1%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-1prozent > * {
    margin-left: 1%;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-1prozent {
    margin-left: calc(-1 * 1%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-1prozent > * {
    margin-left: 1%;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-2prozent {
  margin-left: calc(-1 * 2%);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-2prozent > * {
  margin-left: 2%;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-2prozent {
    margin-left: calc(-1 * 2%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-2prozent > * {
    margin-left: 2%;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-2prozent {
    margin-left: calc(-1 * 2%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-2prozent > * {
    margin-left: 2%;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-2prozent {
    margin-left: calc(-1 * 2%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-2prozent > * {
    margin-left: 2%;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-2prozent {
    margin-left: calc(-1 * 2%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-2prozent > * {
    margin-left: 2%;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-2prozent {
    margin-left: calc(-1 * 2%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-2prozent > * {
    margin-left: 2%;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-2prozent {
    margin-left: calc(-1 * 2%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-2prozent > * {
    margin-left: 2%;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-3prozent {
  margin-left: calc(-1 * 3%);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-3prozent > * {
  margin-left: 3%;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-3prozent {
    margin-left: calc(-1 * 3%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-3prozent > * {
    margin-left: 3%;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-3prozent {
    margin-left: calc(-1 * 3%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-3prozent > * {
    margin-left: 3%;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-3prozent {
    margin-left: calc(-1 * 3%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-3prozent > * {
    margin-left: 3%;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-3prozent {
    margin-left: calc(-1 * 3%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-3prozent > * {
    margin-left: 3%;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-3prozent {
    margin-left: calc(-1 * 3%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-3prozent > * {
    margin-left: 3%;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-3prozent {
    margin-left: calc(-1 * 3%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-3prozent > * {
    margin-left: 3%;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-4prozent {
  margin-left: calc(-1 * 4%);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-4prozent > * {
  margin-left: 4%;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-4prozent {
    margin-left: calc(-1 * 4%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-4prozent > * {
    margin-left: 4%;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-4prozent {
    margin-left: calc(-1 * 4%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-4prozent > * {
    margin-left: 4%;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-4prozent {
    margin-left: calc(-1 * 4%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-4prozent > * {
    margin-left: 4%;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-4prozent {
    margin-left: calc(-1 * 4%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-4prozent > * {
    margin-left: 4%;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-4prozent {
    margin-left: calc(-1 * 4%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-4prozent > * {
    margin-left: 4%;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-4prozent {
    margin-left: calc(-1 * 4%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-4prozent > * {
    margin-left: 4%;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-5prozent {
  margin-left: calc(-1 * 5%);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-5prozent > * {
  margin-left: 5%;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-5prozent {
    margin-left: calc(-1 * 5%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-5prozent > * {
    margin-left: 5%;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-5prozent {
    margin-left: calc(-1 * 5%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-5prozent > * {
    margin-left: 5%;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-5prozent {
    margin-left: calc(-1 * 5%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-5prozent > * {
    margin-left: 5%;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-5prozent {
    margin-left: calc(-1 * 5%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-5prozent > * {
    margin-left: 5%;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-5prozent {
    margin-left: calc(-1 * 5%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-5prozent > * {
    margin-left: 5%;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-5prozent {
    margin-left: calc(-1 * 5%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-5prozent > * {
    margin-left: 5%;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-6prozent {
  margin-left: calc(-1 * 6%);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-6prozent > * {
  margin-left: 6%;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-6prozent {
    margin-left: calc(-1 * 6%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-6prozent > * {
    margin-left: 6%;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-6prozent {
    margin-left: calc(-1 * 6%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-6prozent > * {
    margin-left: 6%;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-6prozent {
    margin-left: calc(-1 * 6%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-6prozent > * {
    margin-left: 6%;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-6prozent {
    margin-left: calc(-1 * 6%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-6prozent > * {
    margin-left: 6%;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-6prozent {
    margin-left: calc(-1 * 6%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-6prozent > * {
    margin-left: 6%;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-6prozent {
    margin-left: calc(-1 * 6%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-6prozent > * {
    margin-left: 6%;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-7prozent {
  margin-left: calc(-1 * 7%);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-7prozent > * {
  margin-left: 7%;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-7prozent {
    margin-left: calc(-1 * 7%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-7prozent > * {
    margin-left: 7%;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-7prozent {
    margin-left: calc(-1 * 7%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-7prozent > * {
    margin-left: 7%;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-7prozent {
    margin-left: calc(-1 * 7%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-7prozent > * {
    margin-left: 7%;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-7prozent {
    margin-left: calc(-1 * 7%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-7prozent > * {
    margin-left: 7%;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-7prozent {
    margin-left: calc(-1 * 7%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-7prozent > * {
    margin-left: 7%;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-7prozent {
    margin-left: calc(-1 * 7%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-7prozent > * {
    margin-left: 7%;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-8prozent {
  margin-left: calc(-1 * 8%);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-8prozent > * {
  margin-left: 8%;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-8prozent {
    margin-left: calc(-1 * 8%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-8prozent > * {
    margin-left: 8%;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-8prozent {
    margin-left: calc(-1 * 8%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-8prozent > * {
    margin-left: 8%;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-8prozent {
    margin-left: calc(-1 * 8%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-8prozent > * {
    margin-left: 8%;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-8prozent {
    margin-left: calc(-1 * 8%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-8prozent > * {
    margin-left: 8%;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-8prozent {
    margin-left: calc(-1 * 8%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-8prozent > * {
    margin-left: 8%;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-8prozent {
    margin-left: calc(-1 * 8%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-8prozent > * {
    margin-left: 8%;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-9prozent {
  margin-left: calc(-1 * 9%);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-9prozent > * {
  margin-left: 9%;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-9prozent {
    margin-left: calc(-1 * 9%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-9prozent > * {
    margin-left: 9%;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-9prozent {
    margin-left: calc(-1 * 9%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-9prozent > * {
    margin-left: 9%;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-9prozent {
    margin-left: calc(-1 * 9%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-9prozent > * {
    margin-left: 9%;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-9prozent {
    margin-left: calc(-1 * 9%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-9prozent > * {
    margin-left: 9%;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-9prozent {
    margin-left: calc(-1 * 9%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-9prozent > * {
    margin-left: 9%;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-9prozent {
    margin-left: calc(-1 * 9%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-9prozent > * {
    margin-left: 9%;
  }
}
.no-flexbox-gap .elementor .e-container--row.has--gap-10prozent {
  margin-left: calc(-1 * 10%);
}
.no-flexbox-gap .elementor .e-container--row.has--gap-10prozent > * {
  margin-left: 10%;
}
@media screen and (max-width: 667px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-10prozent {
    margin-left: calc(-1 * 10%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile-10prozent > * {
    margin-left: 10%;
  }
}
@media screen and (max-width: 768px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-10prozent {
    margin-left: calc(-1 * 10%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-mobile_extra-10prozent > * {
    margin-left: 10%;
  }
}
@media screen and (max-width: 992px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-10prozent {
    margin-left: calc(-1 * 10%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet-10prozent > * {
    margin-left: 10%;
  }
}
@media screen and (max-width: 1100px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-10prozent {
    margin-left: calc(-1 * 10%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-tablet_extra-10prozent > * {
    margin-left: 10%;
  }
}
@media screen and (max-width: 1200px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-10prozent {
    margin-left: calc(-1 * 10%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-laptop-10prozent > * {
    margin-left: 10%;
  }
}
@media screen and (min-width: 1400px) {
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-10prozent {
    margin-left: calc(-1 * 10%);
  }
  .no-flexbox-gap .elementor .e-container--row.has--gap-widescreen-10prozent > * {
    margin-left: 10%;
  }
}

.e-gallery-image iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.home .hero-widget {
  height: 100vh;
}

.hero-widget {
  position: relative;
  height: 100vh;
}
@media screen and (orientation: portrait) and (min-width: 568px) {
  .hero-widget {
    height: 50vh;
  }
}
@media screen and (orientation: portrait) and (min-width: 1100px) {
  .hero-widget {
    height: 100vh;
  }
}
@media screen and (orientation: landscape) and (min-width: 568px) {
  .hero-widget {
    height: 100vh;
  }
}
@media screen and (orientation: landscape) and (min-width: 1100px) {
  .hero-widget {
    height: 100vh;
  }
}
.hero-widget.is--einsatzbereich {
  height: 60vh;
}
@media screen and (orientation: landscape) and (min-width: 568px) {
  .hero-widget.is--einsatzbereich {
    height: 100vh;
  }
}
@media screen and (orientation: landscape) and (min-width: 1100px) {
  .hero-widget.is--einsatzbereich {
    height: 60vh;
  }
}
.hero-widget.is--einsatzbereich .hero-widget__title {
  text-transform: uppercase;
}
.hero-widget.is--einsatzbereich .hero-widget__content {
  z-index: 4;
}
.hero-widget__arrow {
  position: absolute;
  bottom: 40px;
  left: 50%;
  -webkit-animation-name: floating;
          animation-name: floating;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
}
.hero-widget__arrow span {
  display: block;
  color: #00DBFF;
  font-size: 3rem;
}
.hero-widget__icon {
  text-align: center;
  margin-bottom: 1rem;
}
.hero-widget__image-wrapper {
  opacity: 0;
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.hero-widget__image-wrapper img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-widget__gradient {
  opacity: 0;
  z-index: 1;
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 1920 1002'%3E%3Cdefs%3E%3CradialGradient id='Unbenannter_Verlauf_6' cx='1603.11' cy='-361.94' r='0.5' gradientTransform='matrix(1920, 0, 0, -1002, -3077012.65, -362160.49)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%232f314d' stop-opacity='0.23'/%3E%3Cstop offset='0' stop-color='%23323650'/%3E%3Cstop offset='1' stop-color='%2310111f'/%3E%3C/radialGradient%3E%3C/defs%3E%3Cg id='Ebene_2' data-name='Ebene 2'%3E%3Cg id='Ebene_3' data-name='Ebene 3'%3E%3Cpath id='Pfad_946' data-name='Pfad 946' d='M0,0H1920V1002H0Z' fill='url(%23Unbenannter_Verlauf_6)'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: 180%;
}
@media (min-width: 768px) {
  .hero-widget__gradient {
    background-size: contain;
  }
}
.hero-widget__content {
  opacity: 0;
  -webkit-transform: translateY(5%);
      -ms-transform: translateY(5%);
          transform: translateY(5%);
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.hero-widget__title {
  text-align: center;
  line-height: 1.1;
}
.hero-widget__text {
  text-align: center;
  line-height: 1.25;
  margin: 1rem auto 0 auto;
}
@media (min-width: 992px) {
  .hero-widget__text {
    width: 40%;
    font-size: 1.25rem;
  }
}
@media (min-width: 1100px) {
  .hero-widget__text {
    font-size: 1.3rem;
  }
}
@media (min-width: 1200px) {
  .hero-widget__text {
    font-size: 1.4rem;
  }
}
@media (min-width: 1500px) {
  .hero-widget__text {
    font-size: 1.5rem;
  }
}
@-webkit-keyframes floating {
  from {
    -webkit-transform: translateX(-50%) translateY(0px);
            transform: translateX(-50%) translateY(0px);
  }
  65% {
    -webkit-transform: translateX(-50%) translateY(15px);
            transform: translateX(-50%) translateY(15px);
  }
  to {
    -webkit-transform: translateX(-50%) translateY(0px);
            transform: translateX(-50%) translateY(0px);
  }
}
@keyframes floating {
  from {
    -webkit-transform: translateX(-50%) translateY(0px);
            transform: translateX(-50%) translateY(0px);
  }
  65% {
    -webkit-transform: translateX(-50%) translateY(15px);
            transform: translateX(-50%) translateY(15px);
  }
  to {
    -webkit-transform: translateX(-50%) translateY(0px);
            transform: translateX(-50%) translateY(0px);
  }
}

.historie-widget {
  padding-bottom: 0;
}
.historie-widget .historie-widget__drag-cursor {
  display: none;
}
.historie-widget ol {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
@media (min-width: 768px) {
  .historie-widget ol {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.historie-widget li {
  list-style-type: none;
  position: relative;
  cursor: pointer;
  z-index: 1;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  height: 200px;
}
.historie-widget li:not(.is--faded)::after {
  -webkit-box-shadow: 0 0 7px #00DBFF;
          box-shadow: 0 0 7px #00DBFF;
}
.historie-widget li.is--faded span {
  color: #07303b;
}
.historie-widget li.is--faded:after {
  opacity: 0;
}
.historie-widget li:last-of-type:before {
  height: 16px;
}
.historie-widget li:nth-child(even) span {
  left: initial;
  right: 50%;
  -webkit-transform: translateX(100%) translateY(calc(-25% - 3px));
      -ms-transform: translateX(100%) translateY(calc(-25% - 3px));
          transform: translateX(100%) translateY(calc(-25% - 3px));
}
.historie-widget li:before {
  content: "";
  background-color: #00DBFF;
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 2px;
  height: 100%;
  -webkit-box-shadow: 0 0 7px #00DBFF;
          box-shadow: 0 0 7px #00DBFF;
  z-index: -1;
}
.historie-widget li:after {
  content: "";
  display: block;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #00DBFF;
  border: 2px solid #00DBFF;
  -webkit-transition: background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease, -webkit-box-shadow 0.2s ease-in-out;
  transition: background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease, -webkit-box-shadow 0.2s ease-in-out;
  transition: background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease-in-out;
  transition: background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
}
.historie-widget span {
  position: absolute;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
  -webkit-transform: translateX(-100%) translateY(calc(-25% - 3px));
      -ms-transform: translateX(-100%) translateY(calc(-25% - 3px));
          transform: translateX(-100%) translateY(calc(-25% - 3px));
  left: 50%;
  top: 0;
  display: inline-block;
  text-align: center;
  text-align: center;
  width: 100px;
  color: #00DBFF;
  font-size: 1.5rem;
}

[data-tippy-root] .tippy-box {
  position: relative;
  background-color: #151B30;
  border-radius: 0;
  font-size: 1rem;
  line-height: 1.4;
  white-space: normal;
  outline: 0;
  -webkit-transition-property: visibility, opacity, -webkit-transform;
  transition-property: visibility, opacity, -webkit-transform;
  transition-property: transform, visibility, opacity;
  transition-property: transform, visibility, opacity, -webkit-transform;
  color: #00DBFF;
  padding: 1.5rem;
}
[data-tippy-root] .tippy-box p:last-of-type {
  margin-bottom: 0;
}

.tippy-box[data-theme~=drag] {
  background-color: transparent;
  padding: 0;
}
.tippy-box[data-theme~=drag] .historie-widget__drag-cursor {
  -webkit-animation-name: hvr-pulse;
          animation-name: hvr-pulse;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes hvr-pulse {
  25% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  75% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}

@keyframes hvr-pulse {
  25% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  75% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
}
.projekte-widget__menu-items-wrapper {
  position: relative;
}
@media (max-width: 1499.98px) {
  .projekte-widget__menu-items-wrapper.has--gradient-right:after {
    opacity: 1;
  }
  .projekte-widget__menu-items-wrapper.has--gradient-left:before {
    opacity: 1;
  }
  .projekte-widget__menu-items-wrapper:after {
    content: "";
    z-index: 1;
    pointer-events: none;
    background: -webkit-gradient(linear, left top, right top, from(rgba(16, 17, 31, 0)), color-stop(50%, #10111f), to(#10111f));
    background: linear-gradient(90deg, rgba(16, 17, 31, 0) 0%, #10111f 50%, #10111f 100%);
    position: absolute;
    top: 0;
    right: -1px;
    width: 50px;
    height: 100%;
    opacity: 0;
    -webkit-transition: opacity 0.25s ease-in-out;
    transition: opacity 0.25s ease-in-out;
  }
  .projekte-widget__menu-items-wrapper:before {
    content: "";
    z-index: 1;
    pointer-events: none;
    background: -webkit-gradient(linear, right top, left top, from(rgba(16, 17, 31, 0)), color-stop(50%, #10111f), to(#10111f));
    background: linear-gradient(-90deg, rgba(16, 17, 31, 0) 0%, #10111f 50%, #10111f 100%);
    position: absolute;
    top: 0;
    left: -1px;
    width: 50px;
    height: 100%;
    opacity: 0;
    -webkit-transition: opacity 0.25s ease-in-out;
    transition: opacity 0.25s ease-in-out;
  }
}
.projekte-widget__menu-item {
  width: 140px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-right: 1rem;
}
.projekte-widget__menu-item:last-of-type {
  margin-right: 0;
}
.projekte-widget__menu-item:hover .projekte-widget__title {
  color: #00DBFF;
}
@media (min-width: 768px) {
  .projekte-widget__menu-item {
    width: 200px;
  }
}
.projekte-widget__menu-item.is--faded .projekte-widget__icon-wrapper {
  opacity: 0.3;
}
.projekte-widget__menu-item.is--faded .projekte-widget__title {
  opacity: 0;
}
.projekte-widget__menu-item.is--active .projekte-widget__icon-wrapper {
  opacity: 1;
}
.projekte-widget__menu-item.is--active .projekte-widget__title {
  opacity: 1;
}
.projekte-widget__projekt-items .grid-gutter {
  width: 20px;
}
.projekte-widget__projekt-items .grid-item,
.projekte-widget__projekt-items .grid-sizer {
  margin-bottom: 20px;
  width: 100%;
}
@media (min-width: 768px) {
  .projekte-widget__projekt-items .grid-item,
  .projekte-widget__projekt-items .grid-sizer {
    width: calc(33.3333333333% - 13.3333333333px);
  }
}
.projekte-widget__projekt-item:hover .projekte-widget__image-wrapper:before {
  opacity: 0;
}
.projekte-widget__projekt-item:hover .projekte-widget__meta {
  color: #00DBFF;
}
.projekte-widget__image-wrapper:before {
  content: "";
  background-color: #151B30;
  opacity: 0.4;
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  -webkit-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
}
@media (min-width: 1100px) {
  .projekte-widget__image-wrapper:before {
    opacity: 0.7;
  }
}
.projekte-widget__icon-wrapper {
  width: 69px;
  height: 66px;
  position: relative;
  margin: 0 auto;
  margin-bottom: 1rem;
  pointer-events: none;
  -webkit-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
}
@media (min-width: 768px) {
  .projekte-widget__icon-wrapper {
    width: 86px;
    height: 82px;
  }
}
.projekte-widget__icon-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  pointer-events: none;
  display: inline-block;
}
.projekte-widget__title {
  color: #fff;
  text-align: center;
  font-size: 0.8rem;
  -webkit-transition: opacity 0.25s ease-in-out, color 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out, color 0.25s ease-in-out;
}
@media (min-width: 768px) {
  .projekte-widget__title {
    font-size: 1rem;
  }
}
.projekte-widget__meta {
  pointer-events: none;
  color: #fff;
  font-size: 1.1rem;
  text-align: center;
  width: 100%;
  position: absolute;
  display: block;
  bottom: 0;
  z-index: 1;
  left: 0;
  -webkit-transition: color 0.25s ease-in-out;
  transition: color 0.25s ease-in-out;
  padding: 0 1.5rem 1rem 1.5rem;
}
@media (min-width: 667px) {
  .projekte-widget__meta {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .projekte-widget__meta {
    font-size: 1.1;
  }
}
@media (min-width: 1100px) {
  .projekte-widget__meta {
    font-size: 1.375rem;
  }
}
.projekte-widget .swiper-button-next,
.projekte-widget .swiper-button-prev {
  position: absolute;
  z-index: 99;
  cursor: pointer;
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: contain;
  -webkit-transition: opacity 0.25s ease-in-out, background-image 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out, background-image 0.25s ease-in-out;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  margin-top: 0;
  width: 15px !important;
  height: 30px !important;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.projekte-widget .swiper-button-next::after,
.projekte-widget .swiper-button-prev::after {
  content: none !important;
}
.projekte-widget .swiper-button-next {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25.54 48.08'%3E%3Cg id='Ebene_2' data-name='Ebene 2'%3E%3Cg id='Ebene_1-2' data-name='Ebene 1'%3E%3Cg id='Gruppe_4098' data-name='Gruppe 4098'%3E%3Cpath id='Pfad_605' data-name='Pfad 605' d='M1.5,1.5,24,24,1.5,46.58' fill='none' stroke='%2300DBFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  right: 0;
}
.projekte-widget .swiper-button-next:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25.54 48.08'%3E%3Cg id='Ebene_2' data-name='Ebene 2'%3E%3Cg id='Ebene_1-2' data-name='Ebene 1'%3E%3Cg id='Gruppe_4098' data-name='Gruppe 4098'%3E%3Cpath id='Pfad_605' data-name='Pfad 605' d='M1.5,1.5,24,24,1.5,46.58' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.projekte-widget .swiper-button-prev {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25.54 48.08'%3E%3Cg id='Ebene_2' data-name='Ebene 2'%3E%3Cg id='Ebene_1-2' data-name='Ebene 1'%3E%3Cg id='Gruppe_4098' data-name='Gruppe 4098'%3E%3Cpath id='Pfad_605' data-name='Pfad 605' d='M24,46.58,1.5,24,24,1.5' fill='none' stroke='%2300DBFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  left: 0;
}
.projekte-widget .swiper-button-prev:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25.54 48.08'%3E%3Cg id='Ebene_2' data-name='Ebene 2'%3E%3Cg id='Ebene_1-2' data-name='Ebene 1'%3E%3Cg id='Gruppe_4098' data-name='Gruppe 4098'%3E%3Cpath id='Pfad_605' data-name='Pfad 605' d='M24,46.58,1.5,24,24,1.5' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.projekte-widget .swiper-button-disabled {
  opacity: 0;
}

.anfrage-auswahl-widget table td input {
  width: 70px;
}
.anfrage-auswahl-widget table td img {
  width: 50px !important;
  height: 50px !important;
  -o-object-fit: contain;
     object-fit: contain;
}
.anfrage-auswahl-widget .custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #01DBFF;
  background-color: #01DBFF;
}

.stimmenfang-widget {
  --border-width: 3px;
  border-radius: 2px;
  padding: 1rem;
  overflow: hidden;
  position: relative;
  width: 60%;
  margin: 0 auto;
}
.stimmenfang-widget::after {
  position: absolute;
  content: "";
  top: calc(-1 * var(--border-width));
  left: calc(-1 * var(--border-width));
  z-index: -1;
  width: calc(100% + var(--border-width) * 2);
  height: calc(100% + var(--border-width) * 2);
  background: linear-gradient(60deg, hsl(224, 85%, 66%), hsl(269, 85%, 66%), hsl(314, 85%, 66%), hsl(359, 85%, 66%), hsl(44, 85%, 66%), hsl(89, 85%, 66%), hsl(134, 85%, 66%), hsl(179, 85%, 66%));
  background-size: 300% 300%;
  background-position: 0 50%;
  border-radius: calc(2 * var(--border-width));
  -webkit-animation: moveGradient 4s alternate infinite;
          animation: moveGradient 4s alternate infinite;
}
@-webkit-keyframes moveGradient {
  50% {
    background-position: 100% 50%;
  }
}
@keyframes moveGradient {
  50% {
    background-position: 100% 50%;
  }
}
@media (min-width: 568px) {
  .stimmenfang-widget {
    padding: 2rem;
  }
}
@media (min-width: 667px) {
  .stimmenfang-widget {
    padding: 3rem;
  }
}
@media (min-width: 1100px) {
  .stimmenfang-widget {
    padding: 4rem;
  }
}
.stimmenfang-widget__heading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.stimmenfang-widget__heading svg {
  width: 32px;
  height: auto;
}
@media (min-width: 667px) {
  .stimmenfang-widget__heading svg {
    width: 48px;
  }
}
@media (min-width: 1100px) {
  .stimmenfang-widget__heading svg {
    width: 67px;
  }
}
.stimmenfang-widget .swiper-wrapper {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.stimmenfang-widget__text {
  text-align: center;
  margin-bottom: 1rem;
}
.stimmenfang-widget__name {
  margin-right: 2rem;
}
.stimmenfang-widget__project a {
  color: #fff;
}

.laser-animation-widget {
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.laser-animation-widget canvas {
  width: 100%;
  height: auto;
}
.laser-animation-widget__title {
  text-transform: uppercase;
}
.laser-animation-widget__content {
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .laser-animation-widget__content {
    margin-top: 0;
  }
}
.laser-animation-widget__title, .laser-animation-widget__text, .laser-animation-widget__icon-list li {
  opacity: 0;
}
.laser-animation-widget .icon-list__icon svg {
  width: 90px !important;
  height: 80px !important;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (min-width: 568px) {
  .laser-animation-widget .icon-list__icon svg {
    width: 100px !important;
    height: 90px !important;
  }
}
@media (min-width: 992px) {
  .laser-animation-widget .icon-list__icon svg {
    width: 120px !important;
    height: 120px !important;
  }
}

.zubehoer-widget .swiper-button-next,
.zubehoer-widget .swiper-button-prev {
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: contain;
  -webkit-transition: opacity 0.25s ease-in-out, background-image 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out, background-image 0.25s ease-in-out;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.zubehoer-widget .swiper-button-next {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25.54 48.08'%3E%3Cg id='Ebene_2' data-name='Ebene 2'%3E%3Cg id='Ebene_1-2' data-name='Ebene 1'%3E%3Cg id='Gruppe_4098' data-name='Gruppe 4098'%3E%3Cpath id='Pfad_605' data-name='Pfad 605' d='M1.5,1.5,24,24,1.5,46.58' fill='none' stroke='%2300DBFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.zubehoer-widget .swiper-button-next:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25.54 48.08'%3E%3Cg id='Ebene_2' data-name='Ebene 2'%3E%3Cg id='Ebene_1-2' data-name='Ebene 1'%3E%3Cg id='Gruppe_4098' data-name='Gruppe 4098'%3E%3Cpath id='Pfad_605' data-name='Pfad 605' d='M1.5,1.5,24,24,1.5,46.58' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.zubehoer-widget .swiper-button-prev {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25.54 48.08'%3E%3Cg id='Ebene_2' data-name='Ebene 2'%3E%3Cg id='Ebene_1-2' data-name='Ebene 1'%3E%3Cg id='Gruppe_4098' data-name='Gruppe 4098'%3E%3Cpath id='Pfad_605' data-name='Pfad 605' d='M24,46.58,1.5,24,24,1.5' fill='none' stroke='%2300DBFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.zubehoer-widget .swiper-button-prev:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25.54 48.08'%3E%3Cg id='Ebene_2' data-name='Ebene 2'%3E%3Cg id='Ebene_1-2' data-name='Ebene 1'%3E%3Cg id='Gruppe_4098' data-name='Gruppe 4098'%3E%3Cpath id='Pfad_605' data-name='Pfad 605' d='M24,46.58,1.5,24,24,1.5' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.zubehoer-widget .swiper-button-disabled {
  opacity: 0;
}
.zubehoer-widget .listing__image-wrapper {
  background-color: transparent;
}

.projekt-box-widget__veranstaltungstyp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.projekt-box-widget__veranstaltungstyp__item {
  width: 33.33%;
  text-align: center;
}
@media (min-width: 768px) {
  .projekt-box-widget__veranstaltungstyp__item {
    width: 150px;
  }
}
.projekt-box-widget__veranstaltungstyp__icon {
  margin-top: -40px;
  width: 82px !important;
  height: 78px !important;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 768px) {
  .projekt-box-widget__veranstaltungstyp__icon {
    width: 98px !important;
    height: 94px !important;
  }
}
.projekt-box-widget__veranstaltungstyp__title {
  margin-top: 0.5rem;
  font-size: 0.7rem;
}
@media (min-width: 768px) {
  .projekt-box-widget__veranstaltungstyp__title {
    font-size: 0.8rem;
  }
}
.projekt-box-widget__produkte a {
  color: #fff !important;
}
.projekt-box-widget__produkte a:hover {
  color: #00dbff !important;
}

.news-widget__item {
  margin-bottom: 2rem;
}
.news-widget__cta {
  text-align: right;
}
.news-widget__categories div {
  color: #00DBFF;
  text-transform: uppercase;
  font-size: 1rem;
  margin-right: 1rem;
}
.news-widget__categories div:last-of-type {
  margin-right: 0;
}

.ausstattung-table-widget .table tbody td, .ausstattung-table-widget .custom-accordion-widget__content table tbody td, .custom-accordion-widget__content .ausstattung-table-widget table tbody td, .ausstattung-table-widget .custom-tabs-widget .tab-pane__content table tbody td, .custom-tabs-widget .tab-pane__content .ausstattung-table-widget table tbody td, .ausstattung-table-widget .custom-nav-pills-widget .tab-pane__content table tbody td, .custom-nav-pills-widget .tab-pane__content .ausstattung-table-widget table tbody td {
  text-align: center;
}
.ausstattung-table-widget .table thead th, .ausstattung-table-widget .custom-accordion-widget__content table thead th, .custom-accordion-widget__content .ausstattung-table-widget table thead th, .ausstattung-table-widget .custom-tabs-widget .tab-pane__content table thead th, .custom-tabs-widget .tab-pane__content .ausstattung-table-widget table thead th, .ausstattung-table-widget .custom-nav-pills-widget .tab-pane__content table thead th, .custom-nav-pills-widget .tab-pane__content .ausstattung-table-widget table thead th {
  text-align: center;
  background-color: #151B30;
}
.ausstattung-table-widget .table .small.font-campton-book, .ausstattung-table-widget .table .font-campton-book.related-posts-widget__subtitel, .ausstattung-table-widget .custom-accordion-widget__content table .small.font-campton-book, .ausstattung-table-widget .custom-accordion-widget__content table .font-campton-book.related-posts-widget__subtitel, .custom-accordion-widget__content .ausstattung-table-widget table .small.font-campton-book, .custom-accordion-widget__content .ausstattung-table-widget table .font-campton-book.related-posts-widget__subtitel, .ausstattung-table-widget .table .font-campton-book.listings-widget__summary, .ausstattung-table-widget .custom-accordion-widget__content table .font-campton-book.listings-widget__summary, .custom-accordion-widget__content .ausstattung-table-widget table .font-campton-book.listings-widget__summary, .ausstattung-table-widget .custom-tabs-widget .tab-pane__content table .small.font-campton-book, .ausstattung-table-widget .custom-tabs-widget .tab-pane__content table .font-campton-book.related-posts-widget__subtitel, .ausstattung-table-widget .custom-tabs-widget .tab-pane__content table .font-campton-book.listings-widget__summary, .custom-tabs-widget .tab-pane__content .ausstattung-table-widget table .small.font-campton-book, .custom-tabs-widget .tab-pane__content .ausstattung-table-widget table .font-campton-book.related-posts-widget__subtitel, .custom-tabs-widget .tab-pane__content .ausstattung-table-widget table .font-campton-book.listings-widget__summary, .ausstattung-table-widget .custom-nav-pills-widget .tab-pane__content table .small.font-campton-book, .ausstattung-table-widget .custom-nav-pills-widget .tab-pane__content table .font-campton-book.related-posts-widget__subtitel, .ausstattung-table-widget .custom-nav-pills-widget .tab-pane__content table .font-campton-book.listings-widget__summary, .custom-nav-pills-widget .tab-pane__content .ausstattung-table-widget table .small.font-campton-book, .custom-nav-pills-widget .tab-pane__content .ausstattung-table-widget table .font-campton-book.related-posts-widget__subtitel, .custom-nav-pills-widget .tab-pane__content .ausstattung-table-widget table .font-campton-book.listings-widget__summary, .ausstattung-table-widget .table .font-campton-book.listing__summary, .ausstattung-table-widget .custom-accordion-widget__content table .font-campton-book.listing__summary, .custom-accordion-widget__content .ausstattung-table-widget table .font-campton-book.listing__summary, .ausstattung-table-widget .custom-tabs-widget .tab-pane__content table .font-campton-book.listing__summary, .custom-tabs-widget .tab-pane__content .ausstattung-table-widget table .font-campton-book.listing__summary, .ausstattung-table-widget .custom-nav-pills-widget .tab-pane__content table .font-campton-book.listing__summary, .custom-nav-pills-widget .tab-pane__content .ausstattung-table-widget table .font-campton-book.listing__summary, .ausstattung-table-widget .table .small th.small, .ausstattung-table-widget .table .related-posts-widget__subtitel th.small, .ausstattung-table-widget .table .small th.related-posts-widget__subtitel, .ausstattung-table-widget .table .related-posts-widget__subtitel th.related-posts-widget__subtitel, .ausstattung-table-widget .custom-accordion-widget__content table .small th.small, .ausstattung-table-widget .custom-accordion-widget__content table .related-posts-widget__subtitel th.small, .ausstattung-table-widget .custom-accordion-widget__content table .small th.related-posts-widget__subtitel, .ausstattung-table-widget .custom-accordion-widget__content table .related-posts-widget__subtitel th.related-posts-widget__subtitel, .custom-accordion-widget__content .ausstattung-table-widget table .small th.small, .custom-accordion-widget__content .ausstattung-table-widget table .related-posts-widget__subtitel th.small, .custom-accordion-widget__content .ausstattung-table-widget table .small th.related-posts-widget__subtitel, .custom-accordion-widget__content .ausstattung-table-widget table .related-posts-widget__subtitel th.related-posts-widget__subtitel, .ausstattung-table-widget .table .listings-widget__summary th.small, .ausstattung-table-widget .table .listings-widget__summary th.related-posts-widget__subtitel, .ausstattung-table-widget .custom-accordion-widget__content table .listings-widget__summary th.small, .ausstattung-table-widget .custom-accordion-widget__content table .listings-widget__summary th.related-posts-widget__subtitel, .custom-accordion-widget__content .ausstattung-table-widget table .listings-widget__summary th.small, .custom-accordion-widget__content .ausstattung-table-widget table .listings-widget__summary th.related-posts-widget__subtitel, .ausstattung-table-widget .table .small th.listings-widget__summary, .ausstattung-table-widget .table .related-posts-widget__subtitel th.listings-widget__summary, .ausstattung-table-widget .custom-accordion-widget__content table .small th.listings-widget__summary, .ausstattung-table-widget .custom-accordion-widget__content table .related-posts-widget__subtitel th.listings-widget__summary, .custom-accordion-widget__content .ausstattung-table-widget table .small th.listings-widget__summary, .custom-accordion-widget__content .ausstattung-table-widget table .related-posts-widget__subtitel th.listings-widget__summary, .ausstattung-table-widget .table .listings-widget__summary th.listings-widget__summary, .ausstattung-table-widget .custom-accordion-widget__content table .listings-widget__summary th.listings-widget__summary, .custom-accordion-widget__content .ausstattung-table-widget table .listings-widget__summary th.listings-widget__summary, .ausstattung-table-widget .custom-tabs-widget .tab-pane__content table .small th.small, .ausstattung-table-widget .custom-tabs-widget .tab-pane__content table .related-posts-widget__subtitel th.small, .ausstattung-table-widget .custom-tabs-widget .tab-pane__content table .small th.related-posts-widget__subtitel, .ausstattung-table-widget .custom-tabs-widget .tab-pane__content table .related-posts-widget__subtitel th.related-posts-widget__subtitel, .ausstattung-table-widget .custom-tabs-widget .tab-pane__content table .listings-widget__summary th.small, .ausstattung-table-widget .custom-tabs-widget .tab-pane__content table .listings-widget__summary th.related-posts-widget__subtitel, .ausstattung-table-widget .custom-tabs-widget .tab-pane__content table .small th.listings-widget__summary, .ausstattung-table-widget .custom-tabs-widget .tab-pane__content table .related-posts-widget__subtitel th.listings-widget__summary, .ausstattung-table-widget .custom-tabs-widget .tab-pane__content table .listings-widget__summary th.listings-widget__summary, .custom-tabs-widget .tab-pane__content .ausstattung-table-widget table .small th.small, .custom-tabs-widget .tab-pane__content .ausstattung-table-widget table .related-posts-widget__subtitel th.small, .custom-tabs-widget .tab-pane__content .ausstattung-table-widget table .small th.related-posts-widget__subtitel, .custom-tabs-widget .tab-pane__content .ausstattung-table-widget table .related-posts-widget__subtitel th.related-posts-widget__subtitel, .custom-tabs-widget .tab-pane__content .ausstattung-table-widget table .listings-widget__summary th.small, .custom-tabs-widget .tab-pane__content .ausstattung-table-widget table .listings-widget__summary th.related-posts-widget__subtitel, .custom-tabs-widget .tab-pane__content .ausstattung-table-widget table .small th.listings-widget__summary, .custom-tabs-widget .tab-pane__content .ausstattung-table-widget table .related-posts-widget__subtitel th.listings-widget__summary, .custom-tabs-widget .tab-pane__content .ausstattung-table-widget table .listings-widget__summary th.listings-widget__summary, .ausstattung-table-widget .custom-nav-pills-widget .tab-pane__content table .small th.small, .ausstattung-table-widget .custom-nav-pills-widget .tab-pane__content table .related-posts-widget__subtitel th.small, .ausstattung-table-widget .custom-nav-pills-widget .tab-pane__content table .small th.related-posts-widget__subtitel, .ausstattung-table-widget .custom-nav-pills-widget .tab-pane__content table .related-posts-widget__subtitel th.related-posts-widget__subtitel, .ausstattung-table-widget .custom-nav-pills-widget .tab-pane__content table .listings-widget__summary th.small, .ausstattung-table-widget .custom-nav-pills-widget .tab-pane__content table .listings-widget__summary th.related-posts-widget__subtitel, .ausstattung-table-widget .custom-nav-pills-widget .tab-pane__content table .small th.listings-widget__summary, .ausstattung-table-widget .custom-nav-pills-widget .tab-pane__content table .related-posts-widget__subtitel th.listings-widget__summary, .ausstattung-table-widget .custom-nav-pills-widget .tab-pane__content table .listings-widget__summary th.listings-widget__summary, .custom-nav-pills-widget .tab-pane__content .ausstattung-table-widget table .small th.small, .custom-nav-pills-widget .tab-pane__content .ausstattung-table-widget table .related-posts-widget__subtitel th.small, .custom-nav-pills-widget .tab-pane__content .ausstattung-table-widget table .small th.related-posts-widget__subtitel, .custom-nav-pills-widget .tab-pane__content .ausstattung-table-widget table .related-posts-widget__subtitel th.related-posts-widget__subtitel, .custom-nav-pills-widget .tab-pane__content .ausstattung-table-widget table .listings-widget__summary th.small, .custom-nav-pills-widget .tab-pane__content .ausstattung-table-widget table .listings-widget__summary th.related-posts-widget__subtitel, .custom-nav-pills-widget .tab-pane__content .ausstattung-table-widget table .small th.listings-widget__summary, .custom-nav-pills-widget .tab-pane__content .ausstattung-table-widget table .related-posts-widget__subtitel th.listings-widget__summary, .custom-nav-pills-widget .tab-pane__content .ausstattung-table-widget table .listings-widget__summary th.listings-widget__summary, .ausstattung-table-widget .table .small th.listing__summary, .ausstattung-table-widget .table .related-posts-widget__subtitel th.listing__summary, .ausstattung-table-widget .custom-accordion-widget__content table .small th.listing__summary, .ausstattung-table-widget .custom-accordion-widget__content table .related-posts-widget__subtitel th.listing__summary, .custom-accordion-widget__content .ausstattung-table-widget table .small th.listing__summary, .custom-accordion-widget__content .ausstattung-table-widget table .related-posts-widget__subtitel th.listing__summary, .ausstattung-table-widget .table .listings-widget__summary th.listing__summary, .ausstattung-table-widget .custom-accordion-widget__content table .listings-widget__summary th.listing__summary, .custom-accordion-widget__content .ausstattung-table-widget table .listings-widget__summary th.listing__summary, .ausstattung-table-widget .custom-tabs-widget .tab-pane__content table .small th.listing__summary, .ausstattung-table-widget .custom-tabs-widget .tab-pane__content table .related-posts-widget__subtitel th.listing__summary, .ausstattung-table-widget .custom-tabs-widget .tab-pane__content table .listings-widget__summary th.listing__summary, .custom-tabs-widget .tab-pane__content .ausstattung-table-widget table .small th.listing__summary, .custom-tabs-widget .tab-pane__content .ausstattung-table-widget table .related-posts-widget__subtitel th.listing__summary, .custom-tabs-widget .tab-pane__content .ausstattung-table-widget table .listings-widget__summary th.listing__summary, .ausstattung-table-widget .custom-nav-pills-widget .tab-pane__content table .small th.listing__summary, .ausstattung-table-widget .custom-nav-pills-widget .tab-pane__content table .related-posts-widget__subtitel th.listing__summary, .ausstattung-table-widget .custom-nav-pills-widget .tab-pane__content table .listings-widget__summary th.listing__summary, .custom-nav-pills-widget .tab-pane__content .ausstattung-table-widget table .small th.listing__summary, .custom-nav-pills-widget .tab-pane__content .ausstattung-table-widget table .related-posts-widget__subtitel th.listing__summary, .custom-nav-pills-widget .tab-pane__content .ausstattung-table-widget table .listings-widget__summary th.listing__summary, .ausstattung-table-widget .table .listing__summary th.small, .ausstattung-table-widget .table .listing__summary th.related-posts-widget__subtitel, .ausstattung-table-widget .custom-accordion-widget__content table .listing__summary th.small, .ausstattung-table-widget .custom-accordion-widget__content table .listing__summary th.related-posts-widget__subtitel, .custom-accordion-widget__content .ausstattung-table-widget table .listing__summary th.small, .custom-accordion-widget__content .ausstattung-table-widget table .listing__summary th.related-posts-widget__subtitel, .ausstattung-table-widget .table .listing__summary th.listings-widget__summary, .ausstattung-table-widget .custom-accordion-widget__content table .listing__summary th.listings-widget__summary, .custom-accordion-widget__content .ausstattung-table-widget table .listing__summary th.listings-widget__summary, .ausstattung-table-widget .custom-tabs-widget .tab-pane__content table .listing__summary th.small, .ausstattung-table-widget .custom-tabs-widget .tab-pane__content table .listing__summary th.related-posts-widget__subtitel, .ausstattung-table-widget .custom-tabs-widget .tab-pane__content table .listing__summary th.listings-widget__summary, .custom-tabs-widget .tab-pane__content .ausstattung-table-widget table .listing__summary th.small, .custom-tabs-widget .tab-pane__content .ausstattung-table-widget table .listing__summary th.related-posts-widget__subtitel, .custom-tabs-widget .tab-pane__content .ausstattung-table-widget table .listing__summary th.listings-widget__summary, .ausstattung-table-widget .custom-nav-pills-widget .tab-pane__content table .listing__summary th.small, .ausstattung-table-widget .custom-nav-pills-widget .tab-pane__content table .listing__summary th.related-posts-widget__subtitel, .ausstattung-table-widget .custom-nav-pills-widget .tab-pane__content table .listing__summary th.listings-widget__summary, .custom-nav-pills-widget .tab-pane__content .ausstattung-table-widget table .listing__summary th.small, .custom-nav-pills-widget .tab-pane__content .ausstattung-table-widget table .listing__summary th.related-posts-widget__subtitel, .custom-nav-pills-widget .tab-pane__content .ausstattung-table-widget table .listing__summary th.listings-widget__summary, .ausstattung-table-widget .table .listing__summary th.listing__summary, .ausstattung-table-widget .custom-accordion-widget__content table .listing__summary th.listing__summary, .custom-accordion-widget__content .ausstattung-table-widget table .listing__summary th.listing__summary, .ausstattung-table-widget .custom-tabs-widget .tab-pane__content table .listing__summary th.listing__summary, .custom-tabs-widget .tab-pane__content .ausstattung-table-widget table .listing__summary th.listing__summary, .ausstattung-table-widget .custom-nav-pills-widget .tab-pane__content table .listing__summary th.listing__summary, .custom-nav-pills-widget .tab-pane__content .ausstattung-table-widget table .listing__summary th.listing__summary {
  font-family: "Campton-Book" !important;
}
.ausstattung-table-widget .table .small, .ausstattung-table-widget .table .related-posts-widget__subtitel, .ausstattung-table-widget .custom-accordion-widget__content table .small, .ausstattung-table-widget .custom-accordion-widget__content table .related-posts-widget__subtitel, .custom-accordion-widget__content .ausstattung-table-widget table .small, .custom-accordion-widget__content .ausstattung-table-widget table .related-posts-widget__subtitel, .ausstattung-table-widget .table .listings-widget__summary, .ausstattung-table-widget .custom-accordion-widget__content table .listings-widget__summary, .custom-accordion-widget__content .ausstattung-table-widget table .listings-widget__summary, .ausstattung-table-widget .custom-tabs-widget .tab-pane__content table .small, .ausstattung-table-widget .custom-tabs-widget .tab-pane__content table .related-posts-widget__subtitel, .ausstattung-table-widget .custom-tabs-widget .tab-pane__content table .listings-widget__summary, .custom-tabs-widget .tab-pane__content .ausstattung-table-widget table .small, .custom-tabs-widget .tab-pane__content .ausstattung-table-widget table .related-posts-widget__subtitel, .custom-tabs-widget .tab-pane__content .ausstattung-table-widget table .listings-widget__summary, .ausstattung-table-widget .custom-nav-pills-widget .tab-pane__content table .small, .ausstattung-table-widget .custom-nav-pills-widget .tab-pane__content table .related-posts-widget__subtitel, .ausstattung-table-widget .custom-nav-pills-widget .tab-pane__content table .listings-widget__summary, .custom-nav-pills-widget .tab-pane__content .ausstattung-table-widget table .small, .custom-nav-pills-widget .tab-pane__content .ausstattung-table-widget table .related-posts-widget__subtitel, .custom-nav-pills-widget .tab-pane__content .ausstattung-table-widget table .listings-widget__summary, .ausstattung-table-widget .table .listing__summary, .ausstattung-table-widget .custom-accordion-widget__content table .listing__summary, .custom-accordion-widget__content .ausstattung-table-widget table .listing__summary, .ausstattung-table-widget .custom-tabs-widget .tab-pane__content table .listing__summary, .custom-tabs-widget .tab-pane__content .ausstattung-table-widget table .listing__summary, .ausstattung-table-widget .custom-nav-pills-widget .tab-pane__content table .listing__summary, .custom-nav-pills-widget .tab-pane__content .ausstattung-table-widget table .listing__summary {
  font-size: 0.75rem;
}

.device-video-widget {
  position: relative;
}
.device-video-widget__image-wrapper {
  width: 100%;
  height: auto;
  display: block;
}
.device-video-widget__video-wrapper {
  position: absolute;
  top: 8.1%;
  left: 13.3%;
  width: 73.5%;
  height: 80%;
}
.device-video-widget__video {
  width: 100%;
  height: 100%;
}

.news-single-widget__title {
  color: #00DBFF;
}
.news-single-widget__categories div {
  color: #fff;
  text-transform: uppercase;
  font-size: 1.25rem;
  margin-right: 1.5rem;
}
.news-single-widget__categories div:last-of-type {
  margin-right: 0;
}

.elementor-post-navigation__prev a:hover:before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8.48 14.95'%3E%3Cpath d='M8.18,13.25,2.41,7.48,8.18,1.71a1,1,0,0,0,0-1.42,1,1,0,0,0-1.41,0L.29,6.77a1,1,0,0,0,0,1.41l6.48,6.48a1,1,0,0,0,1.41-1.41Z' fill='%23fff' /%3E%3C/svg%3E");
}
.elementor-post-navigation__prev a:before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8.48 14.95'%3E%3Cpath d='M8.18,13.25,2.41,7.48,8.18,1.71a1,1,0,0,0,0-1.42,1,1,0,0,0-1.41,0L.29,6.77a1,1,0,0,0,0,1.41l6.48,6.48a1,1,0,0,0,1.41-1.41Z' fill='%2377ccef' /%3E%3C/svg%3E");
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: contain;
  width: 20px;
  height: 11px;
  -webkit-transition: background-image 0.25s ease-in-out;
  transition: background-image 0.25s ease-in-out;
}
.elementor-post-navigation__next {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.elementor-post-navigation__next a:hover:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8.48 14.95'%3E%3Cpath d='M.29,13.25,6.06,7.48.29,1.71A1,1,0,0,1,1.71.29L8.18,6.77a1,1,0,0,1,0,1.41L1.71,14.66a1,1,0,0,1-1.42,0,1,1,0,0,1,0-1.41Z' fill='%23fff' /%3E%3C/svg%3E");
}
.elementor-post-navigation__next a:after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8.48 14.95'%3E%3Cpath d='M.29,13.25,6.06,7.48.29,1.71A1,1,0,0,1,1.71.29L8.18,6.77a1,1,0,0,1,0,1.41L1.71,14.66a1,1,0,0,1-1.42,0,1,1,0,0,1,0-1.41Z' fill='%2377ccef' /%3E%3C/svg%3E");
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: contain;
  width: 20px;
  height: 11px;
  -webkit-transition: background-image 0.25s ease-in-out;
  transition: background-image 0.25s ease-in-out;
}
.elementor-post-navigation__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.elementor-post-navigation__link a {
  color: #00DBFF;
  -webkit-transition: color 0.25s ease-in-out;
  transition: color 0.25s ease-in-out;
}
.elementor-post-navigation__link a:hover {
  color: #fff;
  text-decoration: none;
}

.hersteller-map-widget__wrapper {
  height: 80vh;
}
.hersteller-map-widget__wrapper #map {
  height: 100%;
}
.hersteller-map-widget .gm-style {
  font-size: 1rem;
  text-decoration: none;
  color: #fff;
}
.hersteller-map-widget .custom-marker {
  display: block;
  text-align: center;
  -webkit-transform: translateX(-50%) translateY(-100%);
      -ms-transform: translateX(-50%) translateY(-100%);
          transform: translateX(-50%) translateY(-100%);
  cursor: pointer;
}
.hersteller-map-widget .custom-marker__title {
  max-width: 200px;
  text-align: center;
}
.hersteller-map-widget .custom-marker__card {
  border: 0;
  background-color: transparent;
}
.hersteller-map-widget .custom-marker__card .card-header {
  background-color: transparent;
  border: 0;
  padding: 0;
  margin-bottom: 0.5rem;
}
.hersteller-map-widget .custom-marker__card .card-body {
  background-color: transparent;
  border: 0;
  padding: 0;
}

.ausstattung-icons-widget__item {
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.ausstattung-icons-widget__icon {
  width: 52px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.ausstattung-icons-widget__icon img {
  max-width: 100%;
}
.ausstattung-icons-widget__body {
  font-size: 0.9rem;
}

.custom-nav-pills-widget__right, .custom-nav-pills-widget__left {
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .custom-nav-pills-widget__right, .custom-nav-pills-widget__left {
    margin-top: 0;
  }
}
.custom-nav-pills-widget .nav-pills {
  margin-bottom: 2rem;
}
.custom-nav-pills-widget .nav-pills .nav-item {
  background-color: #151B30;
  border-radius: 2px;
  color: #00DBFF;
  font-size: 1.375rem;
  border: 2px solid transparent;
  margin-right: 3rem;
  margin-bottom: 1rem;
  padding: 0.25rem 1rem;
  -webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.25s ease-in-out;
  transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.25s ease-in-out;
  transition: box-shadow 0.25s ease-in-out, border-color 0.25s ease-in-out;
  transition: box-shadow 0.25s ease-in-out, border-color 0.25s ease-in-out, -webkit-box-shadow 0.25s ease-in-out;
}
.custom-nav-pills-widget .nav-pills .nav-item:last-of-type {
  margin-right: 0;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .custom-nav-pills-widget .nav-pills .nav-item {
    margin-bottom: 0;
  }
}
.custom-nav-pills-widget .nav-pills .nav-item:not(.active):hover {
  -webkit-box-shadow: 0 0 7px #01dbff;
          box-shadow: 0 0 7px #01dbff;
}
.custom-nav-pills-widget .nav-pills .nav-item.active {
  border-color: #01DBFF;
  background-color: transparent;
  -webkit-box-shadow: 0 0 7px #01dbff, inset 0 0 7px #01dbff;
          box-shadow: 0 0 7px #01dbff, inset 0 0 7px #01dbff;
}
.custom-nav-pills-widget .tab-pane__content {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2rem 0;
}
@media (min-width: 768px) {
  .custom-nav-pills-widget .tab-pane__content {
    padding: 4rem 0;
  }
}
.custom-nav-pills-widget .tab-pane img {
  display: block;
  width: 100%;
}
@media (min-width: 1100px) {
  .custom-nav-pills-widget .tab-pane img {
    width: 90%;
  }
}

.mitarbeiter-widget {
  cursor: help;
}
.mitarbeiter-widget:hover .mitarbeiter-widget__overlay {
  background-color: rgba(21, 27, 48, 0.9);
}
.mitarbeiter-widget:hover .mitarbeiter-widget__text {
  opacity: 1;
}
.mitarbeiter-widget__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(21, 27, 48, 0.1);
  -webkit-transition: background-color 0.25s ease-in-out;
  transition: background-color 0.25s ease-in-out;
}
.mitarbeiter-widget__text {
  font-size: 1rem;
  opacity: 0;
  padding: 0.5rem;
  text-align: center;
  -webkit-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
}
@media (min-width: 768px) {
  .mitarbeiter-widget__text {
    font-size: 1.2rem;
  }
}
@media (min-width: 992px) {
  .mitarbeiter-widget__text {
    font-size: 1.25rem;
  }
}
.mitarbeiter-widget__name {
  position: absolute;
  bottom: 20%;
  left: 0;
  width: 100%;
  font-size: 1.25rem;
  text-align: center;
  padding: 0.5rem;
}
@media (min-width: 768px) {
  .mitarbeiter-widget__name {
    font-size: 1.1rem;
    bottom: 10%;
  }
}
@media (min-width: 992px) {
  .mitarbeiter-widget__name {
    font-size: 1.375rem;
    bottom: 20%;
  }
}
.mitarbeiter-widget__image-wrapper {
  background-color: #151b2f;
}

.product-gallery-widget {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}
.product-gallery-widget .swiper {
  width: 100%;
  height: 100%;
}
.product-gallery-widget .swiper-slide {
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.product-gallery-widget .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-gallery-widget .swiper {
  width: 100%;
  height: 300px;
  margin-left: auto;
  margin-right: auto;
}
.product-gallery-widget .swiper-slide {
  background-size: cover;
  background-position: center;
}
.product-gallery-widget .mySwiper2 {
  height: 80%;
  width: 100%;
}
.product-gallery-widget .mySwiper {
  height: 20%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 0;
}
.product-gallery-widget .mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
}
.product-gallery-widget .mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}
.product-gallery-widget .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-gallery-widget .swiper-button-next,
.product-gallery-widget .swiper-button-prev {
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: contain;
  -webkit-transition: opacity 0.25s ease-in-out, background-image 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out, background-image 0.25s ease-in-out;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  width: 40px;
  height: 50px;
  position: absolute;
  z-index: 99;
  cursor: pointer;
}
.product-gallery-widget .swiper-button-next {
  right: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25.54 48.08'%3E%3Cg id='Ebene_2' data-name='Ebene 2'%3E%3Cg id='Ebene_1-2' data-name='Ebene 1'%3E%3Cg id='Gruppe_4098' data-name='Gruppe 4098'%3E%3Cpath id='Pfad_605' data-name='Pfad 605' d='M1.5,1.5,24,24,1.5,46.58' fill='none' stroke='%2300DBFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.product-gallery-widget .swiper-button-next:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25.54 48.08'%3E%3Cg id='Ebene_2' data-name='Ebene 2'%3E%3Cg id='Ebene_1-2' data-name='Ebene 1'%3E%3Cg id='Gruppe_4098' data-name='Gruppe 4098'%3E%3Cpath id='Pfad_605' data-name='Pfad 605' d='M1.5,1.5,24,24,1.5,46.58' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.product-gallery-widget .swiper-button-prev {
  left: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25.54 48.08'%3E%3Cg id='Ebene_2' data-name='Ebene 2'%3E%3Cg id='Ebene_1-2' data-name='Ebene 1'%3E%3Cg id='Gruppe_4098' data-name='Gruppe 4098'%3E%3Cpath id='Pfad_605' data-name='Pfad 605' d='M24,46.58,1.5,24,24,1.5' fill='none' stroke='%2300DBFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.product-gallery-widget .swiper-button-prev:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25.54 48.08'%3E%3Cg id='Ebene_2' data-name='Ebene 2'%3E%3Cg id='Ebene_1-2' data-name='Ebene 1'%3E%3Cg id='Gruppe_4098' data-name='Gruppe 4098'%3E%3Cpath id='Pfad_605' data-name='Pfad 605' d='M24,46.58,1.5,24,24,1.5' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.product-gallery-widget .swiper-button-disabled {
  opacity: 0;
  pointer-events: none !important;
}
.product-gallery-widget__main-slider a {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}
.product-gallery-widget__thumbnail-slider .swiper-slide {
  background-color: #151B30;
  border-bottom: 2px solid transparent;
  opacity: 1;
}
.product-gallery-widget__thumbnail-slider .swiper-slide.swiper-slide-thumb-active {
  border-color: #5EB3C7;
}
.product-gallery-widget__thumbnail-slider .swiper-button-next {
  position: absolute;
  top: 0 !important;
  width: 100px !important;
  right: 0px !important;
  margin: 0px !important;
  height: 100%;
  -webkit-transform: none !important;
      -ms-transform: none !important;
          transform: none !important;
  background: rgb(16, 17, 31);
  background: -webkit-gradient(linear, left top, right top, from(rgba(16, 17, 31, 0)), to(rgb(16, 17, 31))) !important;
  background: linear-gradient(90deg, rgba(16, 17, 31, 0) 0%, rgb(16, 17, 31) 100%) !important;
  z-index: 99;
}
.product-gallery-widget__thumbnail-slider .swiper-button-prev {
  position: absolute;
  top: 0 !important;
  width: 100px !important;
  left: 0 !important;
  margin: 0px !important;
  height: 100%;
  -webkit-transform: none !important;
      -ms-transform: none !important;
          transform: none !important;
  background: rgb(16, 17, 31);
  background: -webkit-gradient(linear, right top, left top, from(rgba(16, 17, 31, 0)), to(rgb(16, 17, 31))) !important;
  background: linear-gradient(270deg, rgba(16, 17, 31, 0) 0%, rgb(16, 17, 31) 100%) !important;
  z-index: 98;
}

.pswp__img {
  -o-object-fit: contain !important;
     object-fit: contain !important;
}

.kundenstimmen-widget {
  border: 4px solid #01DBFF;
  border-radius: 2px;
  -webkit-transition: -webkit-box-shadow 0.25s ease-in-out;
  transition: -webkit-box-shadow 0.25s ease-in-out;
  transition: box-shadow 0.25s ease-in-out;
  transition: box-shadow 0.25s ease-in-out, -webkit-box-shadow 0.25s ease-in-out;
}
.kundenstimmen-widget.is--in-viewport {
  -webkit-box-shadow: 0 0 7px #01dbff, inset 0 0 7px #01dbff;
          box-shadow: 0 0 7px #01dbff, inset 0 0 7px #01dbff;
}
.kundenstimmen-widget .swiper-wrapper {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.kundenstimmen-widget .swiper-slide {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='77.262' height='58.5' viewBox='0 0 77.262 58.5'%3E%3Cdefs%3E%3CclipPath id='clip-path'%3E%3Crect id='Rechteck_692' data-name='Rechteck 692' width='77.262' height='58.5' fill='%2300dbff'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg id='Gruppe_4162' data-name='Gruppe 4162' transform='translate(0 0)'%3E%3Cg id='Gruppe_4161' data-name='Gruppe 4161' transform='translate(0 0)' clip-path='url(%23clip-path)'%3E%3Cpath id='Pfad_891' data-name='Pfad 891' d='M69.524,8.826c-5.551,1.591-9.743,3.847-12.474,6.717a17.247,17.247,0,0,0-4.536,12.324V28.8a1.656,1.656,0,0,0,1.656,1.655H69.012V57.082H40.77V36.966c0-10.879,2.554-19.358,7.593-25.2,4.718-5.472,11.831-8.892,21.161-10.18Z' transform='translate(6.576 0.255)' fill='%2300dbff'/%3E%3Cpath id='Pfad_892' data-name='Pfad 892' d='M29.75,8.241C24.2,9.832,20,12.085,17.241,14.95a17.151,17.151,0,0,0-4.583,12.33v.938a1.656,1.656,0,0,0,1.656,1.656H29.242V56.5H1V36.38c0-10.874,2.554-19.353,7.593-25.2C13.309,5.71,20.422,2.291,29.75,1Z' transform='translate(0.161 0.161)' fill='%2300dbff'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: no-repeat no-repeat;
  background-position: 10px 10px;
  background-size: 35px;
  padding: 30px 56px;
}
@media (min-width: 768px) {
  .kundenstimmen-widget .swiper-slide {
    background-position: 30px 20px;
    background-size: 57px;
    padding: 30px 110px;
  }
}
@media (min-width: 1100px) {
  .kundenstimmen-widget .swiper-slide {
    background-position: 60px 20px;
    background-size: 77px;
    padding: 30px 170px;
  }
}
.kundenstimmen-widget__name {
  margin-right: 2rem;
}
.kundenstimmen-widget__project a {
  color: #fff;
}
.kundenstimmen-widget .swiper-button-next,
.kundenstimmen-widget .swiper-button-prev {
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: contain;
  -webkit-transition: opacity 0.25s ease-in-out, background-image 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out, background-image 0.25s ease-in-out;
}
.kundenstimmen-widget .swiper-button-next {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25.54 48.08'%3E%3Cg id='Ebene_2' data-name='Ebene 2'%3E%3Cg id='Ebene_1-2' data-name='Ebene 1'%3E%3Cg id='Gruppe_4098' data-name='Gruppe 4098'%3E%3Cpath id='Pfad_605' data-name='Pfad 605' d='M1.5,1.5,24,24,1.5,46.58' fill='none' stroke='%2300DBFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.kundenstimmen-widget .swiper-button-next:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25.54 48.08'%3E%3Cg id='Ebene_2' data-name='Ebene 2'%3E%3Cg id='Ebene_1-2' data-name='Ebene 1'%3E%3Cg id='Gruppe_4098' data-name='Gruppe 4098'%3E%3Cpath id='Pfad_605' data-name='Pfad 605' d='M1.5,1.5,24,24,1.5,46.58' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.kundenstimmen-widget .swiper-button-prev {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25.54 48.08'%3E%3Cg id='Ebene_2' data-name='Ebene 2'%3E%3Cg id='Ebene_1-2' data-name='Ebene 1'%3E%3Cg id='Gruppe_4098' data-name='Gruppe 4098'%3E%3Cpath id='Pfad_605' data-name='Pfad 605' d='M24,46.58,1.5,24,24,1.5' fill='none' stroke='%2300DBFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.kundenstimmen-widget .swiper-button-prev:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25.54 48.08'%3E%3Cg id='Ebene_2' data-name='Ebene 2'%3E%3Cg id='Ebene_1-2' data-name='Ebene 1'%3E%3Cg id='Gruppe_4098' data-name='Gruppe 4098'%3E%3Cpath id='Pfad_605' data-name='Pfad 605' d='M24,46.58,1.5,24,24,1.5' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.kundenstimmen-widget .swiper-button-disabled {
  opacity: 0;
}

.ilda-awards-widget .nav-pills {
  border-bottom: 4px solid #25DBFF;
  margin-bottom: 2rem;
}
.ilda-awards-widget .nav-pills .nav-item {
  background-color: transparent;
  border-radius: 0;
  margin-right: 2rem;
  color: #25DBFF;
  font-size: 1.375rem;
}
.ilda-awards-widget .nav-pills .nav-item:last-of-type {
  margin-right: 0;
}
.ilda-awards-widget__images {
  position: relative;
}
.ilda-awards-widget__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out;
}
.ilda-awards-widget__image img {
  width: 100%;
  height: auto;
  display: block;
}
.ilda-awards-widget__image.is--active {
  visibility: visible;
  opacity: 1;
}

.custom-tabs-widget nav {
  position: relative;
}
.custom-tabs-widget nav:before {
  content: none;
  position: absolute;
  top: 3px;
  z-index: 1;
  right: -1px;
  background: linear-gradient(93deg, rgba(16, 17, 31, 0) 0%, #10111f 70%, #10111f 100%);
  height: 100%;
  width: 40px;
  opacity: 1;
  pointer-events: none;
  -webkit-transition: opacity 0.75s ease-in-out;
  transition: opacity 0.75s ease-in-out;
}
@media (min-width: 768px) {
  .custom-tabs-widget nav:before {
    content: none;
  }
}
.custom-tabs-widget__left .tab-pane img {
  margin-right: auto;
}
.custom-tabs-widget__right .tab-pane img {
  margin-left: auto;
}
.custom-tabs-widget .tab-pane__content {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2rem 0;
}
@media (min-width: 768px) {
  .custom-tabs-widget .tab-pane__content {
    padding: 4rem 0;
  }
}
.custom-tabs-widget .tab-pane img {
  display: block;
  width: 100%;
}
@media (min-width: 1100px) {
  .custom-tabs-widget .tab-pane img {
    width: 90%;
  }
}
.custom-tabs-widget .nav-tabs {
  border-bottom: 0;
  position: relative;
  border: 0;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  overflow-x: auto;
  -ms-overflow-style: none; /* IE 10+*/
  overflow: -moz-scrollbars-none; /* Firefox*/
}
.custom-tabs-widget .nav-tabs::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}
@media (min-width: 768px) {
  .custom-tabs-widget .nav-tabs {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    overflow: initial;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-bottom: 3px solid #FFFFFF;
  }
}
.custom-tabs-widget .nav-tabs__indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: left 0.25s ease-in-out;
  transition: left 0.25s ease-in-out;
  height: 3px;
  background-color: #01DBFF;
  -webkit-box-shadow: 0 0 7px #01DBFF;
          box-shadow: 0 0 7px #01DBFF;
  z-index: 1;
  width: auto;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
}
.custom-tabs-widget .nav-link {
  border-radius: 0;
  border: 0;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: auto;
  -webkit-transition: color 0.5s ease-in-out, text-shadow 0.5s ease-in-out;
  transition: color 0.5s ease-in-out, text-shadow 0.5s ease-in-out;
  padding: 0.5rem 0.5rem;
  margin: 0;
  color: #fff;
}
.custom-tabs-widget .nav-link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #fff;
  -webkit-transition: background-color 0.25s ease-in-out, -webkit-box-shadow 0.25s ease-in-out;
  transition: background-color 0.25s ease-in-out, -webkit-box-shadow 0.25s ease-in-out;
  transition: background-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
  transition: background-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out, -webkit-box-shadow 0.25s ease-in-out;
}
@media (min-width: 768px) {
  .custom-tabs-widget .nav-link {
    font-size: 1.375rem;
    padding: 0.5rem 1rem;
    width: auto;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    border-bottom: none;
  }
  .custom-tabs-widget .nav-link:after {
    content: none;
  }
}
.custom-tabs-widget .nav-link.active {
  color: #01DBFF;
  text-shadow: 0 0 7px #01DBFF;
}
.custom-tabs-widget .nav-link.active:after {
  background-color: #01DBFF;
  -webkit-box-shadow: 0 0 7px #01DBFF;
          box-shadow: 0 0 7px #01DBFF;
}
.custom-tabs-widget .nav-link:focus {
  text-shadow: 0 0 7px #01DBFF;
}
.custom-tabs-widget .nav-link:focus:after {
  background-color: #01DBFF;
  -webkit-box-shadow: 0 0 7px #01DBFF;
          box-shadow: 0 0 7px #01DBFF;
}

.select2-container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle;
}

.select2-container .select2-selection--single {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}

.select2-container[dir=rtl] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
}

.select2-container .select2-selection--multiple {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline;
  list-style: none;
  padding: 0;
}

.select2-container .select2-selection--multiple .select2-selection__clear {
  background-color: transparent;
  border: none;
  font-size: 1em;
}

.select2-container .select2-search--inline .select2-search__field {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  margin-left: 5px;
  padding: 0;
  max-width: 100%;
  resize: none;
  height: 18px;
  vertical-align: bottom;
  font-family: sans-serif;
  overflow: hidden;
  word-break: keep-all;
}

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051;
}

.select2-results {
  display: block;
}

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0;
}

.select2-results__option {
  padding: 6px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}

.select2-results__option--selectable {
  cursor: pointer;
}

.select2-container--open .select2-dropdown {
  left: 0;
}

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-search--dropdown {
  display: block;
  padding: 4px;
}

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.select2-search--dropdown.select2-search--hide {
  display: none;
}

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0);
}

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
  padding-right: 0px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--default[dir=rtl] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  padding-bottom: 5px;
  padding-right: 5px;
  position: relative;
}

.select2-container--default .select2-selection--multiple.select2-selection--clearable {
  padding-right: 25px;
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  font-weight: bold;
  height: 20px;
  margin-right: 10px;
  margin-top: 5px;
  position: absolute;
  right: 0;
  padding: 1px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
  padding-left: 20px;
  position: relative;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-right: 1px solid #aaa;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #999;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
  position: absolute;
  left: 0;
  top: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover, .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:focus {
  background-color: #f1f1f1;
  color: #333;
  outline: none;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-left: 1px solid #aaa;
  border-right: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select2-container--default[dir=rtl] .select2-selection--multiple .select2-selection__clear {
  float: left;
  margin-left: 10px;
  margin-right: auto;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0;
}

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default;
}

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none;
}

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
}

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: textfield;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em;
}

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em;
}

.select2-container--default .select2-results__option--group {
  padding: 0;
}

.select2-container--default .select2-results__option--disabled {
  color: #999;
}

.select2-container--default .select2-results__option--selected {
  background-color: #ddd;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #5897fb;
  color: white;
}

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, white), to(#eeeeee));
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px;
}

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  height: 26px;
  margin-right: 20px;
}

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999;
}

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eeeeee), to(#cccccc));
  background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFCCCCCC", GradientType=0);
}

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__clear {
  float: left;
}

.select2-container--classic[dir=rtl] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto;
}

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none;
}

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(50%, #eeeeee));
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFFFFFFF", endColorstr="#FFEEEEEE", GradientType=0);
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eeeeee), to(white));
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#FFEEEEEE", endColorstr="#FFFFFFFF", GradientType=0);
}

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0;
  padding-bottom: 5px;
  padding-right: 5px;
}

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb;
}

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  display: inline-block;
  margin-left: 5px;
  margin-top: 5px;
  padding: 0;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__display {
  cursor: default;
  padding-left: 2px;
  padding-right: 5px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  background-color: transparent;
  border: none;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  color: #888;
  cursor: pointer;
  font-size: 1em;
  font-weight: bold;
  padding: 0 4px;
}

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555;
  outline: none;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__display {
  padding-left: 5px;
  padding-right: 2px;
}

.select2-container--classic[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb;
}

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0;
}

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent;
}

.select2-container--classic .select2-dropdown--above {
  border-bottom: none;
}

.select2-container--classic .select2-dropdown--below {
  border-top: none;
}

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}

.select2-container--classic .select2-results__option--group {
  padding: 0;
}

.select2-container--classic .select2-results__option--disabled {
  color: grey;
}

.select2-container--classic .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #3875d7;
  color: white;
}

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px;
}

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb;
}

.filter-widget {
  padding: 1rem 0;
  background-color: #151B30;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out;
}
.filter-widget__collapse[aria-expanded=true] .filter-widget__caret {
  -webkit-transform: scaleY(-1);
      -ms-transform: scaleY(-1);
          transform: scaleY(-1);
}
.filter-widget .container, .filter-widget .elementor .e-container, .elementor .filter-widget .e-container {
  position: relative;
}
.filter-widget__title {
  font-size: 0.875rem;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #00DBFF;
  text-transform: uppercase;
  cursor: pointer;
}
.filter-widget__title img {
  width: 28px;
  height: auto;
}
.filter-widget .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow {
  -webkit-transform: scaleY(-1);
      -ms-transform: scaleY(-1);
          transform: scaleY(-1);
}
.filter-widget .select2-selection {
  background-color: transparent;
  height: calc(1.5em + 0.25rem + 2px);
  border-top: 0;
  border-right: 0;
  border-left: 0;
  padding-left: 0;
  padding-top: 0;
  border-bottom: 2px solid #fff;
  border-radius: 0;
  color: #fff;
  font-size: 1rem;
}
.filter-widget .select2-selection .select2-selection__rendered {
  color: #fff;
  line-height: inherit;
}
.filter-widget .select2-selection .select2-selection__placeholder {
  color: #fff;
}
.filter-widget .select2-selection .select2-selection__arrow {
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11.5 6.75'%3E%3Cpath d='M9.79.29l-4,4-4-4A1,1,0,0,0,.29,1.71L5,6.46a1,1,0,0,0,1.41,0l4.76-4.75A1,1,0,1,0,9.79.29Z' fill='%23fff' /%3E%3C/svg%3E");
  background-repeat: no-repeat no-repeat;
  background-position: center right;
  background-size: 12px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 1px;
  width: 12px;
  -webkit-transition: -webkit-transform 0.1s ease-in-out;
  transition: -webkit-transform 0.1s ease-in-out;
  transition: transform 0.1s ease-in-out;
  transition: transform 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
}
.filter-widget .select2-selection .select2-selection__arrow b {
  display: none;
}
.filter-widget .custom-select {
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11.5 6.75'%3E%3Cpath d='M9.79.29l-4,4-4-4A1,1,0,0,0,.29,1.71L5,6.46a1,1,0,0,0,1.41,0l4.76-4.75A1,1,0,1,0,9.79.29Z' fill='%23fff' /%3E%3C/svg%3E");
  background-repeat: no-repeat no-repeat;
  background-position: center right;
  background-size: 1rem;
  height: calc(1.5em + 0.25rem + 2px);
  border-top: 0;
  border-right: 0;
  border-left: 0;
  padding-left: 0;
  padding-top: 0;
  border-bottom: 2px solid #fff;
  border-radius: 0;
  color: #fff;
  font-size: 1rem;
}
.filter-widget .custom-select option {
  color: black;
}
.filter-widget .custom-select:focus {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.filter-widget [data-filter-range-slider] {
  font-size: 1rem;
}

.select2-dropdown {
  background-color: #10111F;
  border: none;
  border-radius: 0;
}

.select2-container--default .select2-results__option {
  font-size: 0.9rem;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: transparent;
  color: #01dbff;
}

.select2-container--default .select2-results__option--selected {
  background-color: transparent;
}

.select2-container--default .select2-selection--single .select2-selection__clear {
  color: #00dcff;
}

.select2-container--default .select2-results > .select2-results__options {
  max-height: 100%;
  overflow-y: auto;
}

.listings-widget {
  -webkit-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
}
.listings-widget.is--loading {
  opacity: 0.5;
}
.listings-widget img {
  width: 200px;
  max-width: none;
  height: auto;
  display: block;
}
.listings-widget__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
}
.listings-widget__item:hover {
  text-decoration: none;
  opacity: 0.8;
}
.listings-widget__image-wrapper {
  margin-right: 1rem;
}
.listings-widget__title {
  color: #00DBFF;
}
.listings-widget__summary {
  color: #fff;
}

.slider {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}
.slider.slider-horizontal {
  width: 100%;
  height: 6px;
}
.slider.slider-horizontal .slider-track {
  height: 3px;
  width: 100%;
  margin-top: -1.5px;
  top: 50%;
  left: 0;
}
.slider.slider-horizontal .slider-selection,
.slider.slider-horizontal .slider-track-low,
.slider.slider-horizontal .slider-track-high {
  height: 100%;
  top: 0;
  bottom: 0;
}
.slider.slider-horizontal .slider-tick,
.slider.slider-horizontal .slider-handle {
  margin-left: -3px;
}
.slider.slider-horizontal .slider-tick.triangle,
.slider.slider-horizontal .slider-handle.triangle {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  border-width: 0 3px 3px 3px;
  width: 0;
  height: 0;
  border-bottom-color: rgb(242.25, 242.25, 242.25);
  margin-top: 0;
}
.slider.slider-horizontal .slider-tick-container {
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.slider.slider-horizontal .slider-tick-label-container {
  white-space: nowrap;
  margin-top: 6px;
}
.slider.slider-horizontal .slider-tick-label-container .slider-tick-label {
  display: inline-block;
  text-align: center;
}
.slider.slider-horizontal.slider-rtl .slider-track {
  left: initial;
  right: 0;
}
.slider.slider-horizontal.slider-rtl .slider-tick,
.slider.slider-horizontal.slider-rtl .slider-handle {
  margin-left: initial;
  margin-right: -3px;
}
.slider.slider-horizontal.slider-rtl .slider-tick-container {
  left: initial;
  right: 0;
}
.slider.slider-vertical {
  height: 210px;
  width: 6px;
}
.slider.slider-vertical .slider-track {
  width: 3px;
  height: 100%;
  left: 25%;
  top: 0;
}
.slider.slider-vertical .slider-selection {
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
}
.slider.slider-vertical .slider-track-low,
.slider.slider-vertical .slider-track-high {
  width: 100%;
  left: 0;
  right: 0;
}
.slider.slider-vertical .slider-tick,
.slider.slider-vertical .slider-handle {
  margin-top: -3px;
}
.slider.slider-vertical .slider-tick.triangle,
.slider.slider-vertical .slider-handle.triangle {
  border-width: 3px 0 3px 3px;
  width: 1px;
  height: 1px;
  border-left-color: rgb(242.25, 242.25, 242.25);
  margin-left: 0;
}
.slider.slider-vertical .slider-tick-label-container {
  white-space: nowrap;
}
.slider.slider-vertical .slider-tick-label-container .slider-tick-label {
  padding-left: 1.2px;
}
.slider.slider-vertical.slider-rtl .slider-track {
  left: initial;
  right: 25%;
}
.slider.slider-vertical.slider-rtl .slider-selection {
  left: initial;
  right: 0;
}
.slider.slider-vertical.slider-rtl .slider-tick.triangle,
.slider.slider-vertical.slider-rtl .slider-handle.triangle {
  border-width: 3px 3px 3px 0;
}
.slider.slider-vertical.slider-rtl .slider-tick-label-container .slider-tick-label {
  padding-left: initial;
  padding-right: 1.2px;
}
.slider.slider-disabled .slider-handle {
  background-color: rgb(206.5, 206.5, 206.5);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#DFDFDF), to(#BEBEBE));
  background-image: linear-gradient(to bottom, #DFDFDF, #BEBEBE);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#DFDFDF", endColorstr="#BEBEBE", GradientType=0);
}
.slider.slider-disabled .slider-track {
  background-color: #e7e7e7;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#E5E5E5), to(#E9E9E9));
  background-image: linear-gradient(to bottom, #E5E5E5, #E9E9E9);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#E5E5E5", endColorstr="#E9E9E9", GradientType=0);
  cursor: not-allowed;
}
.slider input {
  display: none;
}
.slider .tooltip-inner {
  white-space: nowrap;
  max-width: none;
}
.slider .bs-tooltip-top .tooltip-inner, .slider .bs-tooltip-auto[x-placement^=top] .tooltip-inner,
.slider .bs-tooltip-bottom .tooltip-inner,
.slider .bs-tooltip-auto[x-placement^=bottom] .tooltip-inner {
  position: relative;
  left: -50%;
}
.slider.bs-tooltip-left .tooltip-inner, .slider.bs-tooltip-auto[x-placement^=left] .tooltip-inner, .slider.bs-tooltip-right .tooltip-inner, .slider.bs-tooltip-auto[x-placement^=right] .tooltip-inner {
  position: relative;
  top: -100%;
}
.slider .tooltip {
  pointer-events: none;
}
.slider .tooltip.bs-tooltip-top .arrow, .slider .tooltip.bs-tooltip-auto[x-placement^=top] .arrow, .slider .tooltip.bs-tooltip-bottom .arrow, .slider .tooltip.bs-tooltip-auto[x-placement^=bottom] .arrow {
  left: -0.4rem;
}
.slider .tooltip.bs-tooltip-top, .slider .tooltip.bs-tooltip-auto[x-placement^=top] {
  margin-top: -44px;
}
.slider .tooltip.bs-tooltip-bottom, .slider .tooltip.bs-tooltip-auto[x-placement^=bottom] {
  margin-top: 2px;
}
.slider .tooltip.bs-tooltip-left, .slider .tooltip.bs-tooltip-auto[x-placement^=left], .slider .tooltip.bs-tooltip-right, .slider .tooltip.bs-tooltip-auto[x-placement^=right] {
  margin-top: -14px;
}
.slider .tooltip.bs-tooltip-left .arrow, .slider .tooltip.bs-tooltip-auto[x-placement^=left] .arrow, .slider .tooltip.bs-tooltip-right .arrow, .slider .tooltip.bs-tooltip-auto[x-placement^=right] .arrow {
  top: 8px;
}
.slider .hide {
  display: none;
}

.slider-track {
  background-color: #f7f7f7;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#F5F5F5), to(#F9F9F9));
  background-image: linear-gradient(to bottom, #F5F5F5, #F9F9F9);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F5F5F5", endColorstr="#F9F9F9", GradientType=0);
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  border-radius: 0px;
  position: absolute;
  cursor: pointer;
}

.slider-selection {
  background-color: #f7f7f7;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#F9F9F9), to(#F5F5F5));
  background-image: linear-gradient(to bottom, #F9F9F9, #F5F5F5);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F9F9F9", endColorstr="#F5F5F5", GradientType=0);
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 0px;
  position: absolute;
}

.slider-selection.tick-slider-selection {
  background-color: white;
  background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(white));
  background-image: linear-gradient(to bottom, white, white);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="white", endColorstr="white", GradientType=0);
}

.slider-track-low,
.slider-track-high {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 0px;
  position: absolute;
  background: transparent;
}

.slider-handle {
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background-color: #fff;
  border: 0px solid transparent;
}
.slider-handle.max-slider-handle {
  -webkit-transform: translateY(-50%) translateX(-50%);
      -ms-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
}
.slider-handle:hover {
  cursor: pointer;
}
.slider-handle.round {
  border-radius: 15px;
}
.slider-handle.triangle {
  background: transparent none;
}
.slider-handle.custom {
  background: transparent none;
}
.slider-handle.custom::before {
  line-height: 6px;
  font-size: 20px;
  content: "★";
  color: #726204;
}

.slider-tick {
  background-color: #f7f7f7;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#F5F5F5), to(#F9F9F9));
  background-image: linear-gradient(to bottom, #F5F5F5, #F9F9F9);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#F5F5F5", endColorstr="#F9F9F9", GradientType=0);
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  cursor: pointer;
  width: 6px;
  height: 6px;
  -webkit-filter: none;
          filter: none;
  opacity: 0.8;
  border: 0px solid transparent;
}
.slider-tick.round {
  border-radius: 50%;
}
.slider-tick.triangle {
  background: transparent none;
}
.slider-tick.custom {
  background: transparent none;
}
.slider-tick.custom::before {
  line-height: 6px;
  font-size: 20px;
  content: "★";
  color: #726204;
}
.slider-tick.in-selection {
  background-color: white;
  background-image: -webkit-gradient(linear, left top, left bottom, from(white), to(white));
  background-image: linear-gradient(to bottom, white, white);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="white", endColorstr="white", GradientType=0);
  opacity: 1;
}

.is--red .slider.slider-horizontal .slider-track,
.is--red .slider.slider-horizontal .slider-selection {
  background: #FF000A !important;
}

.is--yellow .slider.slider-horizontal .slider-track,
.is--yellow .slider.slider-horizontal .slider-selection {
  background: #FFFF00 !important;
}

.is--green .slider.slider-horizontal .slider-track,
.is--green .slider.slider-horizontal .slider-selection {
  background: #00FF00 !important;
}

.is--blue .slider.slider-horizontal .slider-track,
.is--blue .slider.slider-horizontal .slider-selection {
  background: #0000FF !important;
}

.custom-accordion-widget__title {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  position: relative;
  border: none;
  outline: none;
  padding: 0;
  color: #fff;
  font-size: 1.375rem;
  text-align: left;
  display: block;
  padding: 5px 5px 5px 60px;
  width: 100%;
}
.custom-accordion-widget__title:after {
  width: 15px;
  height: 100%;
  display: block;
  position: absolute;
  left: 20px;
  top: 0;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20.713' height='20.713' viewBox='0 0 20.713 20.713'%3E%3Cg id='Gruppe_4357' data-name='Gruppe 4357' transform='translate(10.357) rotate(45)'%3E%3Cline id='Linie_126' data-name='Linie 126' y2='20.713' transform='translate(0 0) rotate(-45)' fill='none' stroke='%23fff' stroke-width='2'/%3E%3Cline id='Linie_127' data-name='Linie 127' y2='20.713' transform='translate(14.647 0) rotate(45)' fill='none' stroke='%23fff' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E ");
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: contain;
}
.custom-accordion-widget__title[aria-expanded=true]:after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20.713' height='20.713' viewBox='0 0 20.713 20.713'%3E%3Cg id='Gruppe_4361' data-name='Gruppe 4361' transform='translate(10.357) rotate(45)'%3E%3Cline id='Linie_126' data-name='Linie 126' y2='20.713' transform='translate(0 0) rotate(-45)' fill='none' stroke='%23fff' stroke-width='2' opacity='0'/%3E%3Cline id='Linie_127' data-name='Linie 127' y2='20.713' transform='translate(14.647 0) rotate(45)' fill='none' stroke='%23fff' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E");
}
.custom-accordion-widget__item {
  margin-bottom: 1rem;
  border: 2px solid;
}
.custom-accordion-widget__inner {
  padding-top: 1rem;
  padding-left: 1rem;
  padding-bottom: 1rem;
  padding-right: 1rem;
}
.custom-accordion-widget__content {
  font-size: 0.9rem;
  color: #fff;
}
.veranstaltungstyp-widget {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.veranstaltungstyp-widget__item {
  width: 33.33%;
  text-align: center;
}
@media (min-width: 768px) {
  .veranstaltungstyp-widget__item {
    width: 150px;
  }
}
.veranstaltungstyp-widget__icon {
  margin-top: -40px;
  width: 82px;
  height: 78px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 768px) {
  .veranstaltungstyp-widget__icon {
    width: 98px;
    height: 94px;
  }
}
.veranstaltungstyp-widget__title {
  margin-top: 0.5rem;
  font-size: 0.7rem;
}
@media (min-width: 768px) {
  .veranstaltungstyp-widget__title {
    font-size: 0.8rem;
  }
}

.einsatzbereiche-circle-widget {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.einsatzbereiche-circle-widget:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 99;
}
@media (min-width: 768px) {
  .einsatzbereiche-circle-widget:before {
    content: none;
  }
}
@media (min-width: 768px) {
  .einsatzbereiche-circle-widget {
    height: auto;
    min-height: 100vh;
  }
}
.einsatzbereiche-circle-widget__next {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  width: 100%;
  font-style: italic;
  z-index: 9999;
}
.einsatzbereiche-circle-widget__top {
  position: absolute;
  top: 0;
  left: 0;
  text-align: left;
  padding-left: 20px;
  width: 100%;
  padding-top: 80px;
  font-style: italic;
}
.einsatzbereiche-circle-widget__top div {
  -webkit-transform: rotate(-90deg) translateX(-100%);
      -ms-transform: rotate(-90deg) translateX(-100%);
          transform: rotate(-90deg) translateX(-100%);
  -webkit-transform-origin: top left;
      -ms-transform-origin: top left;
          transform-origin: top left;
  display: inline-block;
}
.einsatzbereiche-circle-widget__top span {
  font-style: normal;
}
.einsatzbereiche-circle-widget__outer-circle {
  z-index: 1;
  padding: 46px;
  width: 640px;
  height: 640px;
  position: relative;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 568px) {
  .einsatzbereiche-circle-widget__outer-circle {
    padding: 68px;
    width: 950px;
    height: 950px;
  }
}
.einsatzbereiche-circle-widget__big-circle {
  width: 548px;
  height: 548px;
  border-radius: 50%;
  border: 3px solid #00DBFF;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  opacity: 0;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media (min-width: 568px) {
  .einsatzbereiche-circle-widget__big-circle {
    width: 814px;
    height: 814px;
  }
}
.einsatzbereiche-circle-widget__image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  background-color: #10111F;
  -webkit-transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out;
}
.einsatzbereiche-circle-widget__image-wrapper.is--partially-visible {
  opacity: 1;
  visibility: visible;
}
.einsatzbereiche-circle-widget__image-wrapper.is--partially-visible img {
  opacity: 0.25;
}
.einsatzbereiche-circle-widget__image-wrapper.is--fully-visible {
  opacity: 1;
  visibility: visible;
}
.einsatzbereiche-circle-widget__image-wrapper.is--fully-visible img {
  opacity: 0.65;
}
.einsatzbereiche-circle-widget__image-wrapper img {
  opacity: 0.25;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.einsatzbereiche-circle-widget__content {
  position: absolute;
  top: 0;
  left: 0;
  padding: 32% 0 28% 18%;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out;
}
@media (min-width: 568px) {
  .einsatzbereiche-circle-widget__content {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 25%;
  }
}
.einsatzbereiche-circle-widget__content.is--first {
  opacity: 1;
  visibility: visible;
}
.einsatzbereiche-circle-widget__content.is--hidden {
  opacity: 0 !important;
  visibility: hidden !important;
}
.einsatzbereiche-circle-widget__content.is--visible {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 666.98px) {
  .einsatzbereiche-circle-widget__content-inner {
    width: 48%;
  }
}
.einsatzbereiche-circle-widget__title {
  word-break: unset !important;
  -webkit-hyphens: none !important;
      -ms-hyphens: none !important;
          hyphens: none !important;
  text-transform: uppercase;
  padding-right: 1rem;
}
.einsatzbereiche-circle-widget__small-circle {
  cursor: pointer;
  background-color: #10111F;
  border: 3px solid #00DBFF;
  width: 91px;
  height: 91px;
  border-radius: 50%;
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 2rem;
}
@media (min-width: 568px) {
  .einsatzbereiche-circle-widget__small-circle {
    width: 136px;
    height: 136px;
  }
}
.einsatzbereiche-circle-widget__small-circle:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  width: 1px;
  height: 1px;
  border-radius: 50%;
  border: 0px solid #00DBFF;
  opacity: 0;
  z-index: 999;
  visibility: hidden;
  -webkit-transition: border 2s ease-in-out, visibility 0.25s ease-in-out, opacity 0.25s ease-in-out;
  transition: border 2s ease-in-out, visibility 0.25s ease-in-out, opacity 0.25s ease-in-out;
}
.einsatzbereiche-circle-widget__small-circle.is--active {
  z-index: 999;
}
.einsatzbereiche-circle-widget__small-circle.is--active svg,
.einsatzbereiche-circle-widget__small-circle.is--active img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.einsatzbereiche-circle-widget__small-circle.is--faded svg,
.einsatzbereiche-circle-widget__small-circle.is--faded img {
  opacity: 0.25 !important;
}
.einsatzbereiche-circle-widget__small-circle svg,
.einsatzbereiche-circle-widget__small-circle img {
  pointer-events: none;
  display: inline-block;
  width: 70% !important;
  height: 70% !important;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0;
  -webkit-transition: opacity 0.25s linear, -webkit-transform 0.25s ease-in-out;
  transition: opacity 0.25s linear, -webkit-transform 0.25s ease-in-out;
  transition: opacity 0.25s linear, transform 0.25s ease-in-out;
  transition: opacity 0.25s linear, transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
}
.einsatzbereiche-circle-widget__small-circle:nth-child(1) {
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.einsatzbereiche-circle-widget__small-circle:nth-child(2) {
  bottom: 75%;
  left: 75%;
  -webkit-transform: translateX(0%) translateY(20%);
      -ms-transform: translateX(0%) translateY(20%);
          transform: translateX(0%) translateY(20%);
}
.einsatzbereiche-circle-widget__small-circle:nth-child(3) {
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.einsatzbereiche-circle-widget__small-circle:nth-child(4) {
  top: 75%;
  left: 75%;
  -webkit-transform: translateX(0%) translateY(-20%);
      -ms-transform: translateX(0%) translateY(-20%);
          transform: translateX(0%) translateY(-20%);
}
.einsatzbereiche-circle-widget__small-circle:nth-child(5) {
  top: 100%;
  right: 50%;
  -webkit-transform: translateX(50%) translateY(-100%);
      -ms-transform: translateX(50%) translateY(-100%);
          transform: translateX(50%) translateY(-100%);
}
.einsatzbereiche-circle-widget__small-circle:nth-child(6) {
  top: 75%;
  left: 25%;
  -webkit-transform: translateX(-91%) translateY(-20%);
      -ms-transform: translateX(-91%) translateY(-20%);
          transform: translateX(-91%) translateY(-20%);
}
.einsatzbereiche-circle-widget__small-circle:nth-child(7) {
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.einsatzbereiche-circle-widget__small-circle:nth-child(8) {
  bottom: 75%;
  right: 75%;
  -webkit-transform: translateX(0%) translateY(20%);
      -ms-transform: translateX(0%) translateY(20%);
          transform: translateX(0%) translateY(20%);
}

@-webkit-keyframes bigCircle {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes bigCircle {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes smallCircle1 {
  0% {
    -webkit-transform: translateX(-50%) rotate(0deg);
            transform: translateX(-50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translateX(-50%) rotate(-360deg);
            transform: translateX(-50%) rotate(-360deg);
  }
}
@keyframes smallCircle1 {
  0% {
    -webkit-transform: translateX(-50%) rotate(0deg);
            transform: translateX(-50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translateX(-50%) rotate(-360deg);
            transform: translateX(-50%) rotate(-360deg);
  }
}
@-webkit-keyframes smallCircle2 {
  0% {
    -webkit-transform: translateX(0%) translateY(20%) rotate(0deg);
            transform: translateX(0%) translateY(20%) rotate(0deg);
  }
  100% {
    -webkit-transform: translateX(0%) translateY(20%) rotate(-360deg);
            transform: translateX(0%) translateY(20%) rotate(-360deg);
  }
}
@keyframes smallCircle2 {
  0% {
    -webkit-transform: translateX(0%) translateY(20%) rotate(0deg);
            transform: translateX(0%) translateY(20%) rotate(0deg);
  }
  100% {
    -webkit-transform: translateX(0%) translateY(20%) rotate(-360deg);
            transform: translateX(0%) translateY(20%) rotate(-360deg);
  }
}
@-webkit-keyframes smallCircle3 {
  0% {
    -webkit-transform: translateY(-50%) rotate(0deg);
            transform: translateY(-50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-50%) rotate(-360deg);
            transform: translateY(-50%) rotate(-360deg);
  }
}
@keyframes smallCircle3 {
  0% {
    -webkit-transform: translateY(-50%) rotate(0deg);
            transform: translateY(-50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-50%) rotate(-360deg);
            transform: translateY(-50%) rotate(-360deg);
  }
}
@-webkit-keyframes smallCircle4 {
  0% {
    -webkit-transform: translateX(0%) translateY(-20%) rotate(0deg);
            transform: translateX(0%) translateY(-20%) rotate(0deg);
  }
  100% {
    -webkit-transform: translateX(0%) translateY(-20%) rotate(-360deg);
            transform: translateX(0%) translateY(-20%) rotate(-360deg);
  }
}
@keyframes smallCircle4 {
  0% {
    -webkit-transform: translateX(0%) translateY(-20%) rotate(0deg);
            transform: translateX(0%) translateY(-20%) rotate(0deg);
  }
  100% {
    -webkit-transform: translateX(0%) translateY(-20%) rotate(-360deg);
            transform: translateX(0%) translateY(-20%) rotate(-360deg);
  }
}
@-webkit-keyframes smallCircle5 {
  0% {
    -webkit-transform: translateX(50%) translateY(-100%) rotate(0deg);
            transform: translateX(50%) translateY(-100%) rotate(0deg);
  }
  100% {
    -webkit-transform: translateX(50%) translateY(-100%) rotate(-360deg);
            transform: translateX(50%) translateY(-100%) rotate(-360deg);
  }
}
@keyframes smallCircle5 {
  0% {
    -webkit-transform: translateX(50%) translateY(-100%) rotate(0deg);
            transform: translateX(50%) translateY(-100%) rotate(0deg);
  }
  100% {
    -webkit-transform: translateX(50%) translateY(-100%) rotate(-360deg);
            transform: translateX(50%) translateY(-100%) rotate(-360deg);
  }
}
@-webkit-keyframes smallCircle6 {
  0% {
    -webkit-transform: translateX(-91%) translateY(-20%) rotate(0deg);
            transform: translateX(-91%) translateY(-20%) rotate(0deg);
  }
  100% {
    -webkit-transform: translateX(-91%) translateY(-20%) rotate(-360deg);
            transform: translateX(-91%) translateY(-20%) rotate(-360deg);
  }
}
@keyframes smallCircle6 {
  0% {
    -webkit-transform: translateX(-91%) translateY(-20%) rotate(0deg);
            transform: translateX(-91%) translateY(-20%) rotate(0deg);
  }
  100% {
    -webkit-transform: translateX(-91%) translateY(-20%) rotate(-360deg);
            transform: translateX(-91%) translateY(-20%) rotate(-360deg);
  }
}
@-webkit-keyframes smallCircle7 {
  0% {
    -webkit-transform: translateY(-50%) rotate(0deg);
            transform: translateY(-50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-50%) rotate(-360deg);
            transform: translateY(-50%) rotate(-360deg);
  }
}
@keyframes smallCircle7 {
  0% {
    -webkit-transform: translateY(-50%) rotate(0deg);
            transform: translateY(-50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-50%) rotate(-360deg);
            transform: translateY(-50%) rotate(-360deg);
  }
}
@-webkit-keyframes smallCircle8 {
  0% {
    -webkit-transform: translateX(0%) translateY(20%) rotate(0deg);
            transform: translateX(0%) translateY(20%) rotate(0deg);
  }
  100% {
    -webkit-transform: translateX(0%) translateY(20%) rotate(-360deg);
            transform: translateX(0%) translateY(20%) rotate(-360deg);
  }
}
@keyframes smallCircle8 {
  0% {
    -webkit-transform: translateX(0%) translateY(20%) rotate(0deg);
            transform: translateX(0%) translateY(20%) rotate(0deg);
  }
  100% {
    -webkit-transform: translateX(0%) translateY(20%) rotate(-360deg);
            transform: translateX(0%) translateY(20%) rotate(-360deg);
  }
}
.produkt-box-widget__logo {
  width: 32px;
  height: auto;
  display: block;
}
@media (min-width: 992px) {
  .produkt-box-widget__logo {
    width: 42px;
  }
}
.produkt-box-widget .downloads-widget a {
  color: #EB3DF7;
  -webkit-transition: color 0.25s ease-in-out, text-shadow 0.25s ease-in-out;
  transition: color 0.25s ease-in-out, text-shadow 0.25s ease-in-out;
}
.produkt-box-widget .downloads-widget a:hover {
  color: #EB3DF7;
  text-shadow: 0 0 7px #EB3DF7;
}

.projekt-impressionen-widget .grid-gutter {
  width: 20px;
}
.projekt-impressionen-widget .grid-image-item,
.projekt-impressionen-widget .grid-sizer {
  margin-bottom: 20px;
  width: calc(33.3333333333% - 13.3333333333px);
}
.projekt-impressionen-widget .is--two-col {
  width: calc(66.6666666667% - 6.6666666667px);
}

.elementor-slideshow__title {
  display: none !important;
}

.related-posts-widget ul {
  list-style-type: none;
  margin-bottom: 0;
  padding-left: 0;
}
.related-posts-widget__link {
  display: block;
  text-align: center;
}
.related-posts-widget__link:hover {
  text-decoration: none;
}
.related-posts-widget__link:hover .related-posts-widget__image-wrapper {
  background-color: transparent;
  -webkit-transition: background-color 0.25s ease-in-out;
  transition: background-color 0.25s ease-in-out;
}
.related-posts-widget__link:hover .related-posts-widget__image-wrapper img {
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
}
.related-posts-widget .swiper-button-next,
.related-posts-widget .swiper-button-prev {
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: contain;
  -webkit-transition: opacity 0.25s ease-in-out, background-image 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out, background-image 0.25s ease-in-out;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}
.related-posts-widget .swiper-button-next {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25.54 48.08'%3E%3Cg id='Ebene_2' data-name='Ebene 2'%3E%3Cg id='Ebene_1-2' data-name='Ebene 1'%3E%3Cg id='Gruppe_4098' data-name='Gruppe 4098'%3E%3Cpath id='Pfad_605' data-name='Pfad 605' d='M1.5,1.5,24,24,1.5,46.58' fill='none' stroke='%2300DBFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.related-posts-widget .swiper-button-next:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25.54 48.08'%3E%3Cg id='Ebene_2' data-name='Ebene 2'%3E%3Cg id='Ebene_1-2' data-name='Ebene 1'%3E%3Cg id='Gruppe_4098' data-name='Gruppe 4098'%3E%3Cpath id='Pfad_605' data-name='Pfad 605' d='M1.5,1.5,24,24,1.5,46.58' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.related-posts-widget .swiper-button-prev {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25.54 48.08'%3E%3Cg id='Ebene_2' data-name='Ebene 2'%3E%3Cg id='Ebene_1-2' data-name='Ebene 1'%3E%3Cg id='Gruppe_4098' data-name='Gruppe 4098'%3E%3Cpath id='Pfad_605' data-name='Pfad 605' d='M24,46.58,1.5,24,24,1.5' fill='none' stroke='%2300DBFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.related-posts-widget .swiper-button-prev:hover {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25.54 48.08'%3E%3Cg id='Ebene_2' data-name='Ebene 2'%3E%3Cg id='Ebene_1-2' data-name='Ebene 1'%3E%3Cg id='Gruppe_4098' data-name='Gruppe 4098'%3E%3Cpath id='Pfad_605' data-name='Pfad 605' d='M24,46.58,1.5,24,24,1.5' fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.related-posts-widget .swiper-button-disabled {
  opacity: 0;
}
.related-posts-widget__title {
  color: #00DBFF;
  font-size: 1.5rem;
}
.related-posts-widget__subtitel {
  margin-top: 0.5rem;
  color: #fff;
  line-height: 1;
}
.related-posts-widget__image-wrapper {
  background-color: #151B30;
}
.related-posts-widget__image-wrapper img {
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
}

.flagge-widget {
  text-transform: uppercase;
  color: #fff;
  visibility: hidden;
}
.flagge-widget div {
  height: 150px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  opacity: 0;
}
.flagge-widget__schwarz {
  background-color: #10111F;
}
.flagge-widget__rot {
  background-color: #D80909;
}
.flagge-widget__gold {
  background-color: #FFDA00;
}

.following-laser-widget {
  position: relative;
  padding-top: 12rem;
  overflow: hidden;
}
.following-laser-widget__stop {
  padding-top: 3rem;
  padding-bottom: 3rem;
  z-index: 2;
  position: relative;
}
@media (min-width: 768px) {
  .following-laser-widget__stop {
    width: 80%;
  }
}
.following-laser-widget__stop:last-of-type {
  min-height: 550px;
}
@media (min-width: 768px) {
  .following-laser-widget__stop:last-of-type {
    min-height: 600px;
  }
}
.following-laser-widget__laser-spot {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  height: 480px !important;
  width: auto !important;
  max-width: 100%;
  display: block;
}
.following-laser-widget .icon-headline {
  text-transform: uppercase;
}
.following-laser-widget .icon-headline img {
  height: 50px !important;
  width: auto !important;
}

@media (max-width: 666.98px) {
  .container, .elementor .e-container {
    max-width: 100% !important;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
  }
}
html {
  background-color: #10111F;
  background-image: url("data:image/jpeg;base64,/9j/7gAhQWRvYmUAZEAAAAABAwAQAwIDBgAAAAAAAAAAAAAAAP/bAIQAAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQICAgICAgICAgICAwMDAwMDAwMDAwEBAQEBAQEBAQEBAgIBAgIDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMD/8IAEQgAAQABAwERAAIRAQMRAf/EAF0AAQAAAAAAAAAAAAAAAAAAAAoBAQEAAAAAAAAAAAAAAAAAAAQGEAEAAAAAAAAAAAAAAAAAAAAAEQEAAAAAAAAAAAAAAAAAAAAAEgEAAAAAAAAAAAAAAAAAAAAA/9oADAMBAQIRAxEAAAASNyL/2gAIAQIAAQUAf//aAAgBAwABBQB//9oACAEBAAEFAH//2gAIAQICBj8Af//aAAgBAwIGPwB//9oACAEBAQY/AH//2Q==");
  background-repeat: repeat;
  position: relative;
  min-height: 100%;
  scrollbar-color: #01DBFF;
}
@media (max-width: 319.98px) {
  html::before {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    content: "xxxs";
  }
}
@media (min-width: 320px) and (max-width: 567.98px) {
  html::before {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    content: "xxs";
  }
}
@media (min-width: 568px) and (max-width: 666.98px) {
  html::before {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    content: "xs";
  }
}
@media (min-width: 667px) and (max-width: 767.98px) {
  html::before {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    content: "sm";
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  html::before {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    content: "md";
  }
}
@media (min-width: 992px) and (max-width: 1099.98px) {
  html::before {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    content: "lg";
  }
}
@media (min-width: 1100px) and (max-width: 1199.98px) {
  html::before {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    content: "xl";
  }
}
@media (min-width: 1200px) and (max-width: 1499.98px) {
  html::before {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    content: "xxl";
  }
}
@media (min-width: 1500px) {
  html::before {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    content: "xxxl";
  }
}

body.has--nav-overlay {
  overflow: hidden;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px #01DBFF;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px #01DBFF;
}

[id^=userlike] {
  visibility: visible;
  opacity: 1;
  -webkit-transition: visibility 0.25s ease-in-out, opacity 0.25s ease-in-out;
  transition: visibility 0.25s ease-in-out, opacity 0.25s ease-in-out;
}
[id^=userlike].is--hidden {
  opacity: 0 !important;
  visibility: hidden !important;
}

.animate-after-header {
  opacity: 0;
  visibility: hidden;
}

.header-full {
  background-color: #10111F;
}
.header-full.is--absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.header {
  overflow: hidden;
  padding-bottom: 40px;
  margin-bottom: -37px;
}
.header__laser-bottom {
  position: absolute;
  bottom: 0;
  left: 50px;
  height: 3px;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  width: 0;
  background-color: #01DBFF;
  -webkit-box-shadow: 0px 0px 12px #01DBFF;
          box-shadow: 0px 0px 12px #01DBFF;
}
.header__laser-left {
  top: 0;
  left: 50px;
  position: absolute;
  background-color: #01DBFF;
  width: 3px;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
  height: 0;
  -webkit-box-shadow: 0px 0px 12px #01DBFF;
          box-shadow: 0px 0px 12px #01DBFF;
}
.header__spiegel {
  position: absolute;
  top: 100%;
  left: 50px;
  width: 100px;
  height: 4px;
  background-color: #fff;
  -webkit-transform: rotate(45deg) translateX(-50%);
      -ms-transform: rotate(45deg) translateX(-50%);
          transform: rotate(45deg) translateX(-50%);
  -webkit-transform-origin: top left;
      -ms-transform-origin: top left;
          transform-origin: top left;
  z-index: 1;
}
.header__nav, .header__actions {
  opacity: 0;
}
.header nav.navbar {
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  width: 100%;
  position: relative;
  padding-left: 65px;
}
@media (min-width: 992px) {
  .header nav.navbar {
    padding-top: 1rem;
  }
}
.header nav.navbar ul {
  margin-bottom: -2px;
}
.header .nav-primary {
  width: 65%;
}
@media (min-width: 1100px) {
  .header .nav-primary {
    width: 70%;
  }
}
.header__nav {
  position: relative;
}
.header__search {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out;
}
.header__search.is--visible {
  opacity: 1;
  visibility: visible;
}
.header__nav-mobile {
  padding-left: 1rem;
  padding-top: 2rem;
}
.header__nav-mobile .nav-item {
  margin-bottom: 1rem;
}
.header__nav-mobile .nav-item:last-of-type {
  margin-bottom: 0;
}
.header__nav-mobile .nav-link {
  color: #fff;
  font-size: 1.25rem;
}
.header__nav-mobile .nav-link.is--open {
  color: #25DBFF;
  text-shadow: 0 0 4px #25DBFF;
}
.header__nav-mobile .search-dropdown {
  padding-bottom: 3rem;
}
.header__nav-mobile .search-dropdown .dropdown-toggle {
  padding: 0 !important;
}
.header__nav-mobile .search-dropdown .dropdown-menu {
  padding: 0 !important;
}
.header__nav-mobile .search-dropdown .dropdown-menu .dropdown-item {
  padding: 0 !important;
}
.header .nav-link {
  color: #fff;
  padding-bottom: 0;
  font-size: 1.375rem;
  -webkit-transition: color 0.25s ease-in-out;
  transition: color 0.25s ease-in-out;
}
.header .nav-link:hover {
  color: #00DBFF;
}

.menu-toggle {
  width: 36px;
  height: 24px;
  position: relative;
  background-color: transparent;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
      transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0;
  border: none;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 0;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
      transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.menu-toggle span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
      transform-origin: left center;
}
.menu-toggle span:nth-child(2) {
  top: 11px;
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
      transform-origin: left center;
}
.menu-toggle span:nth-child(3) {
  top: 22px;
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
      transform-origin: left center;
}
.menu-toggle.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
  top: -1px;
  left: 5px;
}
.menu-toggle.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
  top: 24px;
  left: 5px;
}

.footer {
  padding: 1rem 0 6rem 0;
}
@media (min-width: 768px) {
  .footer {
    padding: 2rem 0;
  }
}
.footer__de {
  max-width: 100%;
}
.footer__de g {
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  -webkit-animation: rotating 16s linear infinite;
          animation: rotating 16s linear infinite;
}
@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.footer__nav {
  list-style-type: none;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0;
  padding: 0;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media (min-width: 768px) {
  .footer__nav {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer__nav .nav-item {
  width: 50%;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .footer__nav .nav-item {
    width: auto;
    margin-bottom: 0;
  }
}
.footer__nav .nav-link {
  color: #fff;
  padding-bottom: 0;
  text-align: center;
  padding-top: 0;
  text-transform: uppercase;
  -webkit-transition: color 0.25s ease-in-out;
  transition: color 0.25s ease-in-out;
}
.footer__nav .nav-link:hover {
  color: #00DBFF;
}
.footer__legal {
  color: #D8D8D8;
  list-style-type: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin: 1rem 0 0 0;
  padding: 0;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media (min-width: 1200px) {
  .footer__legal {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    margin: 2rem 0 0 0;
  }
}
.footer__legal li {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media (min-width: 1100px) {
  .footer__legal li {
    margin-left: 2rem;
    padding-right: 2rem;
    border-right: 1px solid #D8D8D8;
  }
}
@media (max-width: 991.98px) {
  .footer__legal li {
    font-size: 0.7rem;
    text-align: center;
    margin-bottom: 0.5rem;
  }
}
.footer__legal li:first-of-type {
  margin-left: 0;
}
@media (max-width: 991.98px) {
  .footer__legal li:first-of-type {
    padding: 0;
    font-size: 1rem;
    border: none;
    text-align: center;
    width: 100%;
  }
}
@media (max-width: 991.98px) {
  .footer__legal li:nth-of-type(2) {
    width: 33%;
    padding: 0 !important;
    margin-left: 0;
  }
}
@media (max-width: 991.98px) {
  .footer__legal li:nth-of-type(3) {
    width: 33%;
    padding: 0 !important;
    margin-left: 0;
  }
}
@media (max-width: 991.98px) {
  .footer__legal li:nth-of-type(4) {
    width: 33%;
    border-right: none;
    padding: 0 !important;
    margin-left: 0;
  }
}
@media (max-width: 991.98px) {
  .footer__legal li:nth-of-type(5) {
    width: 50%;
    padding: 0 !important;
    margin-left: 0;
  }
}
@media (max-width: 991.98px) {
  .footer__legal li:nth-of-type(6) {
    width: 50%;
    padding: 0 !important;
    margin-left: 0;
  }
}
.footer__legal li:last-of-type {
  padding-right: 0;
  border-right: none;
}

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