/* Document
 * ========================================================================== */

/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Backgrounds do not repeat by default (opinionated).
 */

*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  background-repeat: no-repeat; /* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */

::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Breaks words to prevent overflow in all browsers (opinionated).
 * 4. Use a 4-space tab width in all browsers (opinionated).
 * 5. Remove the grey highlight on links in iOS (opinionated).
 * 6. Prevent adjustments of font size after orientation changes in iOS.
 */

:where(:root) {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  overflow-wrap: break-word; /* 3 */
  -moz-tab-size: 4; /* 4 */
  -o-tab-size: 4;
     tab-size: 4; /* 4 */
  -webkit-tap-highlight-color: transparent; /* 5 */
  -webkit-text-size-adjust: 100%; /* 6 */
}

/* Sections
 * ========================================================================== */

/**
 * Remove the margin in all browsers (opinionated).
 */

:where(body) {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */

:where(h1) {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */

/**
 * Remove the margin on nested lists in Chrome, Edge, and Safari.
 */

:where(dl, ol, ul) :where(dl, ol, ul) {
  margin: 0;
}

/**
 * 1. Correct the inheritance of border color in Firefox.
 * 2. Add the correct box sizing in Firefox.
 */

:where(hr) {
  color: inherit; /* 1 */
  height: 0; /* 2 */
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */

:where(nav) :where(ol, ul) {
  list-style-type: none;
  padding: 0;
}

/**
 * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
 */

:where(nav li)::before {
  content: "\200B";
  float: left;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Prevent overflow of the container in all browsers (opinionated).
 */

:where(pre) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
  overflow: auto; /* 3 */
}

/* Text-level semantics
 * ========================================================================== */

/**
 * Add the correct text decoration in Safari.
 */

:where(abbr[title]) {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

:where(b, strong) {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

:where(code, kbd, samp) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

:where(small) {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */

/*
 * Change the alignment on media elements in all browsers (opinionated).
 */

:where(audio, canvas, iframe, img, svg, video) {
  vertical-align: middle;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */

:where(iframe) {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */

:where(svg:not([fill])) {
  fill: currentColor;
}

/* Tabular data
 * ========================================================================== */

/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */

:where(table) {
  border-collapse: collapse; /* 1 */
  border-color: inherit; /* 2 */
  text-indent: 0; /* 3 */
}

/* Forms
 * ========================================================================== */

/**
 * Remove the margin on controls in Safari.
 */

:where(button, input, select) {
  margin: 0;
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */

:where(button, [type="button" i], [type="reset" i], [type="submit" i]) {
  -webkit-appearance: button;
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */

:where(fieldset) {
  border: 1px solid #a0a0a0;
}

/**
 * Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */

:where(progress) {
  vertical-align: baseline;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 3. Change the resize direction in all browsers (opinionated).
 */

:where(textarea) {
  margin: 0; /* 1 */
  resize: vertical; /* 3 */
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */

:where([type="search" i]) {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
 * ========================================================================== */

/*
 * Add the correct styles in Safari.
 */

:where(dialog) {
  background-color: white;
  border: solid;
  color: black;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

:where(dialog:not([open])) {
  display: none;
}

/*
 * Add the correct display in Safari.
 */

:where(details > summary:first-of-type) {
  display: list-item;
}

/* Accessibility
 * ========================================================================== */

/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */

:where([aria-busy="true" i]) {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */

:where([aria-controls]) {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */

:where([aria-disabled="true" i], [disabled]) {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */

:where([aria-hidden="false" i][hidden]) {
  display: initial;
}

:where([aria-hidden="false" i][hidden]:not(:focus)) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

/**
 * Easy use of media queries in scss files
 * @author Ivo Wermelinger @iwe-hi / @ivowermelinger
 * @param 		{String} 		$breakpoint      The name of a registered breakpoint
 *
 * @example 	scss
 * @include respond-to(small) {};
 *
 */

/**
 * Create the base container with responsive width values for each breakpoint
 * @author Ivo Wermelinger @iwe-hi / @ivowermelinger
 *
 * @example 	scss
 * @include create-container();
 *
 */

/**
 * Create the row with responsive values for each breakpoint and some helper classes
 * @author Ivo Wermelinger @iwe-hi / @ivowermelinger
 *
 * @example 	scss
 * @include create-row(mobile, 768px);
 *
 */

/**
 * Create the base grid gr classes with helper classes
 * @author Ivo Wermelinger @iwe-hi / @ivowermelinger
 *
 * @example 	scss
 * @include create-grid-base();
 *
 */

/**
 * Create the gr classes for each breakpoint with helper classes
 * @author Ivo Wermelinger @iwe-hi / @ivowermelinger
 *
 * @example 	scss
 * @include create-grid-states();
 *
 */

/**
 * Create prefix helper class for every breakpoint
 * @author Ivo Wermelinger @iwe-hi / @ivowermelinger
 *
 * @example 	scss
 * @include create-prefixes();
 *
 */

/**
 * Create order class for each breakpoint
 * @author Ivo Wermelinger @iwe-hi / @ivowermelinger
 *
 * @example 	scss
 * @include create-order();
 *
 */

/**
 * Create show and hide class for each breakpoint
 * @author Ivo Wermelinger @iwe-hi / @ivowermelinger
 *
 * @example 	scss
 * @include create-show-and-hide();
 *
 */

/**
 * Create gutter / no-gutter classes for each breakpoint
 * @author Ivo Wermelinger @iwe-hi / @ivowermelinger
 *
 * @example 	scss
 * @include create-gutter-options();
 *
 */

/**
 * Add custom classes to each breakpoint
 * @author Ivo Wermelinger @iwe-hi / @ivowermelinger
 * @param 		{String} 		$name 		     The new breakpoint name
 *
 * @example 	scss
 * @include easy-add-class(tal) {
      text-align: left !important;
 };
 *
 */

/**
 * Create the base container with responsive width values for each breakpoint
 * @author Ivo Wermelinger @iwe-hi / @ivowermelinger
 *
 * @example 	scss
 * @include create-container();
 *
 */

/**
 * Create the row with responsive values for each breakpoint and some helper classes
 * @author Ivo Wermelinger @iwe-hi / @ivowermelinger
 *
 * @example 	scss
 * @include create-row(mobile, 768px);
 *
 */

/**
 * Create the base grid gr classes with helper classes
 * @author Ivo Wermelinger @iwe-hi / @ivowermelinger
 *
 * @example 	scss
 * @include create-grid-base();
 *
 */

/**
 * Create the gr classes for each breakpoint with helper classes
 * @author Ivo Wermelinger @iwe-hi / @ivowermelinger
 *
 * @example 	scss
 * @include create-grid-states();
 *
 */

/**
 * Create prefix helper class for every breakpoint
 * @author Ivo Wermelinger @iwe-hi / @ivowermelinger
 *
 * @example 	scss
 * @include create-prefixes();
 *
 */

/**
 * Create order class for each breakpoint
 * @author Ivo Wermelinger @iwe-hi / @ivowermelinger
 *
 * @example 	scss
 * @include create-order();
 *
 */

/**
 * Create show and hide class for each breakpoint
 * @author Ivo Wermelinger @iwe-hi / @ivowermelinger
 *
 * @example 	scss
 * @include create-show-and-hide();
 *
 */

/**
 * Create gutter / no-gutter classes for each breakpoint
 * @author Ivo Wermelinger @iwe-hi / @ivowermelinger
 *
 * @example 	scss
 * @include create-gutter-options();
 *
 */

/**
 * Add custom classes to each breakpoint
 * @author Ivo Wermelinger @iwe-hi / @ivowermelinger
 * @param 		{String} 		$name 		     The new breakpoint name
 *
 * @example 	scss
 * @include easy-add-class(tal) {
      text-align: left !important;
 };
 *
 */

/**
 * Easy use of media queries in scss files
 * @author Ivo Wermelinger @iwe-hi / @ivowermelinger
 * @param 		{String} 		$breakpoint      The name of a registered breakpoint
 *
 * @example 	scss
 * @include respond-to(small) {};
 *
 */

/*
 * Default grid values which are used, when no breakpoints are defined
 *
 */

/**
 * Register a new breakpoint with gutter and vertical space values for the container
 * @author Ivo Wermelinger @iwe-hi / @ivowermelinger
 * @param 		{String} 		$name 		     The new breakpoint name
 * @param 		{Number} 		$pixels 	     The pixel value for the breakpoint
 * @param       {Number}        $gutter          Optional gutter width for the container
 * @param       {Number}        $vertical-space  Optional vertical space (left and right) for the container
 *
 * @example 	scss
 * @include register-breakpoint(mobile, 768px);
 *
 */

/**
 * Easy flex setup mixin
 * @author Ivo Wermelinger @iwe-hi / @ivowermelinger
 * @param 		{Map} 		    $setup_settings  The base grid settings
 *
 * @example 	scss
 * @include @include create-easy-flex((
 *      columns: 12,
 *      container-width: 100%,
 *      container-max-width: $container-max,
 *      gutter-width: 10px,
 *      vertical-space: 10px,
 *  ));
 *
 */

/**
* First we must register the breakpoints
* breakpoint-name, screen-width, gutter-width and vertical-space (padding left & right on the container)
*/

.container {
  width: calc(100% - 40px);
  max-width: 1680px;
  margin: 0 auto;
}

@media only screen and (min-width: 480px) {
  .container {
    width: calc(100% - 40px);
  }
}

@media only screen and (min-width: 768px) {
  .container {
    width: calc(100% - 40px);
  }
}

@media only screen and (min-width: 1024px) {
  .container {
    width: calc(100% - 40px);
  }
}

@media only screen and (min-width: 1200px) {
  .container {
    width: calc(100% - 40px);
  }
}

@media only screen and (min-width: 1440px) {
  .container {
    width: calc(100% - 80px);
  }
}

@media only screen and (min-width: 1680px) {
  .container {
    width: calc(100% - 80px);
  }
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  margin-left: -5px;
  margin-right: -5px;
}

@media only screen and (min-width: 480px) {
  .row {
    margin-left: 0px;
    margin-right: 0px;
  }
}

@media only screen and (min-width: 768px) {
  .row {
    margin-left: -5px;
    margin-right: -5px;
  }
}

@media only screen and (min-width: 1024px) {
  .row {
    margin-left: -5px;
    margin-right: -5px;
  }
}

@media only screen and (min-width: 1200px) {
  .row {
    margin-left: -5px;
    margin-right: -5px;
  }
}

@media only screen and (min-width: 1440px) {
  .row {
    margin-left: -5px;
    margin-right: -5px;
  }
}

@media only screen and (min-width: 1680px) {
  .row {
    margin-left: -5px;
    margin-right: -5px;
  }
}

.row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-flow: row-reverse wrap;
          flex-flow: row-reverse wrap;
}

@media only screen and (min-width: 480px) {
  .row-reverse\@tiny {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-flow: row-reverse wrap;
            flex-flow: row-reverse wrap;
  }
}

@media only screen and (min-width: 768px) {
  .row-reverse\@small {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-flow: row-reverse wrap;
            flex-flow: row-reverse wrap;
  }
}

@media only screen and (min-width: 1024px) {
  .row-reverse\@medium {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-flow: row-reverse wrap;
            flex-flow: row-reverse wrap;
  }
}

@media only screen and (min-width: 1200px) {
  .row-reverse\@large {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-flow: row-reverse wrap;
            flex-flow: row-reverse wrap;
  }
}

@media only screen and (min-width: 1440px) {
  .row-reverse\@huge {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-flow: row-reverse wrap;
            flex-flow: row-reverse wrap;
  }
}

@media only screen and (min-width: 1680px) {
  .row-reverse\@full {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-flow: row-reverse wrap;
            flex-flow: row-reverse wrap;
  }
}

.row-align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

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

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

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

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

.row-justify-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.row-justify-even {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

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

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

.row-no-wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
}

@media only screen and (orientation:landscape) {
  .row-align-center\@landscape {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .row-align-start\@landscape {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .row-align-end\@landscape {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .row-align-stretch\@landscape {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .row-align-baseline\@landscape {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .row-justify-between\@landscape {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .row-justify-around\@landscape {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .row-justify-even\@landscape {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .row-justify-start\@landscape {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .row-justify-end\@landscape {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .row-justify-center\@landscape {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .row-no-wrap\@landscape {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
  }
  .row-wrap\@landscape {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}

@media only screen and (orientation:portrait) {
  .row-align-center\@portrait {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .row-align-start\@portrait {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .row-align-end\@portrait {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .row-align-stretch\@portrait {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .row-align-baseline\@portrait {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .row-justify-between\@portrait {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .row-justify-around\@portrait {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .row-justify-even\@portrait {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .row-justify-start\@portrait {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .row-justify-end\@portrait {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .row-justify-center\@portrait {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .row-no-wrap\@portrait {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
  }
  .row-wrap\@portrait {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .row-align-center\@retina {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .row-align-start\@retina {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .row-align-end\@retina {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .row-align-stretch\@retina {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .row-align-baseline\@retina {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .row-justify-between\@retina {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .row-justify-around\@retina {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .row-justify-even\@retina {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .row-justify-start\@retina {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .row-justify-end\@retina {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .row-justify-center\@retina {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .row-no-wrap\@retina {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
  }
  .row-wrap\@retina {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}

@media only screen and (min-width: 480px) {
  .row-align-center\@tiny {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .row-align-start\@tiny {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .row-align-end\@tiny {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .row-align-stretch\@tiny {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .row-align-baseline\@tiny {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .row-justify-between\@tiny {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .row-justify-around\@tiny {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .row-justify-even\@tiny {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .row-justify-start\@tiny {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .row-justify-end\@tiny {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .row-justify-center\@tiny {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .row-no-wrap\@tiny {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
  }
  .row-wrap\@tiny {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}

@media only screen and (min-width: 768px) {
  .row-align-center\@small {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .row-align-start\@small {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .row-align-end\@small {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .row-align-stretch\@small {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .row-align-baseline\@small {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .row-justify-between\@small {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .row-justify-around\@small {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .row-justify-even\@small {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .row-justify-start\@small {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .row-justify-end\@small {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .row-justify-center\@small {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .row-no-wrap\@small {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
  }
  .row-wrap\@small {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}

@media only screen and (min-width: 1024px) {
  .row-align-center\@medium {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .row-align-start\@medium {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .row-align-end\@medium {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .row-align-stretch\@medium {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .row-align-baseline\@medium {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .row-justify-between\@medium {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .row-justify-around\@medium {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .row-justify-even\@medium {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .row-justify-start\@medium {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .row-justify-end\@medium {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .row-justify-center\@medium {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .row-no-wrap\@medium {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
  }
  .row-wrap\@medium {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}

@media only screen and (min-width: 1200px) {
  .row-align-center\@large {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .row-align-start\@large {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .row-align-end\@large {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .row-align-stretch\@large {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .row-align-baseline\@large {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .row-justify-between\@large {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .row-justify-around\@large {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .row-justify-even\@large {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .row-justify-start\@large {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .row-justify-end\@large {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .row-justify-center\@large {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .row-no-wrap\@large {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
  }
  .row-wrap\@large {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}

@media only screen and (min-width: 1440px) {
  .row-align-center\@huge {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .row-align-start\@huge {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .row-align-end\@huge {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .row-align-stretch\@huge {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .row-align-baseline\@huge {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .row-justify-between\@huge {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .row-justify-around\@huge {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .row-justify-even\@huge {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .row-justify-start\@huge {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .row-justify-end\@huge {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .row-justify-center\@huge {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .row-no-wrap\@huge {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
  }
  .row-wrap\@huge {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}

@media only screen and (min-width: 1680px) {
  .row-align-center\@full {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .row-align-start\@full {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .row-align-end\@full {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .row-align-stretch\@full {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .row-align-baseline\@full {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .row-justify-between\@full {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .row-justify-around\@full {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .row-justify-even\@full {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .row-justify-start\@full {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .row-justify-end\@full {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .row-justify-center\@full {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .row-no-wrap\@full {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
  }
  .row-wrap\@full {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}

.gr-1 {
  max-width: 4.1666666667%;
  -ms-flex-preferred-size: 4.1666666667%;
      flex-basis: 4.1666666667%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 5px;
  padding-right: 5px;
}

@media only screen and (min-width: 480px) {
  .gr-1 {
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media only screen and (min-width: 768px) {
  .gr-1 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1024px) {
  .gr-1 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-1 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1440px) {
  .gr-1 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1680px) {
  .gr-1 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.prefix-1 {
  margin-left: 4.1666666667%;
}

.suffix-1 {
  margin-right: 4.1666666667%;
}

.push-1 {
  position: relative;
  left: 4.1666666667%;
  right: auto;
}

.pull-1 {
  position: relative;
  right: 4.1666666667%;
  left: auto;
}

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

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

.order-last {
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

.gr-2 {
  max-width: 8.3333333333%;
  -ms-flex-preferred-size: 8.3333333333%;
      flex-basis: 8.3333333333%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 5px;
  padding-right: 5px;
}

@media only screen and (min-width: 480px) {
  .gr-2 {
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media only screen and (min-width: 768px) {
  .gr-2 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1024px) {
  .gr-2 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-2 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1440px) {
  .gr-2 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1680px) {
  .gr-2 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.prefix-2 {
  margin-left: 8.3333333333%;
}

.suffix-2 {
  margin-right: 8.3333333333%;
}

.push-2 {
  position: relative;
  left: 8.3333333333%;
  right: auto;
}

.pull-2 {
  position: relative;
  right: 8.3333333333%;
  left: auto;
}

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

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

.order-last {
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

.gr-3 {
  max-width: 12.5%;
  -ms-flex-preferred-size: 12.5%;
      flex-basis: 12.5%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 5px;
  padding-right: 5px;
}

@media only screen and (min-width: 480px) {
  .gr-3 {
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media only screen and (min-width: 768px) {
  .gr-3 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1024px) {
  .gr-3 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-3 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1440px) {
  .gr-3 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1680px) {
  .gr-3 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.prefix-3 {
  margin-left: 12.5%;
}

.suffix-3 {
  margin-right: 12.5%;
}

.push-3 {
  position: relative;
  left: 12.5%;
  right: auto;
}

.pull-3 {
  position: relative;
  right: 12.5%;
  left: auto;
}

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

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

.order-last {
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

.gr-4 {
  max-width: 16.6666666667%;
  -ms-flex-preferred-size: 16.6666666667%;
      flex-basis: 16.6666666667%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 5px;
  padding-right: 5px;
}

@media only screen and (min-width: 480px) {
  .gr-4 {
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media only screen and (min-width: 768px) {
  .gr-4 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1024px) {
  .gr-4 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-4 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1440px) {
  .gr-4 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1680px) {
  .gr-4 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.prefix-4 {
  margin-left: 16.6666666667%;
}

.suffix-4 {
  margin-right: 16.6666666667%;
}

.push-4 {
  position: relative;
  left: 16.6666666667%;
  right: auto;
}

.pull-4 {
  position: relative;
  right: 16.6666666667%;
  left: auto;
}

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

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

.order-last {
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

.gr-5 {
  max-width: 20.8333333333%;
  -ms-flex-preferred-size: 20.8333333333%;
      flex-basis: 20.8333333333%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 5px;
  padding-right: 5px;
}

@media only screen and (min-width: 480px) {
  .gr-5 {
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media only screen and (min-width: 768px) {
  .gr-5 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1024px) {
  .gr-5 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-5 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1440px) {
  .gr-5 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1680px) {
  .gr-5 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.prefix-5 {
  margin-left: 20.8333333333%;
}

.suffix-5 {
  margin-right: 20.8333333333%;
}

.push-5 {
  position: relative;
  left: 20.8333333333%;
  right: auto;
}

.pull-5 {
  position: relative;
  right: 20.8333333333%;
  left: auto;
}

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

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

.order-last {
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

.gr-6 {
  max-width: 25%;
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 5px;
  padding-right: 5px;
}

@media only screen and (min-width: 480px) {
  .gr-6 {
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media only screen and (min-width: 768px) {
  .gr-6 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1024px) {
  .gr-6 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-6 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1440px) {
  .gr-6 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1680px) {
  .gr-6 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.prefix-6 {
  margin-left: 25%;
}

.suffix-6 {
  margin-right: 25%;
}

.push-6 {
  position: relative;
  left: 25%;
  right: auto;
}

.pull-6 {
  position: relative;
  right: 25%;
  left: auto;
}

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

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

.order-last {
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

.gr-7 {
  max-width: 29.1666666667%;
  -ms-flex-preferred-size: 29.1666666667%;
      flex-basis: 29.1666666667%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 5px;
  padding-right: 5px;
}

@media only screen and (min-width: 480px) {
  .gr-7 {
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media only screen and (min-width: 768px) {
  .gr-7 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1024px) {
  .gr-7 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-7 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1440px) {
  .gr-7 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1680px) {
  .gr-7 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.prefix-7 {
  margin-left: 29.1666666667%;
}

.suffix-7 {
  margin-right: 29.1666666667%;
}

.push-7 {
  position: relative;
  left: 29.1666666667%;
  right: auto;
}

.pull-7 {
  position: relative;
  right: 29.1666666667%;
  left: auto;
}

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

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

.order-last {
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

.gr-8 {
  max-width: 33.3333333333%;
  -ms-flex-preferred-size: 33.3333333333%;
      flex-basis: 33.3333333333%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 5px;
  padding-right: 5px;
}

@media only screen and (min-width: 480px) {
  .gr-8 {
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media only screen and (min-width: 768px) {
  .gr-8 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1024px) {
  .gr-8 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-8 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1440px) {
  .gr-8 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1680px) {
  .gr-8 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.prefix-8 {
  margin-left: 33.3333333333%;
}

.suffix-8 {
  margin-right: 33.3333333333%;
}

.push-8 {
  position: relative;
  left: 33.3333333333%;
  right: auto;
}

.pull-8 {
  position: relative;
  right: 33.3333333333%;
  left: auto;
}

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

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

.order-last {
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

.gr-9 {
  max-width: 37.5%;
  -ms-flex-preferred-size: 37.5%;
      flex-basis: 37.5%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 5px;
  padding-right: 5px;
}

@media only screen and (min-width: 480px) {
  .gr-9 {
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media only screen and (min-width: 768px) {
  .gr-9 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1024px) {
  .gr-9 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-9 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1440px) {
  .gr-9 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1680px) {
  .gr-9 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.prefix-9 {
  margin-left: 37.5%;
}

.suffix-9 {
  margin-right: 37.5%;
}

.push-9 {
  position: relative;
  left: 37.5%;
  right: auto;
}

.pull-9 {
  position: relative;
  right: 37.5%;
  left: auto;
}

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

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

.order-last {
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

.gr-10 {
  max-width: 41.6666666667%;
  -ms-flex-preferred-size: 41.6666666667%;
      flex-basis: 41.6666666667%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 5px;
  padding-right: 5px;
}

@media only screen and (min-width: 480px) {
  .gr-10 {
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media only screen and (min-width: 768px) {
  .gr-10 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1024px) {
  .gr-10 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-10 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1440px) {
  .gr-10 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1680px) {
  .gr-10 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.prefix-10 {
  margin-left: 41.6666666667%;
}

.suffix-10 {
  margin-right: 41.6666666667%;
}

.push-10 {
  position: relative;
  left: 41.6666666667%;
  right: auto;
}

.pull-10 {
  position: relative;
  right: 41.6666666667%;
  left: auto;
}

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

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

.order-last {
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

.gr-11 {
  max-width: 45.8333333333%;
  -ms-flex-preferred-size: 45.8333333333%;
      flex-basis: 45.8333333333%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 5px;
  padding-right: 5px;
}

@media only screen and (min-width: 480px) {
  .gr-11 {
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media only screen and (min-width: 768px) {
  .gr-11 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1024px) {
  .gr-11 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-11 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1440px) {
  .gr-11 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1680px) {
  .gr-11 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.prefix-11 {
  margin-left: 45.8333333333%;
}

.suffix-11 {
  margin-right: 45.8333333333%;
}

.push-11 {
  position: relative;
  left: 45.8333333333%;
  right: auto;
}

.pull-11 {
  position: relative;
  right: 45.8333333333%;
  left: auto;
}

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

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

.order-last {
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

.gr-12 {
  max-width: 50%;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 5px;
  padding-right: 5px;
}

@media only screen and (min-width: 480px) {
  .gr-12 {
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media only screen and (min-width: 768px) {
  .gr-12 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1024px) {
  .gr-12 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-12 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1440px) {
  .gr-12 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1680px) {
  .gr-12 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.prefix-12 {
  margin-left: 50%;
}

.suffix-12 {
  margin-right: 50%;
}

.push-12 {
  position: relative;
  left: 50%;
  right: auto;
}

.pull-12 {
  position: relative;
  right: 50%;
  left: auto;
}

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

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

.order-last {
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

.gr-13 {
  max-width: 54.1666666667%;
  -ms-flex-preferred-size: 54.1666666667%;
      flex-basis: 54.1666666667%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 5px;
  padding-right: 5px;
}

@media only screen and (min-width: 480px) {
  .gr-13 {
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media only screen and (min-width: 768px) {
  .gr-13 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1024px) {
  .gr-13 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-13 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1440px) {
  .gr-13 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1680px) {
  .gr-13 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.prefix-13 {
  margin-left: 54.1666666667%;
}

.suffix-13 {
  margin-right: 54.1666666667%;
}

.push-13 {
  position: relative;
  left: 54.1666666667%;
  right: auto;
}

.pull-13 {
  position: relative;
  right: 54.1666666667%;
  left: auto;
}

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

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

.order-last {
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

.gr-14 {
  max-width: 58.3333333333%;
  -ms-flex-preferred-size: 58.3333333333%;
      flex-basis: 58.3333333333%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 5px;
  padding-right: 5px;
}

@media only screen and (min-width: 480px) {
  .gr-14 {
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media only screen and (min-width: 768px) {
  .gr-14 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1024px) {
  .gr-14 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-14 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1440px) {
  .gr-14 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1680px) {
  .gr-14 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.prefix-14 {
  margin-left: 58.3333333333%;
}

.suffix-14 {
  margin-right: 58.3333333333%;
}

.push-14 {
  position: relative;
  left: 58.3333333333%;
  right: auto;
}

.pull-14 {
  position: relative;
  right: 58.3333333333%;
  left: auto;
}

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

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

.order-last {
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

.gr-15 {
  max-width: 62.5%;
  -ms-flex-preferred-size: 62.5%;
      flex-basis: 62.5%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 5px;
  padding-right: 5px;
}

@media only screen and (min-width: 480px) {
  .gr-15 {
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media only screen and (min-width: 768px) {
  .gr-15 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1024px) {
  .gr-15 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-15 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1440px) {
  .gr-15 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1680px) {
  .gr-15 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.prefix-15 {
  margin-left: 62.5%;
}

.suffix-15 {
  margin-right: 62.5%;
}

.push-15 {
  position: relative;
  left: 62.5%;
  right: auto;
}

.pull-15 {
  position: relative;
  right: 62.5%;
  left: auto;
}

.order-15 {
  -webkit-box-ordinal-group: 16;
      -ms-flex-order: 15;
          order: 15;
}

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

.order-last {
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

.gr-16 {
  max-width: 66.6666666667%;
  -ms-flex-preferred-size: 66.6666666667%;
      flex-basis: 66.6666666667%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 5px;
  padding-right: 5px;
}

@media only screen and (min-width: 480px) {
  .gr-16 {
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media only screen and (min-width: 768px) {
  .gr-16 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1024px) {
  .gr-16 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-16 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1440px) {
  .gr-16 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1680px) {
  .gr-16 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.prefix-16 {
  margin-left: 66.6666666667%;
}

.suffix-16 {
  margin-right: 66.6666666667%;
}

.push-16 {
  position: relative;
  left: 66.6666666667%;
  right: auto;
}

.pull-16 {
  position: relative;
  right: 66.6666666667%;
  left: auto;
}

.order-16 {
  -webkit-box-ordinal-group: 17;
      -ms-flex-order: 16;
          order: 16;
}

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

.order-last {
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

.gr-17 {
  max-width: 70.8333333333%;
  -ms-flex-preferred-size: 70.8333333333%;
      flex-basis: 70.8333333333%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 5px;
  padding-right: 5px;
}

@media only screen and (min-width: 480px) {
  .gr-17 {
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media only screen and (min-width: 768px) {
  .gr-17 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1024px) {
  .gr-17 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-17 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1440px) {
  .gr-17 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1680px) {
  .gr-17 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.prefix-17 {
  margin-left: 70.8333333333%;
}

.suffix-17 {
  margin-right: 70.8333333333%;
}

.push-17 {
  position: relative;
  left: 70.8333333333%;
  right: auto;
}

.pull-17 {
  position: relative;
  right: 70.8333333333%;
  left: auto;
}

.order-17 {
  -webkit-box-ordinal-group: 18;
      -ms-flex-order: 17;
          order: 17;
}

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

.order-last {
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

.gr-18 {
  max-width: 75%;
  -ms-flex-preferred-size: 75%;
      flex-basis: 75%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 5px;
  padding-right: 5px;
}

@media only screen and (min-width: 480px) {
  .gr-18 {
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media only screen and (min-width: 768px) {
  .gr-18 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1024px) {
  .gr-18 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-18 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1440px) {
  .gr-18 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1680px) {
  .gr-18 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.prefix-18 {
  margin-left: 75%;
}

.suffix-18 {
  margin-right: 75%;
}

.push-18 {
  position: relative;
  left: 75%;
  right: auto;
}

.pull-18 {
  position: relative;
  right: 75%;
  left: auto;
}

.order-18 {
  -webkit-box-ordinal-group: 19;
      -ms-flex-order: 18;
          order: 18;
}

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

.order-last {
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

.gr-19 {
  max-width: 79.1666666667%;
  -ms-flex-preferred-size: 79.1666666667%;
      flex-basis: 79.1666666667%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 5px;
  padding-right: 5px;
}

@media only screen and (min-width: 480px) {
  .gr-19 {
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media only screen and (min-width: 768px) {
  .gr-19 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1024px) {
  .gr-19 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-19 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1440px) {
  .gr-19 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1680px) {
  .gr-19 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.prefix-19 {
  margin-left: 79.1666666667%;
}

.suffix-19 {
  margin-right: 79.1666666667%;
}

.push-19 {
  position: relative;
  left: 79.1666666667%;
  right: auto;
}

.pull-19 {
  position: relative;
  right: 79.1666666667%;
  left: auto;
}

.order-19 {
  -webkit-box-ordinal-group: 20;
      -ms-flex-order: 19;
          order: 19;
}

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

.order-last {
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

.gr-20 {
  max-width: 83.3333333333%;
  -ms-flex-preferred-size: 83.3333333333%;
      flex-basis: 83.3333333333%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 5px;
  padding-right: 5px;
}

@media only screen and (min-width: 480px) {
  .gr-20 {
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media only screen and (min-width: 768px) {
  .gr-20 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1024px) {
  .gr-20 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-20 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1440px) {
  .gr-20 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1680px) {
  .gr-20 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.prefix-20 {
  margin-left: 83.3333333333%;
}

.suffix-20 {
  margin-right: 83.3333333333%;
}

.push-20 {
  position: relative;
  left: 83.3333333333%;
  right: auto;
}

.pull-20 {
  position: relative;
  right: 83.3333333333%;
  left: auto;
}

.order-20 {
  -webkit-box-ordinal-group: 21;
      -ms-flex-order: 20;
          order: 20;
}

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

.order-last {
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

.gr-21 {
  max-width: 87.5%;
  -ms-flex-preferred-size: 87.5%;
      flex-basis: 87.5%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 5px;
  padding-right: 5px;
}

@media only screen and (min-width: 480px) {
  .gr-21 {
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media only screen and (min-width: 768px) {
  .gr-21 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1024px) {
  .gr-21 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-21 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1440px) {
  .gr-21 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1680px) {
  .gr-21 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.prefix-21 {
  margin-left: 87.5%;
}

.suffix-21 {
  margin-right: 87.5%;
}

.push-21 {
  position: relative;
  left: 87.5%;
  right: auto;
}

.pull-21 {
  position: relative;
  right: 87.5%;
  left: auto;
}

.order-21 {
  -webkit-box-ordinal-group: 22;
      -ms-flex-order: 21;
          order: 21;
}

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

.order-last {
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

.gr-22 {
  max-width: 91.6666666667%;
  -ms-flex-preferred-size: 91.6666666667%;
      flex-basis: 91.6666666667%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 5px;
  padding-right: 5px;
}

@media only screen and (min-width: 480px) {
  .gr-22 {
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media only screen and (min-width: 768px) {
  .gr-22 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1024px) {
  .gr-22 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-22 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1440px) {
  .gr-22 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1680px) {
  .gr-22 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.prefix-22 {
  margin-left: 91.6666666667%;
}

.suffix-22 {
  margin-right: 91.6666666667%;
}

.push-22 {
  position: relative;
  left: 91.6666666667%;
  right: auto;
}

.pull-22 {
  position: relative;
  right: 91.6666666667%;
  left: auto;
}

.order-22 {
  -webkit-box-ordinal-group: 23;
      -ms-flex-order: 22;
          order: 22;
}

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

.order-last {
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

.gr-23 {
  max-width: 95.8333333333%;
  -ms-flex-preferred-size: 95.8333333333%;
      flex-basis: 95.8333333333%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 5px;
  padding-right: 5px;
}

@media only screen and (min-width: 480px) {
  .gr-23 {
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media only screen and (min-width: 768px) {
  .gr-23 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1024px) {
  .gr-23 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-23 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1440px) {
  .gr-23 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1680px) {
  .gr-23 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.prefix-23 {
  margin-left: 95.8333333333%;
}

.suffix-23 {
  margin-right: 95.8333333333%;
}

.push-23 {
  position: relative;
  left: 95.8333333333%;
  right: auto;
}

.pull-23 {
  position: relative;
  right: 95.8333333333%;
  left: auto;
}

.order-23 {
  -webkit-box-ordinal-group: 24;
      -ms-flex-order: 23;
          order: 23;
}

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

.order-last {
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

.gr-24 {
  max-width: 100%;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 5px;
  padding-right: 5px;
}

@media only screen and (min-width: 480px) {
  .gr-24 {
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media only screen and (min-width: 768px) {
  .gr-24 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1024px) {
  .gr-24 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-24 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1440px) {
  .gr-24 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1680px) {
  .gr-24 {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.prefix-24 {
  margin-left: 100%;
}

.suffix-24 {
  margin-right: 100%;
}

.push-24 {
  position: relative;
  left: 100%;
  right: auto;
}

.pull-24 {
  position: relative;
  right: 100%;
  left: auto;
}

.order-24 {
  -webkit-box-ordinal-group: 25;
      -ms-flex-order: 24;
          order: 24;
}

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

.order-last {
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

.show {
  display: unset;
}

.row.show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.hide {
  display: none;
}

.no-gutter {
  padding: 0;
}

.no-gutter-left {
  padding-left: 0;
}

.no-gutter-right {
  padding-right: 0;
}

@media only screen and (orientation:landscape) {
  .gr-1\@landscape {
    max-width: 4.1666666667%;
    -ms-flex-preferred-size: 4.1666666667%;
        flex-basis: 4.1666666667%;
  }
}

@media only screen and (orientation:landscape) {
  .gr-2\@landscape {
    max-width: 8.3333333333%;
    -ms-flex-preferred-size: 8.3333333333%;
        flex-basis: 8.3333333333%;
  }
}

@media only screen and (orientation:landscape) {
  .gr-3\@landscape {
    max-width: 12.5%;
    -ms-flex-preferred-size: 12.5%;
        flex-basis: 12.5%;
  }
}

@media only screen and (orientation:landscape) {
  .gr-4\@landscape {
    max-width: 16.6666666667%;
    -ms-flex-preferred-size: 16.6666666667%;
        flex-basis: 16.6666666667%;
  }
}

@media only screen and (orientation:landscape) {
  .gr-5\@landscape {
    max-width: 20.8333333333%;
    -ms-flex-preferred-size: 20.8333333333%;
        flex-basis: 20.8333333333%;
  }
}

@media only screen and (orientation:landscape) {
  .gr-6\@landscape {
    max-width: 25%;
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
  }
}

@media only screen and (orientation:landscape) {
  .gr-7\@landscape {
    max-width: 29.1666666667%;
    -ms-flex-preferred-size: 29.1666666667%;
        flex-basis: 29.1666666667%;
  }
}

@media only screen and (orientation:landscape) {
  .gr-8\@landscape {
    max-width: 33.3333333333%;
    -ms-flex-preferred-size: 33.3333333333%;
        flex-basis: 33.3333333333%;
  }
}

@media only screen and (orientation:landscape) {
  .gr-9\@landscape {
    max-width: 37.5%;
    -ms-flex-preferred-size: 37.5%;
        flex-basis: 37.5%;
  }
}

@media only screen and (orientation:landscape) {
  .gr-10\@landscape {
    max-width: 41.6666666667%;
    -ms-flex-preferred-size: 41.6666666667%;
        flex-basis: 41.6666666667%;
  }
}

@media only screen and (orientation:landscape) {
  .gr-11\@landscape {
    max-width: 45.8333333333%;
    -ms-flex-preferred-size: 45.8333333333%;
        flex-basis: 45.8333333333%;
  }
}

@media only screen and (orientation:landscape) {
  .gr-12\@landscape {
    max-width: 50%;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}

@media only screen and (orientation:landscape) {
  .gr-13\@landscape {
    max-width: 54.1666666667%;
    -ms-flex-preferred-size: 54.1666666667%;
        flex-basis: 54.1666666667%;
  }
}

@media only screen and (orientation:landscape) {
  .gr-14\@landscape {
    max-width: 58.3333333333%;
    -ms-flex-preferred-size: 58.3333333333%;
        flex-basis: 58.3333333333%;
  }
}

@media only screen and (orientation:landscape) {
  .gr-15\@landscape {
    max-width: 62.5%;
    -ms-flex-preferred-size: 62.5%;
        flex-basis: 62.5%;
  }
}

@media only screen and (orientation:landscape) {
  .gr-16\@landscape {
    max-width: 66.6666666667%;
    -ms-flex-preferred-size: 66.6666666667%;
        flex-basis: 66.6666666667%;
  }
}

@media only screen and (orientation:landscape) {
  .gr-17\@landscape {
    max-width: 70.8333333333%;
    -ms-flex-preferred-size: 70.8333333333%;
        flex-basis: 70.8333333333%;
  }
}

@media only screen and (orientation:landscape) {
  .gr-18\@landscape {
    max-width: 75%;
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
  }
}

@media only screen and (orientation:landscape) {
  .gr-19\@landscape {
    max-width: 79.1666666667%;
    -ms-flex-preferred-size: 79.1666666667%;
        flex-basis: 79.1666666667%;
  }
}

@media only screen and (orientation:landscape) {
  .gr-20\@landscape {
    max-width: 83.3333333333%;
    -ms-flex-preferred-size: 83.3333333333%;
        flex-basis: 83.3333333333%;
  }
}

@media only screen and (orientation:landscape) {
  .gr-21\@landscape {
    max-width: 87.5%;
    -ms-flex-preferred-size: 87.5%;
        flex-basis: 87.5%;
  }
}

@media only screen and (orientation:landscape) {
  .gr-22\@landscape {
    max-width: 91.6666666667%;
    -ms-flex-preferred-size: 91.6666666667%;
        flex-basis: 91.6666666667%;
  }
}

@media only screen and (orientation:landscape) {
  .gr-23\@landscape {
    max-width: 95.8333333333%;
    -ms-flex-preferred-size: 95.8333333333%;
        flex-basis: 95.8333333333%;
  }
}

@media only screen and (orientation:landscape) {
  .gr-24\@landscape {
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

@media only screen and (orientation:portrait) {
  .gr-1\@portrait {
    max-width: 4.1666666667%;
    -ms-flex-preferred-size: 4.1666666667%;
        flex-basis: 4.1666666667%;
  }
}

@media only screen and (orientation:portrait) {
  .gr-2\@portrait {
    max-width: 8.3333333333%;
    -ms-flex-preferred-size: 8.3333333333%;
        flex-basis: 8.3333333333%;
  }
}

@media only screen and (orientation:portrait) {
  .gr-3\@portrait {
    max-width: 12.5%;
    -ms-flex-preferred-size: 12.5%;
        flex-basis: 12.5%;
  }
}

@media only screen and (orientation:portrait) {
  .gr-4\@portrait {
    max-width: 16.6666666667%;
    -ms-flex-preferred-size: 16.6666666667%;
        flex-basis: 16.6666666667%;
  }
}

@media only screen and (orientation:portrait) {
  .gr-5\@portrait {
    max-width: 20.8333333333%;
    -ms-flex-preferred-size: 20.8333333333%;
        flex-basis: 20.8333333333%;
  }
}

@media only screen and (orientation:portrait) {
  .gr-6\@portrait {
    max-width: 25%;
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
  }
}

@media only screen and (orientation:portrait) {
  .gr-7\@portrait {
    max-width: 29.1666666667%;
    -ms-flex-preferred-size: 29.1666666667%;
        flex-basis: 29.1666666667%;
  }
}

@media only screen and (orientation:portrait) {
  .gr-8\@portrait {
    max-width: 33.3333333333%;
    -ms-flex-preferred-size: 33.3333333333%;
        flex-basis: 33.3333333333%;
  }
}

@media only screen and (orientation:portrait) {
  .gr-9\@portrait {
    max-width: 37.5%;
    -ms-flex-preferred-size: 37.5%;
        flex-basis: 37.5%;
  }
}

@media only screen and (orientation:portrait) {
  .gr-10\@portrait {
    max-width: 41.6666666667%;
    -ms-flex-preferred-size: 41.6666666667%;
        flex-basis: 41.6666666667%;
  }
}

@media only screen and (orientation:portrait) {
  .gr-11\@portrait {
    max-width: 45.8333333333%;
    -ms-flex-preferred-size: 45.8333333333%;
        flex-basis: 45.8333333333%;
  }
}

@media only screen and (orientation:portrait) {
  .gr-12\@portrait {
    max-width: 50%;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}

@media only screen and (orientation:portrait) {
  .gr-13\@portrait {
    max-width: 54.1666666667%;
    -ms-flex-preferred-size: 54.1666666667%;
        flex-basis: 54.1666666667%;
  }
}

@media only screen and (orientation:portrait) {
  .gr-14\@portrait {
    max-width: 58.3333333333%;
    -ms-flex-preferred-size: 58.3333333333%;
        flex-basis: 58.3333333333%;
  }
}

@media only screen and (orientation:portrait) {
  .gr-15\@portrait {
    max-width: 62.5%;
    -ms-flex-preferred-size: 62.5%;
        flex-basis: 62.5%;
  }
}

@media only screen and (orientation:portrait) {
  .gr-16\@portrait {
    max-width: 66.6666666667%;
    -ms-flex-preferred-size: 66.6666666667%;
        flex-basis: 66.6666666667%;
  }
}

@media only screen and (orientation:portrait) {
  .gr-17\@portrait {
    max-width: 70.8333333333%;
    -ms-flex-preferred-size: 70.8333333333%;
        flex-basis: 70.8333333333%;
  }
}

@media only screen and (orientation:portrait) {
  .gr-18\@portrait {
    max-width: 75%;
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
  }
}

@media only screen and (orientation:portrait) {
  .gr-19\@portrait {
    max-width: 79.1666666667%;
    -ms-flex-preferred-size: 79.1666666667%;
        flex-basis: 79.1666666667%;
  }
}

@media only screen and (orientation:portrait) {
  .gr-20\@portrait {
    max-width: 83.3333333333%;
    -ms-flex-preferred-size: 83.3333333333%;
        flex-basis: 83.3333333333%;
  }
}

@media only screen and (orientation:portrait) {
  .gr-21\@portrait {
    max-width: 87.5%;
    -ms-flex-preferred-size: 87.5%;
        flex-basis: 87.5%;
  }
}

@media only screen and (orientation:portrait) {
  .gr-22\@portrait {
    max-width: 91.6666666667%;
    -ms-flex-preferred-size: 91.6666666667%;
        flex-basis: 91.6666666667%;
  }
}

@media only screen and (orientation:portrait) {
  .gr-23\@portrait {
    max-width: 95.8333333333%;
    -ms-flex-preferred-size: 95.8333333333%;
        flex-basis: 95.8333333333%;
  }
}

@media only screen and (orientation:portrait) {
  .gr-24\@portrait {
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .gr-1\@retina {
    max-width: 4.1666666667%;
    -ms-flex-preferred-size: 4.1666666667%;
        flex-basis: 4.1666666667%;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .gr-2\@retina {
    max-width: 8.3333333333%;
    -ms-flex-preferred-size: 8.3333333333%;
        flex-basis: 8.3333333333%;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .gr-3\@retina {
    max-width: 12.5%;
    -ms-flex-preferred-size: 12.5%;
        flex-basis: 12.5%;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .gr-4\@retina {
    max-width: 16.6666666667%;
    -ms-flex-preferred-size: 16.6666666667%;
        flex-basis: 16.6666666667%;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .gr-5\@retina {
    max-width: 20.8333333333%;
    -ms-flex-preferred-size: 20.8333333333%;
        flex-basis: 20.8333333333%;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .gr-6\@retina {
    max-width: 25%;
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .gr-7\@retina {
    max-width: 29.1666666667%;
    -ms-flex-preferred-size: 29.1666666667%;
        flex-basis: 29.1666666667%;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .gr-8\@retina {
    max-width: 33.3333333333%;
    -ms-flex-preferred-size: 33.3333333333%;
        flex-basis: 33.3333333333%;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .gr-9\@retina {
    max-width: 37.5%;
    -ms-flex-preferred-size: 37.5%;
        flex-basis: 37.5%;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .gr-10\@retina {
    max-width: 41.6666666667%;
    -ms-flex-preferred-size: 41.6666666667%;
        flex-basis: 41.6666666667%;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .gr-11\@retina {
    max-width: 45.8333333333%;
    -ms-flex-preferred-size: 45.8333333333%;
        flex-basis: 45.8333333333%;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .gr-12\@retina {
    max-width: 50%;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .gr-13\@retina {
    max-width: 54.1666666667%;
    -ms-flex-preferred-size: 54.1666666667%;
        flex-basis: 54.1666666667%;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .gr-14\@retina {
    max-width: 58.3333333333%;
    -ms-flex-preferred-size: 58.3333333333%;
        flex-basis: 58.3333333333%;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .gr-15\@retina {
    max-width: 62.5%;
    -ms-flex-preferred-size: 62.5%;
        flex-basis: 62.5%;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .gr-16\@retina {
    max-width: 66.6666666667%;
    -ms-flex-preferred-size: 66.6666666667%;
        flex-basis: 66.6666666667%;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .gr-17\@retina {
    max-width: 70.8333333333%;
    -ms-flex-preferred-size: 70.8333333333%;
        flex-basis: 70.8333333333%;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .gr-18\@retina {
    max-width: 75%;
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .gr-19\@retina {
    max-width: 79.1666666667%;
    -ms-flex-preferred-size: 79.1666666667%;
        flex-basis: 79.1666666667%;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .gr-20\@retina {
    max-width: 83.3333333333%;
    -ms-flex-preferred-size: 83.3333333333%;
        flex-basis: 83.3333333333%;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .gr-21\@retina {
    max-width: 87.5%;
    -ms-flex-preferred-size: 87.5%;
        flex-basis: 87.5%;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .gr-22\@retina {
    max-width: 91.6666666667%;
    -ms-flex-preferred-size: 91.6666666667%;
        flex-basis: 91.6666666667%;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .gr-23\@retina {
    max-width: 95.8333333333%;
    -ms-flex-preferred-size: 95.8333333333%;
        flex-basis: 95.8333333333%;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .gr-24\@retina {
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

@media only screen and (min-width: 480px) {
  .gr-1\@tiny {
    max-width: 4.1666666667%;
    -ms-flex-preferred-size: 4.1666666667%;
        flex-basis: 4.1666666667%;
  }
}

@media only screen and (min-width: 480px) {
  .gr-2\@tiny {
    max-width: 8.3333333333%;
    -ms-flex-preferred-size: 8.3333333333%;
        flex-basis: 8.3333333333%;
  }
}

@media only screen and (min-width: 480px) {
  .gr-3\@tiny {
    max-width: 12.5%;
    -ms-flex-preferred-size: 12.5%;
        flex-basis: 12.5%;
  }
}

@media only screen and (min-width: 480px) {
  .gr-4\@tiny {
    max-width: 16.6666666667%;
    -ms-flex-preferred-size: 16.6666666667%;
        flex-basis: 16.6666666667%;
  }
}

@media only screen and (min-width: 480px) {
  .gr-5\@tiny {
    max-width: 20.8333333333%;
    -ms-flex-preferred-size: 20.8333333333%;
        flex-basis: 20.8333333333%;
  }
}

@media only screen and (min-width: 480px) {
  .gr-6\@tiny {
    max-width: 25%;
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
  }
}

@media only screen and (min-width: 480px) {
  .gr-7\@tiny {
    max-width: 29.1666666667%;
    -ms-flex-preferred-size: 29.1666666667%;
        flex-basis: 29.1666666667%;
  }
}

@media only screen and (min-width: 480px) {
  .gr-8\@tiny {
    max-width: 33.3333333333%;
    -ms-flex-preferred-size: 33.3333333333%;
        flex-basis: 33.3333333333%;
  }
}

@media only screen and (min-width: 480px) {
  .gr-9\@tiny {
    max-width: 37.5%;
    -ms-flex-preferred-size: 37.5%;
        flex-basis: 37.5%;
  }
}

@media only screen and (min-width: 480px) {
  .gr-10\@tiny {
    max-width: 41.6666666667%;
    -ms-flex-preferred-size: 41.6666666667%;
        flex-basis: 41.6666666667%;
  }
}

@media only screen and (min-width: 480px) {
  .gr-11\@tiny {
    max-width: 45.8333333333%;
    -ms-flex-preferred-size: 45.8333333333%;
        flex-basis: 45.8333333333%;
  }
}

@media only screen and (min-width: 480px) {
  .gr-12\@tiny {
    max-width: 50%;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}

@media only screen and (min-width: 480px) {
  .gr-13\@tiny {
    max-width: 54.1666666667%;
    -ms-flex-preferred-size: 54.1666666667%;
        flex-basis: 54.1666666667%;
  }
}

@media only screen and (min-width: 480px) {
  .gr-14\@tiny {
    max-width: 58.3333333333%;
    -ms-flex-preferred-size: 58.3333333333%;
        flex-basis: 58.3333333333%;
  }
}

@media only screen and (min-width: 480px) {
  .gr-15\@tiny {
    max-width: 62.5%;
    -ms-flex-preferred-size: 62.5%;
        flex-basis: 62.5%;
  }
}

@media only screen and (min-width: 480px) {
  .gr-16\@tiny {
    max-width: 66.6666666667%;
    -ms-flex-preferred-size: 66.6666666667%;
        flex-basis: 66.6666666667%;
  }
}

@media only screen and (min-width: 480px) {
  .gr-17\@tiny {
    max-width: 70.8333333333%;
    -ms-flex-preferred-size: 70.8333333333%;
        flex-basis: 70.8333333333%;
  }
}

@media only screen and (min-width: 480px) {
  .gr-18\@tiny {
    max-width: 75%;
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
  }
}

@media only screen and (min-width: 480px) {
  .gr-19\@tiny {
    max-width: 79.1666666667%;
    -ms-flex-preferred-size: 79.1666666667%;
        flex-basis: 79.1666666667%;
  }
}

@media only screen and (min-width: 480px) {
  .gr-20\@tiny {
    max-width: 83.3333333333%;
    -ms-flex-preferred-size: 83.3333333333%;
        flex-basis: 83.3333333333%;
  }
}

@media only screen and (min-width: 480px) {
  .gr-21\@tiny {
    max-width: 87.5%;
    -ms-flex-preferred-size: 87.5%;
        flex-basis: 87.5%;
  }
}

@media only screen and (min-width: 480px) {
  .gr-22\@tiny {
    max-width: 91.6666666667%;
    -ms-flex-preferred-size: 91.6666666667%;
        flex-basis: 91.6666666667%;
  }
}

@media only screen and (min-width: 480px) {
  .gr-23\@tiny {
    max-width: 95.8333333333%;
    -ms-flex-preferred-size: 95.8333333333%;
        flex-basis: 95.8333333333%;
  }
}

@media only screen and (min-width: 480px) {
  .gr-24\@tiny {
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

@media only screen and (min-width: 768px) {
  .gr-1\@small {
    max-width: 4.1666666667%;
    -ms-flex-preferred-size: 4.1666666667%;
        flex-basis: 4.1666666667%;
  }
}

@media only screen and (min-width: 768px) {
  .gr-2\@small {
    max-width: 8.3333333333%;
    -ms-flex-preferred-size: 8.3333333333%;
        flex-basis: 8.3333333333%;
  }
}

@media only screen and (min-width: 768px) {
  .gr-3\@small {
    max-width: 12.5%;
    -ms-flex-preferred-size: 12.5%;
        flex-basis: 12.5%;
  }
}

@media only screen and (min-width: 768px) {
  .gr-4\@small {
    max-width: 16.6666666667%;
    -ms-flex-preferred-size: 16.6666666667%;
        flex-basis: 16.6666666667%;
  }
}

@media only screen and (min-width: 768px) {
  .gr-5\@small {
    max-width: 20.8333333333%;
    -ms-flex-preferred-size: 20.8333333333%;
        flex-basis: 20.8333333333%;
  }
}

@media only screen and (min-width: 768px) {
  .gr-6\@small {
    max-width: 25%;
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
  }
}

@media only screen and (min-width: 768px) {
  .gr-7\@small {
    max-width: 29.1666666667%;
    -ms-flex-preferred-size: 29.1666666667%;
        flex-basis: 29.1666666667%;
  }
}

@media only screen and (min-width: 768px) {
  .gr-8\@small {
    max-width: 33.3333333333%;
    -ms-flex-preferred-size: 33.3333333333%;
        flex-basis: 33.3333333333%;
  }
}

@media only screen and (min-width: 768px) {
  .gr-9\@small {
    max-width: 37.5%;
    -ms-flex-preferred-size: 37.5%;
        flex-basis: 37.5%;
  }
}

@media only screen and (min-width: 768px) {
  .gr-10\@small {
    max-width: 41.6666666667%;
    -ms-flex-preferred-size: 41.6666666667%;
        flex-basis: 41.6666666667%;
  }
}

@media only screen and (min-width: 768px) {
  .gr-11\@small {
    max-width: 45.8333333333%;
    -ms-flex-preferred-size: 45.8333333333%;
        flex-basis: 45.8333333333%;
  }
}

@media only screen and (min-width: 768px) {
  .gr-12\@small {
    max-width: 50%;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}

@media only screen and (min-width: 768px) {
  .gr-13\@small {
    max-width: 54.1666666667%;
    -ms-flex-preferred-size: 54.1666666667%;
        flex-basis: 54.1666666667%;
  }
}

@media only screen and (min-width: 768px) {
  .gr-14\@small {
    max-width: 58.3333333333%;
    -ms-flex-preferred-size: 58.3333333333%;
        flex-basis: 58.3333333333%;
  }
}

@media only screen and (min-width: 768px) {
  .gr-15\@small {
    max-width: 62.5%;
    -ms-flex-preferred-size: 62.5%;
        flex-basis: 62.5%;
  }
}

@media only screen and (min-width: 768px) {
  .gr-16\@small {
    max-width: 66.6666666667%;
    -ms-flex-preferred-size: 66.6666666667%;
        flex-basis: 66.6666666667%;
  }
}

@media only screen and (min-width: 768px) {
  .gr-17\@small {
    max-width: 70.8333333333%;
    -ms-flex-preferred-size: 70.8333333333%;
        flex-basis: 70.8333333333%;
  }
}

@media only screen and (min-width: 768px) {
  .gr-18\@small {
    max-width: 75%;
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
  }
}

@media only screen and (min-width: 768px) {
  .gr-19\@small {
    max-width: 79.1666666667%;
    -ms-flex-preferred-size: 79.1666666667%;
        flex-basis: 79.1666666667%;
  }
}

@media only screen and (min-width: 768px) {
  .gr-20\@small {
    max-width: 83.3333333333%;
    -ms-flex-preferred-size: 83.3333333333%;
        flex-basis: 83.3333333333%;
  }
}

@media only screen and (min-width: 768px) {
  .gr-21\@small {
    max-width: 87.5%;
    -ms-flex-preferred-size: 87.5%;
        flex-basis: 87.5%;
  }
}

@media only screen and (min-width: 768px) {
  .gr-22\@small {
    max-width: 91.6666666667%;
    -ms-flex-preferred-size: 91.6666666667%;
        flex-basis: 91.6666666667%;
  }
}

@media only screen and (min-width: 768px) {
  .gr-23\@small {
    max-width: 95.8333333333%;
    -ms-flex-preferred-size: 95.8333333333%;
        flex-basis: 95.8333333333%;
  }
}

@media only screen and (min-width: 768px) {
  .gr-24\@small {
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

@media only screen and (min-width: 1024px) {
  .gr-1\@medium {
    max-width: 4.1666666667%;
    -ms-flex-preferred-size: 4.1666666667%;
        flex-basis: 4.1666666667%;
  }
}

@media only screen and (min-width: 1024px) {
  .gr-2\@medium {
    max-width: 8.3333333333%;
    -ms-flex-preferred-size: 8.3333333333%;
        flex-basis: 8.3333333333%;
  }
}

@media only screen and (min-width: 1024px) {
  .gr-3\@medium {
    max-width: 12.5%;
    -ms-flex-preferred-size: 12.5%;
        flex-basis: 12.5%;
  }
}

@media only screen and (min-width: 1024px) {
  .gr-4\@medium {
    max-width: 16.6666666667%;
    -ms-flex-preferred-size: 16.6666666667%;
        flex-basis: 16.6666666667%;
  }
}

@media only screen and (min-width: 1024px) {
  .gr-5\@medium {
    max-width: 20.8333333333%;
    -ms-flex-preferred-size: 20.8333333333%;
        flex-basis: 20.8333333333%;
  }
}

@media only screen and (min-width: 1024px) {
  .gr-6\@medium {
    max-width: 25%;
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
  }
}

@media only screen and (min-width: 1024px) {
  .gr-7\@medium {
    max-width: 29.1666666667%;
    -ms-flex-preferred-size: 29.1666666667%;
        flex-basis: 29.1666666667%;
  }
}

@media only screen and (min-width: 1024px) {
  .gr-8\@medium {
    max-width: 33.3333333333%;
    -ms-flex-preferred-size: 33.3333333333%;
        flex-basis: 33.3333333333%;
  }
}

@media only screen and (min-width: 1024px) {
  .gr-9\@medium {
    max-width: 37.5%;
    -ms-flex-preferred-size: 37.5%;
        flex-basis: 37.5%;
  }
}

@media only screen and (min-width: 1024px) {
  .gr-10\@medium {
    max-width: 41.6666666667%;
    -ms-flex-preferred-size: 41.6666666667%;
        flex-basis: 41.6666666667%;
  }
}

@media only screen and (min-width: 1024px) {
  .gr-11\@medium {
    max-width: 45.8333333333%;
    -ms-flex-preferred-size: 45.8333333333%;
        flex-basis: 45.8333333333%;
  }
}

@media only screen and (min-width: 1024px) {
  .gr-12\@medium {
    max-width: 50%;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}

@media only screen and (min-width: 1024px) {
  .gr-13\@medium {
    max-width: 54.1666666667%;
    -ms-flex-preferred-size: 54.1666666667%;
        flex-basis: 54.1666666667%;
  }
}

@media only screen and (min-width: 1024px) {
  .gr-14\@medium {
    max-width: 58.3333333333%;
    -ms-flex-preferred-size: 58.3333333333%;
        flex-basis: 58.3333333333%;
  }
}

@media only screen and (min-width: 1024px) {
  .gr-15\@medium {
    max-width: 62.5%;
    -ms-flex-preferred-size: 62.5%;
        flex-basis: 62.5%;
  }
}

@media only screen and (min-width: 1024px) {
  .gr-16\@medium {
    max-width: 66.6666666667%;
    -ms-flex-preferred-size: 66.6666666667%;
        flex-basis: 66.6666666667%;
  }
}

@media only screen and (min-width: 1024px) {
  .gr-17\@medium {
    max-width: 70.8333333333%;
    -ms-flex-preferred-size: 70.8333333333%;
        flex-basis: 70.8333333333%;
  }
}

@media only screen and (min-width: 1024px) {
  .gr-18\@medium {
    max-width: 75%;
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
  }
}

@media only screen and (min-width: 1024px) {
  .gr-19\@medium {
    max-width: 79.1666666667%;
    -ms-flex-preferred-size: 79.1666666667%;
        flex-basis: 79.1666666667%;
  }
}

@media only screen and (min-width: 1024px) {
  .gr-20\@medium {
    max-width: 83.3333333333%;
    -ms-flex-preferred-size: 83.3333333333%;
        flex-basis: 83.3333333333%;
  }
}

@media only screen and (min-width: 1024px) {
  .gr-21\@medium {
    max-width: 87.5%;
    -ms-flex-preferred-size: 87.5%;
        flex-basis: 87.5%;
  }
}

@media only screen and (min-width: 1024px) {
  .gr-22\@medium {
    max-width: 91.6666666667%;
    -ms-flex-preferred-size: 91.6666666667%;
        flex-basis: 91.6666666667%;
  }
}

@media only screen and (min-width: 1024px) {
  .gr-23\@medium {
    max-width: 95.8333333333%;
    -ms-flex-preferred-size: 95.8333333333%;
        flex-basis: 95.8333333333%;
  }
}

@media only screen and (min-width: 1024px) {
  .gr-24\@medium {
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-1\@large {
    max-width: 4.1666666667%;
    -ms-flex-preferred-size: 4.1666666667%;
        flex-basis: 4.1666666667%;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-2\@large {
    max-width: 8.3333333333%;
    -ms-flex-preferred-size: 8.3333333333%;
        flex-basis: 8.3333333333%;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-3\@large {
    max-width: 12.5%;
    -ms-flex-preferred-size: 12.5%;
        flex-basis: 12.5%;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-4\@large {
    max-width: 16.6666666667%;
    -ms-flex-preferred-size: 16.6666666667%;
        flex-basis: 16.6666666667%;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-5\@large {
    max-width: 20.8333333333%;
    -ms-flex-preferred-size: 20.8333333333%;
        flex-basis: 20.8333333333%;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-6\@large {
    max-width: 25%;
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-7\@large {
    max-width: 29.1666666667%;
    -ms-flex-preferred-size: 29.1666666667%;
        flex-basis: 29.1666666667%;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-8\@large {
    max-width: 33.3333333333%;
    -ms-flex-preferred-size: 33.3333333333%;
        flex-basis: 33.3333333333%;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-9\@large {
    max-width: 37.5%;
    -ms-flex-preferred-size: 37.5%;
        flex-basis: 37.5%;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-10\@large {
    max-width: 41.6666666667%;
    -ms-flex-preferred-size: 41.6666666667%;
        flex-basis: 41.6666666667%;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-11\@large {
    max-width: 45.8333333333%;
    -ms-flex-preferred-size: 45.8333333333%;
        flex-basis: 45.8333333333%;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-12\@large {
    max-width: 50%;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-13\@large {
    max-width: 54.1666666667%;
    -ms-flex-preferred-size: 54.1666666667%;
        flex-basis: 54.1666666667%;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-14\@large {
    max-width: 58.3333333333%;
    -ms-flex-preferred-size: 58.3333333333%;
        flex-basis: 58.3333333333%;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-15\@large {
    max-width: 62.5%;
    -ms-flex-preferred-size: 62.5%;
        flex-basis: 62.5%;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-16\@large {
    max-width: 66.6666666667%;
    -ms-flex-preferred-size: 66.6666666667%;
        flex-basis: 66.6666666667%;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-17\@large {
    max-width: 70.8333333333%;
    -ms-flex-preferred-size: 70.8333333333%;
        flex-basis: 70.8333333333%;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-18\@large {
    max-width: 75%;
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-19\@large {
    max-width: 79.1666666667%;
    -ms-flex-preferred-size: 79.1666666667%;
        flex-basis: 79.1666666667%;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-20\@large {
    max-width: 83.3333333333%;
    -ms-flex-preferred-size: 83.3333333333%;
        flex-basis: 83.3333333333%;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-21\@large {
    max-width: 87.5%;
    -ms-flex-preferred-size: 87.5%;
        flex-basis: 87.5%;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-22\@large {
    max-width: 91.6666666667%;
    -ms-flex-preferred-size: 91.6666666667%;
        flex-basis: 91.6666666667%;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-23\@large {
    max-width: 95.8333333333%;
    -ms-flex-preferred-size: 95.8333333333%;
        flex-basis: 95.8333333333%;
  }
}

@media only screen and (min-width: 1200px) {
  .gr-24\@large {
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

@media only screen and (min-width: 1440px) {
  .gr-1\@huge {
    max-width: 4.1666666667%;
    -ms-flex-preferred-size: 4.1666666667%;
        flex-basis: 4.1666666667%;
  }
}

@media only screen and (min-width: 1440px) {
  .gr-2\@huge {
    max-width: 8.3333333333%;
    -ms-flex-preferred-size: 8.3333333333%;
        flex-basis: 8.3333333333%;
  }
}

@media only screen and (min-width: 1440px) {
  .gr-3\@huge {
    max-width: 12.5%;
    -ms-flex-preferred-size: 12.5%;
        flex-basis: 12.5%;
  }
}

@media only screen and (min-width: 1440px) {
  .gr-4\@huge {
    max-width: 16.6666666667%;
    -ms-flex-preferred-size: 16.6666666667%;
        flex-basis: 16.6666666667%;
  }
}

@media only screen and (min-width: 1440px) {
  .gr-5\@huge {
    max-width: 20.8333333333%;
    -ms-flex-preferred-size: 20.8333333333%;
        flex-basis: 20.8333333333%;
  }
}

@media only screen and (min-width: 1440px) {
  .gr-6\@huge {
    max-width: 25%;
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
  }
}

@media only screen and (min-width: 1440px) {
  .gr-7\@huge {
    max-width: 29.1666666667%;
    -ms-flex-preferred-size: 29.1666666667%;
        flex-basis: 29.1666666667%;
  }
}

@media only screen and (min-width: 1440px) {
  .gr-8\@huge {
    max-width: 33.3333333333%;
    -ms-flex-preferred-size: 33.3333333333%;
        flex-basis: 33.3333333333%;
  }
}

@media only screen and (min-width: 1440px) {
  .gr-9\@huge {
    max-width: 37.5%;
    -ms-flex-preferred-size: 37.5%;
        flex-basis: 37.5%;
  }
}

@media only screen and (min-width: 1440px) {
  .gr-10\@huge {
    max-width: 41.6666666667%;
    -ms-flex-preferred-size: 41.6666666667%;
        flex-basis: 41.6666666667%;
  }
}

@media only screen and (min-width: 1440px) {
  .gr-11\@huge {
    max-width: 45.8333333333%;
    -ms-flex-preferred-size: 45.8333333333%;
        flex-basis: 45.8333333333%;
  }
}

@media only screen and (min-width: 1440px) {
  .gr-12\@huge {
    max-width: 50%;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}

@media only screen and (min-width: 1440px) {
  .gr-13\@huge {
    max-width: 54.1666666667%;
    -ms-flex-preferred-size: 54.1666666667%;
        flex-basis: 54.1666666667%;
  }
}

@media only screen and (min-width: 1440px) {
  .gr-14\@huge {
    max-width: 58.3333333333%;
    -ms-flex-preferred-size: 58.3333333333%;
        flex-basis: 58.3333333333%;
  }
}

@media only screen and (min-width: 1440px) {
  .gr-15\@huge {
    max-width: 62.5%;
    -ms-flex-preferred-size: 62.5%;
        flex-basis: 62.5%;
  }
}

@media only screen and (min-width: 1440px) {
  .gr-16\@huge {
    max-width: 66.6666666667%;
    -ms-flex-preferred-size: 66.6666666667%;
        flex-basis: 66.6666666667%;
  }
}

@media only screen and (min-width: 1440px) {
  .gr-17\@huge {
    max-width: 70.8333333333%;
    -ms-flex-preferred-size: 70.8333333333%;
        flex-basis: 70.8333333333%;
  }
}

@media only screen and (min-width: 1440px) {
  .gr-18\@huge {
    max-width: 75%;
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
  }
}

@media only screen and (min-width: 1440px) {
  .gr-19\@huge {
    max-width: 79.1666666667%;
    -ms-flex-preferred-size: 79.1666666667%;
        flex-basis: 79.1666666667%;
  }
}

@media only screen and (min-width: 1440px) {
  .gr-20\@huge {
    max-width: 83.3333333333%;
    -ms-flex-preferred-size: 83.3333333333%;
        flex-basis: 83.3333333333%;
  }
}

@media only screen and (min-width: 1440px) {
  .gr-21\@huge {
    max-width: 87.5%;
    -ms-flex-preferred-size: 87.5%;
        flex-basis: 87.5%;
  }
}

@media only screen and (min-width: 1440px) {
  .gr-22\@huge {
    max-width: 91.6666666667%;
    -ms-flex-preferred-size: 91.6666666667%;
        flex-basis: 91.6666666667%;
  }
}

@media only screen and (min-width: 1440px) {
  .gr-23\@huge {
    max-width: 95.8333333333%;
    -ms-flex-preferred-size: 95.8333333333%;
        flex-basis: 95.8333333333%;
  }
}

@media only screen and (min-width: 1440px) {
  .gr-24\@huge {
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

@media only screen and (min-width: 1680px) {
  .gr-1\@full {
    max-width: 4.1666666667%;
    -ms-flex-preferred-size: 4.1666666667%;
        flex-basis: 4.1666666667%;
  }
}

@media only screen and (min-width: 1680px) {
  .gr-2\@full {
    max-width: 8.3333333333%;
    -ms-flex-preferred-size: 8.3333333333%;
        flex-basis: 8.3333333333%;
  }
}

@media only screen and (min-width: 1680px) {
  .gr-3\@full {
    max-width: 12.5%;
    -ms-flex-preferred-size: 12.5%;
        flex-basis: 12.5%;
  }
}

@media only screen and (min-width: 1680px) {
  .gr-4\@full {
    max-width: 16.6666666667%;
    -ms-flex-preferred-size: 16.6666666667%;
        flex-basis: 16.6666666667%;
  }
}

@media only screen and (min-width: 1680px) {
  .gr-5\@full {
    max-width: 20.8333333333%;
    -ms-flex-preferred-size: 20.8333333333%;
        flex-basis: 20.8333333333%;
  }
}

@media only screen and (min-width: 1680px) {
  .gr-6\@full {
    max-width: 25%;
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
  }
}

@media only screen and (min-width: 1680px) {
  .gr-7\@full {
    max-width: 29.1666666667%;
    -ms-flex-preferred-size: 29.1666666667%;
        flex-basis: 29.1666666667%;
  }
}

@media only screen and (min-width: 1680px) {
  .gr-8\@full {
    max-width: 33.3333333333%;
    -ms-flex-preferred-size: 33.3333333333%;
        flex-basis: 33.3333333333%;
  }
}

@media only screen and (min-width: 1680px) {
  .gr-9\@full {
    max-width: 37.5%;
    -ms-flex-preferred-size: 37.5%;
        flex-basis: 37.5%;
  }
}

@media only screen and (min-width: 1680px) {
  .gr-10\@full {
    max-width: 41.6666666667%;
    -ms-flex-preferred-size: 41.6666666667%;
        flex-basis: 41.6666666667%;
  }
}

@media only screen and (min-width: 1680px) {
  .gr-11\@full {
    max-width: 45.8333333333%;
    -ms-flex-preferred-size: 45.8333333333%;
        flex-basis: 45.8333333333%;
  }
}

@media only screen and (min-width: 1680px) {
  .gr-12\@full {
    max-width: 50%;
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}

@media only screen and (min-width: 1680px) {
  .gr-13\@full {
    max-width: 54.1666666667%;
    -ms-flex-preferred-size: 54.1666666667%;
        flex-basis: 54.1666666667%;
  }
}

@media only screen and (min-width: 1680px) {
  .gr-14\@full {
    max-width: 58.3333333333%;
    -ms-flex-preferred-size: 58.3333333333%;
        flex-basis: 58.3333333333%;
  }
}

@media only screen and (min-width: 1680px) {
  .gr-15\@full {
    max-width: 62.5%;
    -ms-flex-preferred-size: 62.5%;
        flex-basis: 62.5%;
  }
}

@media only screen and (min-width: 1680px) {
  .gr-16\@full {
    max-width: 66.6666666667%;
    -ms-flex-preferred-size: 66.6666666667%;
        flex-basis: 66.6666666667%;
  }
}

@media only screen and (min-width: 1680px) {
  .gr-17\@full {
    max-width: 70.8333333333%;
    -ms-flex-preferred-size: 70.8333333333%;
        flex-basis: 70.8333333333%;
  }
}

@media only screen and (min-width: 1680px) {
  .gr-18\@full {
    max-width: 75%;
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
  }
}

@media only screen and (min-width: 1680px) {
  .gr-19\@full {
    max-width: 79.1666666667%;
    -ms-flex-preferred-size: 79.1666666667%;
        flex-basis: 79.1666666667%;
  }
}

@media only screen and (min-width: 1680px) {
  .gr-20\@full {
    max-width: 83.3333333333%;
    -ms-flex-preferred-size: 83.3333333333%;
        flex-basis: 83.3333333333%;
  }
}

@media only screen and (min-width: 1680px) {
  .gr-21\@full {
    max-width: 87.5%;
    -ms-flex-preferred-size: 87.5%;
        flex-basis: 87.5%;
  }
}

@media only screen and (min-width: 1680px) {
  .gr-22\@full {
    max-width: 91.6666666667%;
    -ms-flex-preferred-size: 91.6666666667%;
        flex-basis: 91.6666666667%;
  }
}

@media only screen and (min-width: 1680px) {
  .gr-23\@full {
    max-width: 95.8333333333%;
    -ms-flex-preferred-size: 95.8333333333%;
        flex-basis: 95.8333333333%;
  }
}

@media only screen and (min-width: 1680px) {
  .gr-24\@full {
    max-width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

@media only screen and (orientation:landscape) {
  .prefix-0\@landscape {
    margin-left: 0;
  }
  .pull-0\@landscape {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@landscape {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@landscape {
    margin-right: 0;
  }
  .prefix-24\@landscape {
    margin-left: 100%;
  }
  .suffix-24\@landscape {
    margin-right: 100%;
  }
  .push-24\@landscape {
    position: relative;
    left: 100%;
    right: auto;
  }
  .pull-24\@landscape {
    position: relative;
    right: 100%;
    left: auto;
  }
  .prefix-0\@landscape {
    margin-left: 0;
  }
  .pull-0\@landscape {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@landscape {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@landscape {
    margin-right: 0;
  }
  .prefix-23\@landscape {
    margin-left: 95.8333333333%;
  }
  .suffix-23\@landscape {
    margin-right: 95.8333333333%;
  }
  .push-23\@landscape {
    position: relative;
    left: 95.8333333333%;
    right: auto;
  }
  .pull-23\@landscape {
    position: relative;
    right: 95.8333333333%;
    left: auto;
  }
  .prefix-0\@landscape {
    margin-left: 0;
  }
  .pull-0\@landscape {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@landscape {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@landscape {
    margin-right: 0;
  }
  .prefix-22\@landscape {
    margin-left: 91.6666666667%;
  }
  .suffix-22\@landscape {
    margin-right: 91.6666666667%;
  }
  .push-22\@landscape {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .pull-22\@landscape {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
  .prefix-0\@landscape {
    margin-left: 0;
  }
  .pull-0\@landscape {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@landscape {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@landscape {
    margin-right: 0;
  }
  .prefix-21\@landscape {
    margin-left: 87.5%;
  }
  .suffix-21\@landscape {
    margin-right: 87.5%;
  }
  .push-21\@landscape {
    position: relative;
    left: 87.5%;
    right: auto;
  }
  .pull-21\@landscape {
    position: relative;
    right: 87.5%;
    left: auto;
  }
  .prefix-0\@landscape {
    margin-left: 0;
  }
  .pull-0\@landscape {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@landscape {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@landscape {
    margin-right: 0;
  }
  .prefix-20\@landscape {
    margin-left: 83.3333333333%;
  }
  .suffix-20\@landscape {
    margin-right: 83.3333333333%;
  }
  .push-20\@landscape {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .pull-20\@landscape {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .prefix-0\@landscape {
    margin-left: 0;
  }
  .pull-0\@landscape {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@landscape {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@landscape {
    margin-right: 0;
  }
  .prefix-19\@landscape {
    margin-left: 79.1666666667%;
  }
  .suffix-19\@landscape {
    margin-right: 79.1666666667%;
  }
  .push-19\@landscape {
    position: relative;
    left: 79.1666666667%;
    right: auto;
  }
  .pull-19\@landscape {
    position: relative;
    right: 79.1666666667%;
    left: auto;
  }
  .prefix-0\@landscape {
    margin-left: 0;
  }
  .pull-0\@landscape {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@landscape {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@landscape {
    margin-right: 0;
  }
  .prefix-18\@landscape {
    margin-left: 75%;
  }
  .suffix-18\@landscape {
    margin-right: 75%;
  }
  .push-18\@landscape {
    position: relative;
    left: 75%;
    right: auto;
  }
  .pull-18\@landscape {
    position: relative;
    right: 75%;
    left: auto;
  }
  .prefix-0\@landscape {
    margin-left: 0;
  }
  .pull-0\@landscape {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@landscape {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@landscape {
    margin-right: 0;
  }
  .prefix-17\@landscape {
    margin-left: 70.8333333333%;
  }
  .suffix-17\@landscape {
    margin-right: 70.8333333333%;
  }
  .push-17\@landscape {
    position: relative;
    left: 70.8333333333%;
    right: auto;
  }
  .pull-17\@landscape {
    position: relative;
    right: 70.8333333333%;
    left: auto;
  }
  .prefix-0\@landscape {
    margin-left: 0;
  }
  .pull-0\@landscape {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@landscape {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@landscape {
    margin-right: 0;
  }
  .prefix-16\@landscape {
    margin-left: 66.6666666667%;
  }
  .suffix-16\@landscape {
    margin-right: 66.6666666667%;
  }
  .push-16\@landscape {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .pull-16\@landscape {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .prefix-0\@landscape {
    margin-left: 0;
  }
  .pull-0\@landscape {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@landscape {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@landscape {
    margin-right: 0;
  }
  .prefix-15\@landscape {
    margin-left: 62.5%;
  }
  .suffix-15\@landscape {
    margin-right: 62.5%;
  }
  .push-15\@landscape {
    position: relative;
    left: 62.5%;
    right: auto;
  }
  .pull-15\@landscape {
    position: relative;
    right: 62.5%;
    left: auto;
  }
  .prefix-0\@landscape {
    margin-left: 0;
  }
  .pull-0\@landscape {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@landscape {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@landscape {
    margin-right: 0;
  }
  .prefix-14\@landscape {
    margin-left: 58.3333333333%;
  }
  .suffix-14\@landscape {
    margin-right: 58.3333333333%;
  }
  .push-14\@landscape {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .pull-14\@landscape {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .prefix-0\@landscape {
    margin-left: 0;
  }
  .pull-0\@landscape {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@landscape {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@landscape {
    margin-right: 0;
  }
  .prefix-13\@landscape {
    margin-left: 54.1666666667%;
  }
  .suffix-13\@landscape {
    margin-right: 54.1666666667%;
  }
  .push-13\@landscape {
    position: relative;
    left: 54.1666666667%;
    right: auto;
  }
  .pull-13\@landscape {
    position: relative;
    right: 54.1666666667%;
    left: auto;
  }
  .prefix-0\@landscape {
    margin-left: 0;
  }
  .pull-0\@landscape {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@landscape {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@landscape {
    margin-right: 0;
  }
  .prefix-12\@landscape {
    margin-left: 50%;
  }
  .suffix-12\@landscape {
    margin-right: 50%;
  }
  .push-12\@landscape {
    position: relative;
    left: 50%;
    right: auto;
  }
  .pull-12\@landscape {
    position: relative;
    right: 50%;
    left: auto;
  }
  .prefix-0\@landscape {
    margin-left: 0;
  }
  .pull-0\@landscape {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@landscape {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@landscape {
    margin-right: 0;
  }
  .prefix-11\@landscape {
    margin-left: 45.8333333333%;
  }
  .suffix-11\@landscape {
    margin-right: 45.8333333333%;
  }
  .push-11\@landscape {
    position: relative;
    left: 45.8333333333%;
    right: auto;
  }
  .pull-11\@landscape {
    position: relative;
    right: 45.8333333333%;
    left: auto;
  }
  .prefix-0\@landscape {
    margin-left: 0;
  }
  .pull-0\@landscape {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@landscape {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@landscape {
    margin-right: 0;
  }
  .prefix-10\@landscape {
    margin-left: 41.6666666667%;
  }
  .suffix-10\@landscape {
    margin-right: 41.6666666667%;
  }
  .push-10\@landscape {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .pull-10\@landscape {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .prefix-0\@landscape {
    margin-left: 0;
  }
  .pull-0\@landscape {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@landscape {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@landscape {
    margin-right: 0;
  }
  .prefix-9\@landscape {
    margin-left: 37.5%;
  }
  .suffix-9\@landscape {
    margin-right: 37.5%;
  }
  .push-9\@landscape {
    position: relative;
    left: 37.5%;
    right: auto;
  }
  .pull-9\@landscape {
    position: relative;
    right: 37.5%;
    left: auto;
  }
  .prefix-0\@landscape {
    margin-left: 0;
  }
  .pull-0\@landscape {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@landscape {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@landscape {
    margin-right: 0;
  }
  .prefix-8\@landscape {
    margin-left: 33.3333333333%;
  }
  .suffix-8\@landscape {
    margin-right: 33.3333333333%;
  }
  .push-8\@landscape {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .pull-8\@landscape {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .prefix-0\@landscape {
    margin-left: 0;
  }
  .pull-0\@landscape {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@landscape {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@landscape {
    margin-right: 0;
  }
  .prefix-7\@landscape {
    margin-left: 29.1666666667%;
  }
  .suffix-7\@landscape {
    margin-right: 29.1666666667%;
  }
  .push-7\@landscape {
    position: relative;
    left: 29.1666666667%;
    right: auto;
  }
  .pull-7\@landscape {
    position: relative;
    right: 29.1666666667%;
    left: auto;
  }
  .prefix-0\@landscape {
    margin-left: 0;
  }
  .pull-0\@landscape {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@landscape {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@landscape {
    margin-right: 0;
  }
  .prefix-6\@landscape {
    margin-left: 25%;
  }
  .suffix-6\@landscape {
    margin-right: 25%;
  }
  .push-6\@landscape {
    position: relative;
    left: 25%;
    right: auto;
  }
  .pull-6\@landscape {
    position: relative;
    right: 25%;
    left: auto;
  }
  .prefix-0\@landscape {
    margin-left: 0;
  }
  .pull-0\@landscape {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@landscape {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@landscape {
    margin-right: 0;
  }
  .prefix-5\@landscape {
    margin-left: 20.8333333333%;
  }
  .suffix-5\@landscape {
    margin-right: 20.8333333333%;
  }
  .push-5\@landscape {
    position: relative;
    left: 20.8333333333%;
    right: auto;
  }
  .pull-5\@landscape {
    position: relative;
    right: 20.8333333333%;
    left: auto;
  }
  .prefix-0\@landscape {
    margin-left: 0;
  }
  .pull-0\@landscape {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@landscape {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@landscape {
    margin-right: 0;
  }
  .prefix-4\@landscape {
    margin-left: 16.6666666667%;
  }
  .suffix-4\@landscape {
    margin-right: 16.6666666667%;
  }
  .push-4\@landscape {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .pull-4\@landscape {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .prefix-0\@landscape {
    margin-left: 0;
  }
  .pull-0\@landscape {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@landscape {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@landscape {
    margin-right: 0;
  }
  .prefix-3\@landscape {
    margin-left: 12.5%;
  }
  .suffix-3\@landscape {
    margin-right: 12.5%;
  }
  .push-3\@landscape {
    position: relative;
    left: 12.5%;
    right: auto;
  }
  .pull-3\@landscape {
    position: relative;
    right: 12.5%;
    left: auto;
  }
  .prefix-0\@landscape {
    margin-left: 0;
  }
  .pull-0\@landscape {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@landscape {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@landscape {
    margin-right: 0;
  }
  .prefix-2\@landscape {
    margin-left: 8.3333333333%;
  }
  .suffix-2\@landscape {
    margin-right: 8.3333333333%;
  }
  .push-2\@landscape {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .pull-2\@landscape {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .prefix-0\@landscape {
    margin-left: 0;
  }
  .pull-0\@landscape {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@landscape {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@landscape {
    margin-right: 0;
  }
  .prefix-1\@landscape {
    margin-left: 4.1666666667%;
  }
  .suffix-1\@landscape {
    margin-right: 4.1666666667%;
  }
  .push-1\@landscape {
    position: relative;
    left: 4.1666666667%;
    right: auto;
  }
  .pull-1\@landscape {
    position: relative;
    right: 4.1666666667%;
    left: auto;
  }
}

@media only screen and (orientation:portrait) {
  .prefix-0\@portrait {
    margin-left: 0;
  }
  .pull-0\@portrait {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@portrait {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@portrait {
    margin-right: 0;
  }
  .prefix-24\@portrait {
    margin-left: 100%;
  }
  .suffix-24\@portrait {
    margin-right: 100%;
  }
  .push-24\@portrait {
    position: relative;
    left: 100%;
    right: auto;
  }
  .pull-24\@portrait {
    position: relative;
    right: 100%;
    left: auto;
  }
  .prefix-0\@portrait {
    margin-left: 0;
  }
  .pull-0\@portrait {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@portrait {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@portrait {
    margin-right: 0;
  }
  .prefix-23\@portrait {
    margin-left: 95.8333333333%;
  }
  .suffix-23\@portrait {
    margin-right: 95.8333333333%;
  }
  .push-23\@portrait {
    position: relative;
    left: 95.8333333333%;
    right: auto;
  }
  .pull-23\@portrait {
    position: relative;
    right: 95.8333333333%;
    left: auto;
  }
  .prefix-0\@portrait {
    margin-left: 0;
  }
  .pull-0\@portrait {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@portrait {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@portrait {
    margin-right: 0;
  }
  .prefix-22\@portrait {
    margin-left: 91.6666666667%;
  }
  .suffix-22\@portrait {
    margin-right: 91.6666666667%;
  }
  .push-22\@portrait {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .pull-22\@portrait {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
  .prefix-0\@portrait {
    margin-left: 0;
  }
  .pull-0\@portrait {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@portrait {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@portrait {
    margin-right: 0;
  }
  .prefix-21\@portrait {
    margin-left: 87.5%;
  }
  .suffix-21\@portrait {
    margin-right: 87.5%;
  }
  .push-21\@portrait {
    position: relative;
    left: 87.5%;
    right: auto;
  }
  .pull-21\@portrait {
    position: relative;
    right: 87.5%;
    left: auto;
  }
  .prefix-0\@portrait {
    margin-left: 0;
  }
  .pull-0\@portrait {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@portrait {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@portrait {
    margin-right: 0;
  }
  .prefix-20\@portrait {
    margin-left: 83.3333333333%;
  }
  .suffix-20\@portrait {
    margin-right: 83.3333333333%;
  }
  .push-20\@portrait {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .pull-20\@portrait {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .prefix-0\@portrait {
    margin-left: 0;
  }
  .pull-0\@portrait {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@portrait {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@portrait {
    margin-right: 0;
  }
  .prefix-19\@portrait {
    margin-left: 79.1666666667%;
  }
  .suffix-19\@portrait {
    margin-right: 79.1666666667%;
  }
  .push-19\@portrait {
    position: relative;
    left: 79.1666666667%;
    right: auto;
  }
  .pull-19\@portrait {
    position: relative;
    right: 79.1666666667%;
    left: auto;
  }
  .prefix-0\@portrait {
    margin-left: 0;
  }
  .pull-0\@portrait {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@portrait {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@portrait {
    margin-right: 0;
  }
  .prefix-18\@portrait {
    margin-left: 75%;
  }
  .suffix-18\@portrait {
    margin-right: 75%;
  }
  .push-18\@portrait {
    position: relative;
    left: 75%;
    right: auto;
  }
  .pull-18\@portrait {
    position: relative;
    right: 75%;
    left: auto;
  }
  .prefix-0\@portrait {
    margin-left: 0;
  }
  .pull-0\@portrait {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@portrait {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@portrait {
    margin-right: 0;
  }
  .prefix-17\@portrait {
    margin-left: 70.8333333333%;
  }
  .suffix-17\@portrait {
    margin-right: 70.8333333333%;
  }
  .push-17\@portrait {
    position: relative;
    left: 70.8333333333%;
    right: auto;
  }
  .pull-17\@portrait {
    position: relative;
    right: 70.8333333333%;
    left: auto;
  }
  .prefix-0\@portrait {
    margin-left: 0;
  }
  .pull-0\@portrait {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@portrait {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@portrait {
    margin-right: 0;
  }
  .prefix-16\@portrait {
    margin-left: 66.6666666667%;
  }
  .suffix-16\@portrait {
    margin-right: 66.6666666667%;
  }
  .push-16\@portrait {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .pull-16\@portrait {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .prefix-0\@portrait {
    margin-left: 0;
  }
  .pull-0\@portrait {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@portrait {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@portrait {
    margin-right: 0;
  }
  .prefix-15\@portrait {
    margin-left: 62.5%;
  }
  .suffix-15\@portrait {
    margin-right: 62.5%;
  }
  .push-15\@portrait {
    position: relative;
    left: 62.5%;
    right: auto;
  }
  .pull-15\@portrait {
    position: relative;
    right: 62.5%;
    left: auto;
  }
  .prefix-0\@portrait {
    margin-left: 0;
  }
  .pull-0\@portrait {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@portrait {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@portrait {
    margin-right: 0;
  }
  .prefix-14\@portrait {
    margin-left: 58.3333333333%;
  }
  .suffix-14\@portrait {
    margin-right: 58.3333333333%;
  }
  .push-14\@portrait {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .pull-14\@portrait {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .prefix-0\@portrait {
    margin-left: 0;
  }
  .pull-0\@portrait {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@portrait {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@portrait {
    margin-right: 0;
  }
  .prefix-13\@portrait {
    margin-left: 54.1666666667%;
  }
  .suffix-13\@portrait {
    margin-right: 54.1666666667%;
  }
  .push-13\@portrait {
    position: relative;
    left: 54.1666666667%;
    right: auto;
  }
  .pull-13\@portrait {
    position: relative;
    right: 54.1666666667%;
    left: auto;
  }
  .prefix-0\@portrait {
    margin-left: 0;
  }
  .pull-0\@portrait {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@portrait {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@portrait {
    margin-right: 0;
  }
  .prefix-12\@portrait {
    margin-left: 50%;
  }
  .suffix-12\@portrait {
    margin-right: 50%;
  }
  .push-12\@portrait {
    position: relative;
    left: 50%;
    right: auto;
  }
  .pull-12\@portrait {
    position: relative;
    right: 50%;
    left: auto;
  }
  .prefix-0\@portrait {
    margin-left: 0;
  }
  .pull-0\@portrait {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@portrait {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@portrait {
    margin-right: 0;
  }
  .prefix-11\@portrait {
    margin-left: 45.8333333333%;
  }
  .suffix-11\@portrait {
    margin-right: 45.8333333333%;
  }
  .push-11\@portrait {
    position: relative;
    left: 45.8333333333%;
    right: auto;
  }
  .pull-11\@portrait {
    position: relative;
    right: 45.8333333333%;
    left: auto;
  }
  .prefix-0\@portrait {
    margin-left: 0;
  }
  .pull-0\@portrait {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@portrait {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@portrait {
    margin-right: 0;
  }
  .prefix-10\@portrait {
    margin-left: 41.6666666667%;
  }
  .suffix-10\@portrait {
    margin-right: 41.6666666667%;
  }
  .push-10\@portrait {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .pull-10\@portrait {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .prefix-0\@portrait {
    margin-left: 0;
  }
  .pull-0\@portrait {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@portrait {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@portrait {
    margin-right: 0;
  }
  .prefix-9\@portrait {
    margin-left: 37.5%;
  }
  .suffix-9\@portrait {
    margin-right: 37.5%;
  }
  .push-9\@portrait {
    position: relative;
    left: 37.5%;
    right: auto;
  }
  .pull-9\@portrait {
    position: relative;
    right: 37.5%;
    left: auto;
  }
  .prefix-0\@portrait {
    margin-left: 0;
  }
  .pull-0\@portrait {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@portrait {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@portrait {
    margin-right: 0;
  }
  .prefix-8\@portrait {
    margin-left: 33.3333333333%;
  }
  .suffix-8\@portrait {
    margin-right: 33.3333333333%;
  }
  .push-8\@portrait {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .pull-8\@portrait {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .prefix-0\@portrait {
    margin-left: 0;
  }
  .pull-0\@portrait {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@portrait {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@portrait {
    margin-right: 0;
  }
  .prefix-7\@portrait {
    margin-left: 29.1666666667%;
  }
  .suffix-7\@portrait {
    margin-right: 29.1666666667%;
  }
  .push-7\@portrait {
    position: relative;
    left: 29.1666666667%;
    right: auto;
  }
  .pull-7\@portrait {
    position: relative;
    right: 29.1666666667%;
    left: auto;
  }
  .prefix-0\@portrait {
    margin-left: 0;
  }
  .pull-0\@portrait {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@portrait {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@portrait {
    margin-right: 0;
  }
  .prefix-6\@portrait {
    margin-left: 25%;
  }
  .suffix-6\@portrait {
    margin-right: 25%;
  }
  .push-6\@portrait {
    position: relative;
    left: 25%;
    right: auto;
  }
  .pull-6\@portrait {
    position: relative;
    right: 25%;
    left: auto;
  }
  .prefix-0\@portrait {
    margin-left: 0;
  }
  .pull-0\@portrait {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@portrait {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@portrait {
    margin-right: 0;
  }
  .prefix-5\@portrait {
    margin-left: 20.8333333333%;
  }
  .suffix-5\@portrait {
    margin-right: 20.8333333333%;
  }
  .push-5\@portrait {
    position: relative;
    left: 20.8333333333%;
    right: auto;
  }
  .pull-5\@portrait {
    position: relative;
    right: 20.8333333333%;
    left: auto;
  }
  .prefix-0\@portrait {
    margin-left: 0;
  }
  .pull-0\@portrait {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@portrait {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@portrait {
    margin-right: 0;
  }
  .prefix-4\@portrait {
    margin-left: 16.6666666667%;
  }
  .suffix-4\@portrait {
    margin-right: 16.6666666667%;
  }
  .push-4\@portrait {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .pull-4\@portrait {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .prefix-0\@portrait {
    margin-left: 0;
  }
  .pull-0\@portrait {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@portrait {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@portrait {
    margin-right: 0;
  }
  .prefix-3\@portrait {
    margin-left: 12.5%;
  }
  .suffix-3\@portrait {
    margin-right: 12.5%;
  }
  .push-3\@portrait {
    position: relative;
    left: 12.5%;
    right: auto;
  }
  .pull-3\@portrait {
    position: relative;
    right: 12.5%;
    left: auto;
  }
  .prefix-0\@portrait {
    margin-left: 0;
  }
  .pull-0\@portrait {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@portrait {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@portrait {
    margin-right: 0;
  }
  .prefix-2\@portrait {
    margin-left: 8.3333333333%;
  }
  .suffix-2\@portrait {
    margin-right: 8.3333333333%;
  }
  .push-2\@portrait {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .pull-2\@portrait {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .prefix-0\@portrait {
    margin-left: 0;
  }
  .pull-0\@portrait {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@portrait {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@portrait {
    margin-right: 0;
  }
  .prefix-1\@portrait {
    margin-left: 4.1666666667%;
  }
  .suffix-1\@portrait {
    margin-right: 4.1666666667%;
  }
  .push-1\@portrait {
    position: relative;
    left: 4.1666666667%;
    right: auto;
  }
  .pull-1\@portrait {
    position: relative;
    right: 4.1666666667%;
    left: auto;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .prefix-0\@retina {
    margin-left: 0;
  }
  .pull-0\@retina {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@retina {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@retina {
    margin-right: 0;
  }
  .prefix-24\@retina {
    margin-left: 100%;
  }
  .suffix-24\@retina {
    margin-right: 100%;
  }
  .push-24\@retina {
    position: relative;
    left: 100%;
    right: auto;
  }
  .pull-24\@retina {
    position: relative;
    right: 100%;
    left: auto;
  }
  .prefix-0\@retina {
    margin-left: 0;
  }
  .pull-0\@retina {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@retina {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@retina {
    margin-right: 0;
  }
  .prefix-23\@retina {
    margin-left: 95.8333333333%;
  }
  .suffix-23\@retina {
    margin-right: 95.8333333333%;
  }
  .push-23\@retina {
    position: relative;
    left: 95.8333333333%;
    right: auto;
  }
  .pull-23\@retina {
    position: relative;
    right: 95.8333333333%;
    left: auto;
  }
  .prefix-0\@retina {
    margin-left: 0;
  }
  .pull-0\@retina {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@retina {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@retina {
    margin-right: 0;
  }
  .prefix-22\@retina {
    margin-left: 91.6666666667%;
  }
  .suffix-22\@retina {
    margin-right: 91.6666666667%;
  }
  .push-22\@retina {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .pull-22\@retina {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
  .prefix-0\@retina {
    margin-left: 0;
  }
  .pull-0\@retina {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@retina {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@retina {
    margin-right: 0;
  }
  .prefix-21\@retina {
    margin-left: 87.5%;
  }
  .suffix-21\@retina {
    margin-right: 87.5%;
  }
  .push-21\@retina {
    position: relative;
    left: 87.5%;
    right: auto;
  }
  .pull-21\@retina {
    position: relative;
    right: 87.5%;
    left: auto;
  }
  .prefix-0\@retina {
    margin-left: 0;
  }
  .pull-0\@retina {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@retina {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@retina {
    margin-right: 0;
  }
  .prefix-20\@retina {
    margin-left: 83.3333333333%;
  }
  .suffix-20\@retina {
    margin-right: 83.3333333333%;
  }
  .push-20\@retina {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .pull-20\@retina {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .prefix-0\@retina {
    margin-left: 0;
  }
  .pull-0\@retina {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@retina {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@retina {
    margin-right: 0;
  }
  .prefix-19\@retina {
    margin-left: 79.1666666667%;
  }
  .suffix-19\@retina {
    margin-right: 79.1666666667%;
  }
  .push-19\@retina {
    position: relative;
    left: 79.1666666667%;
    right: auto;
  }
  .pull-19\@retina {
    position: relative;
    right: 79.1666666667%;
    left: auto;
  }
  .prefix-0\@retina {
    margin-left: 0;
  }
  .pull-0\@retina {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@retina {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@retina {
    margin-right: 0;
  }
  .prefix-18\@retina {
    margin-left: 75%;
  }
  .suffix-18\@retina {
    margin-right: 75%;
  }
  .push-18\@retina {
    position: relative;
    left: 75%;
    right: auto;
  }
  .pull-18\@retina {
    position: relative;
    right: 75%;
    left: auto;
  }
  .prefix-0\@retina {
    margin-left: 0;
  }
  .pull-0\@retina {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@retina {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@retina {
    margin-right: 0;
  }
  .prefix-17\@retina {
    margin-left: 70.8333333333%;
  }
  .suffix-17\@retina {
    margin-right: 70.8333333333%;
  }
  .push-17\@retina {
    position: relative;
    left: 70.8333333333%;
    right: auto;
  }
  .pull-17\@retina {
    position: relative;
    right: 70.8333333333%;
    left: auto;
  }
  .prefix-0\@retina {
    margin-left: 0;
  }
  .pull-0\@retina {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@retina {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@retina {
    margin-right: 0;
  }
  .prefix-16\@retina {
    margin-left: 66.6666666667%;
  }
  .suffix-16\@retina {
    margin-right: 66.6666666667%;
  }
  .push-16\@retina {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .pull-16\@retina {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .prefix-0\@retina {
    margin-left: 0;
  }
  .pull-0\@retina {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@retina {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@retina {
    margin-right: 0;
  }
  .prefix-15\@retina {
    margin-left: 62.5%;
  }
  .suffix-15\@retina {
    margin-right: 62.5%;
  }
  .push-15\@retina {
    position: relative;
    left: 62.5%;
    right: auto;
  }
  .pull-15\@retina {
    position: relative;
    right: 62.5%;
    left: auto;
  }
  .prefix-0\@retina {
    margin-left: 0;
  }
  .pull-0\@retina {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@retina {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@retina {
    margin-right: 0;
  }
  .prefix-14\@retina {
    margin-left: 58.3333333333%;
  }
  .suffix-14\@retina {
    margin-right: 58.3333333333%;
  }
  .push-14\@retina {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .pull-14\@retina {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .prefix-0\@retina {
    margin-left: 0;
  }
  .pull-0\@retina {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@retina {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@retina {
    margin-right: 0;
  }
  .prefix-13\@retina {
    margin-left: 54.1666666667%;
  }
  .suffix-13\@retina {
    margin-right: 54.1666666667%;
  }
  .push-13\@retina {
    position: relative;
    left: 54.1666666667%;
    right: auto;
  }
  .pull-13\@retina {
    position: relative;
    right: 54.1666666667%;
    left: auto;
  }
  .prefix-0\@retina {
    margin-left: 0;
  }
  .pull-0\@retina {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@retina {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@retina {
    margin-right: 0;
  }
  .prefix-12\@retina {
    margin-left: 50%;
  }
  .suffix-12\@retina {
    margin-right: 50%;
  }
  .push-12\@retina {
    position: relative;
    left: 50%;
    right: auto;
  }
  .pull-12\@retina {
    position: relative;
    right: 50%;
    left: auto;
  }
  .prefix-0\@retina {
    margin-left: 0;
  }
  .pull-0\@retina {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@retina {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@retina {
    margin-right: 0;
  }
  .prefix-11\@retina {
    margin-left: 45.8333333333%;
  }
  .suffix-11\@retina {
    margin-right: 45.8333333333%;
  }
  .push-11\@retina {
    position: relative;
    left: 45.8333333333%;
    right: auto;
  }
  .pull-11\@retina {
    position: relative;
    right: 45.8333333333%;
    left: auto;
  }
  .prefix-0\@retina {
    margin-left: 0;
  }
  .pull-0\@retina {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@retina {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@retina {
    margin-right: 0;
  }
  .prefix-10\@retina {
    margin-left: 41.6666666667%;
  }
  .suffix-10\@retina {
    margin-right: 41.6666666667%;
  }
  .push-10\@retina {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .pull-10\@retina {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .prefix-0\@retina {
    margin-left: 0;
  }
  .pull-0\@retina {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@retina {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@retina {
    margin-right: 0;
  }
  .prefix-9\@retina {
    margin-left: 37.5%;
  }
  .suffix-9\@retina {
    margin-right: 37.5%;
  }
  .push-9\@retina {
    position: relative;
    left: 37.5%;
    right: auto;
  }
  .pull-9\@retina {
    position: relative;
    right: 37.5%;
    left: auto;
  }
  .prefix-0\@retina {
    margin-left: 0;
  }
  .pull-0\@retina {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@retina {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@retina {
    margin-right: 0;
  }
  .prefix-8\@retina {
    margin-left: 33.3333333333%;
  }
  .suffix-8\@retina {
    margin-right: 33.3333333333%;
  }
  .push-8\@retina {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .pull-8\@retina {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .prefix-0\@retina {
    margin-left: 0;
  }
  .pull-0\@retina {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@retina {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@retina {
    margin-right: 0;
  }
  .prefix-7\@retina {
    margin-left: 29.1666666667%;
  }
  .suffix-7\@retina {
    margin-right: 29.1666666667%;
  }
  .push-7\@retina {
    position: relative;
    left: 29.1666666667%;
    right: auto;
  }
  .pull-7\@retina {
    position: relative;
    right: 29.1666666667%;
    left: auto;
  }
  .prefix-0\@retina {
    margin-left: 0;
  }
  .pull-0\@retina {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@retina {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@retina {
    margin-right: 0;
  }
  .prefix-6\@retina {
    margin-left: 25%;
  }
  .suffix-6\@retina {
    margin-right: 25%;
  }
  .push-6\@retina {
    position: relative;
    left: 25%;
    right: auto;
  }
  .pull-6\@retina {
    position: relative;
    right: 25%;
    left: auto;
  }
  .prefix-0\@retina {
    margin-left: 0;
  }
  .pull-0\@retina {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@retina {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@retina {
    margin-right: 0;
  }
  .prefix-5\@retina {
    margin-left: 20.8333333333%;
  }
  .suffix-5\@retina {
    margin-right: 20.8333333333%;
  }
  .push-5\@retina {
    position: relative;
    left: 20.8333333333%;
    right: auto;
  }
  .pull-5\@retina {
    position: relative;
    right: 20.8333333333%;
    left: auto;
  }
  .prefix-0\@retina {
    margin-left: 0;
  }
  .pull-0\@retina {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@retina {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@retina {
    margin-right: 0;
  }
  .prefix-4\@retina {
    margin-left: 16.6666666667%;
  }
  .suffix-4\@retina {
    margin-right: 16.6666666667%;
  }
  .push-4\@retina {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .pull-4\@retina {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .prefix-0\@retina {
    margin-left: 0;
  }
  .pull-0\@retina {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@retina {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@retina {
    margin-right: 0;
  }
  .prefix-3\@retina {
    margin-left: 12.5%;
  }
  .suffix-3\@retina {
    margin-right: 12.5%;
  }
  .push-3\@retina {
    position: relative;
    left: 12.5%;
    right: auto;
  }
  .pull-3\@retina {
    position: relative;
    right: 12.5%;
    left: auto;
  }
  .prefix-0\@retina {
    margin-left: 0;
  }
  .pull-0\@retina {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@retina {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@retina {
    margin-right: 0;
  }
  .prefix-2\@retina {
    margin-left: 8.3333333333%;
  }
  .suffix-2\@retina {
    margin-right: 8.3333333333%;
  }
  .push-2\@retina {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .pull-2\@retina {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .prefix-0\@retina {
    margin-left: 0;
  }
  .pull-0\@retina {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@retina {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@retina {
    margin-right: 0;
  }
  .prefix-1\@retina {
    margin-left: 4.1666666667%;
  }
  .suffix-1\@retina {
    margin-right: 4.1666666667%;
  }
  .push-1\@retina {
    position: relative;
    left: 4.1666666667%;
    right: auto;
  }
  .pull-1\@retina {
    position: relative;
    right: 4.1666666667%;
    left: auto;
  }
}

@media only screen and (min-width: 480px) {
  .prefix-0\@tiny {
    margin-left: 0;
  }
  .pull-0\@tiny {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@tiny {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@tiny {
    margin-right: 0;
  }
  .prefix-24\@tiny {
    margin-left: 100%;
  }
  .suffix-24\@tiny {
    margin-right: 100%;
  }
  .push-24\@tiny {
    position: relative;
    left: 100%;
    right: auto;
  }
  .pull-24\@tiny {
    position: relative;
    right: 100%;
    left: auto;
  }
  .prefix-0\@tiny {
    margin-left: 0;
  }
  .pull-0\@tiny {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@tiny {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@tiny {
    margin-right: 0;
  }
  .prefix-23\@tiny {
    margin-left: 95.8333333333%;
  }
  .suffix-23\@tiny {
    margin-right: 95.8333333333%;
  }
  .push-23\@tiny {
    position: relative;
    left: 95.8333333333%;
    right: auto;
  }
  .pull-23\@tiny {
    position: relative;
    right: 95.8333333333%;
    left: auto;
  }
  .prefix-0\@tiny {
    margin-left: 0;
  }
  .pull-0\@tiny {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@tiny {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@tiny {
    margin-right: 0;
  }
  .prefix-22\@tiny {
    margin-left: 91.6666666667%;
  }
  .suffix-22\@tiny {
    margin-right: 91.6666666667%;
  }
  .push-22\@tiny {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .pull-22\@tiny {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
  .prefix-0\@tiny {
    margin-left: 0;
  }
  .pull-0\@tiny {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@tiny {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@tiny {
    margin-right: 0;
  }
  .prefix-21\@tiny {
    margin-left: 87.5%;
  }
  .suffix-21\@tiny {
    margin-right: 87.5%;
  }
  .push-21\@tiny {
    position: relative;
    left: 87.5%;
    right: auto;
  }
  .pull-21\@tiny {
    position: relative;
    right: 87.5%;
    left: auto;
  }
  .prefix-0\@tiny {
    margin-left: 0;
  }
  .pull-0\@tiny {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@tiny {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@tiny {
    margin-right: 0;
  }
  .prefix-20\@tiny {
    margin-left: 83.3333333333%;
  }
  .suffix-20\@tiny {
    margin-right: 83.3333333333%;
  }
  .push-20\@tiny {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .pull-20\@tiny {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .prefix-0\@tiny {
    margin-left: 0;
  }
  .pull-0\@tiny {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@tiny {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@tiny {
    margin-right: 0;
  }
  .prefix-19\@tiny {
    margin-left: 79.1666666667%;
  }
  .suffix-19\@tiny {
    margin-right: 79.1666666667%;
  }
  .push-19\@tiny {
    position: relative;
    left: 79.1666666667%;
    right: auto;
  }
  .pull-19\@tiny {
    position: relative;
    right: 79.1666666667%;
    left: auto;
  }
  .prefix-0\@tiny {
    margin-left: 0;
  }
  .pull-0\@tiny {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@tiny {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@tiny {
    margin-right: 0;
  }
  .prefix-18\@tiny {
    margin-left: 75%;
  }
  .suffix-18\@tiny {
    margin-right: 75%;
  }
  .push-18\@tiny {
    position: relative;
    left: 75%;
    right: auto;
  }
  .pull-18\@tiny {
    position: relative;
    right: 75%;
    left: auto;
  }
  .prefix-0\@tiny {
    margin-left: 0;
  }
  .pull-0\@tiny {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@tiny {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@tiny {
    margin-right: 0;
  }
  .prefix-17\@tiny {
    margin-left: 70.8333333333%;
  }
  .suffix-17\@tiny {
    margin-right: 70.8333333333%;
  }
  .push-17\@tiny {
    position: relative;
    left: 70.8333333333%;
    right: auto;
  }
  .pull-17\@tiny {
    position: relative;
    right: 70.8333333333%;
    left: auto;
  }
  .prefix-0\@tiny {
    margin-left: 0;
  }
  .pull-0\@tiny {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@tiny {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@tiny {
    margin-right: 0;
  }
  .prefix-16\@tiny {
    margin-left: 66.6666666667%;
  }
  .suffix-16\@tiny {
    margin-right: 66.6666666667%;
  }
  .push-16\@tiny {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .pull-16\@tiny {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .prefix-0\@tiny {
    margin-left: 0;
  }
  .pull-0\@tiny {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@tiny {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@tiny {
    margin-right: 0;
  }
  .prefix-15\@tiny {
    margin-left: 62.5%;
  }
  .suffix-15\@tiny {
    margin-right: 62.5%;
  }
  .push-15\@tiny {
    position: relative;
    left: 62.5%;
    right: auto;
  }
  .pull-15\@tiny {
    position: relative;
    right: 62.5%;
    left: auto;
  }
  .prefix-0\@tiny {
    margin-left: 0;
  }
  .pull-0\@tiny {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@tiny {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@tiny {
    margin-right: 0;
  }
  .prefix-14\@tiny {
    margin-left: 58.3333333333%;
  }
  .suffix-14\@tiny {
    margin-right: 58.3333333333%;
  }
  .push-14\@tiny {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .pull-14\@tiny {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .prefix-0\@tiny {
    margin-left: 0;
  }
  .pull-0\@tiny {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@tiny {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@tiny {
    margin-right: 0;
  }
  .prefix-13\@tiny {
    margin-left: 54.1666666667%;
  }
  .suffix-13\@tiny {
    margin-right: 54.1666666667%;
  }
  .push-13\@tiny {
    position: relative;
    left: 54.1666666667%;
    right: auto;
  }
  .pull-13\@tiny {
    position: relative;
    right: 54.1666666667%;
    left: auto;
  }
  .prefix-0\@tiny {
    margin-left: 0;
  }
  .pull-0\@tiny {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@tiny {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@tiny {
    margin-right: 0;
  }
  .prefix-12\@tiny {
    margin-left: 50%;
  }
  .suffix-12\@tiny {
    margin-right: 50%;
  }
  .push-12\@tiny {
    position: relative;
    left: 50%;
    right: auto;
  }
  .pull-12\@tiny {
    position: relative;
    right: 50%;
    left: auto;
  }
  .prefix-0\@tiny {
    margin-left: 0;
  }
  .pull-0\@tiny {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@tiny {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@tiny {
    margin-right: 0;
  }
  .prefix-11\@tiny {
    margin-left: 45.8333333333%;
  }
  .suffix-11\@tiny {
    margin-right: 45.8333333333%;
  }
  .push-11\@tiny {
    position: relative;
    left: 45.8333333333%;
    right: auto;
  }
  .pull-11\@tiny {
    position: relative;
    right: 45.8333333333%;
    left: auto;
  }
  .prefix-0\@tiny {
    margin-left: 0;
  }
  .pull-0\@tiny {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@tiny {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@tiny {
    margin-right: 0;
  }
  .prefix-10\@tiny {
    margin-left: 41.6666666667%;
  }
  .suffix-10\@tiny {
    margin-right: 41.6666666667%;
  }
  .push-10\@tiny {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .pull-10\@tiny {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .prefix-0\@tiny {
    margin-left: 0;
  }
  .pull-0\@tiny {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@tiny {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@tiny {
    margin-right: 0;
  }
  .prefix-9\@tiny {
    margin-left: 37.5%;
  }
  .suffix-9\@tiny {
    margin-right: 37.5%;
  }
  .push-9\@tiny {
    position: relative;
    left: 37.5%;
    right: auto;
  }
  .pull-9\@tiny {
    position: relative;
    right: 37.5%;
    left: auto;
  }
  .prefix-0\@tiny {
    margin-left: 0;
  }
  .pull-0\@tiny {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@tiny {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@tiny {
    margin-right: 0;
  }
  .prefix-8\@tiny {
    margin-left: 33.3333333333%;
  }
  .suffix-8\@tiny {
    margin-right: 33.3333333333%;
  }
  .push-8\@tiny {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .pull-8\@tiny {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .prefix-0\@tiny {
    margin-left: 0;
  }
  .pull-0\@tiny {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@tiny {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@tiny {
    margin-right: 0;
  }
  .prefix-7\@tiny {
    margin-left: 29.1666666667%;
  }
  .suffix-7\@tiny {
    margin-right: 29.1666666667%;
  }
  .push-7\@tiny {
    position: relative;
    left: 29.1666666667%;
    right: auto;
  }
  .pull-7\@tiny {
    position: relative;
    right: 29.1666666667%;
    left: auto;
  }
  .prefix-0\@tiny {
    margin-left: 0;
  }
  .pull-0\@tiny {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@tiny {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@tiny {
    margin-right: 0;
  }
  .prefix-6\@tiny {
    margin-left: 25%;
  }
  .suffix-6\@tiny {
    margin-right: 25%;
  }
  .push-6\@tiny {
    position: relative;
    left: 25%;
    right: auto;
  }
  .pull-6\@tiny {
    position: relative;
    right: 25%;
    left: auto;
  }
  .prefix-0\@tiny {
    margin-left: 0;
  }
  .pull-0\@tiny {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@tiny {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@tiny {
    margin-right: 0;
  }
  .prefix-5\@tiny {
    margin-left: 20.8333333333%;
  }
  .suffix-5\@tiny {
    margin-right: 20.8333333333%;
  }
  .push-5\@tiny {
    position: relative;
    left: 20.8333333333%;
    right: auto;
  }
  .pull-5\@tiny {
    position: relative;
    right: 20.8333333333%;
    left: auto;
  }
  .prefix-0\@tiny {
    margin-left: 0;
  }
  .pull-0\@tiny {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@tiny {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@tiny {
    margin-right: 0;
  }
  .prefix-4\@tiny {
    margin-left: 16.6666666667%;
  }
  .suffix-4\@tiny {
    margin-right: 16.6666666667%;
  }
  .push-4\@tiny {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .pull-4\@tiny {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .prefix-0\@tiny {
    margin-left: 0;
  }
  .pull-0\@tiny {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@tiny {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@tiny {
    margin-right: 0;
  }
  .prefix-3\@tiny {
    margin-left: 12.5%;
  }
  .suffix-3\@tiny {
    margin-right: 12.5%;
  }
  .push-3\@tiny {
    position: relative;
    left: 12.5%;
    right: auto;
  }
  .pull-3\@tiny {
    position: relative;
    right: 12.5%;
    left: auto;
  }
  .prefix-0\@tiny {
    margin-left: 0;
  }
  .pull-0\@tiny {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@tiny {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@tiny {
    margin-right: 0;
  }
  .prefix-2\@tiny {
    margin-left: 8.3333333333%;
  }
  .suffix-2\@tiny {
    margin-right: 8.3333333333%;
  }
  .push-2\@tiny {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .pull-2\@tiny {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .prefix-0\@tiny {
    margin-left: 0;
  }
  .pull-0\@tiny {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@tiny {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@tiny {
    margin-right: 0;
  }
  .prefix-1\@tiny {
    margin-left: 4.1666666667%;
  }
  .suffix-1\@tiny {
    margin-right: 4.1666666667%;
  }
  .push-1\@tiny {
    position: relative;
    left: 4.1666666667%;
    right: auto;
  }
  .pull-1\@tiny {
    position: relative;
    right: 4.1666666667%;
    left: auto;
  }
}

@media only screen and (min-width: 768px) {
  .prefix-0\@small {
    margin-left: 0;
  }
  .pull-0\@small {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@small {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@small {
    margin-right: 0;
  }
  .prefix-24\@small {
    margin-left: 100%;
  }
  .suffix-24\@small {
    margin-right: 100%;
  }
  .push-24\@small {
    position: relative;
    left: 100%;
    right: auto;
  }
  .pull-24\@small {
    position: relative;
    right: 100%;
    left: auto;
  }
  .prefix-0\@small {
    margin-left: 0;
  }
  .pull-0\@small {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@small {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@small {
    margin-right: 0;
  }
  .prefix-23\@small {
    margin-left: 95.8333333333%;
  }
  .suffix-23\@small {
    margin-right: 95.8333333333%;
  }
  .push-23\@small {
    position: relative;
    left: 95.8333333333%;
    right: auto;
  }
  .pull-23\@small {
    position: relative;
    right: 95.8333333333%;
    left: auto;
  }
  .prefix-0\@small {
    margin-left: 0;
  }
  .pull-0\@small {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@small {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@small {
    margin-right: 0;
  }
  .prefix-22\@small {
    margin-left: 91.6666666667%;
  }
  .suffix-22\@small {
    margin-right: 91.6666666667%;
  }
  .push-22\@small {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .pull-22\@small {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
  .prefix-0\@small {
    margin-left: 0;
  }
  .pull-0\@small {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@small {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@small {
    margin-right: 0;
  }
  .prefix-21\@small {
    margin-left: 87.5%;
  }
  .suffix-21\@small {
    margin-right: 87.5%;
  }
  .push-21\@small {
    position: relative;
    left: 87.5%;
    right: auto;
  }
  .pull-21\@small {
    position: relative;
    right: 87.5%;
    left: auto;
  }
  .prefix-0\@small {
    margin-left: 0;
  }
  .pull-0\@small {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@small {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@small {
    margin-right: 0;
  }
  .prefix-20\@small {
    margin-left: 83.3333333333%;
  }
  .suffix-20\@small {
    margin-right: 83.3333333333%;
  }
  .push-20\@small {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .pull-20\@small {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .prefix-0\@small {
    margin-left: 0;
  }
  .pull-0\@small {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@small {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@small {
    margin-right: 0;
  }
  .prefix-19\@small {
    margin-left: 79.1666666667%;
  }
  .suffix-19\@small {
    margin-right: 79.1666666667%;
  }
  .push-19\@small {
    position: relative;
    left: 79.1666666667%;
    right: auto;
  }
  .pull-19\@small {
    position: relative;
    right: 79.1666666667%;
    left: auto;
  }
  .prefix-0\@small {
    margin-left: 0;
  }
  .pull-0\@small {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@small {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@small {
    margin-right: 0;
  }
  .prefix-18\@small {
    margin-left: 75%;
  }
  .suffix-18\@small {
    margin-right: 75%;
  }
  .push-18\@small {
    position: relative;
    left: 75%;
    right: auto;
  }
  .pull-18\@small {
    position: relative;
    right: 75%;
    left: auto;
  }
  .prefix-0\@small {
    margin-left: 0;
  }
  .pull-0\@small {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@small {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@small {
    margin-right: 0;
  }
  .prefix-17\@small {
    margin-left: 70.8333333333%;
  }
  .suffix-17\@small {
    margin-right: 70.8333333333%;
  }
  .push-17\@small {
    position: relative;
    left: 70.8333333333%;
    right: auto;
  }
  .pull-17\@small {
    position: relative;
    right: 70.8333333333%;
    left: auto;
  }
  .prefix-0\@small {
    margin-left: 0;
  }
  .pull-0\@small {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@small {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@small {
    margin-right: 0;
  }
  .prefix-16\@small {
    margin-left: 66.6666666667%;
  }
  .suffix-16\@small {
    margin-right: 66.6666666667%;
  }
  .push-16\@small {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .pull-16\@small {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .prefix-0\@small {
    margin-left: 0;
  }
  .pull-0\@small {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@small {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@small {
    margin-right: 0;
  }
  .prefix-15\@small {
    margin-left: 62.5%;
  }
  .suffix-15\@small {
    margin-right: 62.5%;
  }
  .push-15\@small {
    position: relative;
    left: 62.5%;
    right: auto;
  }
  .pull-15\@small {
    position: relative;
    right: 62.5%;
    left: auto;
  }
  .prefix-0\@small {
    margin-left: 0;
  }
  .pull-0\@small {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@small {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@small {
    margin-right: 0;
  }
  .prefix-14\@small {
    margin-left: 58.3333333333%;
  }
  .suffix-14\@small {
    margin-right: 58.3333333333%;
  }
  .push-14\@small {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .pull-14\@small {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .prefix-0\@small {
    margin-left: 0;
  }
  .pull-0\@small {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@small {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@small {
    margin-right: 0;
  }
  .prefix-13\@small {
    margin-left: 54.1666666667%;
  }
  .suffix-13\@small {
    margin-right: 54.1666666667%;
  }
  .push-13\@small {
    position: relative;
    left: 54.1666666667%;
    right: auto;
  }
  .pull-13\@small {
    position: relative;
    right: 54.1666666667%;
    left: auto;
  }
  .prefix-0\@small {
    margin-left: 0;
  }
  .pull-0\@small {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@small {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@small {
    margin-right: 0;
  }
  .prefix-12\@small {
    margin-left: 50%;
  }
  .suffix-12\@small {
    margin-right: 50%;
  }
  .push-12\@small {
    position: relative;
    left: 50%;
    right: auto;
  }
  .pull-12\@small {
    position: relative;
    right: 50%;
    left: auto;
  }
  .prefix-0\@small {
    margin-left: 0;
  }
  .pull-0\@small {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@small {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@small {
    margin-right: 0;
  }
  .prefix-11\@small {
    margin-left: 45.8333333333%;
  }
  .suffix-11\@small {
    margin-right: 45.8333333333%;
  }
  .push-11\@small {
    position: relative;
    left: 45.8333333333%;
    right: auto;
  }
  .pull-11\@small {
    position: relative;
    right: 45.8333333333%;
    left: auto;
  }
  .prefix-0\@small {
    margin-left: 0;
  }
  .pull-0\@small {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@small {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@small {
    margin-right: 0;
  }
  .prefix-10\@small {
    margin-left: 41.6666666667%;
  }
  .suffix-10\@small {
    margin-right: 41.6666666667%;
  }
  .push-10\@small {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .pull-10\@small {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .prefix-0\@small {
    margin-left: 0;
  }
  .pull-0\@small {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@small {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@small {
    margin-right: 0;
  }
  .prefix-9\@small {
    margin-left: 37.5%;
  }
  .suffix-9\@small {
    margin-right: 37.5%;
  }
  .push-9\@small {
    position: relative;
    left: 37.5%;
    right: auto;
  }
  .pull-9\@small {
    position: relative;
    right: 37.5%;
    left: auto;
  }
  .prefix-0\@small {
    margin-left: 0;
  }
  .pull-0\@small {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@small {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@small {
    margin-right: 0;
  }
  .prefix-8\@small {
    margin-left: 33.3333333333%;
  }
  .suffix-8\@small {
    margin-right: 33.3333333333%;
  }
  .push-8\@small {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .pull-8\@small {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .prefix-0\@small {
    margin-left: 0;
  }
  .pull-0\@small {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@small {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@small {
    margin-right: 0;
  }
  .prefix-7\@small {
    margin-left: 29.1666666667%;
  }
  .suffix-7\@small {
    margin-right: 29.1666666667%;
  }
  .push-7\@small {
    position: relative;
    left: 29.1666666667%;
    right: auto;
  }
  .pull-7\@small {
    position: relative;
    right: 29.1666666667%;
    left: auto;
  }
  .prefix-0\@small {
    margin-left: 0;
  }
  .pull-0\@small {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@small {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@small {
    margin-right: 0;
  }
  .prefix-6\@small {
    margin-left: 25%;
  }
  .suffix-6\@small {
    margin-right: 25%;
  }
  .push-6\@small {
    position: relative;
    left: 25%;
    right: auto;
  }
  .pull-6\@small {
    position: relative;
    right: 25%;
    left: auto;
  }
  .prefix-0\@small {
    margin-left: 0;
  }
  .pull-0\@small {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@small {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@small {
    margin-right: 0;
  }
  .prefix-5\@small {
    margin-left: 20.8333333333%;
  }
  .suffix-5\@small {
    margin-right: 20.8333333333%;
  }
  .push-5\@small {
    position: relative;
    left: 20.8333333333%;
    right: auto;
  }
  .pull-5\@small {
    position: relative;
    right: 20.8333333333%;
    left: auto;
  }
  .prefix-0\@small {
    margin-left: 0;
  }
  .pull-0\@small {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@small {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@small {
    margin-right: 0;
  }
  .prefix-4\@small {
    margin-left: 16.6666666667%;
  }
  .suffix-4\@small {
    margin-right: 16.6666666667%;
  }
  .push-4\@small {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .pull-4\@small {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .prefix-0\@small {
    margin-left: 0;
  }
  .pull-0\@small {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@small {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@small {
    margin-right: 0;
  }
  .prefix-3\@small {
    margin-left: 12.5%;
  }
  .suffix-3\@small {
    margin-right: 12.5%;
  }
  .push-3\@small {
    position: relative;
    left: 12.5%;
    right: auto;
  }
  .pull-3\@small {
    position: relative;
    right: 12.5%;
    left: auto;
  }
  .prefix-0\@small {
    margin-left: 0;
  }
  .pull-0\@small {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@small {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@small {
    margin-right: 0;
  }
  .prefix-2\@small {
    margin-left: 8.3333333333%;
  }
  .suffix-2\@small {
    margin-right: 8.3333333333%;
  }
  .push-2\@small {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .pull-2\@small {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .prefix-0\@small {
    margin-left: 0;
  }
  .pull-0\@small {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@small {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@small {
    margin-right: 0;
  }
  .prefix-1\@small {
    margin-left: 4.1666666667%;
  }
  .suffix-1\@small {
    margin-right: 4.1666666667%;
  }
  .push-1\@small {
    position: relative;
    left: 4.1666666667%;
    right: auto;
  }
  .pull-1\@small {
    position: relative;
    right: 4.1666666667%;
    left: auto;
  }
}

@media only screen and (min-width: 1024px) {
  .prefix-0\@medium {
    margin-left: 0;
  }
  .pull-0\@medium {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@medium {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@medium {
    margin-right: 0;
  }
  .prefix-24\@medium {
    margin-left: 100%;
  }
  .suffix-24\@medium {
    margin-right: 100%;
  }
  .push-24\@medium {
    position: relative;
    left: 100%;
    right: auto;
  }
  .pull-24\@medium {
    position: relative;
    right: 100%;
    left: auto;
  }
  .prefix-0\@medium {
    margin-left: 0;
  }
  .pull-0\@medium {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@medium {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@medium {
    margin-right: 0;
  }
  .prefix-23\@medium {
    margin-left: 95.8333333333%;
  }
  .suffix-23\@medium {
    margin-right: 95.8333333333%;
  }
  .push-23\@medium {
    position: relative;
    left: 95.8333333333%;
    right: auto;
  }
  .pull-23\@medium {
    position: relative;
    right: 95.8333333333%;
    left: auto;
  }
  .prefix-0\@medium {
    margin-left: 0;
  }
  .pull-0\@medium {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@medium {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@medium {
    margin-right: 0;
  }
  .prefix-22\@medium {
    margin-left: 91.6666666667%;
  }
  .suffix-22\@medium {
    margin-right: 91.6666666667%;
  }
  .push-22\@medium {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .pull-22\@medium {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
  .prefix-0\@medium {
    margin-left: 0;
  }
  .pull-0\@medium {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@medium {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@medium {
    margin-right: 0;
  }
  .prefix-21\@medium {
    margin-left: 87.5%;
  }
  .suffix-21\@medium {
    margin-right: 87.5%;
  }
  .push-21\@medium {
    position: relative;
    left: 87.5%;
    right: auto;
  }
  .pull-21\@medium {
    position: relative;
    right: 87.5%;
    left: auto;
  }
  .prefix-0\@medium {
    margin-left: 0;
  }
  .pull-0\@medium {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@medium {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@medium {
    margin-right: 0;
  }
  .prefix-20\@medium {
    margin-left: 83.3333333333%;
  }
  .suffix-20\@medium {
    margin-right: 83.3333333333%;
  }
  .push-20\@medium {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .pull-20\@medium {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .prefix-0\@medium {
    margin-left: 0;
  }
  .pull-0\@medium {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@medium {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@medium {
    margin-right: 0;
  }
  .prefix-19\@medium {
    margin-left: 79.1666666667%;
  }
  .suffix-19\@medium {
    margin-right: 79.1666666667%;
  }
  .push-19\@medium {
    position: relative;
    left: 79.1666666667%;
    right: auto;
  }
  .pull-19\@medium {
    position: relative;
    right: 79.1666666667%;
    left: auto;
  }
  .prefix-0\@medium {
    margin-left: 0;
  }
  .pull-0\@medium {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@medium {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@medium {
    margin-right: 0;
  }
  .prefix-18\@medium {
    margin-left: 75%;
  }
  .suffix-18\@medium {
    margin-right: 75%;
  }
  .push-18\@medium {
    position: relative;
    left: 75%;
    right: auto;
  }
  .pull-18\@medium {
    position: relative;
    right: 75%;
    left: auto;
  }
  .prefix-0\@medium {
    margin-left: 0;
  }
  .pull-0\@medium {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@medium {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@medium {
    margin-right: 0;
  }
  .prefix-17\@medium {
    margin-left: 70.8333333333%;
  }
  .suffix-17\@medium {
    margin-right: 70.8333333333%;
  }
  .push-17\@medium {
    position: relative;
    left: 70.8333333333%;
    right: auto;
  }
  .pull-17\@medium {
    position: relative;
    right: 70.8333333333%;
    left: auto;
  }
  .prefix-0\@medium {
    margin-left: 0;
  }
  .pull-0\@medium {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@medium {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@medium {
    margin-right: 0;
  }
  .prefix-16\@medium {
    margin-left: 66.6666666667%;
  }
  .suffix-16\@medium {
    margin-right: 66.6666666667%;
  }
  .push-16\@medium {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .pull-16\@medium {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .prefix-0\@medium {
    margin-left: 0;
  }
  .pull-0\@medium {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@medium {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@medium {
    margin-right: 0;
  }
  .prefix-15\@medium {
    margin-left: 62.5%;
  }
  .suffix-15\@medium {
    margin-right: 62.5%;
  }
  .push-15\@medium {
    position: relative;
    left: 62.5%;
    right: auto;
  }
  .pull-15\@medium {
    position: relative;
    right: 62.5%;
    left: auto;
  }
  .prefix-0\@medium {
    margin-left: 0;
  }
  .pull-0\@medium {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@medium {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@medium {
    margin-right: 0;
  }
  .prefix-14\@medium {
    margin-left: 58.3333333333%;
  }
  .suffix-14\@medium {
    margin-right: 58.3333333333%;
  }
  .push-14\@medium {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .pull-14\@medium {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .prefix-0\@medium {
    margin-left: 0;
  }
  .pull-0\@medium {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@medium {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@medium {
    margin-right: 0;
  }
  .prefix-13\@medium {
    margin-left: 54.1666666667%;
  }
  .suffix-13\@medium {
    margin-right: 54.1666666667%;
  }
  .push-13\@medium {
    position: relative;
    left: 54.1666666667%;
    right: auto;
  }
  .pull-13\@medium {
    position: relative;
    right: 54.1666666667%;
    left: auto;
  }
  .prefix-0\@medium {
    margin-left: 0;
  }
  .pull-0\@medium {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@medium {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@medium {
    margin-right: 0;
  }
  .prefix-12\@medium {
    margin-left: 50%;
  }
  .suffix-12\@medium {
    margin-right: 50%;
  }
  .push-12\@medium {
    position: relative;
    left: 50%;
    right: auto;
  }
  .pull-12\@medium {
    position: relative;
    right: 50%;
    left: auto;
  }
  .prefix-0\@medium {
    margin-left: 0;
  }
  .pull-0\@medium {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@medium {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@medium {
    margin-right: 0;
  }
  .prefix-11\@medium {
    margin-left: 45.8333333333%;
  }
  .suffix-11\@medium {
    margin-right: 45.8333333333%;
  }
  .push-11\@medium {
    position: relative;
    left: 45.8333333333%;
    right: auto;
  }
  .pull-11\@medium {
    position: relative;
    right: 45.8333333333%;
    left: auto;
  }
  .prefix-0\@medium {
    margin-left: 0;
  }
  .pull-0\@medium {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@medium {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@medium {
    margin-right: 0;
  }
  .prefix-10\@medium {
    margin-left: 41.6666666667%;
  }
  .suffix-10\@medium {
    margin-right: 41.6666666667%;
  }
  .push-10\@medium {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .pull-10\@medium {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .prefix-0\@medium {
    margin-left: 0;
  }
  .pull-0\@medium {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@medium {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@medium {
    margin-right: 0;
  }
  .prefix-9\@medium {
    margin-left: 37.5%;
  }
  .suffix-9\@medium {
    margin-right: 37.5%;
  }
  .push-9\@medium {
    position: relative;
    left: 37.5%;
    right: auto;
  }
  .pull-9\@medium {
    position: relative;
    right: 37.5%;
    left: auto;
  }
  .prefix-0\@medium {
    margin-left: 0;
  }
  .pull-0\@medium {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@medium {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@medium {
    margin-right: 0;
  }
  .prefix-8\@medium {
    margin-left: 33.3333333333%;
  }
  .suffix-8\@medium {
    margin-right: 33.3333333333%;
  }
  .push-8\@medium {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .pull-8\@medium {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .prefix-0\@medium {
    margin-left: 0;
  }
  .pull-0\@medium {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@medium {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@medium {
    margin-right: 0;
  }
  .prefix-7\@medium {
    margin-left: 29.1666666667%;
  }
  .suffix-7\@medium {
    margin-right: 29.1666666667%;
  }
  .push-7\@medium {
    position: relative;
    left: 29.1666666667%;
    right: auto;
  }
  .pull-7\@medium {
    position: relative;
    right: 29.1666666667%;
    left: auto;
  }
  .prefix-0\@medium {
    margin-left: 0;
  }
  .pull-0\@medium {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@medium {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@medium {
    margin-right: 0;
  }
  .prefix-6\@medium {
    margin-left: 25%;
  }
  .suffix-6\@medium {
    margin-right: 25%;
  }
  .push-6\@medium {
    position: relative;
    left: 25%;
    right: auto;
  }
  .pull-6\@medium {
    position: relative;
    right: 25%;
    left: auto;
  }
  .prefix-0\@medium {
    margin-left: 0;
  }
  .pull-0\@medium {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@medium {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@medium {
    margin-right: 0;
  }
  .prefix-5\@medium {
    margin-left: 20.8333333333%;
  }
  .suffix-5\@medium {
    margin-right: 20.8333333333%;
  }
  .push-5\@medium {
    position: relative;
    left: 20.8333333333%;
    right: auto;
  }
  .pull-5\@medium {
    position: relative;
    right: 20.8333333333%;
    left: auto;
  }
  .prefix-0\@medium {
    margin-left: 0;
  }
  .pull-0\@medium {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@medium {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@medium {
    margin-right: 0;
  }
  .prefix-4\@medium {
    margin-left: 16.6666666667%;
  }
  .suffix-4\@medium {
    margin-right: 16.6666666667%;
  }
  .push-4\@medium {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .pull-4\@medium {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .prefix-0\@medium {
    margin-left: 0;
  }
  .pull-0\@medium {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@medium {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@medium {
    margin-right: 0;
  }
  .prefix-3\@medium {
    margin-left: 12.5%;
  }
  .suffix-3\@medium {
    margin-right: 12.5%;
  }
  .push-3\@medium {
    position: relative;
    left: 12.5%;
    right: auto;
  }
  .pull-3\@medium {
    position: relative;
    right: 12.5%;
    left: auto;
  }
  .prefix-0\@medium {
    margin-left: 0;
  }
  .pull-0\@medium {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@medium {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@medium {
    margin-right: 0;
  }
  .prefix-2\@medium {
    margin-left: 8.3333333333%;
  }
  .suffix-2\@medium {
    margin-right: 8.3333333333%;
  }
  .push-2\@medium {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .pull-2\@medium {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .prefix-0\@medium {
    margin-left: 0;
  }
  .pull-0\@medium {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@medium {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@medium {
    margin-right: 0;
  }
  .prefix-1\@medium {
    margin-left: 4.1666666667%;
  }
  .suffix-1\@medium {
    margin-right: 4.1666666667%;
  }
  .push-1\@medium {
    position: relative;
    left: 4.1666666667%;
    right: auto;
  }
  .pull-1\@medium {
    position: relative;
    right: 4.1666666667%;
    left: auto;
  }
}

@media only screen and (min-width: 1200px) {
  .prefix-0\@large {
    margin-left: 0;
  }
  .pull-0\@large {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@large {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@large {
    margin-right: 0;
  }
  .prefix-24\@large {
    margin-left: 100%;
  }
  .suffix-24\@large {
    margin-right: 100%;
  }
  .push-24\@large {
    position: relative;
    left: 100%;
    right: auto;
  }
  .pull-24\@large {
    position: relative;
    right: 100%;
    left: auto;
  }
  .prefix-0\@large {
    margin-left: 0;
  }
  .pull-0\@large {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@large {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@large {
    margin-right: 0;
  }
  .prefix-23\@large {
    margin-left: 95.8333333333%;
  }
  .suffix-23\@large {
    margin-right: 95.8333333333%;
  }
  .push-23\@large {
    position: relative;
    left: 95.8333333333%;
    right: auto;
  }
  .pull-23\@large {
    position: relative;
    right: 95.8333333333%;
    left: auto;
  }
  .prefix-0\@large {
    margin-left: 0;
  }
  .pull-0\@large {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@large {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@large {
    margin-right: 0;
  }
  .prefix-22\@large {
    margin-left: 91.6666666667%;
  }
  .suffix-22\@large {
    margin-right: 91.6666666667%;
  }
  .push-22\@large {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .pull-22\@large {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
  .prefix-0\@large {
    margin-left: 0;
  }
  .pull-0\@large {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@large {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@large {
    margin-right: 0;
  }
  .prefix-21\@large {
    margin-left: 87.5%;
  }
  .suffix-21\@large {
    margin-right: 87.5%;
  }
  .push-21\@large {
    position: relative;
    left: 87.5%;
    right: auto;
  }
  .pull-21\@large {
    position: relative;
    right: 87.5%;
    left: auto;
  }
  .prefix-0\@large {
    margin-left: 0;
  }
  .pull-0\@large {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@large {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@large {
    margin-right: 0;
  }
  .prefix-20\@large {
    margin-left: 83.3333333333%;
  }
  .suffix-20\@large {
    margin-right: 83.3333333333%;
  }
  .push-20\@large {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .pull-20\@large {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .prefix-0\@large {
    margin-left: 0;
  }
  .pull-0\@large {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@large {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@large {
    margin-right: 0;
  }
  .prefix-19\@large {
    margin-left: 79.1666666667%;
  }
  .suffix-19\@large {
    margin-right: 79.1666666667%;
  }
  .push-19\@large {
    position: relative;
    left: 79.1666666667%;
    right: auto;
  }
  .pull-19\@large {
    position: relative;
    right: 79.1666666667%;
    left: auto;
  }
  .prefix-0\@large {
    margin-left: 0;
  }
  .pull-0\@large {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@large {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@large {
    margin-right: 0;
  }
  .prefix-18\@large {
    margin-left: 75%;
  }
  .suffix-18\@large {
    margin-right: 75%;
  }
  .push-18\@large {
    position: relative;
    left: 75%;
    right: auto;
  }
  .pull-18\@large {
    position: relative;
    right: 75%;
    left: auto;
  }
  .prefix-0\@large {
    margin-left: 0;
  }
  .pull-0\@large {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@large {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@large {
    margin-right: 0;
  }
  .prefix-17\@large {
    margin-left: 70.8333333333%;
  }
  .suffix-17\@large {
    margin-right: 70.8333333333%;
  }
  .push-17\@large {
    position: relative;
    left: 70.8333333333%;
    right: auto;
  }
  .pull-17\@large {
    position: relative;
    right: 70.8333333333%;
    left: auto;
  }
  .prefix-0\@large {
    margin-left: 0;
  }
  .pull-0\@large {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@large {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@large {
    margin-right: 0;
  }
  .prefix-16\@large {
    margin-left: 66.6666666667%;
  }
  .suffix-16\@large {
    margin-right: 66.6666666667%;
  }
  .push-16\@large {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .pull-16\@large {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .prefix-0\@large {
    margin-left: 0;
  }
  .pull-0\@large {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@large {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@large {
    margin-right: 0;
  }
  .prefix-15\@large {
    margin-left: 62.5%;
  }
  .suffix-15\@large {
    margin-right: 62.5%;
  }
  .push-15\@large {
    position: relative;
    left: 62.5%;
    right: auto;
  }
  .pull-15\@large {
    position: relative;
    right: 62.5%;
    left: auto;
  }
  .prefix-0\@large {
    margin-left: 0;
  }
  .pull-0\@large {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@large {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@large {
    margin-right: 0;
  }
  .prefix-14\@large {
    margin-left: 58.3333333333%;
  }
  .suffix-14\@large {
    margin-right: 58.3333333333%;
  }
  .push-14\@large {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .pull-14\@large {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .prefix-0\@large {
    margin-left: 0;
  }
  .pull-0\@large {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@large {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@large {
    margin-right: 0;
  }
  .prefix-13\@large {
    margin-left: 54.1666666667%;
  }
  .suffix-13\@large {
    margin-right: 54.1666666667%;
  }
  .push-13\@large {
    position: relative;
    left: 54.1666666667%;
    right: auto;
  }
  .pull-13\@large {
    position: relative;
    right: 54.1666666667%;
    left: auto;
  }
  .prefix-0\@large {
    margin-left: 0;
  }
  .pull-0\@large {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@large {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@large {
    margin-right: 0;
  }
  .prefix-12\@large {
    margin-left: 50%;
  }
  .suffix-12\@large {
    margin-right: 50%;
  }
  .push-12\@large {
    position: relative;
    left: 50%;
    right: auto;
  }
  .pull-12\@large {
    position: relative;
    right: 50%;
    left: auto;
  }
  .prefix-0\@large {
    margin-left: 0;
  }
  .pull-0\@large {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@large {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@large {
    margin-right: 0;
  }
  .prefix-11\@large {
    margin-left: 45.8333333333%;
  }
  .suffix-11\@large {
    margin-right: 45.8333333333%;
  }
  .push-11\@large {
    position: relative;
    left: 45.8333333333%;
    right: auto;
  }
  .pull-11\@large {
    position: relative;
    right: 45.8333333333%;
    left: auto;
  }
  .prefix-0\@large {
    margin-left: 0;
  }
  .pull-0\@large {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@large {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@large {
    margin-right: 0;
  }
  .prefix-10\@large {
    margin-left: 41.6666666667%;
  }
  .suffix-10\@large {
    margin-right: 41.6666666667%;
  }
  .push-10\@large {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .pull-10\@large {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .prefix-0\@large {
    margin-left: 0;
  }
  .pull-0\@large {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@large {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@large {
    margin-right: 0;
  }
  .prefix-9\@large {
    margin-left: 37.5%;
  }
  .suffix-9\@large {
    margin-right: 37.5%;
  }
  .push-9\@large {
    position: relative;
    left: 37.5%;
    right: auto;
  }
  .pull-9\@large {
    position: relative;
    right: 37.5%;
    left: auto;
  }
  .prefix-0\@large {
    margin-left: 0;
  }
  .pull-0\@large {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@large {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@large {
    margin-right: 0;
  }
  .prefix-8\@large {
    margin-left: 33.3333333333%;
  }
  .suffix-8\@large {
    margin-right: 33.3333333333%;
  }
  .push-8\@large {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .pull-8\@large {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .prefix-0\@large {
    margin-left: 0;
  }
  .pull-0\@large {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@large {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@large {
    margin-right: 0;
  }
  .prefix-7\@large {
    margin-left: 29.1666666667%;
  }
  .suffix-7\@large {
    margin-right: 29.1666666667%;
  }
  .push-7\@large {
    position: relative;
    left: 29.1666666667%;
    right: auto;
  }
  .pull-7\@large {
    position: relative;
    right: 29.1666666667%;
    left: auto;
  }
  .prefix-0\@large {
    margin-left: 0;
  }
  .pull-0\@large {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@large {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@large {
    margin-right: 0;
  }
  .prefix-6\@large {
    margin-left: 25%;
  }
  .suffix-6\@large {
    margin-right: 25%;
  }
  .push-6\@large {
    position: relative;
    left: 25%;
    right: auto;
  }
  .pull-6\@large {
    position: relative;
    right: 25%;
    left: auto;
  }
  .prefix-0\@large {
    margin-left: 0;
  }
  .pull-0\@large {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@large {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@large {
    margin-right: 0;
  }
  .prefix-5\@large {
    margin-left: 20.8333333333%;
  }
  .suffix-5\@large {
    margin-right: 20.8333333333%;
  }
  .push-5\@large {
    position: relative;
    left: 20.8333333333%;
    right: auto;
  }
  .pull-5\@large {
    position: relative;
    right: 20.8333333333%;
    left: auto;
  }
  .prefix-0\@large {
    margin-left: 0;
  }
  .pull-0\@large {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@large {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@large {
    margin-right: 0;
  }
  .prefix-4\@large {
    margin-left: 16.6666666667%;
  }
  .suffix-4\@large {
    margin-right: 16.6666666667%;
  }
  .push-4\@large {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .pull-4\@large {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .prefix-0\@large {
    margin-left: 0;
  }
  .pull-0\@large {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@large {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@large {
    margin-right: 0;
  }
  .prefix-3\@large {
    margin-left: 12.5%;
  }
  .suffix-3\@large {
    margin-right: 12.5%;
  }
  .push-3\@large {
    position: relative;
    left: 12.5%;
    right: auto;
  }
  .pull-3\@large {
    position: relative;
    right: 12.5%;
    left: auto;
  }
  .prefix-0\@large {
    margin-left: 0;
  }
  .pull-0\@large {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@large {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@large {
    margin-right: 0;
  }
  .prefix-2\@large {
    margin-left: 8.3333333333%;
  }
  .suffix-2\@large {
    margin-right: 8.3333333333%;
  }
  .push-2\@large {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .pull-2\@large {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .prefix-0\@large {
    margin-left: 0;
  }
  .pull-0\@large {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@large {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@large {
    margin-right: 0;
  }
  .prefix-1\@large {
    margin-left: 4.1666666667%;
  }
  .suffix-1\@large {
    margin-right: 4.1666666667%;
  }
  .push-1\@large {
    position: relative;
    left: 4.1666666667%;
    right: auto;
  }
  .pull-1\@large {
    position: relative;
    right: 4.1666666667%;
    left: auto;
  }
}

@media only screen and (min-width: 1440px) {
  .prefix-0\@huge {
    margin-left: 0;
  }
  .pull-0\@huge {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@huge {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@huge {
    margin-right: 0;
  }
  .prefix-24\@huge {
    margin-left: 100%;
  }
  .suffix-24\@huge {
    margin-right: 100%;
  }
  .push-24\@huge {
    position: relative;
    left: 100%;
    right: auto;
  }
  .pull-24\@huge {
    position: relative;
    right: 100%;
    left: auto;
  }
  .prefix-0\@huge {
    margin-left: 0;
  }
  .pull-0\@huge {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@huge {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@huge {
    margin-right: 0;
  }
  .prefix-23\@huge {
    margin-left: 95.8333333333%;
  }
  .suffix-23\@huge {
    margin-right: 95.8333333333%;
  }
  .push-23\@huge {
    position: relative;
    left: 95.8333333333%;
    right: auto;
  }
  .pull-23\@huge {
    position: relative;
    right: 95.8333333333%;
    left: auto;
  }
  .prefix-0\@huge {
    margin-left: 0;
  }
  .pull-0\@huge {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@huge {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@huge {
    margin-right: 0;
  }
  .prefix-22\@huge {
    margin-left: 91.6666666667%;
  }
  .suffix-22\@huge {
    margin-right: 91.6666666667%;
  }
  .push-22\@huge {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .pull-22\@huge {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
  .prefix-0\@huge {
    margin-left: 0;
  }
  .pull-0\@huge {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@huge {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@huge {
    margin-right: 0;
  }
  .prefix-21\@huge {
    margin-left: 87.5%;
  }
  .suffix-21\@huge {
    margin-right: 87.5%;
  }
  .push-21\@huge {
    position: relative;
    left: 87.5%;
    right: auto;
  }
  .pull-21\@huge {
    position: relative;
    right: 87.5%;
    left: auto;
  }
  .prefix-0\@huge {
    margin-left: 0;
  }
  .pull-0\@huge {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@huge {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@huge {
    margin-right: 0;
  }
  .prefix-20\@huge {
    margin-left: 83.3333333333%;
  }
  .suffix-20\@huge {
    margin-right: 83.3333333333%;
  }
  .push-20\@huge {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .pull-20\@huge {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .prefix-0\@huge {
    margin-left: 0;
  }
  .pull-0\@huge {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@huge {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@huge {
    margin-right: 0;
  }
  .prefix-19\@huge {
    margin-left: 79.1666666667%;
  }
  .suffix-19\@huge {
    margin-right: 79.1666666667%;
  }
  .push-19\@huge {
    position: relative;
    left: 79.1666666667%;
    right: auto;
  }
  .pull-19\@huge {
    position: relative;
    right: 79.1666666667%;
    left: auto;
  }
  .prefix-0\@huge {
    margin-left: 0;
  }
  .pull-0\@huge {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@huge {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@huge {
    margin-right: 0;
  }
  .prefix-18\@huge {
    margin-left: 75%;
  }
  .suffix-18\@huge {
    margin-right: 75%;
  }
  .push-18\@huge {
    position: relative;
    left: 75%;
    right: auto;
  }
  .pull-18\@huge {
    position: relative;
    right: 75%;
    left: auto;
  }
  .prefix-0\@huge {
    margin-left: 0;
  }
  .pull-0\@huge {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@huge {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@huge {
    margin-right: 0;
  }
  .prefix-17\@huge {
    margin-left: 70.8333333333%;
  }
  .suffix-17\@huge {
    margin-right: 70.8333333333%;
  }
  .push-17\@huge {
    position: relative;
    left: 70.8333333333%;
    right: auto;
  }
  .pull-17\@huge {
    position: relative;
    right: 70.8333333333%;
    left: auto;
  }
  .prefix-0\@huge {
    margin-left: 0;
  }
  .pull-0\@huge {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@huge {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@huge {
    margin-right: 0;
  }
  .prefix-16\@huge {
    margin-left: 66.6666666667%;
  }
  .suffix-16\@huge {
    margin-right: 66.6666666667%;
  }
  .push-16\@huge {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .pull-16\@huge {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .prefix-0\@huge {
    margin-left: 0;
  }
  .pull-0\@huge {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@huge {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@huge {
    margin-right: 0;
  }
  .prefix-15\@huge {
    margin-left: 62.5%;
  }
  .suffix-15\@huge {
    margin-right: 62.5%;
  }
  .push-15\@huge {
    position: relative;
    left: 62.5%;
    right: auto;
  }
  .pull-15\@huge {
    position: relative;
    right: 62.5%;
    left: auto;
  }
  .prefix-0\@huge {
    margin-left: 0;
  }
  .pull-0\@huge {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@huge {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@huge {
    margin-right: 0;
  }
  .prefix-14\@huge {
    margin-left: 58.3333333333%;
  }
  .suffix-14\@huge {
    margin-right: 58.3333333333%;
  }
  .push-14\@huge {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .pull-14\@huge {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .prefix-0\@huge {
    margin-left: 0;
  }
  .pull-0\@huge {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@huge {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@huge {
    margin-right: 0;
  }
  .prefix-13\@huge {
    margin-left: 54.1666666667%;
  }
  .suffix-13\@huge {
    margin-right: 54.1666666667%;
  }
  .push-13\@huge {
    position: relative;
    left: 54.1666666667%;
    right: auto;
  }
  .pull-13\@huge {
    position: relative;
    right: 54.1666666667%;
    left: auto;
  }
  .prefix-0\@huge {
    margin-left: 0;
  }
  .pull-0\@huge {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@huge {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@huge {
    margin-right: 0;
  }
  .prefix-12\@huge {
    margin-left: 50%;
  }
  .suffix-12\@huge {
    margin-right: 50%;
  }
  .push-12\@huge {
    position: relative;
    left: 50%;
    right: auto;
  }
  .pull-12\@huge {
    position: relative;
    right: 50%;
    left: auto;
  }
  .prefix-0\@huge {
    margin-left: 0;
  }
  .pull-0\@huge {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@huge {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@huge {
    margin-right: 0;
  }
  .prefix-11\@huge {
    margin-left: 45.8333333333%;
  }
  .suffix-11\@huge {
    margin-right: 45.8333333333%;
  }
  .push-11\@huge {
    position: relative;
    left: 45.8333333333%;
    right: auto;
  }
  .pull-11\@huge {
    position: relative;
    right: 45.8333333333%;
    left: auto;
  }
  .prefix-0\@huge {
    margin-left: 0;
  }
  .pull-0\@huge {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@huge {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@huge {
    margin-right: 0;
  }
  .prefix-10\@huge {
    margin-left: 41.6666666667%;
  }
  .suffix-10\@huge {
    margin-right: 41.6666666667%;
  }
  .push-10\@huge {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .pull-10\@huge {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .prefix-0\@huge {
    margin-left: 0;
  }
  .pull-0\@huge {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@huge {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@huge {
    margin-right: 0;
  }
  .prefix-9\@huge {
    margin-left: 37.5%;
  }
  .suffix-9\@huge {
    margin-right: 37.5%;
  }
  .push-9\@huge {
    position: relative;
    left: 37.5%;
    right: auto;
  }
  .pull-9\@huge {
    position: relative;
    right: 37.5%;
    left: auto;
  }
  .prefix-0\@huge {
    margin-left: 0;
  }
  .pull-0\@huge {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@huge {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@huge {
    margin-right: 0;
  }
  .prefix-8\@huge {
    margin-left: 33.3333333333%;
  }
  .suffix-8\@huge {
    margin-right: 33.3333333333%;
  }
  .push-8\@huge {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .pull-8\@huge {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .prefix-0\@huge {
    margin-left: 0;
  }
  .pull-0\@huge {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@huge {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@huge {
    margin-right: 0;
  }
  .prefix-7\@huge {
    margin-left: 29.1666666667%;
  }
  .suffix-7\@huge {
    margin-right: 29.1666666667%;
  }
  .push-7\@huge {
    position: relative;
    left: 29.1666666667%;
    right: auto;
  }
  .pull-7\@huge {
    position: relative;
    right: 29.1666666667%;
    left: auto;
  }
  .prefix-0\@huge {
    margin-left: 0;
  }
  .pull-0\@huge {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@huge {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@huge {
    margin-right: 0;
  }
  .prefix-6\@huge {
    margin-left: 25%;
  }
  .suffix-6\@huge {
    margin-right: 25%;
  }
  .push-6\@huge {
    position: relative;
    left: 25%;
    right: auto;
  }
  .pull-6\@huge {
    position: relative;
    right: 25%;
    left: auto;
  }
  .prefix-0\@huge {
    margin-left: 0;
  }
  .pull-0\@huge {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@huge {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@huge {
    margin-right: 0;
  }
  .prefix-5\@huge {
    margin-left: 20.8333333333%;
  }
  .suffix-5\@huge {
    margin-right: 20.8333333333%;
  }
  .push-5\@huge {
    position: relative;
    left: 20.8333333333%;
    right: auto;
  }
  .pull-5\@huge {
    position: relative;
    right: 20.8333333333%;
    left: auto;
  }
  .prefix-0\@huge {
    margin-left: 0;
  }
  .pull-0\@huge {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@huge {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@huge {
    margin-right: 0;
  }
  .prefix-4\@huge {
    margin-left: 16.6666666667%;
  }
  .suffix-4\@huge {
    margin-right: 16.6666666667%;
  }
  .push-4\@huge {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .pull-4\@huge {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .prefix-0\@huge {
    margin-left: 0;
  }
  .pull-0\@huge {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@huge {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@huge {
    margin-right: 0;
  }
  .prefix-3\@huge {
    margin-left: 12.5%;
  }
  .suffix-3\@huge {
    margin-right: 12.5%;
  }
  .push-3\@huge {
    position: relative;
    left: 12.5%;
    right: auto;
  }
  .pull-3\@huge {
    position: relative;
    right: 12.5%;
    left: auto;
  }
  .prefix-0\@huge {
    margin-left: 0;
  }
  .pull-0\@huge {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@huge {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@huge {
    margin-right: 0;
  }
  .prefix-2\@huge {
    margin-left: 8.3333333333%;
  }
  .suffix-2\@huge {
    margin-right: 8.3333333333%;
  }
  .push-2\@huge {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .pull-2\@huge {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .prefix-0\@huge {
    margin-left: 0;
  }
  .pull-0\@huge {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@huge {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@huge {
    margin-right: 0;
  }
  .prefix-1\@huge {
    margin-left: 4.1666666667%;
  }
  .suffix-1\@huge {
    margin-right: 4.1666666667%;
  }
  .push-1\@huge {
    position: relative;
    left: 4.1666666667%;
    right: auto;
  }
  .pull-1\@huge {
    position: relative;
    right: 4.1666666667%;
    left: auto;
  }
}

@media only screen and (min-width: 1680px) {
  .prefix-0\@full {
    margin-left: 0;
  }
  .pull-0\@full {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@full {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@full {
    margin-right: 0;
  }
  .prefix-24\@full {
    margin-left: 100%;
  }
  .suffix-24\@full {
    margin-right: 100%;
  }
  .push-24\@full {
    position: relative;
    left: 100%;
    right: auto;
  }
  .pull-24\@full {
    position: relative;
    right: 100%;
    left: auto;
  }
  .prefix-0\@full {
    margin-left: 0;
  }
  .pull-0\@full {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@full {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@full {
    margin-right: 0;
  }
  .prefix-23\@full {
    margin-left: 95.8333333333%;
  }
  .suffix-23\@full {
    margin-right: 95.8333333333%;
  }
  .push-23\@full {
    position: relative;
    left: 95.8333333333%;
    right: auto;
  }
  .pull-23\@full {
    position: relative;
    right: 95.8333333333%;
    left: auto;
  }
  .prefix-0\@full {
    margin-left: 0;
  }
  .pull-0\@full {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@full {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@full {
    margin-right: 0;
  }
  .prefix-22\@full {
    margin-left: 91.6666666667%;
  }
  .suffix-22\@full {
    margin-right: 91.6666666667%;
  }
  .push-22\@full {
    position: relative;
    left: 91.6666666667%;
    right: auto;
  }
  .pull-22\@full {
    position: relative;
    right: 91.6666666667%;
    left: auto;
  }
  .prefix-0\@full {
    margin-left: 0;
  }
  .pull-0\@full {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@full {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@full {
    margin-right: 0;
  }
  .prefix-21\@full {
    margin-left: 87.5%;
  }
  .suffix-21\@full {
    margin-right: 87.5%;
  }
  .push-21\@full {
    position: relative;
    left: 87.5%;
    right: auto;
  }
  .pull-21\@full {
    position: relative;
    right: 87.5%;
    left: auto;
  }
  .prefix-0\@full {
    margin-left: 0;
  }
  .pull-0\@full {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@full {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@full {
    margin-right: 0;
  }
  .prefix-20\@full {
    margin-left: 83.3333333333%;
  }
  .suffix-20\@full {
    margin-right: 83.3333333333%;
  }
  .push-20\@full {
    position: relative;
    left: 83.3333333333%;
    right: auto;
  }
  .pull-20\@full {
    position: relative;
    right: 83.3333333333%;
    left: auto;
  }
  .prefix-0\@full {
    margin-left: 0;
  }
  .pull-0\@full {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@full {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@full {
    margin-right: 0;
  }
  .prefix-19\@full {
    margin-left: 79.1666666667%;
  }
  .suffix-19\@full {
    margin-right: 79.1666666667%;
  }
  .push-19\@full {
    position: relative;
    left: 79.1666666667%;
    right: auto;
  }
  .pull-19\@full {
    position: relative;
    right: 79.1666666667%;
    left: auto;
  }
  .prefix-0\@full {
    margin-left: 0;
  }
  .pull-0\@full {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@full {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@full {
    margin-right: 0;
  }
  .prefix-18\@full {
    margin-left: 75%;
  }
  .suffix-18\@full {
    margin-right: 75%;
  }
  .push-18\@full {
    position: relative;
    left: 75%;
    right: auto;
  }
  .pull-18\@full {
    position: relative;
    right: 75%;
    left: auto;
  }
  .prefix-0\@full {
    margin-left: 0;
  }
  .pull-0\@full {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@full {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@full {
    margin-right: 0;
  }
  .prefix-17\@full {
    margin-left: 70.8333333333%;
  }
  .suffix-17\@full {
    margin-right: 70.8333333333%;
  }
  .push-17\@full {
    position: relative;
    left: 70.8333333333%;
    right: auto;
  }
  .pull-17\@full {
    position: relative;
    right: 70.8333333333%;
    left: auto;
  }
  .prefix-0\@full {
    margin-left: 0;
  }
  .pull-0\@full {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@full {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@full {
    margin-right: 0;
  }
  .prefix-16\@full {
    margin-left: 66.6666666667%;
  }
  .suffix-16\@full {
    margin-right: 66.6666666667%;
  }
  .push-16\@full {
    position: relative;
    left: 66.6666666667%;
    right: auto;
  }
  .pull-16\@full {
    position: relative;
    right: 66.6666666667%;
    left: auto;
  }
  .prefix-0\@full {
    margin-left: 0;
  }
  .pull-0\@full {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@full {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@full {
    margin-right: 0;
  }
  .prefix-15\@full {
    margin-left: 62.5%;
  }
  .suffix-15\@full {
    margin-right: 62.5%;
  }
  .push-15\@full {
    position: relative;
    left: 62.5%;
    right: auto;
  }
  .pull-15\@full {
    position: relative;
    right: 62.5%;
    left: auto;
  }
  .prefix-0\@full {
    margin-left: 0;
  }
  .pull-0\@full {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@full {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@full {
    margin-right: 0;
  }
  .prefix-14\@full {
    margin-left: 58.3333333333%;
  }
  .suffix-14\@full {
    margin-right: 58.3333333333%;
  }
  .push-14\@full {
    position: relative;
    left: 58.3333333333%;
    right: auto;
  }
  .pull-14\@full {
    position: relative;
    right: 58.3333333333%;
    left: auto;
  }
  .prefix-0\@full {
    margin-left: 0;
  }
  .pull-0\@full {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@full {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@full {
    margin-right: 0;
  }
  .prefix-13\@full {
    margin-left: 54.1666666667%;
  }
  .suffix-13\@full {
    margin-right: 54.1666666667%;
  }
  .push-13\@full {
    position: relative;
    left: 54.1666666667%;
    right: auto;
  }
  .pull-13\@full {
    position: relative;
    right: 54.1666666667%;
    left: auto;
  }
  .prefix-0\@full {
    margin-left: 0;
  }
  .pull-0\@full {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@full {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@full {
    margin-right: 0;
  }
  .prefix-12\@full {
    margin-left: 50%;
  }
  .suffix-12\@full {
    margin-right: 50%;
  }
  .push-12\@full {
    position: relative;
    left: 50%;
    right: auto;
  }
  .pull-12\@full {
    position: relative;
    right: 50%;
    left: auto;
  }
  .prefix-0\@full {
    margin-left: 0;
  }
  .pull-0\@full {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@full {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@full {
    margin-right: 0;
  }
  .prefix-11\@full {
    margin-left: 45.8333333333%;
  }
  .suffix-11\@full {
    margin-right: 45.8333333333%;
  }
  .push-11\@full {
    position: relative;
    left: 45.8333333333%;
    right: auto;
  }
  .pull-11\@full {
    position: relative;
    right: 45.8333333333%;
    left: auto;
  }
  .prefix-0\@full {
    margin-left: 0;
  }
  .pull-0\@full {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@full {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@full {
    margin-right: 0;
  }
  .prefix-10\@full {
    margin-left: 41.6666666667%;
  }
  .suffix-10\@full {
    margin-right: 41.6666666667%;
  }
  .push-10\@full {
    position: relative;
    left: 41.6666666667%;
    right: auto;
  }
  .pull-10\@full {
    position: relative;
    right: 41.6666666667%;
    left: auto;
  }
  .prefix-0\@full {
    margin-left: 0;
  }
  .pull-0\@full {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@full {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@full {
    margin-right: 0;
  }
  .prefix-9\@full {
    margin-left: 37.5%;
  }
  .suffix-9\@full {
    margin-right: 37.5%;
  }
  .push-9\@full {
    position: relative;
    left: 37.5%;
    right: auto;
  }
  .pull-9\@full {
    position: relative;
    right: 37.5%;
    left: auto;
  }
  .prefix-0\@full {
    margin-left: 0;
  }
  .pull-0\@full {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@full {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@full {
    margin-right: 0;
  }
  .prefix-8\@full {
    margin-left: 33.3333333333%;
  }
  .suffix-8\@full {
    margin-right: 33.3333333333%;
  }
  .push-8\@full {
    position: relative;
    left: 33.3333333333%;
    right: auto;
  }
  .pull-8\@full {
    position: relative;
    right: 33.3333333333%;
    left: auto;
  }
  .prefix-0\@full {
    margin-left: 0;
  }
  .pull-0\@full {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@full {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@full {
    margin-right: 0;
  }
  .prefix-7\@full {
    margin-left: 29.1666666667%;
  }
  .suffix-7\@full {
    margin-right: 29.1666666667%;
  }
  .push-7\@full {
    position: relative;
    left: 29.1666666667%;
    right: auto;
  }
  .pull-7\@full {
    position: relative;
    right: 29.1666666667%;
    left: auto;
  }
  .prefix-0\@full {
    margin-left: 0;
  }
  .pull-0\@full {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@full {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@full {
    margin-right: 0;
  }
  .prefix-6\@full {
    margin-left: 25%;
  }
  .suffix-6\@full {
    margin-right: 25%;
  }
  .push-6\@full {
    position: relative;
    left: 25%;
    right: auto;
  }
  .pull-6\@full {
    position: relative;
    right: 25%;
    left: auto;
  }
  .prefix-0\@full {
    margin-left: 0;
  }
  .pull-0\@full {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@full {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@full {
    margin-right: 0;
  }
  .prefix-5\@full {
    margin-left: 20.8333333333%;
  }
  .suffix-5\@full {
    margin-right: 20.8333333333%;
  }
  .push-5\@full {
    position: relative;
    left: 20.8333333333%;
    right: auto;
  }
  .pull-5\@full {
    position: relative;
    right: 20.8333333333%;
    left: auto;
  }
  .prefix-0\@full {
    margin-left: 0;
  }
  .pull-0\@full {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@full {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@full {
    margin-right: 0;
  }
  .prefix-4\@full {
    margin-left: 16.6666666667%;
  }
  .suffix-4\@full {
    margin-right: 16.6666666667%;
  }
  .push-4\@full {
    position: relative;
    left: 16.6666666667%;
    right: auto;
  }
  .pull-4\@full {
    position: relative;
    right: 16.6666666667%;
    left: auto;
  }
  .prefix-0\@full {
    margin-left: 0;
  }
  .pull-0\@full {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@full {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@full {
    margin-right: 0;
  }
  .prefix-3\@full {
    margin-left: 12.5%;
  }
  .suffix-3\@full {
    margin-right: 12.5%;
  }
  .push-3\@full {
    position: relative;
    left: 12.5%;
    right: auto;
  }
  .pull-3\@full {
    position: relative;
    right: 12.5%;
    left: auto;
  }
  .prefix-0\@full {
    margin-left: 0;
  }
  .pull-0\@full {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@full {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@full {
    margin-right: 0;
  }
  .prefix-2\@full {
    margin-left: 8.3333333333%;
  }
  .suffix-2\@full {
    margin-right: 8.3333333333%;
  }
  .push-2\@full {
    position: relative;
    left: 8.3333333333%;
    right: auto;
  }
  .pull-2\@full {
    position: relative;
    right: 8.3333333333%;
    left: auto;
  }
  .prefix-0\@full {
    margin-left: 0;
  }
  .pull-0\@full {
    position: unset;
    right: unset;
    left: unset;
  }
  .push-0\@full {
    position: unset;
    left: unset;
    right: unset;
  }
  .suffix-0\@full {
    margin-right: 0;
  }
  .prefix-1\@full {
    margin-left: 4.1666666667%;
  }
  .suffix-1\@full {
    margin-right: 4.1666666667%;
  }
  .push-1\@full {
    position: relative;
    left: 4.1666666667%;
    right: auto;
  }
  .pull-1\@full {
    position: relative;
    right: 4.1666666667%;
    left: auto;
  }
}

@media only screen and (orientation:landscape) {
  .order-24\@landscape {
    -webkit-box-ordinal-group: 25;
        -ms-flex-order: 24;
            order: 24;
  }
  .order-first\@landscape {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@landscape {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (orientation:portrait) {
  .order-24\@portrait {
    -webkit-box-ordinal-group: 25;
        -ms-flex-order: 24;
            order: 24;
  }
  .order-first\@portrait {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@portrait {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .order-24\@retina {
    -webkit-box-ordinal-group: 25;
        -ms-flex-order: 24;
            order: 24;
  }
  .order-first\@retina {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@retina {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 480px) {
  .order-24\@tiny {
    -webkit-box-ordinal-group: 25;
        -ms-flex-order: 24;
            order: 24;
  }
  .order-first\@tiny {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@tiny {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 768px) {
  .order-24\@small {
    -webkit-box-ordinal-group: 25;
        -ms-flex-order: 24;
            order: 24;
  }
  .order-first\@small {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@small {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1024px) {
  .order-24\@medium {
    -webkit-box-ordinal-group: 25;
        -ms-flex-order: 24;
            order: 24;
  }
  .order-first\@medium {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@medium {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1200px) {
  .order-24\@large {
    -webkit-box-ordinal-group: 25;
        -ms-flex-order: 24;
            order: 24;
  }
  .order-first\@large {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@large {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1440px) {
  .order-24\@huge {
    -webkit-box-ordinal-group: 25;
        -ms-flex-order: 24;
            order: 24;
  }
  .order-first\@huge {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@huge {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1680px) {
  .order-24\@full {
    -webkit-box-ordinal-group: 25;
        -ms-flex-order: 24;
            order: 24;
  }
  .order-first\@full {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@full {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (orientation:landscape) {
  .order-23\@landscape {
    -webkit-box-ordinal-group: 24;
        -ms-flex-order: 23;
            order: 23;
  }
  .order-first\@landscape {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@landscape {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (orientation:portrait) {
  .order-23\@portrait {
    -webkit-box-ordinal-group: 24;
        -ms-flex-order: 23;
            order: 23;
  }
  .order-first\@portrait {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@portrait {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .order-23\@retina {
    -webkit-box-ordinal-group: 24;
        -ms-flex-order: 23;
            order: 23;
  }
  .order-first\@retina {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@retina {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 480px) {
  .order-23\@tiny {
    -webkit-box-ordinal-group: 24;
        -ms-flex-order: 23;
            order: 23;
  }
  .order-first\@tiny {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@tiny {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 768px) {
  .order-23\@small {
    -webkit-box-ordinal-group: 24;
        -ms-flex-order: 23;
            order: 23;
  }
  .order-first\@small {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@small {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1024px) {
  .order-23\@medium {
    -webkit-box-ordinal-group: 24;
        -ms-flex-order: 23;
            order: 23;
  }
  .order-first\@medium {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@medium {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1200px) {
  .order-23\@large {
    -webkit-box-ordinal-group: 24;
        -ms-flex-order: 23;
            order: 23;
  }
  .order-first\@large {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@large {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1440px) {
  .order-23\@huge {
    -webkit-box-ordinal-group: 24;
        -ms-flex-order: 23;
            order: 23;
  }
  .order-first\@huge {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@huge {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1680px) {
  .order-23\@full {
    -webkit-box-ordinal-group: 24;
        -ms-flex-order: 23;
            order: 23;
  }
  .order-first\@full {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@full {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (orientation:landscape) {
  .order-22\@landscape {
    -webkit-box-ordinal-group: 23;
        -ms-flex-order: 22;
            order: 22;
  }
  .order-first\@landscape {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@landscape {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (orientation:portrait) {
  .order-22\@portrait {
    -webkit-box-ordinal-group: 23;
        -ms-flex-order: 22;
            order: 22;
  }
  .order-first\@portrait {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@portrait {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .order-22\@retina {
    -webkit-box-ordinal-group: 23;
        -ms-flex-order: 22;
            order: 22;
  }
  .order-first\@retina {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@retina {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 480px) {
  .order-22\@tiny {
    -webkit-box-ordinal-group: 23;
        -ms-flex-order: 22;
            order: 22;
  }
  .order-first\@tiny {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@tiny {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 768px) {
  .order-22\@small {
    -webkit-box-ordinal-group: 23;
        -ms-flex-order: 22;
            order: 22;
  }
  .order-first\@small {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@small {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1024px) {
  .order-22\@medium {
    -webkit-box-ordinal-group: 23;
        -ms-flex-order: 22;
            order: 22;
  }
  .order-first\@medium {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@medium {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1200px) {
  .order-22\@large {
    -webkit-box-ordinal-group: 23;
        -ms-flex-order: 22;
            order: 22;
  }
  .order-first\@large {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@large {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1440px) {
  .order-22\@huge {
    -webkit-box-ordinal-group: 23;
        -ms-flex-order: 22;
            order: 22;
  }
  .order-first\@huge {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@huge {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1680px) {
  .order-22\@full {
    -webkit-box-ordinal-group: 23;
        -ms-flex-order: 22;
            order: 22;
  }
  .order-first\@full {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@full {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (orientation:landscape) {
  .order-21\@landscape {
    -webkit-box-ordinal-group: 22;
        -ms-flex-order: 21;
            order: 21;
  }
  .order-first\@landscape {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@landscape {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (orientation:portrait) {
  .order-21\@portrait {
    -webkit-box-ordinal-group: 22;
        -ms-flex-order: 21;
            order: 21;
  }
  .order-first\@portrait {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@portrait {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .order-21\@retina {
    -webkit-box-ordinal-group: 22;
        -ms-flex-order: 21;
            order: 21;
  }
  .order-first\@retina {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@retina {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 480px) {
  .order-21\@tiny {
    -webkit-box-ordinal-group: 22;
        -ms-flex-order: 21;
            order: 21;
  }
  .order-first\@tiny {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@tiny {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 768px) {
  .order-21\@small {
    -webkit-box-ordinal-group: 22;
        -ms-flex-order: 21;
            order: 21;
  }
  .order-first\@small {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@small {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1024px) {
  .order-21\@medium {
    -webkit-box-ordinal-group: 22;
        -ms-flex-order: 21;
            order: 21;
  }
  .order-first\@medium {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@medium {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1200px) {
  .order-21\@large {
    -webkit-box-ordinal-group: 22;
        -ms-flex-order: 21;
            order: 21;
  }
  .order-first\@large {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@large {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1440px) {
  .order-21\@huge {
    -webkit-box-ordinal-group: 22;
        -ms-flex-order: 21;
            order: 21;
  }
  .order-first\@huge {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@huge {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1680px) {
  .order-21\@full {
    -webkit-box-ordinal-group: 22;
        -ms-flex-order: 21;
            order: 21;
  }
  .order-first\@full {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@full {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (orientation:landscape) {
  .order-20\@landscape {
    -webkit-box-ordinal-group: 21;
        -ms-flex-order: 20;
            order: 20;
  }
  .order-first\@landscape {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@landscape {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (orientation:portrait) {
  .order-20\@portrait {
    -webkit-box-ordinal-group: 21;
        -ms-flex-order: 20;
            order: 20;
  }
  .order-first\@portrait {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@portrait {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .order-20\@retina {
    -webkit-box-ordinal-group: 21;
        -ms-flex-order: 20;
            order: 20;
  }
  .order-first\@retina {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@retina {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 480px) {
  .order-20\@tiny {
    -webkit-box-ordinal-group: 21;
        -ms-flex-order: 20;
            order: 20;
  }
  .order-first\@tiny {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@tiny {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 768px) {
  .order-20\@small {
    -webkit-box-ordinal-group: 21;
        -ms-flex-order: 20;
            order: 20;
  }
  .order-first\@small {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@small {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1024px) {
  .order-20\@medium {
    -webkit-box-ordinal-group: 21;
        -ms-flex-order: 20;
            order: 20;
  }
  .order-first\@medium {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@medium {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1200px) {
  .order-20\@large {
    -webkit-box-ordinal-group: 21;
        -ms-flex-order: 20;
            order: 20;
  }
  .order-first\@large {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@large {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1440px) {
  .order-20\@huge {
    -webkit-box-ordinal-group: 21;
        -ms-flex-order: 20;
            order: 20;
  }
  .order-first\@huge {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@huge {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1680px) {
  .order-20\@full {
    -webkit-box-ordinal-group: 21;
        -ms-flex-order: 20;
            order: 20;
  }
  .order-first\@full {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@full {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (orientation:landscape) {
  .order-19\@landscape {
    -webkit-box-ordinal-group: 20;
        -ms-flex-order: 19;
            order: 19;
  }
  .order-first\@landscape {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@landscape {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (orientation:portrait) {
  .order-19\@portrait {
    -webkit-box-ordinal-group: 20;
        -ms-flex-order: 19;
            order: 19;
  }
  .order-first\@portrait {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@portrait {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .order-19\@retina {
    -webkit-box-ordinal-group: 20;
        -ms-flex-order: 19;
            order: 19;
  }
  .order-first\@retina {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@retina {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 480px) {
  .order-19\@tiny {
    -webkit-box-ordinal-group: 20;
        -ms-flex-order: 19;
            order: 19;
  }
  .order-first\@tiny {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@tiny {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 768px) {
  .order-19\@small {
    -webkit-box-ordinal-group: 20;
        -ms-flex-order: 19;
            order: 19;
  }
  .order-first\@small {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@small {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1024px) {
  .order-19\@medium {
    -webkit-box-ordinal-group: 20;
        -ms-flex-order: 19;
            order: 19;
  }
  .order-first\@medium {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@medium {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1200px) {
  .order-19\@large {
    -webkit-box-ordinal-group: 20;
        -ms-flex-order: 19;
            order: 19;
  }
  .order-first\@large {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@large {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1440px) {
  .order-19\@huge {
    -webkit-box-ordinal-group: 20;
        -ms-flex-order: 19;
            order: 19;
  }
  .order-first\@huge {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@huge {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1680px) {
  .order-19\@full {
    -webkit-box-ordinal-group: 20;
        -ms-flex-order: 19;
            order: 19;
  }
  .order-first\@full {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@full {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (orientation:landscape) {
  .order-18\@landscape {
    -webkit-box-ordinal-group: 19;
        -ms-flex-order: 18;
            order: 18;
  }
  .order-first\@landscape {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@landscape {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (orientation:portrait) {
  .order-18\@portrait {
    -webkit-box-ordinal-group: 19;
        -ms-flex-order: 18;
            order: 18;
  }
  .order-first\@portrait {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@portrait {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .order-18\@retina {
    -webkit-box-ordinal-group: 19;
        -ms-flex-order: 18;
            order: 18;
  }
  .order-first\@retina {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@retina {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 480px) {
  .order-18\@tiny {
    -webkit-box-ordinal-group: 19;
        -ms-flex-order: 18;
            order: 18;
  }
  .order-first\@tiny {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@tiny {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 768px) {
  .order-18\@small {
    -webkit-box-ordinal-group: 19;
        -ms-flex-order: 18;
            order: 18;
  }
  .order-first\@small {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@small {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1024px) {
  .order-18\@medium {
    -webkit-box-ordinal-group: 19;
        -ms-flex-order: 18;
            order: 18;
  }
  .order-first\@medium {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@medium {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1200px) {
  .order-18\@large {
    -webkit-box-ordinal-group: 19;
        -ms-flex-order: 18;
            order: 18;
  }
  .order-first\@large {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@large {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1440px) {
  .order-18\@huge {
    -webkit-box-ordinal-group: 19;
        -ms-flex-order: 18;
            order: 18;
  }
  .order-first\@huge {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@huge {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1680px) {
  .order-18\@full {
    -webkit-box-ordinal-group: 19;
        -ms-flex-order: 18;
            order: 18;
  }
  .order-first\@full {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@full {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (orientation:landscape) {
  .order-17\@landscape {
    -webkit-box-ordinal-group: 18;
        -ms-flex-order: 17;
            order: 17;
  }
  .order-first\@landscape {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@landscape {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (orientation:portrait) {
  .order-17\@portrait {
    -webkit-box-ordinal-group: 18;
        -ms-flex-order: 17;
            order: 17;
  }
  .order-first\@portrait {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@portrait {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .order-17\@retina {
    -webkit-box-ordinal-group: 18;
        -ms-flex-order: 17;
            order: 17;
  }
  .order-first\@retina {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@retina {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 480px) {
  .order-17\@tiny {
    -webkit-box-ordinal-group: 18;
        -ms-flex-order: 17;
            order: 17;
  }
  .order-first\@tiny {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@tiny {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 768px) {
  .order-17\@small {
    -webkit-box-ordinal-group: 18;
        -ms-flex-order: 17;
            order: 17;
  }
  .order-first\@small {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@small {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1024px) {
  .order-17\@medium {
    -webkit-box-ordinal-group: 18;
        -ms-flex-order: 17;
            order: 17;
  }
  .order-first\@medium {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@medium {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1200px) {
  .order-17\@large {
    -webkit-box-ordinal-group: 18;
        -ms-flex-order: 17;
            order: 17;
  }
  .order-first\@large {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@large {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1440px) {
  .order-17\@huge {
    -webkit-box-ordinal-group: 18;
        -ms-flex-order: 17;
            order: 17;
  }
  .order-first\@huge {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@huge {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1680px) {
  .order-17\@full {
    -webkit-box-ordinal-group: 18;
        -ms-flex-order: 17;
            order: 17;
  }
  .order-first\@full {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@full {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (orientation:landscape) {
  .order-16\@landscape {
    -webkit-box-ordinal-group: 17;
        -ms-flex-order: 16;
            order: 16;
  }
  .order-first\@landscape {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@landscape {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (orientation:portrait) {
  .order-16\@portrait {
    -webkit-box-ordinal-group: 17;
        -ms-flex-order: 16;
            order: 16;
  }
  .order-first\@portrait {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@portrait {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .order-16\@retina {
    -webkit-box-ordinal-group: 17;
        -ms-flex-order: 16;
            order: 16;
  }
  .order-first\@retina {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@retina {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 480px) {
  .order-16\@tiny {
    -webkit-box-ordinal-group: 17;
        -ms-flex-order: 16;
            order: 16;
  }
  .order-first\@tiny {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@tiny {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 768px) {
  .order-16\@small {
    -webkit-box-ordinal-group: 17;
        -ms-flex-order: 16;
            order: 16;
  }
  .order-first\@small {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@small {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1024px) {
  .order-16\@medium {
    -webkit-box-ordinal-group: 17;
        -ms-flex-order: 16;
            order: 16;
  }
  .order-first\@medium {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@medium {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1200px) {
  .order-16\@large {
    -webkit-box-ordinal-group: 17;
        -ms-flex-order: 16;
            order: 16;
  }
  .order-first\@large {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@large {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1440px) {
  .order-16\@huge {
    -webkit-box-ordinal-group: 17;
        -ms-flex-order: 16;
            order: 16;
  }
  .order-first\@huge {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@huge {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1680px) {
  .order-16\@full {
    -webkit-box-ordinal-group: 17;
        -ms-flex-order: 16;
            order: 16;
  }
  .order-first\@full {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@full {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (orientation:landscape) {
  .order-15\@landscape {
    -webkit-box-ordinal-group: 16;
        -ms-flex-order: 15;
            order: 15;
  }
  .order-first\@landscape {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@landscape {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (orientation:portrait) {
  .order-15\@portrait {
    -webkit-box-ordinal-group: 16;
        -ms-flex-order: 15;
            order: 15;
  }
  .order-first\@portrait {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@portrait {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .order-15\@retina {
    -webkit-box-ordinal-group: 16;
        -ms-flex-order: 15;
            order: 15;
  }
  .order-first\@retina {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@retina {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 480px) {
  .order-15\@tiny {
    -webkit-box-ordinal-group: 16;
        -ms-flex-order: 15;
            order: 15;
  }
  .order-first\@tiny {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@tiny {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 768px) {
  .order-15\@small {
    -webkit-box-ordinal-group: 16;
        -ms-flex-order: 15;
            order: 15;
  }
  .order-first\@small {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@small {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1024px) {
  .order-15\@medium {
    -webkit-box-ordinal-group: 16;
        -ms-flex-order: 15;
            order: 15;
  }
  .order-first\@medium {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@medium {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1200px) {
  .order-15\@large {
    -webkit-box-ordinal-group: 16;
        -ms-flex-order: 15;
            order: 15;
  }
  .order-first\@large {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@large {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1440px) {
  .order-15\@huge {
    -webkit-box-ordinal-group: 16;
        -ms-flex-order: 15;
            order: 15;
  }
  .order-first\@huge {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@huge {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1680px) {
  .order-15\@full {
    -webkit-box-ordinal-group: 16;
        -ms-flex-order: 15;
            order: 15;
  }
  .order-first\@full {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@full {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (orientation:landscape) {
  .order-14\@landscape {
    -webkit-box-ordinal-group: 15;
        -ms-flex-order: 14;
            order: 14;
  }
  .order-first\@landscape {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@landscape {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (orientation:portrait) {
  .order-14\@portrait {
    -webkit-box-ordinal-group: 15;
        -ms-flex-order: 14;
            order: 14;
  }
  .order-first\@portrait {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@portrait {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .order-14\@retina {
    -webkit-box-ordinal-group: 15;
        -ms-flex-order: 14;
            order: 14;
  }
  .order-first\@retina {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@retina {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 480px) {
  .order-14\@tiny {
    -webkit-box-ordinal-group: 15;
        -ms-flex-order: 14;
            order: 14;
  }
  .order-first\@tiny {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@tiny {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 768px) {
  .order-14\@small {
    -webkit-box-ordinal-group: 15;
        -ms-flex-order: 14;
            order: 14;
  }
  .order-first\@small {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@small {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1024px) {
  .order-14\@medium {
    -webkit-box-ordinal-group: 15;
        -ms-flex-order: 14;
            order: 14;
  }
  .order-first\@medium {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@medium {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1200px) {
  .order-14\@large {
    -webkit-box-ordinal-group: 15;
        -ms-flex-order: 14;
            order: 14;
  }
  .order-first\@large {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@large {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1440px) {
  .order-14\@huge {
    -webkit-box-ordinal-group: 15;
        -ms-flex-order: 14;
            order: 14;
  }
  .order-first\@huge {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@huge {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1680px) {
  .order-14\@full {
    -webkit-box-ordinal-group: 15;
        -ms-flex-order: 14;
            order: 14;
  }
  .order-first\@full {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@full {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (orientation:landscape) {
  .order-13\@landscape {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-first\@landscape {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@landscape {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (orientation:portrait) {
  .order-13\@portrait {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-first\@portrait {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@portrait {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .order-13\@retina {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-first\@retina {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@retina {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 480px) {
  .order-13\@tiny {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-first\@tiny {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@tiny {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 768px) {
  .order-13\@small {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-first\@small {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@small {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1024px) {
  .order-13\@medium {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-first\@medium {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@medium {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1200px) {
  .order-13\@large {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-first\@large {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@large {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1440px) {
  .order-13\@huge {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-first\@huge {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@huge {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1680px) {
  .order-13\@full {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-first\@full {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@full {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (orientation:landscape) {
  .order-12\@landscape {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .order-first\@landscape {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@landscape {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (orientation:portrait) {
  .order-12\@portrait {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .order-first\@portrait {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@portrait {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .order-12\@retina {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .order-first\@retina {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@retina {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 480px) {
  .order-12\@tiny {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .order-first\@tiny {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@tiny {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 768px) {
  .order-12\@small {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .order-first\@small {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@small {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1024px) {
  .order-12\@medium {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .order-first\@medium {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@medium {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1200px) {
  .order-12\@large {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .order-first\@large {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@large {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1440px) {
  .order-12\@huge {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .order-first\@huge {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@huge {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1680px) {
  .order-12\@full {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .order-first\@full {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@full {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (orientation:landscape) {
  .order-11\@landscape {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-first\@landscape {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@landscape {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (orientation:portrait) {
  .order-11\@portrait {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-first\@portrait {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@portrait {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .order-11\@retina {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-first\@retina {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@retina {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 480px) {
  .order-11\@tiny {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-first\@tiny {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@tiny {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 768px) {
  .order-11\@small {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-first\@small {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@small {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1024px) {
  .order-11\@medium {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-first\@medium {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@medium {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1200px) {
  .order-11\@large {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-first\@large {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@large {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1440px) {
  .order-11\@huge {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-first\@huge {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@huge {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1680px) {
  .order-11\@full {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-first\@full {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@full {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (orientation:landscape) {
  .order-10\@landscape {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-first\@landscape {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@landscape {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (orientation:portrait) {
  .order-10\@portrait {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-first\@portrait {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@portrait {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .order-10\@retina {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-first\@retina {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@retina {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 480px) {
  .order-10\@tiny {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-first\@tiny {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@tiny {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 768px) {
  .order-10\@small {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-first\@small {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@small {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1024px) {
  .order-10\@medium {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-first\@medium {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@medium {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1200px) {
  .order-10\@large {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-first\@large {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@large {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1440px) {
  .order-10\@huge {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-first\@huge {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@huge {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1680px) {
  .order-10\@full {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-first\@full {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@full {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (orientation:landscape) {
  .order-9\@landscape {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-first\@landscape {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@landscape {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (orientation:portrait) {
  .order-9\@portrait {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-first\@portrait {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@portrait {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .order-9\@retina {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-first\@retina {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@retina {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 480px) {
  .order-9\@tiny {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-first\@tiny {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@tiny {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 768px) {
  .order-9\@small {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-first\@small {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@small {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1024px) {
  .order-9\@medium {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-first\@medium {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@medium {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1200px) {
  .order-9\@large {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-first\@large {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@large {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1440px) {
  .order-9\@huge {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-first\@huge {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@huge {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1680px) {
  .order-9\@full {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-first\@full {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@full {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (orientation:landscape) {
  .order-8\@landscape {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-first\@landscape {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@landscape {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (orientation:portrait) {
  .order-8\@portrait {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-first\@portrait {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@portrait {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .order-8\@retina {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-first\@retina {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@retina {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 480px) {
  .order-8\@tiny {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-first\@tiny {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@tiny {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 768px) {
  .order-8\@small {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-first\@small {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@small {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1024px) {
  .order-8\@medium {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-first\@medium {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@medium {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1200px) {
  .order-8\@large {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-first\@large {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@large {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1440px) {
  .order-8\@huge {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-first\@huge {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@huge {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1680px) {
  .order-8\@full {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-first\@full {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@full {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (orientation:landscape) {
  .order-7\@landscape {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-first\@landscape {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@landscape {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (orientation:portrait) {
  .order-7\@portrait {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-first\@portrait {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@portrait {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .order-7\@retina {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-first\@retina {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@retina {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 480px) {
  .order-7\@tiny {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-first\@tiny {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@tiny {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 768px) {
  .order-7\@small {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-first\@small {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@small {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1024px) {
  .order-7\@medium {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-first\@medium {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@medium {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1200px) {
  .order-7\@large {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-first\@large {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@large {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1440px) {
  .order-7\@huge {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-first\@huge {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@huge {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1680px) {
  .order-7\@full {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-first\@full {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@full {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (orientation:landscape) {
  .order-6\@landscape {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-first\@landscape {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@landscape {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (orientation:portrait) {
  .order-6\@portrait {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-first\@portrait {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@portrait {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .order-6\@retina {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-first\@retina {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@retina {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 480px) {
  .order-6\@tiny {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-first\@tiny {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@tiny {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 768px) {
  .order-6\@small {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-first\@small {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@small {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1024px) {
  .order-6\@medium {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-first\@medium {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@medium {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1200px) {
  .order-6\@large {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-first\@large {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@large {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1440px) {
  .order-6\@huge {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-first\@huge {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@huge {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1680px) {
  .order-6\@full {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-first\@full {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@full {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (orientation:landscape) {
  .order-5\@landscape {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-first\@landscape {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@landscape {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (orientation:portrait) {
  .order-5\@portrait {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-first\@portrait {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@portrait {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .order-5\@retina {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-first\@retina {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@retina {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 480px) {
  .order-5\@tiny {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-first\@tiny {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@tiny {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 768px) {
  .order-5\@small {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-first\@small {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@small {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1024px) {
  .order-5\@medium {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-first\@medium {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@medium {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1200px) {
  .order-5\@large {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-first\@large {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@large {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1440px) {
  .order-5\@huge {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-first\@huge {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@huge {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1680px) {
  .order-5\@full {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-first\@full {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@full {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (orientation:landscape) {
  .order-4\@landscape {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-first\@landscape {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@landscape {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (orientation:portrait) {
  .order-4\@portrait {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-first\@portrait {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@portrait {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .order-4\@retina {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-first\@retina {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@retina {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 480px) {
  .order-4\@tiny {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-first\@tiny {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@tiny {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 768px) {
  .order-4\@small {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-first\@small {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@small {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1024px) {
  .order-4\@medium {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-first\@medium {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@medium {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1200px) {
  .order-4\@large {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-first\@large {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@large {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1440px) {
  .order-4\@huge {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-first\@huge {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@huge {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1680px) {
  .order-4\@full {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-first\@full {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@full {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (orientation:landscape) {
  .order-3\@landscape {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-first\@landscape {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@landscape {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (orientation:portrait) {
  .order-3\@portrait {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-first\@portrait {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@portrait {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .order-3\@retina {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-first\@retina {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@retina {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 480px) {
  .order-3\@tiny {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-first\@tiny {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@tiny {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 768px) {
  .order-3\@small {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-first\@small {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@small {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1024px) {
  .order-3\@medium {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-first\@medium {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@medium {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1200px) {
  .order-3\@large {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-first\@large {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@large {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1440px) {
  .order-3\@huge {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-first\@huge {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@huge {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1680px) {
  .order-3\@full {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-first\@full {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@full {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (orientation:landscape) {
  .order-2\@landscape {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-first\@landscape {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@landscape {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (orientation:portrait) {
  .order-2\@portrait {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-first\@portrait {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@portrait {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .order-2\@retina {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-first\@retina {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@retina {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 480px) {
  .order-2\@tiny {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-first\@tiny {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@tiny {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 768px) {
  .order-2\@small {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-first\@small {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@small {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1024px) {
  .order-2\@medium {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-first\@medium {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@medium {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1200px) {
  .order-2\@large {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-first\@large {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@large {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1440px) {
  .order-2\@huge {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-first\@huge {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@huge {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1680px) {
  .order-2\@full {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-first\@full {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@full {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (orientation:landscape) {
  .order-1\@landscape {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-first\@landscape {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@landscape {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (orientation:portrait) {
  .order-1\@portrait {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-first\@portrait {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@portrait {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .order-1\@retina {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-first\@retina {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@retina {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 480px) {
  .order-1\@tiny {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-first\@tiny {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@tiny {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 768px) {
  .order-1\@small {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-first\@small {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@small {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1024px) {
  .order-1\@medium {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-first\@medium {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@medium {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1200px) {
  .order-1\@large {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-first\@large {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@large {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1440px) {
  .order-1\@huge {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-first\@huge {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@huge {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (min-width: 1680px) {
  .order-1\@full {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-first\@full {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-last\@full {
    -webkit-box-ordinal-group: 10000;
        -ms-flex-order: 9999;
            order: 9999;
  }
}

@media only screen and (orientation:landscape) {
  .show\@landscape {
    display: unset;
  }
  .row.show\@landscape {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .hide\@landscape {
    display: none;
  }
}

@media only screen and (orientation:portrait) {
  .show\@portrait {
    display: unset;
  }
  .row.show\@portrait {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .hide\@portrait {
    display: none;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .show\@retina {
    display: unset;
  }
  .row.show\@retina {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .hide\@retina {
    display: none;
  }
}

@media only screen and (min-width: 480px) {
  .show\@tiny {
    display: unset;
  }
  .row.show\@tiny {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .hide\@tiny {
    display: none;
  }
}

@media only screen and (min-width: 768px) {
  .show\@small {
    display: unset;
  }
  .row.show\@small {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .hide\@small {
    display: none;
  }
}

@media only screen and (min-width: 1024px) {
  .show\@medium {
    display: unset;
  }
  .row.show\@medium {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .hide\@medium {
    display: none;
  }
}

@media only screen and (min-width: 1200px) {
  .show\@large {
    display: unset;
  }
  .row.show\@large {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .hide\@large {
    display: none;
  }
}

@media only screen and (min-width: 1440px) {
  .show\@huge {
    display: unset;
  }
  .row.show\@huge {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .hide\@huge {
    display: none;
  }
}

@media only screen and (min-width: 1680px) {
  .show\@full {
    display: unset;
  }
  .row.show\@full {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .hide\@full {
    display: none;
  }
}

@media only screen and (min-width: 480px) {
  .no-gutter\@tiny {
    padding: 0;
  }
  .no-gutter-right\@tiny {
    padding-right: 0;
  }
  .no-gutter-left\@tiny {
    padding-left: 0;
  }
  .gutter\@tiny {
    padding-left: 0px;
    padding-right: 0px;
  }
  .gutter-left\@tiny {
    padding-left: 0px;
  }
  .gutter-right\@tiny {
    padding-right: 0px;
  }
}

@media only screen and (min-width: 768px) {
  .no-gutter\@small {
    padding: 0;
  }
  .no-gutter-right\@small {
    padding-right: 0;
  }
  .no-gutter-left\@small {
    padding-left: 0;
  }
  .gutter\@small {
    padding-left: 5px;
    padding-right: 5px;
  }
  .gutter-left\@small {
    padding-left: 5px;
  }
  .gutter-right\@small {
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1024px) {
  .no-gutter\@medium {
    padding: 0;
  }
  .no-gutter-right\@medium {
    padding-right: 0;
  }
  .no-gutter-left\@medium {
    padding-left: 0;
  }
  .gutter\@medium {
    padding-left: 5px;
    padding-right: 5px;
  }
  .gutter-left\@medium {
    padding-left: 5px;
  }
  .gutter-right\@medium {
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1200px) {
  .no-gutter\@large {
    padding: 0;
  }
  .no-gutter-right\@large {
    padding-right: 0;
  }
  .no-gutter-left\@large {
    padding-left: 0;
  }
  .gutter\@large {
    padding-left: 5px;
    padding-right: 5px;
  }
  .gutter-left\@large {
    padding-left: 5px;
  }
  .gutter-right\@large {
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1440px) {
  .no-gutter\@huge {
    padding: 0;
  }
  .no-gutter-right\@huge {
    padding-right: 0;
  }
  .no-gutter-left\@huge {
    padding-left: 0;
  }
  .gutter\@huge {
    padding-left: 5px;
    padding-right: 5px;
  }
  .gutter-left\@huge {
    padding-left: 5px;
  }
  .gutter-right\@huge {
    padding-right: 5px;
  }
}

@media only screen and (min-width: 1680px) {
  .no-gutter\@full {
    padding: 0;
  }
  .no-gutter-right\@full {
    padding-right: 0;
  }
  .no-gutter-left\@full {
    padding-left: 0;
  }
  .gutter\@full {
    padding-left: 5px;
    padding-right: 5px;
  }
  .gutter-left\@full {
    padding-left: 5px;
  }
  .gutter-right\@full {
    padding-right: 5px;
  }
}

/**
 * For hacks. Use wisely.
 */

/**
 * Object mixin to make polyfill working.
 */

/**
 * Easy functions to create easily pure css arrows anywhere
 */

.clearfix:after,
.clearfix:before {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.main {
  margin-top: 120px;
  position: relative;
  overflow-x: clip;
  z-index: 50;
}

.main__commerce {
  margin-top: 150px;
}

.main.forgot {
  margin-top: 155px;
}

::-moz-selection {
  background: rgb(255, 222, 142);
}

::selection {
  background: rgb(255, 222, 142);
}

::-moz-selection {
  background: rgb(255, 222, 142);
}

body {
  min-height: 100vh;
  padding-bottom: env(safe-area-inset-bottom);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow-x: hidden;
}

body.about ::-moz-selection {
  background: #fc91c4;
}

body.about ::selection {
  background: #fc91c4;
}

body.about ::-moz-selection {
  background: #fc91c4;
}

body.green {
  background-color: #9ed1b9;
}

body.green ::-moz-selection {
  background: rgb(255, 222, 142);
}

body.green ::selection {
  background: rgb(255, 222, 142);
}

body.green ::-moz-selection {
  background: rgb(255, 222, 142);
}

body.yellow {
  background-color: rgb(255, 222, 142);
}

body.yellow ::-moz-selection {
  background: #fc91c4;
}

body.yellow ::selection {
  background: #fc91c4;
}

body.yellow ::-moz-selection {
  background: #fc91c4;
}

body.login, body.register {
  background-color: #fc91c4;
}

body.login ::-moz-selection, body.register ::-moz-selection {
  background: rgb(255, 222, 142);
}

body.login ::selection, body.register ::selection {
  background: rgb(255, 222, 142);
}

body.login ::-moz-selection, body.register ::-moz-selection {
  background: rgb(255, 222, 142);
}

body.noscroll {
  overflow: hidden;
}

.bodyContainer {
  min-height: 100vh;
  padding-bottom: env(safe-area-inset-bottom);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
}

.container__full {
  width: 100%;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.row__100 {
  height: 100%;
}

@font-face {
  font-family: "Telka Extended Medium";
  src: url("/dist/static/font/Extended-Medium.woff2") format("woff2"), url("/dist/static/font/Extended-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Telka Extended Regular";
  src: url("/dist/static/font/Extended-Regular.woff2") format("woff2"), url("/dist/static/font/Extended-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

p {
  font-family: "Telka Extended Regular", sans-serif;
}

button:hover, a:hover {
  cursor: pointer;
}

.swirl {
  z-index: -10;
}

.swirl.mobile {
  display: unset;
}

@media only screen and (min-width: 1024px) {
  .swirl.mobile {
    display: none;
  }
}

.swirl.desktop {
  display: none;
}

@media only screen and (min-width: 1024px) {
  .swirl.desktop {
    display: unset;
  }
}

.swirl.swirl__home--first {
  position: absolute;
  left: -200px;
  top: -350px;
  width: 200vw;
  pointer-events: none;
}

@media only screen and (min-width: 480px) {
  .swirl.swirl__home--first {
    left: -250px;
    top: -350px;
    width: 150vw;
  }
}

@media only screen and (min-width: 768px) {
  .swirl.swirl__home--first {
    width: 120vw;
    top: -500px;
    left: -100px;
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
}

@media only screen and (min-width: 1024px) {
  .swirl.swirl__home--first {
    top: -400px;
    left: -100px;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

@media only screen and (min-width: 1200px) {
  .swirl.swirl__home--first {
    left: -150px;
  }
}

@media only screen and (min-width: 1680px) {
  .swirl.swirl__home--first {
    top: -600px;
    left: -250px;
  }
}

.swirl.swirl__home--second {
  position: absolute;
  right: -200px;
  top: -50px;
  width: 150vw;
}

@media only screen and (min-width: 480px) {
  .swirl.swirl__home--second {
    width: 100vw;
  }
}

@media only screen and (min-width: 1024px) {
  .swirl.swirl__home--second {
    top: -200px;
    right: -300px;
    width: 80vw;
  }
}

.swirl.swirl__home--third {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 150vw;
}

@media only screen and (min-width: 480px) {
  .swirl.swirl__home--third {
    top: -80px;
    right: -80px;
    width: 120vw;
  }
}

@media only screen and (min-width: 768px) {
  .swirl.swirl__home--third {
    top: -120px;
    right: -120px;
    width: 120vw;
  }
}

@media only screen and (min-width: 1024px) {
  .swirl.swirl__home--third {
    top: -200px;
    right: -100px;
    width: 150vw;
  }
}

@media only screen and (min-width: 1200px) {
  .swirl.swirl__home--third {
    right: -400px;
    width: 150vw;
  }
}

.swirl.swirl__home--fourth {
  position: absolute;
  top: 50px;
  left: -120px;
  width: 200vw;
}

@media only screen and (min-width: 480px) {
  .swirl.swirl__home--fourth {
    top: -100px;
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
}

@media only screen and (min-width: 768px) {
  .swirl.swirl__home--fourth {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
    top: 0;
    left: 0;
  }
}

@media only screen and (min-width: 1024px) {
  .swirl.swirl__home--fourth {
    left: -200px;
    width: 150vw;
  }
}

@media only screen and (min-width: 1200px) {
  .swirl.swirl__home--fourth {
    left: -400px;
    width: 150vw;
  }
}

@media only screen and (min-width: 1680px) {
  .swirl.swirl__home--fourth {
    left: -1000px;
    width: 200vw;
  }
}

@media only screen and (min-width: 1680px) {
  .swirl.swirl__home--fourth.about {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    left: -400px;
    width: 150vw;
  }
}

@media screen and (min-width: 1200px) {
  .swirl.swirl__home--fourth {
    left: -1000px;
    width: 200vw;
  }
}

.swirl.swirl__home--fifth {
  position: absolute;
  top: -50px;
  left: -200px;
  width: 200vw;
  z-index: -1000;
}

@media only screen and (min-width: 480px) {
  .swirl.swirl__home--fifth {
    top: -100px;
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
}

@media only screen and (min-width: 768px) {
  .swirl.swirl__home--fifth {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    top: 50px;
    left: -200px;
  }
}

@media only screen and (min-width: 1024px) {
  .swirl.swirl__home--fifth {
    left: -200px;
    width: 150vw;
  }
}

@media only screen and (min-width: 1200px) {
  .swirl.swirl__home--fifth {
    left: -400px;
    width: 150vw;
  }
}

@media only screen and (min-width: 1680px) {
  .swirl.swirl__home--fifth {
    left: -1000px;
    width: 200vw;
  }
}

@media only screen and (min-width: 1680px) {
  .swirl.swirl__home--fifth.about {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    left: -400px;
    width: 150vw;
  }
}

@media screen and (min-width: 1200px) {
  .swirl.swirl__home--fifth {
    left: -1000px;
    width: 200vw;
  }
}

.swirl.swirl__bookstores--first {
  position: absolute;
  left: -130px;
  top: -350px;
  width: 200vw;
}

@media only screen and (min-width: 480px) {
  .swirl.swirl__bookstores--first {
    left: -100px;
    top: -350px;
    width: 150vw;
  }
}

@media only screen and (min-width: 768px) {
  .swirl.swirl__bookstores--first {
    width: 120vw;
    top: -500px;
    left: -100px;
  }
}

@media only screen and (min-width: 1024px) {
  .swirl.swirl__bookstores--first {
    top: -400px;
    left: -100px;
  }
}

@media only screen and (min-width: 1200px) {
  .swirl.swirl__bookstores--first {
    left: -150px;
  }
}

@media only screen and (min-width: 1680px) {
  .swirl.swirl__bookstores--first {
    top: -600px;
    left: -250px;
  }
}

.swirl__faq--hero {
  position: absolute;
  left: -130px;
  top: -50px;
  width: 200vw;
}

@media only screen and (min-width: 480px) {
  .swirl__faq--hero {
    left: -150px;
    top: 0;
    width: 150vw;
  }
}

@media only screen and (min-width: 768px) {
  .swirl__faq--hero {
    width: 120vw;
    top: -250px;
    left: -100px;
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
}

@media only screen and (min-width: 1024px) {
  .swirl__faq--hero {
    top: -200px;
    right: 0;
    width: 140vw;
  }
}

@media only screen and (min-width: 1680px) {
  .swirl__faq--hero {
    top: -300px;
    width: 105vw;
  }
}

.swirl__faq--module--first {
  position: absolute;
  top: -40px;
  left: -20px;
  width: 120vw;
}

@media only screen and (min-width: 768px) {
  .swirl__faq--module--first.mobile {
    display: none;
  }
}

.swirl__faq--module--first.desktop {
  display: none;
}

@media only screen and (min-width: 768px) {
  .swirl__faq--module--first.desktop {
    display: unset;
    width: 200vw;
    top: -120px;
    left: -150px;
  }
}

@media only screen and (min-width: 1024px) {
  .swirl__faq--module--first.desktop {
    width: 150vw;
  }
}

@media only screen and (min-width: 1680px) {
  .swirl__faq--module--first.desktop {
    top: -200px;
    width: 120vw;
  }
}

.swirl__faq--module--second {
  position: absolute;
  top: 580px;
  right: -160px;
}

@media only screen and (min-width: 768px) {
  .swirl__faq--module--second.mobile {
    display: none;
  }
}

.swirl__faq--module--third {
  position: absolute;
  top: 1050px;
  left: -150px;
  width: 200vw;
}

@media only screen and (min-width: 1024px) {
  .swirl__faq--module--third.mobile {
    display: none;
  }
}

.swirl__shop--hero {
  position: absolute;
  top: 150px;
  right: -300px;
  width: 200vw;
}

@media only screen and (min-width: 768px) {
  .swirl__shop--hero {
    top: 150px;
    width: 120vw;
    right: -100px;
  }
}

@media only screen and (min-width: 1024px) {
  .swirl__shop--hero {
    top: 150px;
    right: -400px;
    width: 150vw;
  }
}

@media only screen and (min-width: 1200px) {
  .swirl__shop--hero {
    top: -200px;
    right: 0;
    width: 110vw;
  }
}

@media only screen and (min-width: 1680px) {
  .swirl__shop--hero {
    top: -200px;
    right: 0px;
  }
}

.swirl__media--hero {
  position: absolute;
  top: 150px;
  left: -180px;
  width: 200vw;
}

@media only screen and (min-width: 768px) {
  .swirl__media--hero {
    top: 150px;
    width: 130vw;
    left: -150px;
  }
}

@media only screen and (min-width: 1024px) {
  .swirl__media--hero {
    top: 150px;
    left: -200px;
    width: 130vw;
  }
}

@media only screen and (min-width: 1200px) {
  .swirl__media--hero {
    top: 100px;
    left: -400px;
    width: 140vw;
  }
}

@media only screen and (min-width: 1680px) {
  .swirl__media--hero {
    top: 100px;
    width: 130vw;
    left: -400px;
  }
}

.text__title, .balance-check-result p, .balance-check-result, .register__title, .login__title, .hero__title, .module__title, .module__title--tar, .module__title--tal {
  font-size: 2.5rem;
  font-size: 7vw;
  font-family: "Telka Extended Medium", sans-serif;
  text-transform: uppercase;
  line-height: 1.1em;
}

@media (max-width: 500px) {
  .text__title, .balance-check-result p, .balance-check-result, .register__title, .login__title, .hero__title, .module__title, .module__title--tar, .module__title--tal {
    font-size: 2.1875rem;
  }
}

@media (min-width: 785.7142857143px) {
  .text__title, .balance-check-result p, .balance-check-result, .register__title, .login__title, .hero__title, .module__title, .module__title--tar, .module__title--tal {
    font-size: 3.4375rem;
  }
}

.text__subtitle, .faqModule .faq__question, .team__section .section__title, .card__title, .module__subtitle, .forms__label {
  font-size: 1.25rem;
  font-size: 5vw;
  font-family: "Telka Extended Medium", sans-serif;
  text-transform: uppercase;
  line-height: 1.2em;
}

@media (max-width: 400px) {
  .text__subtitle, .faqModule .faq__question, .team__section .section__title, .card__title, .module__subtitle, .forms__label {
    font-size: 1.25rem;
  }
}

@media (min-width: 700px) {
  .text__subtitle, .faqModule .faq__question, .team__section .section__title, .card__title, .module__subtitle, .forms__label {
    font-size: 2.1875rem;
  }
}

.text__lead, .verificationPage .cart__total, .profilePage__orders thead tr td, .cartPage__line-last.line--bold, .cartPage__line.line--bold, .line--bold.cartPage__line-last--discount, .line--bold.cartPage__line--discount, .cartPage__item .item__title, .productItem__name, .teaserIllustration .module__lead p, .teaserIllustration .module__lead-title--tal p, .teaserIllustration .module__lead--tal p, .teaserIllustration .module__lead--tar p, .hero__lead, .module__lead, .module__lead--tar, .module__lead--tal, .module__lead-title--tal, .module__lead-title {
  font-size: 1.75rem;
  font-size: 4vw;
  font-family: "Telka Extended Medium", sans-serif;
  line-height: 1.2em;
}

@media (max-width: 600px) {
  .text__lead, .verificationPage .cart__total, .profilePage__orders thead tr td, .cartPage__line-last.line--bold, .cartPage__line.line--bold, .line--bold.cartPage__line-last--discount, .line--bold.cartPage__line--discount, .cartPage__item .item__title, .productItem__name, .teaserIllustration .module__lead p, .teaserIllustration .module__lead-title--tal p, .teaserIllustration .module__lead--tal p, .teaserIllustration .module__lead--tar p, .hero__lead, .module__lead, .module__lead--tar, .module__lead--tal, .module__lead-title--tal, .module__lead-title {
    font-size: 1.5rem;
  }
}

@media (min-width: 875px) {
  .text__lead, .verificationPage .cart__total, .profilePage__orders thead tr td, .cartPage__line-last.line--bold, .cartPage__line.line--bold, .line--bold.cartPage__line-last--discount, .line--bold.cartPage__line--discount, .cartPage__item .item__title, .productItem__name, .teaserIllustration .module__lead p, .teaserIllustration .module__lead-title--tal p, .teaserIllustration .module__lead--tal p, .teaserIllustration .module__lead--tar p, .hero__lead, .module__lead, .module__lead--tar, .module__lead--tal, .module__lead-title--tal, .module__lead-title {
    font-size: 2.1875rem;
  }
}

.text__button, .addressPage__error, .sponsors__form button[data-freeform-action=submit], .freeformMedia button[data-freeform-action=submit], .nav__login, .nav__logout, .nav__sites .site, .header__login, .header__logout, .header__sites .site, .forms__select, .forms__field--label, .button.register, .button {
  font-size: 0.9375rem;
  font-size: 4vw;
  font-family: "Telka Extended Regular", sans-serif;
  line-height: 1em;
  text-transform: uppercase;
}

@media (max-width: 375px) {
  .text__button, .addressPage__error, .sponsors__form button[data-freeform-action=submit], .freeformMedia button[data-freeform-action=submit], .nav__login, .nav__logout, .nav__sites .site, .header__login, .header__logout, .header__sites .site, .forms__select, .forms__field--label, .button.register, .button {
    font-size: 0.9375rem;
  }
}

@media (min-width: 375px) {
  .text__button, .addressPage__error, .sponsors__form button[data-freeform-action=submit], .freeformMedia button[data-freeform-action=submit], .nav__login, .nav__logout, .nav__sites .site, .header__login, .header__logout, .header__sites .site, .forms__select, .forms__field--label, .button.register, .button {
    font-size: 0.9375rem;
  }
}

.productItem__form .form__quantity--wrapper input[type=number]::-webkit-input-placeholder {
  font-size: 1.1875rem;
  font-size: 2vw;
  font-family: "Telka Extended Regular", sans-serif;
  line-height: 1.2em;
}

.productItem__form .form__quantity--wrapper input[type=number]::-moz-placeholder {
  font-size: 1.1875rem;
  font-size: 2vw;
  font-family: "Telka Extended Regular", sans-serif;
  line-height: 1.2em;
}

.productItem__form .form__quantity--wrapper input[type=number]:-ms-input-placeholder {
  font-size: 1.1875rem;
  font-size: 2vw;
  font-family: "Telka Extended Regular", sans-serif;
  line-height: 1.2em;
}

.productItem__form .form__quantity--wrapper input[type=number]::-ms-input-placeholder {
  font-size: 1.1875rem;
  font-size: 2vw;
  font-family: "Telka Extended Regular", sans-serif;
  line-height: 1.2em;
}

.text__paragraph, .profilePage__orders tbody tr.body__row td, .profilePage__orders .order__detail, .cartPage__line-last, .cartPage__line, .cartPage__line-last--discount, .cartPage__line--discount, .cartPage__item .item__description, .cartPage__item .item__price,
.cartPage__item .item__quantity, .orderConfirmation__total, .orderConfirmation__product--title, .orderConfirmation__product--quantity, .orderConfirmation__product, .orderConfirmation__text, .orderConfirmation__address, .searchModule__default, .productItem__form .form__quantity--wrapper input[type=number]::placeholder, .productItem__form .form__quantity--wrapper input[type=number], .productItem__format, .mapsModule__cantons .canton, .faqModule .faq__answer, .team__section .section__name, .card__text, .footer__copyright, .module__downloads .download__item--title, .module__text, .module__lead--default ul,
.module__lead--default ol,
.module__lead--default li, .module__lead p, .module__lead-title--tal p, .module__lead--tal p, .module__lead--tar p, .module__lead-title--default ul,
.module__lead-title--default ol,
.module__lead-title--default li, .module__lead-title p {
  font-size: 1.1875rem;
  font-size: 2vw;
  font-family: "Telka Extended Regular", sans-serif;
  line-height: 1.2em;
}

@media (max-width: 800px) {
  .productItem__form .form__quantity--wrapper input[type=number]::-webkit-input-placeholder {
    font-size: 1rem;
  }
  .productItem__form .form__quantity--wrapper input[type=number]::-moz-placeholder {
    font-size: 1rem;
  }
  .productItem__form .form__quantity--wrapper input[type=number]:-ms-input-placeholder {
    font-size: 1rem;
  }
  .productItem__form .form__quantity--wrapper input[type=number]::-ms-input-placeholder {
    font-size: 1rem;
  }
  .text__paragraph, .profilePage__orders tbody tr.body__row td, .profilePage__orders .order__detail, .cartPage__line-last, .cartPage__line, .cartPage__line-last--discount, .cartPage__line--discount, .cartPage__item .item__description, .cartPage__item .item__price,
  .cartPage__item .item__quantity, .orderConfirmation__total, .orderConfirmation__product--title, .orderConfirmation__product--quantity, .orderConfirmation__product, .orderConfirmation__text, .orderConfirmation__address, .searchModule__default, .productItem__form .form__quantity--wrapper input[type=number]::placeholder, .productItem__form .form__quantity--wrapper input[type=number], .productItem__format, .mapsModule__cantons .canton, .faqModule .faq__answer, .team__section .section__name, .card__text, .footer__copyright, .module__downloads .download__item--title, .module__text, .module__lead--default ul,
  .module__lead--default ol,
  .module__lead--default li, .module__lead p, .module__lead-title--tal p, .module__lead--tal p, .module__lead--tar p, .module__lead-title--default ul,
  .module__lead-title--default ol,
  .module__lead-title--default li, .module__lead-title p {
    font-size: 1rem;
  }
}

@media (min-width: 1050px) {
  .productItem__form .form__quantity--wrapper input[type=number]::-webkit-input-placeholder {
    font-size: 1.3125rem;
  }
  .productItem__form .form__quantity--wrapper input[type=number]::-moz-placeholder {
    font-size: 1.3125rem;
  }
  .productItem__form .form__quantity--wrapper input[type=number]:-ms-input-placeholder {
    font-size: 1.3125rem;
  }
  .productItem__form .form__quantity--wrapper input[type=number]::-ms-input-placeholder {
    font-size: 1.3125rem;
  }
  .text__paragraph, .profilePage__orders tbody tr.body__row td, .profilePage__orders .order__detail, .cartPage__line-last, .cartPage__line, .cartPage__line-last--discount, .cartPage__line--discount, .cartPage__item .item__description, .cartPage__item .item__price,
  .cartPage__item .item__quantity, .orderConfirmation__total, .orderConfirmation__product--title, .orderConfirmation__product--quantity, .orderConfirmation__product, .orderConfirmation__text, .orderConfirmation__address, .searchModule__default, .productItem__form .form__quantity--wrapper input[type=number]::placeholder, .productItem__form .form__quantity--wrapper input[type=number], .productItem__format, .mapsModule__cantons .canton, .faqModule .faq__answer, .team__section .section__name, .card__text, .footer__copyright, .module__downloads .download__item--title, .module__text, .module__lead--default ul,
  .module__lead--default ol,
  .module__lead--default li, .module__lead p, .module__lead-title--tal p, .module__lead--tal p, .module__lead--tar p, .module__lead-title--default ul,
  .module__lead-title--default ol,
  .module__lead-title--default li, .module__lead-title p {
    font-size: 1.3125rem;
  }
}

.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #000000;
  border: 1px solid #000000;
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  padding: 5px 20px;
  height: 36px;
  line-height: 1em;
  -webkit-transition: all 500ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 500ms cubic-bezier(0.65, 0.05, 0.36, 1);
  white-space: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.button.is-disabled, .button.is-disabled:hover, .button.is-disabled:focus {
  pointer-events: none;
  cursor: default;
  background: none;
  color: inherit;
  text-decoration: none;
}

.button:hover {
  background-color: #ffffff;
  border: 1px solid #000000;
  color: #000000;
}

.button.text--green {
  color: #9ed1b9;
}

.button.text--green:hover {
  color: #000000;
  -webkit-transition: all 500ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 500ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.button.text--pink {
  color: #fc91c4;
}

.button.text--pink:hover {
  color: #000000;
  -webkit-transition: all 500ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 500ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.button.text--yellow {
  color: rgb(255, 222, 142);
}

.button.text--yellow:hover {
  color: #000000;
  -webkit-transition: all 500ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 500ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.button.button--outline {
  background-color: transparent;
  color: #000000;
}

.button.button--outline:hover {
  background-color: #000000;
  color: #ffffff;
}

.button.button--outline.active {
  background-color: #000000;
  color: #ffffff;
}

.button.button--white {
  color: #ffffff;
  background-color: transparent;
  border: 1px solid #ffffff;
  -webkit-transition: all 500ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 500ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.button.button--white:hover {
  background-color: #ffffff;
  color: #000000;
  -webkit-transition: all 500ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 500ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.button.button--anchor {
  border: none;
  padding: 0;
}

.button.button--anchor--white {
  color: #ffffff;
}

.button.login {
  background-color: #000000;
  color: #fc91c4;
  margin: 0;
  padding-left: 0;
}

.button.login:hover {
  cursor: pointer;
}

.button.register {
  margin-top: 20px;
  text-transform: initial;
  line-height: 1.4em;
  background-color: transparent;
  outline: none;
  border: none;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #000000;
  display: inline-block;
  padding-left: 0;
}

@media only screen and (min-width: 768px) {
  .button.register {
    text-align: left;
  }
}

.button.register:hover {
  cursor: pointer;
}

.button__address {
  margin-top: 20px;
}

.button__payment {
  width: 100%;
}

.button__black {
  border: 1px solid #000000;
  background-color: #000000;
}

.button__black:hover {
  background-color: #ffffff;
  color: #000000;
}

.button__black--yellow {
  color: rgb(255, 222, 142);
}

.button__black--yellow:hover {
  background-color: transparent;
  border: 1px solid #000000;
  color: #000000 !important;
}

.button__black--green {
  color: #9ed1b9;
}

.button__black--green:hover {
  background-color: rgb(255, 222, 142);
  border: 1px solid rgb(255, 222, 142);
  color: #000000 !important;
}

.button__black--pink {
  color: #fc91c4;
}

.button__black--pink:hover {
  background-color: transparent;
  border: 1px solid #000000;
  color: #000000 !important;
}

.button__outline {
  border: 1px solid #000000;
  background-color: transparent;
}

.button__outline--yellow {
  color: #000000;
}

.button__outline--yellow:hover {
  background-color: #000000;
  border: 1px solid #000000;
  color: rgb(255, 222, 142);
}

.button__outline--yellow-light {
  color: #000000;
}

.button__outline--yellow-light:hover, .button__outline--yellow-light[data-attribute-active=true] {
  background-color: rgb(255, 222, 142);
  border: 1px solid rgb(255, 222, 142);
  color: #000000;
}

.button__outline--green {
  color: #000000;
}

.button__outline--green:hover {
  background-color: #000000;
  border: 1px solid #000000;
  color: #9ed1b9;
}

.button__outline--pink {
  color: #000000;
}

.button__outline--pink:hover {
  background-color: #000000;
  border: 1px solid #000000;
  color: #fc91c4;
}

.button__saveAddress {
  margin-top: 50px;
  width: 100%;
}

.button__saveAddress > a.button {
  width: 100%;
}

.button__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

@media only screen and (min-width: 1024px) {
  .button__flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.button__flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.button__flex-container--right {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.button__flex-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

.button__center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.button__delete {
  margin-bottom: 20px;
  width: 100%;
  display: inline-block;
}

.button__bookshop {
  margin-top: 20px;
}

@media screen and (max-width: 1023px) {
  .button__flex-container--right {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .button__flex-container {
    gap: 20px;
  }
}

@-webkit-keyframes sticky-icky {
  0% {
    position: sticky;
  }
  1% {
    position: absolute;
  }
}

@keyframes sticky-icky {
  0% {
    position: sticky;
  }
  1% {
    position: absolute;
  }
}

.successMessageContainer {
  position: relative;
}

.productItem__form .form__quantity--wrapper > input {
  width: 3.25em;
}

.wrapper {
  position: absolute;
  right: 0;
  top: 100px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

#successMessage {
  display: none;
  position: fixed;
  z-index: 9999;
  background-color: rgb(255, 222, 142);
  color: black;
  padding: 20px 20px 20px 70px;
  border-radius: 61px;
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  font-size: 1.1em;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 0;
  pointer-events: none;
  border: 1px solid black;
  min-width: 550px;
}

#successMessage.active {
  display: inline-block;
  opacity: 1;
  pointer-events: auto;
}

.thxMsg {
  display: inline-block;
  padding: 20px 40px 20px 20px;
  color: black;
  margin-bottom: var(--horizontalMargin);
  font-size: 1.05em;
  border-radius: 61px;
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  opacity: 1;
  background-color: rgb(255, 222, 142);
  display: none;
  opacity: 0;
  pointer-events: none;
  position: relative;
}

.thxMsg__light {
  font-family: "Telka Extended Light", sans-serif;
}

.thxMsg__bold {
  text-transform: uppercase;
  font-family: "Telka Extended Medium", sans-serif;
}

.successMessage__close {
  position: absolute;
  top: 50%;
  left: 24px;
  background: transparent;
  border: none;
  font-size: inherit;
  line-height: inherit;
  color: black;
  cursor: pointer;
  padding: 0;
  z-index: 2;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline;
  text-decoration: none;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  left: 24px;
  background: transparent;
  border: none;
  padding: 0;
  z-index: 2;
  box-shadow: none;
  outline: none;
  transition: color 0.2s;
  transform: translateY(-50%);
  display: inline-block;
  text-decoration: none;
  color: black;
  /* Remove text color for lines */
  font-size: 0;
}

.successMessage__close::before,
.successMessage__close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  background: black;
  display: block;
  -webkit-transform-origin: center;
          transform-origin: center;
}

.successMessage__close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.successMessage__close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.successMessage__close:hover {
  color: #888;
}

.thxMsg.active {
  display: inline-block;
  opacity: 1;
  pointer-events: auto;
}

.thxMsg span {
  color: black;
  margin: 4px 10px 0 0;
}

.thxMsg a {
  color: var(--colorResetRGB);
}

.thxMsg a:hover {
  color: black;
}

@media screen and (max-width: 599px) {
  #successMessage {
    min-width: unset;
    width: calc(100% - 40px);
  }
}

.forms__description-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  gap: 20px;
}

.forms__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}

.forms__container--border-bottom {
  padding-bottom: 50px;
  border-bottom: solid 1px black;
}

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

.forms__container--center .forms__wrapper {
  width: auto;
}

.forms__description {
  font-size: 1rem;
  line-height: 1.5;
  font-family: "Telka Extended Medium";
  color: #000000;
  text-align: left;
}

.forms__required {
  color: #fc91c4;
  margin-left: 3px;
}

.forms input {
  font-size: 1rem;
}

.forms input:not([type=checkbox]) {
  font-family: "Telka Extended Medium";
  border-radius: 30px;
  background: #EBEBEB;
  border: 1px solid #EBEBEB;
  color: #000000;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  padding: 5px 20px;
  -webkit-appearance: none;
  height: 36px;
}

body .forms input:not([type=checkbox]) {
  background: #EBEBEB;
  border: 1px solid #EBEBEB;
}

body.green .forms input:not([type=checkbox]) {
  background: #92C1A9;
  border: 1px solid #92C1A9;
}

@media only screen and (min-width: 1024px) {
  .forms input:not([type=checkbox]) {
    border-radius: 20px;
  }
}

.forms input:not([type=checkbox])::-webkit-input-placeholder {
  color: #000000;
  font-size: 1rem;
  opacity: 0.4;
}

.forms input:not([type=checkbox])::-moz-placeholder {
  color: #000000;
  font-size: 1rem;
  opacity: 0.4;
}

.forms input:not([type=checkbox]):-ms-input-placeholder {
  color: #000000;
  font-size: 1rem;
  opacity: 0.4;
}

.forms input:not([type=checkbox])::-ms-input-placeholder {
  color: #000000;
  font-size: 1rem;
  opacity: 0.4;
}

.forms input:not([type=checkbox])::placeholder {
  color: #000000;
  font-size: 1rem;
  opacity: 0.4;
}

.forms__wrapper {
  width: calc(50% - 10px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.forms__wrapper--full-width {
  width: 100%;
}

.forms__input-small {
  max-width: 345px;
}

.forms__checkbox-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

.forms__checkbox-label input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #EBEBEB;
  border: none;
  margin-right: 10px;
  position: relative;
  outline: none;
  -webkit-transition: -webkit-box-shadow 0.2s;
  transition: -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s;
  transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
}

.forms__checkbox-label input[type=checkbox]:checked {
  background: #FBE7A2;
}

.forms__checkbox-label input[type=checkbox]:checked::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 10px;
  width: 15px;
  height: 7px;
  border-left: 1px solid #111;
  border-bottom: 1px solid #111;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.forms__checkbox {
  border: 1px solid #000000 !important;
  width: 26px;
  height: 26px;
  display: none;
  accent-color: #000000;
  margin-right: 20px;
}

.forms__checkbox:checked + .forms__field--label::before {
  background-color: #000000;
  border: 1px solid #000000;
}

.forms__checkbox + .forms__field--label {
  position: relative;
  padding: 0 0 0 46px;
}

@media only screen and (min-width: 768px) {
  .forms__checkbox + .forms__field--label {
    padding: 6px 0 6px 46px;
  }
}

.forms__checkbox + .forms__field--label:hover {
  cursor: pointer;
}

.forms__checkbox + .forms__field--label.checked::before {
  background-color: rgb(255, 222, 142);
}

.forms__checkbox + .forms__field--label::before {
  content: "";
  border: 1px solid #000000;
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  border-radius: 13px;
}

.forms__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.forms__field--label {
  margin-bottom: 30px;
}

.forms__select {
  background-color: transparent;
  border-radius: 15px;
  border: 1px solid #000000;
  text-align: center;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  padding: 6px 24px;
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNi4zNDgiIGhlaWdodD0iOC44ODEiIHZpZXdCb3g9IjAgMCAxNi4zNDggOC44ODEiPgogIDxwYXRoIGlkPSJQZmFkXzIxNCIgZGF0YS1uYW1lPSJQZmFkIDIxNCIgZD0iTTc3MzAuNDg1LDEzNjY2bC03LjgyLDcuODItNy44Mi03LjgyIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNzcxNC40OTEgLTEzNjY1LjY0NikiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzAwMCIgc3Ryb2tlLXdpZHRoPSIxIi8+Cjwvc3ZnPgo=) no-repeat 95% 50%;
}

@media only screen and (min-width: 1024px) {
  .forms__select {
    border-radius: 20px;
  }
}

.forms .freeform-row .module__title, .forms .freeform-row .module__title--tar, .forms .freeform-row .module__title--tal,
.forms .freeform-row .module__subtitle {
  color: #000000;
}

.forms .freeform-row a {
  color: #000000;
}

.forms.register, .forms.reset, .forms.forgot, .forms.inf-form, .forms.balance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.forms.forgot, .forms.reset, .forms.inf-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.forms.balance {
  margin-top: 30px;
}

.forms.billingAddress,
.forms .shippingAddress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.forms.billingAddress.hidden,
.forms .shippingAddress.hidden {
  display: none;
}

.forms.billingAddress input,
.forms .shippingAddress input {
  text-transform: none;
}

.forms.billingAddress {
  margin-top: 30px;
}

@media only screen and (min-width: 768px) {
  .forms.billingAddress {
    margin-top: 50px;
  }
}

.forms .shippingAddress {
  margin-top: 50px;
}

.forms.search {
  width: 100%;
}

.forms.search .search__input {
  text-align: center;
  margin-top: 20px;
  width: 100%;
  margin-bottom: 0;
}

.forms.register button {
  width: 100%;
}

.forms.payment {
  margin-top: 50px;
  text-align: center;
  width: 100%;
  border-top: 1px solid #000000;
}

.forms.payment fieldset {
  border: none;
  display: block;
  -webkit-margin-start: 0;
          margin-inline-start: 0;
  -webkit-margin-end: 0;
          margin-inline-end: 0;
  -webkit-padding-before: 0;
          padding-block-start: 0;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
  -webkit-padding-end: 0;
          padding-inline-end: 0;
  -webkit-padding-after: 0;
          padding-block-end: 0;
  min-inline-size: -webkit-min-content;
  min-inline-size: -moz-min-content;
  min-inline-size: min-content;
}

.forms.login input, .forms.register input, .forms.forgot input, .forms.reset input, .forms.addressEdit input {
  text-transform: none !important;
}

.forms.forgot, .forms.reset, .forms.inf-form, .forms.addressEdit {
  text-align: center;
}

.forms.address {
  margin-bottom: 50px;
}

.forms.address input.hidden {
  display: none;
}

.error__message {
  margin: 10px 0;
  text-align: center;
}

@media screen and (max-width: 1023px) {
  .forms__container--center .forms__wrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .forms__container .card_number__wrapper,
  .forms__container .card_pin__wrapper {
    margin-left: auto;
  }
}

@media screen and (max-width: 579px) {
  .forms__wrapper {
    width: 100%;
  }
}

.header__wrapper {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  -webkit-transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

@media only screen and (min-width: 1200px) {
  .header__wrapper {
    height: 90px;
  }
}

.header__wrapper .container {
  height: 100%;
}

.header__wrapper .container .row {
  height: 100%;
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (min-width: 1024px) {
  .header__nav {
    height: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 5px;
  }
}

@media only screen and (min-width: 1680px) {
  .header__nav {
    gap: 25px;
  }
}

.header__logo {
  display: inline-block;
  -webkit-transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
  height: 60px;
}

@media only screen and (min-width: 1200px) {
  .header__logo {
    height: 62px;
  }
}

.header__logo:hover path {
  fill: rgba(255, 255, 255, 0.7);
  -webkit-transition: fill 750ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: fill 750ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.header__logo svg {
  height: 100%;
  margin-top: 5px;
  -webkit-transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

@media only screen and (min-width: 1200px) {
  .header__logo svg {
    margin-top: 12px;
  }
}

.header__logo svg path {
  -webkit-transition: fill 750ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: fill 750ms cubic-bezier(0.65, 0.05, 0.36, 1);
  fill: #ffffff;
}

.header__logo--mobile {
  display: inline-block;
}

@media only screen and (min-width: 1680px) {
  .header__logo--mobile {
    display: none;
  }
}

.header__logo--desktop {
  display: none;
}

@media only screen and (min-width: 1680px) {
  .header__logo--desktop {
    display: inline-block;
    width: 200px;
  }
}

@media only screen and (min-width: 1680px) {
  .header__logo--desktop {
    width: 260px;
  }
}

.header__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__burger {
  margin-left: 21px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  position: relative;
  padding: 0;
  -webkit-transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

@media only screen and (min-width: 1200px) {
  .header__burger {
    margin-left: 0;
  }
}

.header__burger:hover {
  cursor: pointer;
  border: 1px solid #000000;
  -webkit-transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.header__burger:hover .line {
  background-color: #000000;
  -webkit-transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.header__burger.desktop.active .nav--desktop {
  background-color: #ffffff;
  border: 1px solid #000000;
  border-radius: 20px;
  padding: 20px 20px 12px;
}

.header__burger.desktop.active .line--first {
  top: 16px;
  -webkit-transform: rotate(15deg);
          transform: rotate(15deg);
}

.header__burger.desktop.active .line--second {
  opacity: 0;
}

.header__burger.desktop.active .line--third {
  top: 16px;
  -webkit-transform: rotate(-15deg);
          transform: rotate(-15deg);
}

.header__burger.desktop.active .button {
  background-color: #000000;
  color: #ffffff;
}

.header__burger.desktop.active .button:hover {
  background-color: #ffffff;
  color: #000000;
}

.header__burger .line {
  height: 1px;
  width: calc(100% - 12px);
  background-color: #ffffff;
  position: absolute;
  border-radius: 1px;
  -webkit-transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.header__burger .line--first {
  top: 12px;
  left: 6px;
}

.header__burger .line--second {
  top: 16px;
  left: 6px;
}

.header__burger .line--third {
  top: 20px;
  left: 6px;
}

.header__cart {
  width: 34px;
  height: 34px;
  -webkit-transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.header__cart:hover {
  cursor: pointer;
}

.header__cart:hover path {
  -webkit-transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.header__cart:hover path:first-child {
  fill: #000000;
}

.header__cart:hover path:last-child {
  stroke: #000000;
}

.header__cart--wrapper {
  position: relative;
}

.header__cart--quantity {
  font-family: "Telka Extended Regular";
  font-size: 0.75rem;
  line-height: 0.75rem;
  padding: 4px;
  color: #ffffff;
  text-decoration: none;
  position: absolute;
  right: -6px;
  top: -6px;
  background-color: #fc91c4;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  text-align: center;
}

.header__sites {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  height: 100%;
}

@media only screen and (min-width: 1200px) {
  .header__sites {
    margin-right: 30px;
  }
}

.header__sites .site {
  font-size: 0.9375rem;
  line-height: 1em;
  padding: 7px 4px 4px 4px;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.08);
  border-radius: 15px;
  -webkit-transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.header__sites .site.site--active {
  background-color: #ffffff;
  color: #000000;
  border-radius: 15px;
}

.header__sites .site.site--active:hover {
  background-color: #000000;
  color: #ffffff;
  -webkit-transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.header__sites .site:hover {
  cursor: pointer;
  background-color: #000000;
  color: #ffffff;
  -webkit-transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.header__login, .header__logout {
  text-decoration: none;
  background: transparent;
  border: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #ffffff;
  margin: 0 0 0 12px;
  padding: 8px 4px 4px;
  -webkit-transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.header__login:hover, .header__logout:hover {
  cursor: pointer;
  color: #000000;
  -webkit-transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

@media only screen and (min-width: 1024px) {
  .header__login, .header__logout {
    margin: auto 0;
  }
}

.header__logout {
  color: #ffffff;
  text-decoration: none;
  padding: 8px 4px 4px;
}

.header__logout:hover {
  cursor: pointer;
}

@media only screen and (min-width: 1024px) {
  .header__logout {
    margin: auto 0;
  }
}

.header.white .header__wrapper {
  background-color: #ffffff;
}

.header.white .header__wrapper .header__nav .button:hover {
  color: #000000;
  border: 1px solid #000000;
}

.header.white .header__wrapper .header__sites .site:hover {
  color: #ffffff;
  background-color: #000000;
  -webkit-transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.header.white .header__wrapper .header__sites .site.site--active {
  color: #ffffff;
}

.header.pink .header__wrapper {
  background-color: #fc91c4;
}

.header.pink .header__wrapper .header__nav .button:hover {
  color: #fc91c4;
}

.header.pink .header__wrapper .header__sites .site:hover {
  color: #fc91c4;
  background-color: #000000;
  -webkit-transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.header.pink .header__wrapper .header__sites .site.site--active {
  color: #fc91c4;
}

.header.green .header__wrapper {
  background-color: #9ed1b9;
}

.header.green .header__wrapper .header__nav .button:hover {
  color: #9ed1b9;
}

.header.green .header__wrapper .header__sites .site:hover {
  color: #9ed1b9;
  background-color: #000000;
}

.header.green .header__wrapper .header__sites .site.site--active {
  color: #9ed1b9;
}

.header.yellow .header__wrapper {
  background-color: rgb(255, 222, 142);
}

.header.yellow .header__wrapper .header__nav .button:hover {
  color: rgb(255, 222, 142);
}

.header.yellow .header__wrapper .header__sites .site:hover {
  color: rgb(255, 222, 142);
  background-color: #000000;
  -webkit-transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.header.yellow .header__wrapper .header__sites .site.site--active {
  color: rgb(255, 222, 142);
}

.header.green .header__wrapper, .header.yellow .header__wrapper, .header.white .header__wrapper, .header.pink .header__wrapper {
  border-bottom: 1px solid #000000;
}

.header.green .header__login, .header.green .header__logout, .header.yellow .header__login, .header.yellow .header__logout, .header.white .header__login, .header.white .header__logout, .header.pink .header__login, .header.pink .header__logout {
  color: #000000;
  -webkit-transition: color 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: color 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.header.green .header__burger, .header.yellow .header__burger, .header.white .header__burger, .header.pink .header__burger {
  border: 1px solid #000000;
  -webkit-transition: background-color 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: background-color 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.header.green .header__burger .line, .header.yellow .header__burger .line, .header.white .header__burger .line, .header.pink .header__burger .line {
  background-color: #000000;
}

.header.green .header__cart path, .header.yellow .header__cart path, .header.white .header__cart path, .header.pink .header__cart path {
  -webkit-transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.header.green .header__cart path:first-child, .header.yellow .header__cart path:first-child, .header.white .header__cart path:first-child, .header.pink .header__cart path:first-child {
  fill: #000000;
}

.header.green .header__cart path:last-child, .header.yellow .header__cart path:last-child, .header.white .header__cart path:last-child, .header.pink .header__cart path:last-child {
  stroke: #000000;
}

.header.green .header__logo svg path, .header.yellow .header__logo svg path, .header.white .header__logo svg path, .header.pink .header__logo svg path {
  fill: #000000;
  -webkit-transition: fill 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: fill 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.header.green .header__sites .site, .header.yellow .header__sites .site, .header.white .header__sites .site, .header.pink .header__sites .site {
  color: #000000;
  -webkit-transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.header.green .header__sites .site.site--active, .header.yellow .header__sites .site.site--active, .header.white .header__sites .site.site--active, .header.pink .header__sites .site.site--active {
  background-color: #000000;
  color: #ffffff;
  -webkit-transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.header.headroom.headroom--not-top.green .header__wrapper {
  background-color: #9ed1b9;
}

.header.headroom.headroom--not-top.green .header__wrapper .header__sites .site.site--active {
  color: #9ed1b9;
}

.header.headroom.headroom--not-top.yellow .header__wrapper {
  background-color: rgb(255, 222, 142);
}

.header.headroom.headroom--not-top.yellow .header__wrapper .header__sites .site.site--active {
  color: rgb(255, 222, 142);
}

.header.headroom.headroom--not-top.pink .header__wrapper {
  background-color: #fc91c4;
}

.header.headroom.headroom--not-top.pink .header__wrapper .header__sites .site.site--active {
  color: #fc91c4;
}

.header.headroom.headroom--not-top .header__wrapper {
  top: 0;
  background-color: #ffffff;
  -webkit-transition: background-color 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: background-color 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
  border-bottom: 1px solid #000000;
}

.header.headroom.headroom--not-top .header__wrapper .header__logo {
  height: 40px;
  -webkit-transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

@media only screen and (min-width: 1200px) {
  .header.headroom.headroom--not-top .header__wrapper .header__logo {
    height: 50px;
  }
}

.header.headroom.headroom--not-top .header__wrapper .header__logo svg {
  height: 100%;
  margin-top: 15px;
  -webkit-transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

@media only screen and (min-width: 1200px) {
  .header.headroom.headroom--not-top .header__wrapper .header__logo svg {
    margin-top: 20px;
  }
}

.header.headroom.headroom--not-top .header__wrapper .header__sites .site {
  background-color: rgba(0, 0, 0, 0.08);
  color: #000000;
  -webkit-transition: all 500ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 500ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.header.headroom.headroom--not-top .header__wrapper .header__sites .site.site--active {
  color: #ffffff;
  background-color: #000000;
  -webkit-transition: all 500ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 500ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.header.headroom.headroom--not-top .header__wrapper .button.button--white {
  border: 1px solid #000000;
  color: #000000;
}

.header.headroom.headroom--not-top .header__wrapper .header__logout, .header.headroom.headroom--not-top .header__wrapper .header__login {
  color: #000000;
  -webkit-transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.header.headroom.headroom--not-top .header__wrapper .header__logout:hover, .header.headroom.headroom--not-top .header__wrapper .header__login:hover {
  color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.header.headroom.headroom--not-top .header__wrapper .header__cart path {
  -webkit-transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.header.headroom.headroom--not-top .header__wrapper .header__cart path:first-child {
  fill: #000000;
  -webkit-transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.header.headroom.headroom--not-top .header__wrapper .header__cart path:last-child {
  stroke: #000000;
  -webkit-transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.header.headroom.headroom--not-top .header__wrapper .header__cart:hover {
  -webkit-transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.header.headroom.headroom--not-top .header__wrapper .header__cart:hover path {
  -webkit-transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.header.headroom.headroom--not-top .header__wrapper .header__cart:hover path:first-child {
  fill: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.header.headroom.headroom--not-top .header__wrapper .header__cart:hover path:last-child {
  stroke: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.header.headroom.headroom--not-top .header__wrapper .header__burger {
  border: 1px solid #000000;
}

.header.headroom.headroom--not-top .header__wrapper .header__burger .line {
  background-color: #000000;
}

.header.headroom.headroom--not-top .header__wrapper .header__burger:hover {
  border: 1px solid rgba(0, 0, 0, 0.5);
}

.header.headroom.headroom--not-top .header__wrapper .header__burger:hover .line {
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.header.headroom.headroom--not-top .header__wrapper .header__logo path {
  fill: #000000;
}

.nav {
  position: fixed;
  top: -100%;
  background-color: #9ed1b9;
  border-radius: 0 0 15px 15px;
  padding: 0 0 30px;
  z-index: 120;
  -webkit-transition: top 750ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: top 750ms cubic-bezier(0.65, 0.05, 0.36, 1);
  width: 100%;
}

.nav--mobile {
  display: unset;
}

@media only screen and (min-width: 1200px) {
  .nav--mobile {
    display: none;
  }
}

.nav--desktop {
  position: absolute;
  display: none;
}

.nav--desktop.nav--active {
  display: initial;
  top: 50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.nav--desktop .button__wrapper {
  margin-bottom: 12px;
  text-align: center;
}

.nav--active {
  top: 0;
  left: 0;
  -webkit-transition: top 750ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: top 750ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.nav__primary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin: 50px 0;
}

.nav__secondary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  margin-bottom: 30px;
}

@media only screen and (min-width: 768px) {
  .nav__secondary {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.nav__sites {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8px;
}

@media only screen and (min-width: 768px) {
  .nav__sites {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.nav__sites .site {
  padding: 4px;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: #000000;
  background-color: transparent;
  border-radius: 15px;
  border: 1px solid #000000;
  -webkit-transition: background-color 500ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: background-color 500ms cubic-bezier(0.65, 0.05, 0.36, 1);
  line-height: 1rem;
}

.nav__sites .site.site--active {
  background-color: #000000;
  color: #9ed1b9;
  border-radius: 15px;
  -webkit-transition: all 500ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 500ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.nav__sites .site.site--active:hover {
  background-color: transparent;
  color: #000000;
  -webkit-transition: all 500ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 500ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.nav__sites .site:hover {
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.08);
  -webkit-transition: background-color 500ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: background-color 500ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.nav__login:hover, .nav__logout:hover {
  cursor: pointer;
}

.nav .header__logo--mobile {
  width: 45px;
  margin-top: 0;
}

.nav .header__logo--mobile svg path {
  fill: #000000;
}

.nav .header__cart path {
  -webkit-transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 250ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.nav .header__cart path:first-child {
  fill: #000000;
}

.nav .header__cart path:last-child {
  stroke: #000000;
}

.nav .header__burger {
  border: 1px solid #000000;
}

.nav .header__burger .line {
  background-color: #000000;
}

.nav .header__burger .line--first {
  left: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 33px;
  top: 15.4px;
  -webkit-transition: all 750ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 750ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.nav .header__burger .line--second {
  opacity: 0;
  -webkit-transition: all 750ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 750ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.nav .header__burger .line--third {
  left: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 33px;
  top: 16px;
  -webkit-transition: all 750ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 750ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.module {
  position: relative;
  overflow-x: clip;
}

.module.margin--none {
  margin-bottom: 0;
}

.module.margin--small {
  margin-bottom: 30px;
}

.module.margin--medium {
  margin-bottom: 50px;
}

@media only screen and (min-width: 1200px) {
  .module.margin--medium {
    margin-bottom: 120px;
  }
}

.module.margin--big {
  margin-bottom: 120px;
}

.module__title, .module__title--tar, .module__title--tal {
  margin-bottom: 30px;
  text-align: center;
}

@media only screen and (min-width: 1024px) {
  .module__title, .module__title--tar, .module__title--tal {
    margin-bottom: 50px;
  }
}

.module__title--tal {
  text-align: left;
}

.module__title--tar {
  text-align: right;
}

.module__title.tal, .tal.module__title--tal, .tal.module__title--tar {
  text-align: left;
}

.module__subtitle {
  margin-bottom: 20px;
}

.module__lead-title {
  margin-bottom: 50px;
  text-align: center;
}

@media only screen and (min-width: 1024px) {
  .module__lead-title--tal {
    text-align: left;
  }
}

.module__lead-title--uppercase {
  text-transform: uppercase;
}

.module__lead-title.tal {
  text-align: left;
}

.module__lead-title a {
  color: #000000;
}

.module__lead-title p {
  margin-top: 20px;
}

.module__lead-title ul,
.module__lead-title ol {
  display: block;
  list-style-position: inside;
  -webkit-margin-before: 0em;
          margin-block-start: 0em;
  -webkit-margin-after: 0em;
          margin-block-end: 0em;
  -webkit-margin-start: 0px;
          margin-inline-start: 0px;
  -webkit-margin-end: 12px;
          margin-inline-end: 12px;
  -webkit-padding-start: 0px;
          padding-inline-start: 0px;
}

.module__lead-title ul li div,
.module__lead-title ol li div {
  display: inline;
}

.module__lead-title--default {
  margin-bottom: 0;
}

.module__lead, .module__lead--tar, .module__lead--tal, .module__lead-title--tal {
  margin-bottom: 30px;
  text-align: center;
}

@media only screen and (min-width: 1024px) {
  .module__lead--tal {
    text-align: left;
  }
}

@media only screen and (min-width: 1024px) {
  .module__lead--tar {
    text-align: right;
  }
}

.module__lead.tal, .tal.module__lead-title--tal, .tal.module__lead--tal, .tal.module__lead--tar {
  text-align: left;
}

.module__lead a, .module__lead-title--tal a, .module__lead--tal a, .module__lead--tar a {
  color: #000000;
}

.module__lead p, .module__lead-title--tal p, .module__lead--tal p, .module__lead--tar p {
  margin-top: 20px;
}

.module__lead ul, .module__lead-title--tal ul, .module__lead--tal ul, .module__lead--tar ul,
.module__lead ol,
.module__lead-title--tal ol,
.module__lead--tal ol,
.module__lead--tar ol {
  display: block;
  list-style-position: inside;
  -webkit-margin-before: 0em;
          margin-block-start: 0em;
  -webkit-margin-after: 0em;
          margin-block-end: 0em;
  -webkit-margin-start: 0px;
          margin-inline-start: 0px;
  -webkit-margin-end: 12px;
          margin-inline-end: 12px;
  -webkit-padding-start: 0px;
          padding-inline-start: 0px;
}

.module__lead ul li div, .module__lead-title--tal ul li div, .module__lead--tal ul li div, .module__lead--tar ul li div,
.module__lead ol li div,
.module__lead-title--tal ol li div,
.module__lead--tal ol li div,
.module__lead--tar ol li div {
  display: inline;
}

.module__lead--default {
  margin-bottom: 0;
}

.module__text {
  margin-top: 20px;
}

.module__downloads {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.module__downloads .download__item {
  border-bottom: 1px solid #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 12px 0;
}

.module__downloads .download__item--title {
  font-family: "Telka Extended Medium", sans-serif;
}

.module__links {
  margin-bottom: 30px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.module__image {
  width: 100%;
}

.module__image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}

@media only screen and (min-width: 768px) {
  .module__image img {
    border-radius: 20px;
  }
}

.module__illustration {
  width: 100%;
  text-align: center;
}

.module__illustration svg,
.module__illustration img {
  width: 240px;
  height: 240px;
}

@media only screen and (min-width: 768px) {
  .module__illustration svg,
  .module__illustration img {
    width: 320px;
    height: 320px;
  }
}

@media only screen and (min-width: 1024px) {
  .module__illustration svg,
  .module__illustration img {
    width: 400px;
    height: 400px;
  }
}

.module__illustration.module__illustration--landscape {
  aspect-ratio: 589/442;
}

.module__illustration.module__illustration--landscape img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}

@media only screen and (min-width: 1200px) {
  .module.wysiwyg__left .module__title, .module.wysiwyg__left .module__title--tal, .module.wysiwyg__left .module__title--tar {
    text-align: left;
  }
  .module.wysiwyg__left .module__lead, .module.wysiwyg__left .module__lead-title--tal, .module.wysiwyg__left .module__lead--tal, .module.wysiwyg__left .module__lead--tar {
    text-align: left;
  }
  .module.wysiwyg__left .module__lead div, .module.wysiwyg__left .module__lead-title--tal div, .module.wysiwyg__left .module__lead--tal div, .module.wysiwyg__left .module__lead--tar div {
    text-align: left;
  }
  .module.wysiwyg__left .module__lead ul, .module.wysiwyg__left .module__lead-title--tal ul, .module.wysiwyg__left .module__lead--tal ul, .module.wysiwyg__left .module__lead--tar ul {
    -webkit-margin-before: 0em;
            margin-block-start: 0em;
    -webkit-margin-after: 0em;
            margin-block-end: 0em;
    -webkit-margin-start: 0px;
            margin-inline-start: 0px;
    -webkit-margin-end: 0;
            margin-inline-end: 0;
    -webkit-padding-start: 0;
            padding-inline-start: 0;
    list-style-position: outside;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  .module.wysiwyg__left .module__lead ul li div, .module.wysiwyg__left .module__lead-title--tal ul li div, .module.wysiwyg__left .module__lead--tal ul li div, .module.wysiwyg__left .module__lead--tar ul li div {
    display: inline;
  }
  .module.wysiwyg__left .module__links {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media screen and (max-width: 1023px) {
  .module__illustration {
    width: 50%;
  }
}

@media screen and (max-width: 549px) {
  .module__illustration {
    width: 100%;
  }
}

.subfooter p,
.subfooter a,
.subfooter h3, .subfooter__copyright {
  color: #ffffff;
}

.subfooter__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -5px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.subfooter__center {
  text-align: center;
}

.subfooter__zahlungsart {
  width: 50px;
  height: 34px;
  position: relative;
  margin: 5px;
}

.subfooter__zahlungsart svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.subfooter__versandkosten {
  margin-top: 1rem;
}

.footer {
  background-color: #000000;
  border-radius: 15px;
  margin: auto 0 20px;
  padding: 30px 0;
  z-index: 100;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .footer {
    margin: auto 0 20px;
  }
}

.footer__container {
  margin-top: auto;
  z-index: 50;
}

.footer__container.cart {
  z-index: 51;
}

.footer p, .footer a, .footer__copyright {
  color: #ffffff;
}

.footer a {
  text-decoration: none;
}

.footer__copyright {
  font-size: 0.9375rem;
}

.footer__address {
  margin-bottom: 20px;
}

.footer__contact {
  margin-bottom: 30px;
}

.footer__primary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}

.footer__primary--mb-small {
  margin-bottom: 20px;
}

.footer__primary .social__icon {
  height: 34px;
  width: 34px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  padding: 6px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 1s cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 1s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.footer__primary .social__icon svg {
  width: 100%;
}

.footer__primary .social__icon:hover {
  border: 1px solid #000000;
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
  -webkit-transition: all 1s cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 1s cubic-bezier(0.65, 0.05, 0.36, 1);
}

.footer__primary .button:hover {
  background-color: #ffffff;
  color: #000000;
}

.footer__secondary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}

@media only screen and (min-width: 768px) {
  .footer__secondary {
    margin-bottom: 0;
  }
}

.footer__secondary .button {
  padding: 0;
  border: none;
}

.footer__secondary .button:hover {
  background-color: transparent;
  color: #ffffff;
  text-decoration: underline;
}

.hero {
  position: relative;
  padding-bottom: 100vh;
  padding-bottom: 100svh;
  width: 100%;
  overflow-x: clip;
}

.hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}

@media only screen and (min-width: 1024px) {
  .hero__image {
    border-radius: 20px;
  }
}

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

.hero__image.mobile {
  display: block;
}

@media only screen and (min-width: 768px) {
  .hero__image.mobile {
    display: none;
  }
}

.hero__image.desktop {
  display: none;
}

@media only screen and (min-width: 768px) {
  .hero__image.desktop {
    display: block;
  }
}

.hero__shadow {
  position: absolute;
  top: 0;
  left: 0;
  height: 190px;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.31)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(rgba(0, 0, 0, 0.31), rgba(0, 0, 0, 0));
  border-radius: 15px;
  z-index: 20;
}

@media only screen and (min-width: 1024px) {
  .hero__shadow {
    border-radius: 20px;
  }
}

.hero__lead {
  margin-top: 20px;
  color: #ffffff;
}

.hero__sticker {
  position: absolute;
  right: 20px;
  bottom: calc(10vh + 20px);
  width: 100px;
  height: 100px;
  display: inline-block;
  z-index: 51;
}

@media only screen and (min-width: 1024px) {
  .hero__sticker {
    right: 20px;
    bottom: calc(10vh + 55px);
    width: 170px;
    height: 170px;
  }
}

@media only screen and (min-width: 1440px) {
  .hero__sticker {
    right: 40px;
  }
}

@media only screen and (min-width: 1680px) {
  .hero__sticker {
    width: 275px;
    height: 275px;
    right: calc((100vw - 1680px) / 2);
  }
}

.hero__sticker:hover img {
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
  -webkit-transition: -webkit-transform 750ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: -webkit-transform 750ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: transform 750ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: transform 750ms cubic-bezier(0.65, 0.05, 0.36, 1), -webkit-transform 750ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.hero__sticker img {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: -webkit-transform 750ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: -webkit-transform 750ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: transform 750ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: transform 750ms cubic-bezier(0.65, 0.05, 0.36, 1), -webkit-transform 750ms cubic-bezier(0.65, 0.05, 0.36, 1);
  width: 100%;
}

.hero__title {
  font-family: "Telka Extended Medium", sans-serif;
  color: #ffffff;
}

.hero__content {
  position: absolute;
  left: 20px;
  bottom: calc(10% + 120px);
  width: calc(100% - 40px);
  z-index: 51;
}

@media only screen and (min-width: 1024px) {
  .hero__content {
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
    bottom: 50%;
    left: calc(50vw + 10px);
    width: calc(50vw - 80px);
  }
}

@media only screen and (min-width: 1680px) {
  .hero__content {
    width: 800px;
  }
}

.hero__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
  position: relative;
  z-index: 51;
}

.hero__links .button {
  background-color: rgb(255, 222, 142);
  border: 1px solid rgb(255, 222, 142);
  color: #000000;
  z-index: 51;
}

.hero__links .button:hover {
  background-color: #ffffff;
  color: #000000;
  border: 1px solid #000000;
}

@media only screen and (min-width: 1024px) {
  .hero__links {
    margin-top: 30px;
    width: 60%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 25px;
    z-index: 51;
  }
  .hero__links .button {
    height: 40px;
    font-size: 1.75rem;
    border-radius: 15px;
    line-height: 1em;
    color: #000000;
  }
}

@media only screen and (min-width: 1024px) and (min-width: 768px) {
  .hero__links .button {
    border-radius: 20px;
  }
}

.hero__arrow {
  display: none;
  height: 36px;
  width: 36px;
  -webkit-transition: -webkit-transform 750ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: -webkit-transform 750ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: transform 750ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: transform 750ms cubic-bezier(0.65, 0.05, 0.36, 1), -webkit-transform 750ms cubic-bezier(0.65, 0.05, 0.36, 1);
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.hero__arrow:hover {
  cursor: pointer;
  -webkit-transition: -webkit-transform 750ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: -webkit-transform 750ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: transform 750ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: transform 750ms cubic-bezier(0.65, 0.05, 0.36, 1), -webkit-transform 750ms cubic-bezier(0.65, 0.05, 0.36, 1);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

@media only screen and (min-width: 480px) {
  .hero__arrow {
    display: unset;
  }
}

.hero__arrow--wrapper {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 51;
}

.hero__check {
  padding: 120px 0;
}

.hero.hero__subsite {
  position: relative;
  padding-bottom: 0;
  height: 100svh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hero.hero__subsite .illu__wrapper {
  width: 100%;
  margin-top: 100px;
  text-align: center;
}

.hero.hero__subsite .illu__wrapper img {
  width: 320px;
}

@media only screen and (min-width: 768px) {
  .hero.hero__subsite .illu__wrapper img {
    width: 400px;
  }
}

.hero.hero__subsite .hero__title {
  color: #000000;
  margin-top: 30px;
}

@media only screen and (min-width: 1024px) {
  .hero.hero__subsite .hero__title {
    margin-top: 0;
  }
}

.hero.hero__subsite .hero__lead {
  color: #000000;
}

@media only screen and (min-width: 1024px) {
  .hero.hero__shop .hero__title {
    margin-top: 120px;
  }
}

.hero__illu {
  position: relative;
  overflow-x: clip;
}

.hero__illu--container {
  margin-top: 100px;
}

@media only screen and (min-width: 1024px) {
  .hero__illu--container {
    margin-top: 210px;
  }
}

.hero__illu .illu__wrapper {
  width: 100%;
  text-align: center;
}

.hero__illu .illu__wrapper img {
  width: 320px;
}

@media only screen and (min-width: 768px) {
  .hero__illu .illu__wrapper img {
    width: 400px;
  }
}

.hero__illu .hero__title {
  color: #000000;
}

.hero__illu .hero__lead {
  color: #000000;
}

.login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  position: relative;
}

.login .button.button--outline.text--pink:hover {
  color: #fc91c4;
}

.login__overlay {
  position: fixed;
  top: 50%;
  left: 50%;
  width: calc(100% - 20px);
  padding: 20px 0;
  z-index: -1000;
  background-color: #fc91c4;
  border-radius: 15px;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity 750ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: opacity 750ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

@media only screen and (min-width: 1024px) {
  .login__overlay {
    width: calc(80% - 20px);
    aspect-ratio: 4/2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.login__overlay.overlay--active {
  z-index: 200;
  opacity: 1;
  -webkit-transition: opacity 750ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: opacity 750ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.login__illustration {
  max-width: 320px;
}

@media only screen and (min-width: 1024px) {
  .login__illustration {
    max-width: 400px;
  }
}

.login__illustration--wrapper {
  width: 100%;
  text-align: center;
}

.login__title {
  margin-bottom: 30px;
}

.login__close {
  position: absolute;
  top: 20px;
  right: 10px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: -webkit-transform 500ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: -webkit-transform 500ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: transform 500ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: transform 500ms cubic-bezier(0.65, 0.05, 0.36, 1), -webkit-transform 500ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

@media only screen and (min-width: 1024px) {
  .login__close {
    right: 20px;
    right: 20px;
  }
}

@media only screen and (min-width: 1440px) {
  .login__close {
    right: 40px;
    right: 40px;
  }
}

.login__close:hover {
  cursor: pointer;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
  -webkit-transition: -webkit-transform 500ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: -webkit-transform 500ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: transform 500ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: transform 500ms cubic-bezier(0.65, 0.05, 0.36, 1), -webkit-transform 500ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

@media only screen and (min-width: 768px) {
  .login__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100%;
  }
}

.cardSlider .swiper .card {
  width: 100%;
}

.cardSlider .swiper:hover {
  cursor: -webkit-grab;
  cursor: grab;
}

.cardSlider__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

@media only screen and (min-width: 1024px) {
  .cardSlider__cards {
    gap: 40px;
  }
}

.cardSlider__container {
  width: 100%;
  max-width: 1680px;
  margin: 0 !important;
}

@media only screen and (min-width: 1024px) {
  .cardSlider__container {
    width: calc(83.3333333333vw - 5px);
    margin-left: calc(8.3333333333vw + 10px) !important;
  }
}

@media only screen and (min-width: 1680px) {
  .cardSlider__container {
    width: calc(83.3333333333vw - 5px);
    margin-left: calc(8.3333333333vw + 10px) !important;
  }
}

@media screen and (min-width: 1760px) {
  .cardSlider__container {
    width: 1395px !important;
    margin: 0 auto !important;
  }
}

.cardSlider__container .swiper {
  padding: 0 20px !important;
  width: calc(100% - 2px);
}

.cardSlider__arrow--container {
  position: relative;
  height: 100%;
  width: 100%;
}

.cardSlider__arrow--right, .cardSlider__arrow--left {
  width: 40px;
  position: absolute;
  top: 0;
}

.cardSlider__arrow--right:hover, .cardSlider__arrow--left:hover {
  cursor: pointer;
}

.cardSlider__arrow--right {
  right: 0;
}

.cardSlider__arrow--left {
  left: 0;
}

.eventSlider {
  z-index: 50;
}

.eventSlider .card.card--green {
  background-color: rgba(0, 0, 0, 0.15);
}

.eventSlider .card.card--yellow {
  background-color: rgba(0, 0, 0, 0.15);
}

.eventSlider .card.card--normal {
  background-color: rgb(255, 222, 142);
}

.eventSlider .card.card--normal ::-moz-selection {
  background: #fc91c4;
}

.eventSlider .card.card--normal ::selection {
  background: #fc91c4;
}

.eventSlider .card.card--normal ::-moz-selection {
  background: #fc91c4;
}

.eventSlider__slider {
  position: relative;
  margin: 50px 0 30px;
}

@media only screen and (min-width: 1200px) {
  .eventSlider__slider {
    margin: 0 0 0 30px;
  }
}

.eventSlider__slider .swiper .swiper-slide {
  position: relative;
}

.eventSlider__slider .swiper .swiper-slide::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.eventSlider__slider .swiper .swiper-slide img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}

.eventSlider__slider .swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
  top: inherit;
  bottom: -30px;
  height: 10px;
  line-height: 0;
}

.eventSlider__slider .swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet {
  height: 10px;
  width: 10px;
  opacity: 1;
  border: 1px solid #000000;
  background-color: transparent;
}

.eventSlider__slider .swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 1px solid #000000;
  background-color: #000000;
}

.eventSlider__slider .slider__arrow--left:hover, .eventSlider__slider .slider__arrow--right:hover {
  cursor: pointer;
}

.eventSlider__slider .slider__arrow--left {
  position: absolute;
  width: 17px;
  left: -25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media only screen and (min-width: 1024px) {
  .eventSlider__slider .slider__arrow--left {
    width: 32px;
    left: -40px;
  }
}

@media only screen and (min-width: 1200px) {
  .eventSlider__slider .slider__arrow--left {
    width: 40px;
    left: -60px;
  }
}

.eventSlider__slider .slider__arrow--right {
  position: absolute;
  width: 17px;
  right: -25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media only screen and (min-width: 1024px) {
  .eventSlider__slider .slider__arrow--right {
    width: 32px;
    right: -40px;
  }
}

@media only screen and (min-width: 1200px) {
  .eventSlider__slider .slider__arrow--right {
    width: 40px;
    right: -60px;
  }
}

.shopModule {
  position: relative;
}

.shopModule .shop__anchor {
  position: absolute;
  top: -100px;
}

.shopModule .values .button:hover {
  color: #9ed1b9;
}

.shopModule .values .button.active {
  color: #9ed1b9;
  background-color: #000000;
}

.card {
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding: 40px 0;
}

@media only screen and (min-width: 1024px) {
  .card {
    padding: 70px 0;
  }
}

.card__title {
  margin-bottom: 20px;
  text-wrap: balance;
}

.card__title--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.card.card--mb {
  margin-bottom: 20px;
}

.card--green {
  background-color: #9ed1b9;
}

.card--pink {
  background-color: #fc91c4;
}

.card--yellow {
  background-color: rgb(255, 222, 142);
}

.card .button__wrapper {
  margin-top: 20px;
  width: 100%;
}

.card .button__wrapper .button {
  width: 100%;
  text-align: center;
}

.card__image {
  margin-top: 40px;
}

.card__image img {
  width: 100%;
  border-radius: 15px;
}

@media only screen and (min-width: 768px) {
  .card__image img {
    border-radius: 20px;
  }
}

@media only screen and (min-width: 768px) {
  .cardModule .card__image {
    margin-top: 0;
  }
}

@media only screen and (min-width: 768px) {
  .cardModule .button__wrapper {
    width: auto;
    display: inline-block;
  }
}

.teaserIllustration {
  position: relative;
  overflow-x: clip;
}

@media only screen and (min-width: 1024px) {
  .teaserIllustration.teaserIllustration--right .module__title, .teaserIllustration.teaserIllustration--right .module__title--tal, .teaserIllustration.teaserIllustration--right .module__title--tar, .teaserIllustration.teaserIllustration--left .module__title, .teaserIllustration.teaserIllustration--left .module__title--tal, .teaserIllustration.teaserIllustration--left .module__title--tar {
    text-align: left;
  }
  .teaserIllustration.teaserIllustration--right .module__lead, .teaserIllustration.teaserIllustration--right .module__lead-title--tal, .teaserIllustration.teaserIllustration--right .module__lead--tal, .teaserIllustration.teaserIllustration--right .module__lead--tar, .teaserIllustration.teaserIllustration--left .module__lead, .teaserIllustration.teaserIllustration--left .module__lead-title--tal, .teaserIllustration.teaserIllustration--left .module__lead--tal, .teaserIllustration.teaserIllustration--left .module__lead--tar {
    text-align: left;
  }
}

.teaserIllustration .module__links {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (min-width: 1024px) {
  .teaserIllustration .module__links {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.teaserIllustration .module__illustration svg {
  width: 100%;
}

.team.module.margin--big {
  margin-bottom: 60px;
}

.team .module__lead, .team .module__lead-title--tal, .team .module__lead--tal, .team .module__lead--tar {
  margin-bottom: 50px;
}

.team__members {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

@media only screen and (min-width: 768px) {
  .team__members {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.team__members--office {
  grid-template-columns: 1fr;
}

.team__section {
  margin-bottom: 50px;
}

.team__section .section__title {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 50px;
}

.team__section .section__member {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin-bottom: 20px;
  grid-column: span 2;
}

.team__section .section__member--last {
  grid-column: 2/span 2;
}

@media only screen and (min-width: 768px) {
  .team__section .section__member--last {
    grid-column: 4/span 2;
  }
}

@media only screen and (min-width: 768px) {
  .team__section .section__member--secondlast {
    grid-column: 2/span 2;
  }
}

.team__section .section__image {
  width: 100%;
  margin-bottom: 10px;
  position: relative;
}

.team__section .section__image::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.team__section .section__image img {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.team__section .section__slider {
  padding-bottom: 30px;
}

@media only screen and (min-width: 1024px) {
  .team__section .section__slider {
    bottom: -20px;
  }
}

.team__section .section__slider .swiper-pagination {
  top: inherit;
  bottom: 0;
  height: 10px;
  line-height: 0;
}

.team__section .section__slider .swiper-pagination .swiper-pagination-bullet {
  height: 10px;
  width: 10px;
  opacity: 1;
  border: 1px solid #000000;
  background-color: transparent;
}

.team__section .section__slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  border: 1px solid #000000;
  background-color: #000000;
}

.team .arrow__container {
  width: 100%;
  position: relative;
  height: 100%;
}

.team .slider__arrow--left.swiper-button-lock, .team .slider__arrow--right.swiper-button-lock {
  display: unset;
}

.team .slider__arrow--left {
  position: absolute;
  width: 17px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(calc(-50% - 48px));
          transform: translateY(calc(-50% - 48px));
  z-index: 100;
}

@media only screen and (min-width: 768px) {
  .team .slider__arrow--left {
    width: 40px;
    left: 0;
  }
}

@media only screen and (min-width: 1024px) {
  .team .slider__arrow--left {
    -webkit-transform: translateY(calc(-50% - 38px));
            transform: translateY(calc(-50% - 38px));
    left: -60px;
  }
}

@media only screen and (min-width: 1680px) {
  .team .slider__arrow--left {
    left: 0;
  }
}

.team .slider__arrow--left:hover {
  cursor: pointer;
}

.team .slider__arrow--right {
  position: absolute;
  width: 17px;
  right: 0px;
  top: 50%;
  -webkit-transform: translateY(calc(-50% - 48px));
          transform: translateY(calc(-50% - 48px));
  z-index: 100;
}

@media only screen and (min-width: 768px) {
  .team .slider__arrow--right {
    width: 40px;
  }
}

@media only screen and (min-width: 1024px) {
  .team .slider__arrow--right {
    -webkit-transform: translateY(calc(-50% - 38px));
            transform: translateY(calc(-50% - 38px));
    right: -60px;
  }
}

@media only screen and (min-width: 1680px) {
  .team .slider__arrow--right {
    right: 0;
  }
}

.team .slider__arrow--right:hover {
  cursor: pointer;
}

.faqModule {
  position: relative;
}

.faqModule .faq {
  margin-bottom: 50px;
}

.faqModule .faq__question {
  margin-bottom: 30px;
}

.faqModule .faq__answer {
  text-wrap: balance;
}

.mapsModule {
  position: relative;
  z-index: 10000 !important;
}

.mapsModule ::-moz-selection {
  background: #fc91c4;
}

.mapsModule ::selection {
  background: #fc91c4;
}

.mapsModule ::-moz-selection {
  background: #fc91c4;
}

.mapsModule .card__text {
  text-align: center;
}

.mapsModule .card__title {
  text-align: center;
}

.mapsModule__filter {
  display: none;
}

@media only screen and (min-width: 1680px) {
  .mapsModule__filter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: absolute;
    left: calc((100vw - 1680px) / 2 + 40px);
    top: 70px;
    max-width: 350px;
  }
  .mapsModule__filter .button__wrapper {
    width: 200px !important;
  }
}

.mapsModule__filter .card__text {
  text-align: center;
  margin-bottom: 30px;
}

.mapsModule__filter .card__title {
  text-align: center;
}

.mapsModule__filter .button {
  display: inline-block;
}

.mapsModule__cantons {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.mapsModule__cantons .canton {
  text-align: center;
  display: inline;
  font-size: 0.9375rem;
  border: 1px solid #000000;
  border-radius: 15px;
  background-color: transparent;
  color: #000000;
}

.mapsModule__cantons .canton:hover {
  cursor: pointer;
}

.mapsModule__cantons .canton.canton--selected {
  background-color: transparent;
  color: #000000;
}

.mapsModule__map {
  margin: 20px 0;
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .mapsModule__map {
    margin: 0;
  }
}

.mapsModule__map svg polygon.st2 {
  fill: rgb(255, 222, 142);
}

.mapsModule__map svg polygon.st2.highlighted {
  fill: #000000;
}

.mapsModule__map svg polygon:hover {
  cursor: pointer;
}

.mapsModule__map svg text:hover {
  cursor: pointer;
}

.mapsModule__results {
  width: 100%;
  z-index: 1000;
}

.mapsModule__results .results__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .mapsModule__results .results__inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }
}

.mapsModule__card {
  position: relative;
  width: 100%;
}

.mapsModule__card--results {
  border: 1px solid #ffffff;
  width: calc(100% - 40px);
  top: 100%;
  display: none;
  opacity: 0;
  -webkit-transition: all 750ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 750ms cubic-bezier(0.65, 0.05, 0.36, 1);
  -webkit-animation: sticky-icky 1s;
          animation: sticky-icky 1s;
}

@media only screen and (min-width: 1440px) {
  .mapsModule__card--results {
    width: calc(100% - 80px);
  }
}

@media only screen and (min-width: 1680px) {
  .mapsModule__card--results {
    width: calc(100% - 80px);
  }
}

@media only screen and (min-width: 1760px) {
  .mapsModule__card--results {
    width: 1680px;
  }
}

.mapsModule__card--results .card__title {
  margin-bottom: 0;
}

.mapsModule__card--results.show {
  position: absolute;
  display: block;
  top: 80px;
  z-index: 200;
  opacity: 1;
  -webkit-transition: all 750ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 750ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.mapsModule__card--icon:hover {
  cursor: pointer;
}

.mapsModule__result a {
  color: #000000;
}

.formModule__sites {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 50px;
  gap: 20px 0;
}

@media only screen and (min-width: 1024px) {
  .formModule__sites .site {
    min-width: 200px;
  }
}

.formModule__sites .site.site--active {
  background-color: #000000;
  color: #ffffff;
}

.freeformMedia .module__subtitle {
  margin-top: 50px;
}

.freeformMedia .freeform-row .module__lead, .freeformMedia .freeform-row .module__lead-title--tal, .freeformMedia .freeform-row .module__lead--tal, .freeformMedia .freeform-row .module__lead--tar,
.freeformMedia .freeform-row .module__subtitle {
  margin-bottom: 20px;
  color: #000000;
}

.freeformMedia .freeform-row [class*=freeform-col-] {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.freeformMedia .freeform-row [class*=freeform-col-] input,
.freeformMedia .freeform-row [class*=freeform-col-] textarea,
.freeformMedia .freeform-row [class*=freeform-col-] select {
  font-size: 1rem;
  font-family: "Telka Extended Medium", sans-serif;
  background-color: transparent;
  border: 1px solid #000000;
  border-radius: 15px;
  color: #000000;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  margin: 0;
  margin-bottom: 30px;
  padding: 6px 20px;
  -webkit-appearance: none;
  background: #EBEBEB;
  border: 1px solid #EBEBEB;
}

@media only screen and (min-width: 1024px) {
  .freeformMedia .freeform-row [class*=freeform-col-] input,
  .freeformMedia .freeform-row [class*=freeform-col-] textarea,
  .freeformMedia .freeform-row [class*=freeform-col-] select {
    border-radius: 20px;
  }
}

.freeformMedia .freeform-row [class*=freeform-col-] input::-webkit-input-placeholder, .freeformMedia .freeform-row [class*=freeform-col-] textarea::-webkit-input-placeholder, .freeformMedia .freeform-row [class*=freeform-col-] select::-webkit-input-placeholder {
  color: #000000;
  font-size: 1rem;
  opacity: 0.4;
}

.freeformMedia .freeform-row [class*=freeform-col-] input::-moz-placeholder, .freeformMedia .freeform-row [class*=freeform-col-] textarea::-moz-placeholder, .freeformMedia .freeform-row [class*=freeform-col-] select::-moz-placeholder {
  color: #000000;
  font-size: 1rem;
  opacity: 0.4;
}

.freeformMedia .freeform-row [class*=freeform-col-] input:-ms-input-placeholder, .freeformMedia .freeform-row [class*=freeform-col-] textarea:-ms-input-placeholder, .freeformMedia .freeform-row [class*=freeform-col-] select:-ms-input-placeholder {
  color: #000000;
  font-size: 1rem;
  opacity: 0.4;
}

.freeformMedia .freeform-row [class*=freeform-col-] input::-ms-input-placeholder, .freeformMedia .freeform-row [class*=freeform-col-] textarea::-ms-input-placeholder, .freeformMedia .freeform-row [class*=freeform-col-] select::-ms-input-placeholder {
  color: #000000;
  font-size: 1rem;
  opacity: 0.4;
}

.freeformMedia .freeform-row [class*=freeform-col-] input::placeholder,
.freeformMedia .freeform-row [class*=freeform-col-] textarea::placeholder,
.freeformMedia .freeform-row [class*=freeform-col-] select::placeholder {
  color: #000000;
  font-size: 1rem;
  opacity: 0.4;
}

.freeformMedia .freeform-row [class*=freeform-col-] select:not(select[multiple]) {
  background-image: linear-gradient(45deg, transparent 50%, #000 50%), linear-gradient(135deg, #000 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(50% + 2px), calc(100% - 15px) calc(50% + 2px), calc(100% - 2.5em) 0.5em;
}

.freeformMedia button[data-freeform-action=submit] {
  margin-top: 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #000000;
  border: 1px solid #000000;
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  padding: 5px 20px;
  height: 36px;
  line-height: 1em;
  -webkit-transition: all 500ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 500ms cubic-bezier(0.65, 0.05, 0.36, 1);
  white-space: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.freeformMedia button[data-freeform-action=submit]:hover {
  background-color: #ffffff;
  border: 1px solid #000000;
  color: #000000;
}

.freeformMedia .freeform-fieldtype-html {
  margin-bottom: 20px;
}

.freeformMedia .freeform-label {
  font-size: 1rem;
  line-height: 1.5;
  font-family: "Telka Extended Medium";
  color: #000000;
  text-align: left;
}

.freeformMedia .freeform-row [class*=freeform-col-] label {
  margin: 0;
}

.freeformMedia .freeform-row::after {
  all: unset;
}

.freeformMedia .freeform-row [class*=freeform-col-] .freeform-label.freeform-required::after {
  color: #fc91c4;
}

.freeformMedia .freeform-row [class*=freeform-col-] .freeform-instructions,
.freeformMedia .module__lead,
.freeformMedia .module__lead-title--tal,
.freeformMedia .module__lead--tal,
.freeformMedia .module__lead--tar {
  font-family: "Telka Extended Regular", sans-serif;
  font-size: 1rem;
  color: #000000;
  margin: 0;
  text-align: left;
}

.freeformMedia [data-freeform-controls] {
  width: 100%;
}

.productItem {
  margin-bottom: 30px;
  border-bottom: 1px solid #000000;
  position: relative;
}

.productItem__center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.productItem__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.productItem .anchor__element {
  position: absolute;
  top: -100px;
}

@media only screen and (min-width: 1200px) {
  .productItem {
    margin-bottom: 30px;
  }
}

.productItem__successMessage {
  grid-column: span 2;
  margin-bottom: 30px;
  text-align: center;
}

.productItem__image {
  margin-bottom: 20px;
  position: relative;
}

.productItem__image::after {
  content: "";
  display: block;
  padding-bottom: 77.77%;
}

.productItem__image img {
  border-radius: 15px;
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .productItem__image img {
    border-radius: 20px;
  }
}

.productItem__name {
  text-transform: uppercase;
  margin-bottom: 20px;
  width: 100%;
}

.productItem__format {
  font-family: "Telka Extended Light", sans-serif;
  margin-bottom: 40px;
  width: 100%;
}

.productItem__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  padding-bottom: 20px;
}

.productItem__form .label--radio:hover {
  cursor: pointer;
}

.productItem__form input {
  margin-bottom: 0px;
}

@media only screen and (min-width: 768px) {
  .productItem__form {
    height: 100%;
    margin-bottom: 30px;
  }
}

.productItem__form .form__quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.productItem__form .form__quantity .forms__label {
  grid-column: 1/span 2;
}

.productItem__form .form__quantity--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 30px;
  padding: 0 7px;
  display: flex;
}

body .productItem__form .form__quantity--wrapper {
  background: #EBEBEB;
}

body.green .productItem__form .form__quantity--wrapper {
  background: #92C1A9;
}

@media only screen and (min-width: 768px) {
  .productItem__form .form__quantity--wrapper {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.productItem__form .form__quantity--wrapper input[type=number] {
  border: none;
  -webkit-appearance: none;
  margin: 0 13px;
  -moz-appearance: textfield;
  text-align: center;
}

.productItem__form .form__quantity--wrapper input[type=number]::-webkit-outer-spin-button, .productItem__form .form__quantity--wrapper input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.productItem__form .form__quantity--wrapper button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: transparent;
  padding: 0;
}

.productItem__form .form__quantity--wrapper button.button__down:hover svg g {
  fill: #000000;
}

.productItem__form .form__quantity--wrapper button.button__down:hover svg g[data-name="Gruppe 226"] path {
  stroke: #9ed1b9;
}

.productItem__form .form__quantity--wrapper button.button__up:hover svg g {
  fill: #000000;
}

.productItem__form .form__quantity--wrapper button.button__up:hover svg g[data-name="Gruppe 391"] path {
  stroke: #9ed1b9;
}

@media only screen and (min-width: 768px) {
  .productItem__form .form__quantity {
    grid-column: 1/span 2;
  }
}

.productItem__form .form__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .productItem__form .form__value {
    grid-column: 1/span 2;
  }
}

.productItem__form .form__value .values {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

@media only screen and (min-width: 768px) {
  .productItem__form .form__value .values {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media only screen and (min-width: 1024px) {
  .productItem__form .form__value .values {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

@media only screen and (min-width: 1200px) {
  .productItem__form .form__quantity {
    grid-column: 1/span 2;
  }
}

.productItem__form .form__submit {
  grid-column: 1/span 2;
}

@media only screen and (min-width: 1200px) {
  .productItem__form .form__submit {
    margin: 0;
  }
}

.productItem__form .form__submit:hover {
  cursor: pointer;
}

.productItem .item__quantity--controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.cartItemSmall {
  border-bottom: 1px solid #000000;
  padding: 20px 0;
}

.cartItemSmall__image {
  aspect-ratio: 16/9;
  width: 100%;
}

.cartItemSmall__image img {
  width: 100%;
}

.register {
  position: relative;
}

.register__overlay {
  position: fixed;
  top: 50%;
  left: 50%;
  width: calc(100% - 20px);
  padding: 20px 0;
  z-index: -1000;
  background-color: #fc91c4;
  border-radius: 15px;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: opacity 750ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: opacity 750ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

@media only screen and (min-width: 1024px) {
  .register__overlay {
    width: calc(80% - 20px);
    aspect-ratio: 4/2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.register__overlay.overlay--active {
  z-index: 200;
  opacity: 1;
  -webkit-transition: opacity 750ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: opacity 750ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

.register__illustration {
  max-width: 320px;
}

@media only screen and (min-width: 1024px) {
  .register__illustration {
    max-width: 400px;
  }
}

.register__illustration--wrapper {
  width: 100%;
  text-align: center;
}

.register__title {
  margin-bottom: 30px;
}

.register__close {
  position: absolute;
  top: 20px;
  right: 10px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: -webkit-transform 500ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: -webkit-transform 500ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: transform 500ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: transform 500ms cubic-bezier(0.65, 0.05, 0.36, 1), -webkit-transform 500ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

@media only screen and (min-width: 1024px) {
  .register__close {
    right: 20px;
    right: 20px;
  }
}

@media only screen and (min-width: 1440px) {
  .register__close {
    right: 40px;
    right: 40px;
  }
}

.register__close:hover {
  cursor: pointer;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
  -webkit-transition: -webkit-transform 500ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: -webkit-transform 500ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: transform 500ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: transform 500ms cubic-bezier(0.65, 0.05, 0.36, 1), -webkit-transform 500ms cubic-bezier(0.65, 0.05, 0.36, 1);
}

@media only screen and (min-width: 768px) {
  .register__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100%;
  }
}

.pagination {
  width: 100%;
  margin-top: 100px;
}

@media only screen and (min-width: 1024px) {
  .pagination {
    margin-top: 115px;
  }
}

.searchModule ::-moz-selection {
  background: #fc91c4;
}

.searchModule ::selection {
  background: #fc91c4;
}

.searchModule ::-moz-selection {
  background: #fc91c4;
}

.searchModule__results {
  position: relative;
  width: 100%;
  padding: 20px 0;
}

.searchModule__results .results__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .searchModule__results .results__inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }
}

.searchModule__result {
  margin: 20px 0;
  padding-bottom: 20px;
  border-bottom: 1px solid #000000;
}

.searchModule__result a {
  color: #000000;
}

.searchModule__arrow {
  position: sticky;
  top: 400px;
  right: 0;
}

.searchModule__arrow:hover {
  cursor: pointer;
}

.searchModule__default {
  text-align: center;
}

@media only screen and (min-width: 768px) {
  .searchModule__default {
    grid-column: 2/span 2;
  }
}

.searchModule__online {
  font-family: "Telka Extended Regular", sans-serif;
  line-height: 1.5;
}

.searchModule__online svg {
  margin-bottom: 4px;
  margin-right: 10px;
}

@media only screen and (min-width: 768px) {
  .searchModule__online svg {
    margin-bottom: 3px;
  }
}

.balance-check-result {
  text-align: center;
  margin: 20px 0;
}

#balanceCheckDate {
  font-family: "Telka Extended Medium", sans-serif;
  font-size: 2em;
  font-weight: bold;
  text-align: center;
}

.consent {
  position: fixed;
  bottom: 0;
  right: 0;
  padding: 30px;
  background-color: #9ed1b9;
  width: 100%;
  max-width: 100%;
  max-height: calc(100% - 6em);
  z-index: 100000;
}

.consent__text {
  color: #000000;
  font-size: 1rem !important;
}

.consent__text a {
  color: #000000;
}

.orderConfirmation__address {
  margin-bottom: 30px;
  font-style: normal;
  text-transform: uppercase;
}

.orderConfirmation__address strong {
  font-family: "Telka Extended Medium", sans-serif;
  text-transform: uppercase;
}

.orderConfirmation__address span {
  font-family: "Telka Extended Regular", sans-serif;
  font-style: normal;
}

.orderConfirmation__product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.sponsor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.sponsor__title {
  text-align: center;
}

.sponsor__lead {
  text-align: center;
  margin-bottom: 1rem;
}

@media screen and (min-width: 1024px) {
  .sponsor__lead {
    margin-bottom: 3rem;
  }
}

.sponsor__image-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-bottom: 1rem;
}

@media screen and (min-width: 1024px) {
  .sponsor__image-container {
    margin-bottom: 3rem;
  }
}

.sponsor__image {
  width: 75%;
}

.sponsor__image img {
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.sponsors__form {
  z-index: 50;
  position: relative;
  padding: 100px 0;
}

.sponsors__form .freeform-row [class*=freeform-col-] input,
.sponsors__form .freeform-row [class*=freeform-col-] textarea,
.sponsors__form .freeform-row [class*=freeform-col-] select {
  font-size: 1rem;
  font-family: "Telka Extended Medium", sans-serif;
  background-color: transparent;
  border: 1px solid #000000;
  border-radius: 15px;
  color: #000000;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  margin-bottom: 30px;
  padding: 6px 20px;
  width: 100%;
  -webkit-appearance: none;
  background: #EBEBEB;
  border: 1px solid #EBEBEB;
  margin: 0;
}

@media only screen and (min-width: 1024px) {
  .sponsors__form .freeform-row [class*=freeform-col-] input,
  .sponsors__form .freeform-row [class*=freeform-col-] textarea,
  .sponsors__form .freeform-row [class*=freeform-col-] select {
    border-radius: 20px;
  }
}

.sponsors__form .freeform-row [class*=freeform-col-] input::-webkit-input-placeholder, .sponsors__form .freeform-row [class*=freeform-col-] textarea::-webkit-input-placeholder, .sponsors__form .freeform-row [class*=freeform-col-] select::-webkit-input-placeholder {
  color: #000000;
  font-size: 1rem;
  opacity: 0.4;
}

.sponsors__form .freeform-row [class*=freeform-col-] input::-moz-placeholder, .sponsors__form .freeform-row [class*=freeform-col-] textarea::-moz-placeholder, .sponsors__form .freeform-row [class*=freeform-col-] select::-moz-placeholder {
  color: #000000;
  font-size: 1rem;
  opacity: 0.4;
}

.sponsors__form .freeform-row [class*=freeform-col-] input:-ms-input-placeholder, .sponsors__form .freeform-row [class*=freeform-col-] textarea:-ms-input-placeholder, .sponsors__form .freeform-row [class*=freeform-col-] select:-ms-input-placeholder {
  color: #000000;
  font-size: 1rem;
  opacity: 0.4;
}

.sponsors__form .freeform-row [class*=freeform-col-] input::-ms-input-placeholder, .sponsors__form .freeform-row [class*=freeform-col-] textarea::-ms-input-placeholder, .sponsors__form .freeform-row [class*=freeform-col-] select::-ms-input-placeholder {
  color: #000000;
  font-size: 1rem;
  opacity: 0.4;
}

.sponsors__form .freeform-row [class*=freeform-col-] input::placeholder,
.sponsors__form .freeform-row [class*=freeform-col-] textarea::placeholder,
.sponsors__form .freeform-row [class*=freeform-col-] select::placeholder {
  color: #000000;
  font-size: 1rem;
  opacity: 0.4;
}

.sponsors__form .freeform-row [class*=freeform-col-] select:not(select[multiple]) {
  background-image: linear-gradient(45deg, transparent 50%, #000 50%), linear-gradient(135deg, #000 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(50% + 2px), calc(100% - 15px) calc(50% + 2px), calc(100% - 2.5em) 0.5em;
}

.sponsors__form button[data-freeform-action=submit] {
  margin-top: 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #000000;
  border: 1px solid #000000;
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  padding: 5px 20px;
  height: 36px;
  line-height: 1em;
  -webkit-transition: all 500ms cubic-bezier(0.65, 0.05, 0.36, 1);
  transition: all 500ms cubic-bezier(0.65, 0.05, 0.36, 1);
  white-space: nowrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.sponsors__form button[data-freeform-action=submit]:hover {
  background-color: #ffffff;
  border: 1px solid #000000;
  color: #000000;
}

.sponsors__form .freeform-fieldtype-html {
  margin-bottom: 20px;
}

.sponsors__form .freeform-label {
  font-size: 1rem;
  line-height: 1.5;
  font-family: "Telka Extended Medium";
  color: #000000;
  text-align: left;
}

.sponsors__form .freeform-row [class*=freeform-col-] label {
  margin: 0;
}

.sponsors__form .freeform-row [class*=freeform-col-] .freeform-label.freeform-required::after {
  color: #fc91c4;
}

.sponsors__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.sponsors__wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px 10px;
  margin: 20px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.sponsors__product {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc((100% - 20px) / 3);
          flex: 0 1 calc((100% - 20px) / 3);
  max-width: calc((100% - 20px) / 3);
  text-decoration: none;
  color: #000000;
}

.sponsors__image-container {
  position: relative;
  width: 100%;
  display: block;
}

.sponsors__image {
  width: 100%;
  border-radius: 15px;
}

.sponsors__image img {
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  border-radius: 15px;
}

.sponsors__image-container:hover .sponsors__overlay {
  opacity: 1;
}

.sponsors__image-container:hover .sponsors__overlay::after {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.sponsors__overlay {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  border-radius: 15px;
}

.sponsors__overlay::after {
  content: "";
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  background-image: url(/media/images/icons/plus.svg);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
}

.sponsors__name {
  font-size: 1.75rem;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
}

.sponsors__text {
  margin: 30px 0;
}

@media screen and (max-width: 1024px) {
  .sponsors__wrapper {
    gap: 50px 10px;
  }
  .sponsors__product {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc((100% - 10px) / 2);
            flex: 0 1 calc((100% - 10px) / 2);
    max-width: calc((100% - 10px) / 2);
  }
}

@media screen and (max-width: 540px) {
  .sponsors__wrapper {
    gap: 50px 0;
  }
  .sponsors__product {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    max-width: 100%;
  }
}

.googleMap {
  aspect-ratio: 16/9;
  width: 100%;
  max-height: 700px;
}

.googleMap div {
  position: static;
}

#map .gm-title {
  font-size: var(--fontSizeBody);
  line-height: var(--fontSizeBody);
  color: var(--colorDarkBlue);
  margin-bottom: 15px !important;
}

#map .gm-icons {
  position: absolute;
  right: 0;
  bottom: 0;
  text-align: right;
}

.gm-control-active > img,
.gm-style .gm-style-iw-t,
.gm-style .gm-style-iw-c {
  position: absolute !important;
}

.gm-style-mot {
  position: relative !important;
}

.gm-style .gm-style-iw-c {
  padding: 14px !important;
  -webkit-box-shadow: 0 2px 7px 1px rgba(var(--colorDarkBlueRGB), 0.5);
          box-shadow: 0 2px 7px 1px rgba(var(--colorDarkBlueRGB), 0.5);
}

.gm-style-iw > button,
.gm-style-iw-c > button {
  margin: 11px !important;
}

.gm-style-iw-d {
  /* overflow: hidden !important; */
  max-height: none;
  text-align: left;
}

.gm-style .gm-style-iw-d::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
}

.gm-style .gm-style-iw button {
  top: 0 !important;
  right: 0 !important;
}

.gm-legend {
  font-family: "Telka Extended Regular", sans-serif;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1rem;
}

.gm-legend-pin {
  position: relative;
  margin-top: calc(var(--horizontalMargin) / 3);
  margin-left: calc(var(--horizontalMargin) / 2);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.gm-legend-pin:first-child {
  margin-left: 0;
}

.gm-legend-pin > svg {
  height: 30px;
  width: 30px;
  float: left;
  margin-right: calc(var(--horizontalMargin) / 4);
}

.infoWindow {
  width: 300px;
}

.infoWindow a {
  color: #000000;
}

/*! INFO WINDOW */

.googleMap .infowindow {
  width: 350px;
}

.googleMap .infowindow .gm-image,
.googleMap .infowindow .gm-image picture,
.googleMap .infowindow .gm-image img {
  max-width: 350px;
}

.googleMap .infowindow p {
  margin: 0.25em 0;
}

.googleMap .infowindow .gm-title {
  margin-bottom: 0.25em;
}

.googleMap .infowindow .gm-website {
  margin-top: 0.75em;
}

.googleMap .infowindow > *:not(.gm-image) {
  padding: 0 15px;
}

.googleMap .infowindow > *:last-child {
  padding-bottom: 15px;
}

/***************/

.googleMap .gm-style-iw-chr {
  height: 0;
  z-index: 10;
}

.googleMap .gm-style .gm-style-iw-c {
  min-width: 0px;
  padding: 0;
  -webkit-box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1), 0 2px 12px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1), 0 2px 12px 0 rgba(0, 0, 0, 0.12);
}

.gmSearchWrapperContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  grid-gap: 20px;
  margin-left: auto;
  margin-right: 0;
}

.gmSearchWrapper {
  width: 620px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  grid-gap: 0 20px;
  margin-left: auto;
  margin-right: 0;
}

.gmSearchWrapper > div {
  display: inline-block;
  position: relative;
}

.gmDropDown {
  font-family: "Telka Extended Medium";
  border-radius: 30px;
  color: #000000;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  padding: 5px 20px;
  -webkit-appearance: none;
  height: 36px;
  background: #EBEBEB;
  border: 1px solid #EBEBEB;
  position: relative;
}

.gmDropDown::after {
  content: "";
  display: block;
  position: absolute;
  right: 18px;
  top: 50%;
  width: 12px;
  height: 12px;
  pointer-events: none;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transform-origin: 65% 50%;
          transform-origin: 65% 50%;
  border: solid var(--colorHighlight, #000);
  border-width: 0 3px 3px 0;
  padding: 2px;
  background: transparent;
  -webkit-transition: -webkit-transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.gmCategoryFieldWrapper.open .gmDropDown::after {
  -webkit-transform: translateY(-50%) rotate(-135deg);
          transform: translateY(-50%) rotate(-135deg);
  -webkit-transform-origin: 50% 65%;
          transform-origin: 50% 65%;
}

.gmSearchFieldWrapper,
.gmCategoryFieldWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
  min-width: 270px;
}

.gmCategoryFieldWrapper {
  height: 59px;
}

.gmSearchFieldWrapper .fa-search {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
}

.gmSearch {
  font-size: 1.3125rem;
  width: 100%;
  max-width: 300px;
  padding: 20px 60px 20px 20px;
  background-color: var(--colorMuted);
  outline: none;
  border: none;
  border-radius: 0;
}

.gmDropDown.open {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: none;
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.gmDropDown .fa-angle-up,
.gmDropDown .fa-angle-down {
  position: absolute;
  right: 18px;
  top: 50%;
  font-size: 1.75rem;
  z-index: 2;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
  color: var(--colorHighlight);
}

.gmDropDown .fa-angle-up {
  display: none;
}

.gmDropDown.open .fa-angle-up {
  display: block;
}

.gmDropDown.open .fa-angle-down {
  display: none;
}

.gmCategoryWrapper {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  width: 220px;
  max-width: 270px;
  min-width: 270px;
  background: var(--colorMuted);
  border: 1.5px solid var(--colorHighlight);
  border-top: none;
  border-radius: 0 0 12px 12px;
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  max-height: 330px;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 10;
  padding: 0;
  margin: 0;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  pointer-events: auto;
  -webkit-overflow-scrolling: touch;
  -ms-touch-action: pan-x pan-y;
      touch-action: pan-x pan-y;
}

.gmCategoryFieldWrapper.open .gmCategoryWrapper {
  display: block;
  background: #EBEBEB;
  border: 1px solid #EBEBEB;
  border-radius: 15px;
  font-family: "Telka Extended Medium";
  max-height: 330px;
  overflow-y: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  -ms-touch-action: pan-x pan-y;
      touch-action: pan-x pan-y;
}

.gmDropDownValue {
  padding: 15px 20px;
  height: unset;
  width: 100%;
  z-index: 1;
  font-size: 1.125rem;
  background: var(--colorMuted);
  border: none;
  border-bottom: 1px solid var(--colorBorder, #000);
  -webkit-transition: background 0.18s, color 0.18s;
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
  color: var(--colorText);
  font-family: var(--mainFont), sans-serif;
  text-align: left;
  outline: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.gmDropDownValue:last-child {
  border-bottom: none;
}

.gmDropDownValue:hover,
.gmDropDownValue.categorySelected {
  background: var(--colorHighlight);
  color: var(--colorReset);
}

.gmWebshopButton {
  font-family: "Telka Extended Medium";
  background: #EBEBEB;
  color: #000000;
  border: #EBEBEB;
  font-size: 1rem;
  text-transform: none;
}

.gmWebshopButton:hover,
.gmWebshopButton[data-webshop=active] {
  background: #000000;
  color: #ffffff;
  border: #000000;
}

.gmWebshopSwitchWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 36px;
}

.gmWebshopSwitch {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.gmWebshopSwitchLabel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  font-family: "Telka Extended Medium";
  font-size: 1rem;
  color: #000;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.gmWebshopSwitchSlider {
  position: relative;
  width: 44px;
  height: 24px;
  background: #EBEBEB;
  border-radius: 30px;
  margin-right: 0.75rem;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

.gmWebshopSwitchSlider::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.gmWebshopSwitch:checked + .gmWebshopSwitchLabel .gmWebshopSwitchSlider {
  background: #000;
}

.gmWebshopSwitch:checked + .gmWebshopSwitchLabel .gmWebshopSwitchSlider::before {
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  background: #fff;
}

.gmWebshopSwitch:checked + .gmWebshopSwitchLabel {
  color: #000;
}

@media screen and (max-width: 1200px) {
  .gmSearchWrapper {
    width: 565px;
  }
  .gmCategoryFieldWrapper {
    height: 80px;
  }
  .gmDropDownValue {
    padding: 12px 20px 8px 20px;
  }
  .gmDropDown,
  .gmCategoryWrapper {
    width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .gmSearchWrapper {
    width: 420px;
  }
  .gmSearch {
    font-size: 1.1875rem;
  }
}

@media screen and (max-width: 768px) {
  .googleMap {
    aspect-ratio: 4/3;
    height: 400px;
  }
  .gmCategoryFieldWrapper.open .gmCategoryWrapper {
    max-height: 400px;
    height: 350px;
    aspect-ratio: 4/3;
    min-width: 100%;
    width: 100%;
    overflow-y: auto;
  }
  .gmSearchWrapper > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 100%;
  }
  .search__input {
    max-width: 100%;
    width: 100%;
  }
  .gmSearchWrapper {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .gmSearchFieldWrapper {
    max-width: calc(50% - 10px);
    min-width: auto;
    width: calc(50% - 10px);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .gmCategoryFieldWrapper {
    max-width: calc(50% - 10px);
    min-width: auto;
    width: calc(50% - 10px);
    margin-top: 0;
  }
}

@media screen and (max-width: 550px) {
  .googleMap {
    aspect-ratio: 1/1;
    height: 330px;
  }
  .gmCategoryFieldWrapper.open .gmCategoryWrapper {
    max-height: 330px;
    height: 330px;
    aspect-ratio: 1/1;
    width: 100%;
    overflow-y: auto;
  }
  .gmSearch {
    font-size: 1.0625rem;
  }
  .gmSearchWrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: var(--horizontalMargin);
    width: 100%;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    grid-template-columns: 1fr;
  }
  .gmSearch,
  .gmDropDown {
    width: 100%;
    max-width: 100%;
  }
  .gmCategoryFieldWrapper {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    margin-top: 20px;
  }
  .gmCategoryWrapper {
    right: auto;
    left: 0;
  }
  .gmCategoryWrapper {
    max-width: 100%;
  }
}

.cartPage__title, .cartPage__lead {
  text-align: left;
}

.cartPage__center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cartPage__item {
  border-bottom: 1px solid #000000;
  padding: 20px 0;
  position: relative;
}

@media only screen and (min-width: 768px) {
  .cartPage__item {
    padding: 20px 0;
  }
}

.cartPage__item .forms__label {
  margin-bottom: 20px;
}

.cartPage__item .item__image-container {
  max-width: 315px;
}

.cartPage__item .item__image {
  grid-column: 1/span 2;
  width: 100%;
  margin-bottom: 20px;
}

.cartPage__item .item__image img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 15px;
}

@media only screen and (min-width: 768px) {
  .cartPage__item .item__image {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-bottom: 0;
  }
}

.cartPage__item .item__title {
  text-transform: uppercase;
  margin-bottom: 15px;
  grid-column: 1/span 2;
}

.cartPage__item .item__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media only screen and (min-width: 768px) {
  .cartPage__item .item__price--wrapper .forms__label {
    margin-bottom: 0;
  }
}

.cartPage__item .item__price,
.cartPage__item .item__quantity {
  font-size: 1.25rem;
  font-family: "Telka Extended Medium", sans-serif;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.cartPage__item .item__price--wrapper,
.cartPage__item .item__quantity--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

@media only screen and (min-width: 768px) {
  .cartPage__item .item__price--wrapper,
  .cartPage__item .item__quantity--wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.cartPage__item .item__description {
  font-family: "Telka Extended Light", sans-serif;
  margin-bottom: 20px;
  grid-column: 1/span 2;
}

.cartPage__item .item__quantity {
  padding: 6px 35px;
}

.cartPage__item .item__quantity--controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 36px;
  border-radius: 30px;
  padding: 0 7px;
}

body .cartPage__item .item__quantity--controls {
  background: #EBEBEB;
}

body.green .cartPage__item .item__quantity--controls {
  background: #92C1A9;
}

.cartPage__item .item__quantity--controls button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background-color: transparent;
  padding: 0;
}

.cartPage__item .item__quantity--controls button.cartPage__item--minus:hover svg g {
  fill: #000000;
}

.cartPage__item .item__quantity--controls button.cartPage__item--minus:hover svg g[data-name="Gruppe 226"] path {
  stroke: #ffffff;
}

.cartPage__item .item__quantity--controls button.cartPage__item--plus:hover svg g {
  fill: #000000;
}

.cartPage__item .item__quantity--controls button.cartPage__item--plus:hover svg g[data-name="Gruppe 391"] path {
  stroke: #ffffff;
}

.cartPage .item__quantity--wrapper-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

.cartPage .item__row-container {
  width: calc(100% - 315px - 8.3333333333%);
}

.cartPage__line, .cartPage__line-last--discount, .cartPage__line--discount {
  padding: 20px 0;
  border-bottom: 1px solid #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.cartPage__line--discount {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cartPage__line--discount form {
  width: 100%;
}

.cartPage__line--discount input {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .cartPage__line--discount button {
    width: auto;
  }
}

.cartPage__line-last-container {
  border-bottom: 1px solid #000000;
  padding-bottom: 20px;
}

.cartPage__line-last {
  padding: 20px 0;
  padding-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.cartPage__line-last--discount {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cartPage__line-last--discount form {
  width: 100%;
}

.cartPage__line-last--discount input {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .cartPage__line-last--discount button {
    width: auto;
  }
}

.cartPage__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (max-width: 767px) {
  .cartPage .item__image-container {
    margin-right: 8.3333333333%;
  }
}

@media screen and (max-width: 599px) {
  .cartPage__item .item__image-container,
  .cartPage .item__row-container {
    width: 100%;
  }
  .cartPage .item__image-container {
    max-width: 100%;
    margin-right: 0;
  }
}

@media only screen and (min-width: 1024px) {
  .profilePage .module__title, .profilePage .module__title--tal, .profilePage .module__title--tar {
    text-align: left;
  }
}

.profilePage__orders {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media only screen and (min-width: 768px) {
  .profilePage__orders {
    display: table;
    width: 100%;
  }
}

.profilePage__orders .order {
  text-decoration: none;
  color: #000000;
  width: 100%;
  border-bottom: 1px solid #000000;
  padding: 20px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.profilePage__orders .order:hover {
  cursor: pointer;
}

.profilePage__orders thead {
  text-transform: uppercase;
}

.profilePage__orders thead tr {
  width: 100%;
}

.profilePage__orders tbody tr.body__row {
  width: 100%;
  border-bottom: 1px solid #000000;
}

.profilePage__orders tbody tr.body__row:hover {
  cursor: pointer;
}

.profilePage__orders tbody tr.body__row td {
  padding: 20px 0;
}

.profilePage__addresses {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media only screen and (min-width: 768px) {
  .profilePage__addresses {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 30px;
  }
}

.profilePage__addresses .profilePage__address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.profilePage__addresses .profilePage__address strong {
  font-family: "Telka Extended Medium", sans-serif;
  text-transform: uppercase;
}

.profilePage__addresses .address {
  font-style: normal;
  margin-bottom: 30px;
}

@media only screen and (min-width: 1024px) {
  .profilePage__addresses .address {
    margin-bottom: 50px;
  }
}

.profilePage__addresses a.button {
  margin-bottom: 50px;
}

@media only screen and (min-width: 1024px) {
  .profilePage__addresses a.button {
    margin-bottom: 0;
  }
}

.profilePage__address {
  font-family: "Telka Extended Regular";
}

.verificationPage .cart__total {
  margin-bottom: 50px;
}

.verificationPage__address {
  margin-bottom: 20px;
}

.verificationPage__address strong {
  font-family: "Telka Extended Medium", sans-serif;
  text-transform: uppercase;
}

.verificationPage__container {
  width: 100%;
}

.verificationPage__buttons--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin-top: 80px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.verificationPage__buttons--wrapper > .button {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media only screen and (min-width: 768px) {
  .verificationPage__buttons--wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.addressPage .button__language {
  margin-bottom: 120px;
  width: 100%;
}

@media only screen and (min-width: 1024px) {
  .addressPage .module__lead, .addressPage .module__lead-title--tal, .addressPage .module__lead--tal, .addressPage .module__lead--tar, .addressPage .module__title, .addressPage .module__title--tal, .addressPage .module__title--tar {
    text-align: left;
  }
}

.addressPage__grid {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media only screen and (min-width: 480px) {
  .addressPage__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media only screen and (min-width: 768px) {
  .addressPage__grid .card {
    width: 100%;
  }
}

@media only screen and (min-width: 1024px) {
  .addressPage__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.addressPage__grid .card {
  height: 100%;
}

.addressPage .module__illustration {
  margin: 20px 0 50px;
}

.addressPage__buttons--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  gap: 30px;
  margin-top: 80px;
}

.addressPage__buttons--wrapper > .button {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media only screen and (min-width: 768px) {
  .addressPage__buttons--wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.addressPage__address {
  font-style: normal;
  text-transform: uppercase;
  font-family: "Telka Extended Regular", sans-serif;
}

.addressPage__error {
  color: red;
  text-align: left;
  position: absolute;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  top: -60px;
  left: 0;
  width: 100%;
  visibility: hidden;
  padding-top: 2px;
}

@media only screen and (min-width: 768px) {
  .addressPage__error {
    top: -40px;
  }
}

.addressPage button[disabled]:hover {
  cursor: not-allowed;
}

.addressPage button[disabled]:hover .addressPage__error {
  visibility: visible !important;
}/**
 * Swiper 11.0.5
 * 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: November 22, 2023
 */

/* FONT_START */
@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;
}
/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
          transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}
.swiper-vertical {
  -ms-touch-action: pan-x;
      touch-action: pan-x;
}
.swiper-slide {
  -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;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: 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;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
.swiper-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  -ms-scroll-snap-type: none;
      scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: '';
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.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-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.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-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  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-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@-webkit-keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* Slide styles end */
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-lock {
  display: none;
}
/* Navigation font start */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
}
/* Navigation font end */
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
          -moz-appearance: none;
       appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top,
        200ms -webkit-transform;
  transition: 200ms top,
        200ms -webkit-transform;
  transition: 200ms transform,
        200ms top;
  transition: 200ms transform,
        200ms top,
        200ms -webkit-transform;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left,
        200ms -webkit-transform;
  transition: 200ms left,
        200ms -webkit-transform;
  transition: 200ms transform,
        200ms left;
  transition: 200ms transform,
        200ms left,
        200ms -webkit-transform;
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right,
    200ms -webkit-transform;
  transition: 200ms right,
    200ms -webkit-transform;
  transition: 200ms transform,
    200ms right;
  transition: 200ms transform,
    200ms right,
    200ms -webkit-transform;
}
/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
          transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-lock {
  display: none;
}
