@charset "UTF-8";
.cc-window {
  opacity: 1;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

.cc-window.cc-invisible {
  opacity: 0;
}

.cc-animate.cc-revoke {
  -webkit-transition: transform 1s ease;
  -webkit-transition: -webkit-transform 1s ease;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
}

.cc-animate.cc-revoke.cc-top {
  -webkit-transform: translateY(-2em);
  transform: translateY(-2em);
}

.cc-animate.cc-revoke.cc-bottom {
  -webkit-transform: translateY(2em);
  transform: translateY(2em);
}

.cc-animate.cc-revoke.cc-active.cc-top {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.cc-animate.cc-revoke.cc-active.cc-bottom {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.cc-revoke:hover {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.cc-grower {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 1s;
  transition: max-height 1s;
}

.cc-revoke, .cc-window {
  position: fixed;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  z-index: 9999;
}

.cc-window.cc-static {
  position: static;
}

.cc-window.cc-floating {
  padding: 2em;
  max-width: 24em;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.cc-window.cc-banner {
  padding: 1em 1.8em;
  width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.cc-revoke {
  padding: 0.5em;
}

.cc-revoke:hover {
  text-decoration: underline;
}

.cc-header {
  font-size: 18px;
  font-weight: 700;
}

.cc-btn, .cc-close, .cc-link, .cc-revoke {
  cursor: pointer;
}

.cc-link {
  opacity: 0.8;
  display: inline-block;
  padding: 0.2em;
  text-decoration: underline;
}

.cc-link:hover {
  opacity: 1;
}

.cc-link:active, .cc-link:visited {
  color: initial;
}

.cc-btn {
  display: block;
  padding: 0.4em 0.8em;
  font-size: 0.9em;
  font-weight: 700;
  border-width: 2px;
  border-style: solid;
  text-align: center;
  white-space: nowrap;
}

.cc-highlight .cc-btn:first-child {
  background-color: transparent;
  border-color: transparent;
}

.cc-highlight .cc-btn:first-child:focus, .cc-highlight .cc-btn:first-child:hover {
  background-color: transparent;
  text-decoration: underline;
}

.cc-close {
  display: block;
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  font-size: 1.6em;
  opacity: 0.9;
  line-height: 0.75;
}

.cc-close:focus, .cc-close:hover {
  opacity: 1;
}

.cc-revoke.cc-top {
  top: 0;
  left: 3em;
  border-bottom-left-radius: 0.5em;
  border-bottom-right-radius: 0.5em;
}

.cc-revoke.cc-bottom {
  bottom: 0;
  left: 3em;
  border-top-left-radius: 0.5em;
  border-top-right-radius: 0.5em;
}

.cc-revoke.cc-left {
  left: 3em;
  right: unset;
}

.cc-revoke.cc-right {
  right: 3em;
  left: unset;
}

.cc-top {
  top: 1em;
}

.cc-left {
  left: 1em;
}

.cc-right {
  right: 1em;
}

.cc-bottom {
  bottom: 1em;
}

.cc-floating > .cc-link {
  margin-bottom: 1em;
}

.cc-floating .cc-message {
  display: block;
  margin-bottom: 1em;
}

.cc-window.cc-floating .cc-compliance {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.cc-window.cc-banner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cc-banner.cc-top {
  left: 0;
  right: 0;
  top: 0;
}

.cc-banner.cc-bottom {
  left: 0;
  right: 0;
  bottom: 0;
}

.cc-banner .cc-message {
  display: block;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  max-width: 100%;
  margin-right: 1em;
}

.cc-compliance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: justify;
  align-content: space-between;
}

.cc-floating .cc-compliance > .cc-btn {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.cc-btn + .cc-btn {
  margin-left: 0.5em;
}

@media print {
  .cc-revoke, .cc-window {
    display: none;
  }
}
@media screen and (max-width: 900px) {
  .cc-btn {
    white-space: normal;
  }
}
@media screen and (max-width: 414px) and (orientation: portrait), screen and (max-width: 736px) and (orientation: landscape) {
  .cc-window.cc-top {
    top: 0;
  }
  .cc-window.cc-bottom {
    bottom: 0;
  }
  .cc-window.cc-banner, .cc-window.cc-floating, .cc-window.cc-left, .cc-window.cc-right {
    left: 0;
    right: 0;
  }
  .cc-window.cc-banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .cc-window.cc-banner .cc-compliance {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
  .cc-window.cc-floating {
    max-width: none;
  }
  .cc-window .cc-message {
    margin-bottom: 1em;
  }
  .cc-window.cc-banner {
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
  }
  .cc-window.cc-banner .cc-message {
    margin-right: 0;
  }
}
.cc-floating.cc-theme-classic {
  padding: 1.2em;
  border-radius: 5px;
}

.cc-floating.cc-type-info.cc-theme-classic .cc-compliance {
  text-align: center;
  display: inline;
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}

.cc-theme-classic .cc-btn {
  border-radius: 5px;
}

.cc-theme-classic .cc-btn:last-child {
  min-width: 140px;
}

.cc-floating.cc-type-info.cc-theme-classic .cc-btn {
  display: inline-block;
}

.cc-theme-edgeless.cc-window {
  padding: 0;
}

.cc-floating.cc-theme-edgeless .cc-message {
  margin: 2em;
  margin-bottom: 1.5em;
}

.cc-banner.cc-theme-edgeless .cc-btn {
  margin: 0;
  padding: 0.8em 1.8em;
  height: 100%;
}

.cc-banner.cc-theme-edgeless .cc-message {
  margin-left: 1em;
}

.cc-floating.cc-theme-edgeless .cc-btn + .cc-btn {
  margin-left: 0;
}

.cc-revoke, .cc-window {
  font-family: gesta, Helvetica, sans-serif;
}

.cc-window {
  font-size: 1.6rem;
  padding: 4rem 2rem;
}

.cc-bottom {
  font-size: 1.6rem;
}

.cc-link {
  padding: 0;
  display: inline;
}

.cc-deny {
  color: #1FC4F4 !important;
}

@media (min-width: 980px) {
  .cc-window {
    justify-content: center !important;
  }
  .cc-message {
    max-width: 600px !important;
  }
  .cc-compliance {
    max-width: 256px !important;
  }
}
.cc-allow {
  color: #FFF;
  display: block;
  font-size: 1.8rem;
  padding: 1rem 1.6rem 0.9rem;
  border: 1.5px solid #FFF !important;
  border-radius: 0.8rem;
  text-decoration: none;
  font-weight: 200;
  width: 100%;
  text-align: center;
  margin: 0.8rem;
  box-sizing: border-box;
  white-space: nowrap;
  line-height: 1;
}

.blocker {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 1;
  padding: 20px;
  box-sizing: border-box;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.75);
  text-align: center;
}

.blocker:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.05em;
}

.blocker.behind {
  background-color: transparent;
}

.modal {
  display: none;
  vertical-align: middle;
  position: relative;
  z-index: 2;
  max-width: 500px;
  box-sizing: border-box;
  width: 90%;
  background: #fff;
  padding: 15px 30px;
  text-align: left;
  border-radius: 0.8rem;
  font-size: 1.6rem;
}

.modal a.close-modal {
  position: absolute;
  top: -12.5px;
  right: -12.5px;
  display: block;
  width: 30px;
  height: 30px;
  text-indent: -9999px;
  background: #0093d1;
  border-radius: 100%;
}
.modal a.close-modal:after {
  font-family: "trade-gothic-next-condensed";
  text-transform: uppercase;
  content: "×";
  color: #FFF;
  font-size: 2.8rem;
  left: 0;
  right: -1px;
  top: -8px;
  bottom: 0;
  position: absolute;
  text-indent: 0;
  text-align: center;
}

.modal-spinner {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  padding: 12px 16px;
  border-radius: 5px;
  background-color: #111;
  height: 20px;
}

.modal-spinner > div {
  border-radius: 100px;
  background-color: #fff;
  height: 20px;
  width: 2px;
  margin: 0 1px;
  display: inline-block;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.modal-spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.modal-spinner .rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.modal-spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

@-webkit-keyframes sk-stretchdelay {
  0%, 40%, 100% {
    -webkit-transform: scaleY(0.5);
  }
  20% {
    -webkit-transform: scaleY(1);
  }
}
@keyframes sk-stretchdelay {
  0%, 40%, 100% {
    transform: scaleY(0.5);
    -webkit-transform: scaleY(0.5);
  }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}
/* box-sizing */
.fr-window, .fr-window [class^=fr-],
.fr-overlay, .fr-overlay [class^=fr-],
.fr-spinner, .fr-spinner [class^=fr-] {
  box-sizing: border-box;
}

.fr-window {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  font: 13px/20px "Lucida Sans", "Lucida Sans Unicode", "Lucida Grande", Verdana, Arial, sans-serif;
  /* Chrome hack, this fixes a visual glitch when quickly toggling a video */
  transform: translateZ(0px);
}

/* z-index */
.fr-overlay {
  z-index: 99998;
}

.fr-window {
  z-index: 99999;
}

.fr-spinner {
  z-index: 100000;
}

/* overlay */
.fr-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.fr-overlay-background {
  float: left;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
}

.fr-overlay-ui-fullclick .fr-overlay-background {
  background: #292929;
  opacity: 1;
}

/* mobile touch has position:absolute to allow zooming */
.fr-window.fr-mobile-touch,
.fr-overlay.fr-mobile-touch {
  position: absolute;
  overflow: visible;
}

/* some properties on the window are used to toggle things
 * like margin and the fullclick mode,
 * we reset those properties after measuring them
 */
.fr-measured {
  margin: 0 !important;
  min-width: 0 !important;
  min-height: 0 !important;
}

.fr-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fr-pages {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fr-page {
  position: absolute;
  width: 100%;
  height: 100%;
}

.fr-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0;
  text-align: center;
}

.fr-hovering-clickable .fr-container {
  cursor: pointer;
}

/*
   padding:
   youtube & vimeo always have buttons on the outside
   side button = 72 = 54 + (2 * 9 margin)
   close button = 48
*/
/* padding ui:inside */
.fr-ui-inside .fr-container {
  padding: 20px 20px;
}

.fr-ui-inside.fr-no-sides .fr-container {
  padding: 20px;
}

/* padding ui:outside */
.fr-ui-outside .fr-container {
  padding: 20px 82px;
}

.fr-ui-outside.fr-no-sides .fr-container {
  padding: 20px 48px;
}

/* reduce padding on smaller screens */
@media all and (max-width: 700px) and (orientation: portrait), all and (orientation: landscape) and (max-height: 700px) {
  /* padding ui:inside */
  .fr-ui-inside .fr-container {
    padding: 12px 12px;
  }
  .fr-ui-inside.fr-no-sides .fr-container {
    padding: 12px;
  }
  /* padding ui:outside */
  .fr-ui-outside .fr-container {
    padding: 12px 72px;
  }
  .fr-ui-outside.fr-no-sides .fr-container {
    padding: 12px 48px;
  }
}
@media all and (max-width: 500px) and (orientation: portrait), all and (orientation: landscape) and (max-height: 500px) {
  /* padding ui:inside */
  .fr-ui-inside .fr-container {
    padding: 0px 0px;
  }
  .fr-ui-inside.fr-no-sides .fr-container {
    padding: 0px;
  }
  /* padding ui:outside */
  .fr-ui-outside .fr-container {
    padding: 0px 72px;
  }
  .fr-ui-outside.fr-no-sides .fr-container {
    padding: 0px 48px;
  }
}
/* padding ui:fullclick */
.fr-ui-fullclick .fr-container {
  padding: 0;
}

.fr-ui-fullclick.fr-no-sides .fr-container {
  padding: 0;
}

/* video fullclick */
.fr-ui-fullclick.fr-type-video .fr-container {
  padding: 0px 62px;
}

.fr-ui-fullclick.fr-no-sides.fr-type-video .fr-container {
  padding: 48px 0px;
}

/* overflow-y should always have 0 padding top and bottom */
.fr-overflow-y .fr-container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.fr-content,
.fr-content-background {
  position: absolute;
  top: 50%;
  left: 50%;
  /* IE11 has a 1px blur bug on the edges of the caption (ui:inside)
     during animation with overflow:hidden */
  overflow: visible;
}

/* img/iframe/error */
.fr-content-element {
  float: left;
  width: 100%;
  height: 100%;
}

.fr-content-background {
  background: #101010;
}

.fr-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: #efefef;
  font-size: 13px;
  line-height: 20px;
  text-align: left;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-user-select: text;
  -khtml-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.fr-info-background {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #000;
  line-height: 1%;
  filter: none;
  opacity: 1;
}

.fr-ui-inside .fr-info-background {
  filter: alpha(opacity=80);
  opacity: 0.8;
  zoom: 1;
}

/* ui:outside has a slightly lighter info background to break up from black page backgrounds */
.fr-ui-outside .fr-info-background {
  background: #0d0d0d;
}

/* info at the bottom for ui:inside */
.fr-content .fr-info {
  top: auto;
  bottom: 0;
}

.fr-info-padder {
  display: block;
  overflow: hidden;
  padding: 12px;
  position: relative;
  width: auto;
}

.fr-caption {
  width: auto;
  display: inline;
}

.fr-position {
  color: #b3b3b3;
  float: right;
  line-height: 21px;
  opacity: 0.99;
  position: relative;
  text-align: right;
  margin-left: 15px;
  white-space: nowrap;
}

/* positions not within the info bar
   for ui:outside/inside */
.fr-position-outside,
.fr-position-inside {
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 12px;
  width: auto;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 11px;
  line-height: 20px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
  display: none;
  overflow: hidden;
  white-space: nowrap;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  -webkit-user-select: text;
  -khtml-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

.fr-position-inside {
  border: 0;
}

.fr-position-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0d0d0d;
  filter: alpha(opacity=80);
  opacity: 0.8;
  zoom: 1; /* oldIE */
}

.fr-position-text {
  color: #b3b3b3;
}

.fr-position-outside .fr-position-text,
.fr-position-inside .fr-position-text {
  float: left;
  position: relative;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  opacity: 1;
}

/* display it for the outside ui, hide the caption inside */
.fr-ui-outside .fr-position-outside {
  display: block;
}

.fr-ui-outside .fr-info .fr-position {
  display: none;
}

.fr-ui-inside.fr-no-caption .fr-position-inside {
  display: block;
}

/* links */
.fr-info a,
.fr-info a:hover {
  color: #ccc;
  border: 0;
  background: none;
  text-decoration: underline;
}

.fr-info a:hover {
  color: #eee;
}

/* no-caption */
.fr-ui-outside.fr-no-caption .fr-info {
  display: none;
}

.fr-ui-inside.fr-no-caption .fr-caption {
  display: none;
}

/* --- stroke */
.fr-stroke {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
}

.fr-stroke-vertical {
  width: 1px;
  height: 100%;
}

.fr-stroke-horizontal {
  padding: 0 1px;
}

.fr-stroke-right {
  left: auto;
  right: 0;
}

.fr-stroke-bottom {
  top: auto;
  bottom: 0;
}

.fr-stroke-color {
  float: left;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
}

/* the stroke is brighter inside the info box */
.fr-info .fr-stroke-color {
  background: rgba(80, 80, 80, 0.3);
}

/* remove the stroke when outside ui has a caption */
.fr-ui-outside.fr-has-caption .fr-content .fr-stroke-bottom {
  display: none;
}

/* remove stroke and shadow when ui:fullclick */
.fr-ui-fullclick .fr-stroke {
  display: none;
}

.fr-ui-fullclick .fr-content-background {
  box-shadow: none;
}

/* the info box never bas a top stroke */
.fr-info .fr-stroke-top {
  display: none;
}

/* < > */
.fr-side {
  position: absolute;
  top: 50%;
  width: 54px;
  height: 72px;
  margin: 0 9px;
  margin-top: -36px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  zoom: 1;
}

.fr-side-previous {
  left: 0;
}

.fr-side-next {
  right: 0;
  left: auto;
}

.fr-side-disabled {
  cursor: default;
}

.fr-side-hidden {
  display: none !important;
}

.fr-side-button {
  float: left;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.fr-side-button-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #101010;
}

.fr-side-button-icon {
  float: left;
  position: relative;
  height: 100%;
  width: 100%;
  zoom: 1;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

/* smaller side buttons */
@media all and (max-width: 500px) and (orientation: portrait), all and (orientation: landscape) and (max-height: 414px) {
  .fr-side {
    width: 54px;
    height: 60px;
    margin: 0;
    margin-top: -30px;
  }
  .fr-side-button {
    width: 48px;
    height: 60px;
    margin: 0 3px;
  }
}
/* X */
.fr-close {
  position: absolute;
  width: 48px;
  height: 48px;
  top: 0;
  right: 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.fr-close-background,
.fr-close-icon {
  position: absolute;
  top: 12px;
  left: 12px;
  height: 26px;
  width: 26px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.fr-close-background {
  background-color: #0093d1;
}

/* Thumbnails */
.fr-thumbnails {
  position: absolute;
  overflow: hidden;
}

.fr-thumbnails-disabled .fr-thumbnails {
  display: none !important;
}

.fr-thumbnails-horizontal .fr-thumbnails {
  width: 100%;
  height: 12%;
  min-height: 74px;
  max-height: 160px;
  bottom: 0;
}

.fr-thumbnails-vertical .fr-thumbnails {
  height: 100%;
  width: 10%;
  min-width: 74px;
  max-width: 160px;
  left: 0;
}

.fr-thumbnails,
.fr-thumbnails * {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fr-thumbnails-wrapper {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
}

.fr-thumbnails-vertical .fr-thumbnails-wrapper {
  top: 50%;
  left: 0;
}

.fr-thumbnails-slider {
  position: relative;
  width: 100%;
  height: 100%;
  float: left;
  zoom: 1;
}

.fr-thumbnails-slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}

.fr-thumbnails-thumbs {
  float: left;
  height: 100%;
  overflow: hidden;
  position: relative;
  top: 0;
  left: 0;
}

.fr-thumbnails-slide {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
}

.fr-thumbnail-frame {
  position: absolute;
  zoom: 1;
  overflow: hidden;
}

.fr-thumbnail {
  position: absolute;
  width: 30px;
  height: 100%;
  left: 50%;
  top: 50%;
  zoom: 1;
  cursor: pointer;
  margin: 0 10px;
}

.fr-ltIE9 .fr-thumbnail * {
  overflow: hidden; /* IE6(7) */
  z-index: 1;
  zoom: 1;
}

.fr-thumbnail-wrapper {
  position: relative;
  background: #161616;
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  display: inline; /* IE6(7) */
  z-index: 0; /* IE8 */
}

.fr-thumbnail-overlay {
  cursor: pointer;
}

.fr-thumbnail-active .fr-thumbnail-overlay {
  cursor: default;
}

.fr-thumbnail-overlay,
.fr-thumbnail-overlay-background,
.fr-thumbnail-overlay-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-width: 0;
  overflow: hidden;
  border-style: solid;
  border-color: transparent;
}

.fr-ltIE9 .fr-thumbnail-overlay-border {
  border-width: 0 !important;
}

.fr-thumbnail .fr-thumbnail-image {
  position: absolute;
  filter: alpha(opacity=85);
  opacity: 0.85;
  max-width: none;
}

.fr-thumbnail:hover .fr-thumbnail-image,
.fr-thumbnail-active:hover .fr-thumbnail-image {
  filter: alpha(opacity=99);
  opacity: 0.99;
}

.fr-thumbnail-active .fr-thumbnail-image,
.fr-thumbnail-active:hover .fr-thumbnail-image {
  filter: alpha(opacity=35);
  opacity: 0.35;
}

.fr-thumbnail-active {
  cursor: default;
}

/* Thumbnails loading */
.fr-thumbnail-loading,
.fr-thumbnail-loading-background,
.fr-thumbnail-loading-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fr-thumbnail-loading-background {
  background-color: #161616;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  opacity: 0.8;
  position: relative;
  float: left;
}

/* this element is there as an alternative to putting the loading image on the background */
.fr-thumbnail-loading-icon {
  display: none;
}

/* error on thumbnail */
.fr-thumbnail-error .fr-thumbnail-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #202020;
}

/* Thumbnail < > */
.fr-thumbnails-side {
  float: left;
  height: 100%;
  width: 28px;
  margin: 0 5px;
  position: relative;
  overflow: hidden;
}

.fr-thumbnails-side-previous {
  margin-left: 12px;
}

.fr-thumbnails-side-next {
  margin-right: 12px;
}

.fr-thumbnails-vertical .fr-thumbnails-side {
  height: 28px;
  width: 100%;
  margin: 10px 0;
}

.fr-thumbnails-vertical .fr-thumbnails-side-previous {
  margin-top: 20px;
}

.fr-thumbnails-vertical .fr-thumbnails-side-next {
  margin-bottom: 20px;
}

.fr-thumbnails-side-button {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -14px;
  margin-left: -14px;
  width: 28px;
  height: 28px;
  cursor: pointer;
}

.fr-thumbnails-side-button-background {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  filter: alpha(opacity=80);
  opacity: 0.8;
  -moz-transition: background-color 0.2s ease-in;
  -webkit-transition: background-color 0.2s ease-in;
  transition: background-color 0.2s ease-in;
  background-color: #333;
  cursor: pointer;
  border-radius: 4px;
}

.fr-thumbnails-side-button:hover .fr-thumbnails-side-button-background {
  background-color: #3b3b3b;
}

.fr-thumbnails-side-button-disabled * {
  cursor: default;
}

.fr-thumbnails-side-button-disabled:hover .fr-thumbnails-side-button-background {
  background-color: #333;
}

.fr-thumbnails-side-button-icon {
  height: 42px;
  width: 42px;
  position: absolute;
  /*top: -7px;
  left: -7px;*/
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* vertical thumbnails */
.fr-thumbnails-vertical .fr-thumbnails-side,
.fr-thumbnails-vertical .fr-thumbnails-thumbs,
.fr-thumbnails-vertical .fr-thumbnail-frame {
  clear: both;
}

/* ui:fullclick has a dark thumbnail background */
.fr-window-ui-fullclick .fr-thumbnails {
  background: #090909;
}

/* put a stroke on the connecting caption*/
.fr-window-ui-fullclick.fr-thumbnails-enabled.fr-thumbnails-horizontal .fr-info .fr-stroke-bottom {
  display: block !important;
} /*({ box-shadow: inset 0 -1px 0 rgba(255,255,255,.1); } */
.fr-window-ui-fullclick.fr-thumbnails-enabled.fr-thumbnails-vertical .fr-info .fr-stroke-left {
  display: block !important;
}

/* thumbnail spacing  */
.fr-thumbnails-horizontal .fr-thumbnails-thumbs {
  padding: 12px 5px;
}

.fr-thumbnails-vertical .fr-thumbnails-thumbs {
  padding: 5px 12px;
}

.fr-thumbnails-measured .fr-thumbnails-thumbs {
  padding: 0 !important;
}

/* horizontal */
@media all and (min-height: 700px) {
  .fr-thumbnails-horizontal .fr-thumbnails-thumbs {
    padding: 16px 8px;
  }
  .fr-thumbnails-horizontal .fr-thumbnails-side {
    margin: 0 8px;
  }
  .fr-thumbnails-horizontal .fr-thumbnails-side-previous {
    margin-left: 16px;
  }
  .fr-thumbnails-horizontal .fr-thumbnails-side-next {
    margin-right: 16px;
  }
}
@media all and (min-height: 980px) {
  .fr-thumbnails-horizontal .fr-thumbnails-thumbs {
    padding: 20px 10px;
  }
  .fr-thumbnails-horizontal .fr-thumbnails-side {
    margin: 0 10px;
  }
  .fr-thumbnails-horizontal .fr-thumbnails-side-previous {
    margin-left: 20px;
  }
  .fr-thumbnails-horizontal .fr-thumbnails-side-next {
    margin-right: 20px;
  }
}
/* vertical */
@media all and (min-width: 1200px) {
  .fr-thumbnails-vertical .fr-thumbnails-thumbs {
    padding: 8px 16px;
  }
  .fr-thumbnails-vertical .fr-thumbnails-side {
    margin: 0 8px;
  }
  .fr-thumbnails-vertical .fr-thumbnails-side-previous {
    margin-top: 16px;
  }
  .fr-thumbnails-vertical .fr-thumbnails-side-next {
    margin-bottom: 16px;
  }
}
@media all and (min-width: 1800px) {
  .fr-thumbnails-vertical .fr-thumbnails-thumbs {
    padding: 10px 20px;
  }
  .fr-thumbnails-vertical .fr-thumbnails-side {
    margin: 10px 0;
  }
  .fr-thumbnails-vertical .fr-thumbnails-side-previous {
    margin-top: 20px;
  }
  .fr-thumbnails-vertical .fr-thumbnails-side-next {
    margin-bottom: 20px;
  }
}
/* hide thumbnails on smaller screens
   the js always hides them on touch based devices
*/
@media all and (max-width: 500px) and (orientation: portrait), all and (orientation: landscape) and (max-height: 500px) {
  .fr-thumbnails-horizontal .fr-thumbnails {
    display: none !important;
  }
}
@media all and (max-width: 700px) and (orientation: portrait), all and (orientation: landscape) and (max-height: 414px) {
  .fr-thumbnails-vertical .fr-thumbnails {
    display: none !important;
  }
}
/* force fullClick: true
   and force overflow: false */
@media all and (max-width: 500px) and (orientation: portrait), all and (orientation: landscape) and (max-height: 414px) {
  .fr-page {
    min-width: 100%;
  } /* fullclick */
  .fr-page {
    min-height: 100%;
  } /* overflow: false */
}
/* switch between ui modes
   we force everything not in the current UI mode to hide
*/
.fr-window-ui-fullclick .fr-side-next-outside,
.fr-window-ui-fullclick .fr-side-previous-outside,
.fr-window-ui-fullclick .fr-close-outside,
.fr-window-ui-fullclick .fr-content .fr-side-next,
.fr-window-ui-fullclick .fr-content .fr-side-previous,
.fr-window-ui-fullclick .fr-content .fr-close,
.fr-window-ui-fullclick .fr-content .fr-info,
.fr-window-ui-outside .fr-side-next-fullclick,
.fr-window-ui-outside .fr-side-previous-fullclick,
.fr-window-ui-outside .fr-close-fullclick,
.fr-window-ui-outside .fr-content .fr-side-next,
.fr-window-ui-outside .fr-content .fr-side-previous,
.fr-window-ui-outside .fr-content .fr-close,
.fr-window-ui-outside .fr-content .fr-info,
.fr-window-ui-inside .fr-page > .fr-info,
.fr-window-ui-inside .fr-side-next-fullclick,
.fr-window-ui-inside .fr-side-previous-fullclick,
.fr-window-ui-inside .fr-close-fullclick,
.fr-window-ui-inside .fr-side-next-outside,
.fr-window-ui-inside .fr-side-previous-outside,
.fr-window-ui-inside .fr-close-outside {
  display: none !important;
}

/* some ui elements can be toggled on mousemove.
   filter:alpha(opacity) is bugged so we use display in oldIE
*/
.fr-toggle-ui {
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.fr-visible-fullclick-ui .fr-box > .fr-toggle-ui,
.fr-visible-inside-ui .fr-ui-inside .fr-toggle-ui {
  opacity: 1;
}

.fr-hidden-fullclick-ui .fr-box > .fr-toggle-ui,
.fr-hidden-inside-ui .fr-ui-inside .fr-toggle-ui {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.fr-ltIE9.fr-hidden-fullclick-ui .fr-box > .fr-toggle-ui,
.fr-ltIE9.fr-hidden-inside-ui .fr-ui-inside .fr-toggle-ui {
  display: none;
}

/* Spinner */
.fr-spinner {
  position: fixed;
  width: 52px;
  height: 52px;
  background: #101010;
  background: rgba(16, 16, 16, 0.85);
  border-radius: 5px;
}

.fr-spinner div {
  position: absolute;
  top: 0;
  left: 0;
  height: 64%;
  width: 64%;
  margin-left: 18%;
  margin-top: 18%;
  opacity: 1;
  -webkit-animation: fresco-12 1.2s infinite ease-in-out;
  animation: fresco-12 1.2s infinite ease-in-out;
}

.fr-spinner div:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 8px;
  margin-left: -1px;
  background: #fff;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0); /* fixes rendering in Firefox */
}

.fr-spinner div.fr-spin-1 {
  -ms-transform: rotate(30deg);
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.fr-spinner div.fr-spin-2 {
  -ms-transform: rotate(60deg);
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.fr-spinner div.fr-spin-3 {
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.fr-spinner div.fr-spin-4 {
  -ms-transform: rotate(120deg);
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg);
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

.fr-spinner div.fr-spin-5 {
  -ms-transform: rotate(150deg);
  -webkit-transform: rotate(150deg);
  transform: rotate(150deg);
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}

.fr-spinner div.fr-spin-6 {
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}

.fr-spinner div.fr-spin-6 {
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}

.fr-spinner div.fr-spin-7 {
  -ms-transform: rotate(210deg);
  -webkit-transform: rotate(210deg);
  transform: rotate(210deg);
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

.fr-spinner div.fr-spin-8 {
  -ms-transform: rotate(240deg);
  -webkit-transform: rotate(240deg);
  transform: rotate(240deg);
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}

.fr-spinner div.fr-spin-9 {
  -ms-transform: rotate(270deg);
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}

.fr-spinner div.fr-spin-10 {
  -ms-transform: rotate(300deg);
  -webkit-transform: rotate(300deg);
  transform: rotate(300deg);
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}

.fr-spinner div.fr-spin-11 {
  -ms-transform: rotate(330deg);
  -webkit-transform: rotate(330deg);
  transform: rotate(330deg);
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}

.fr-spinner div.fr-spin-12 {
  -ms-transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

@-webkit-keyframes fresco-12 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fresco-12 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* Thumbnail spinner */
.fr-thumbnail-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -20px;
  width: 40px;
  height: 40px;
}

.fr-thumbnail-spinner-spin {
  position: relative;
  float: left;
  margin: 8px 0 0 8px;
  text-indent: -9999em;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  border-right: 2px solid rgba(255, 255, 255, 0.2);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  border-left: 2px solid #fff;
  -webkit-animation: fr-thumbnail-spin 1.1s infinite linear;
  animation: fr-thumbnail-spin 1.1s infinite linear;
}

.fr-thumbnail-spinner-spin,
.fr-thumbnail-spinner-spin:after {
  border-radius: 50%;
  width: 24px;
  height: 24px;
}

@-webkit-keyframes fr-thumbnail-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes fr-thumbnail-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* Error */
.fr-error {
  float: left;
  position: relative;
  background-color: #ca3434;
  width: 160px;
  height: 160px;
}

.fr-error-icon {
  position: absolute;
  width: 42px;
  height: 42px;
  top: 50%;
  left: 50%;
  margin-left: -21px;
  margin-top: -21px;
}

/* skin: 'fresco' */
/* Sprite */
.fr-window-skin-fresco .fr-side-button-icon,
.fr-window-skin-fresco .fr-close-icon,
.fr-window-skin-fresco .fr-thumbnails-side-button-icon,
.fr-window-skin-fresco .fr-error-icon {
  background-image: url("../images/fresco/sprite.svg");
}

/* fallback png sprite */
.fr-window-skin-fresco.fr-no-svg .fr-side-button-icon,
.fr-window-skin-fresco.fr-no-svg .fr-close-icon,
.fr-window-skin-fresco.fr-no-svg .fr-thumbnails-side-button-icon,
.fr-window-skin-fresco .fr-error-icon {
  background-image: url("../images/fresco/sprite.png");
}

.fr-window-skin-fresco .fr-error-icon {
  background-position: -160px -126px;
}

.fr-window-skin-fresco .fr-content-background {
  background: #101010;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}

.fr-window-skin-fresco.fr-window-ui-fullclick .fr-content-background {
  box-shadow: none;
}

/* thumbnail shadow */
.fr-window-skin-fresco .fr-thumbnail-wrapper {
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

.fr-window-skin-fresco .fr-thumbnail-active .fr-thumbnail-wrapper {
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
}

/* < > */
.fr-window-skin-fresco .fr-side-button-background {
  background-color: transparent;
}

.fr-window-skin-fresco .fr-side-previous .fr-side-button-icon {
  background-position: -13px -14px;
}

.fr-window-skin-fresco .fr-side-next .fr-side-button-icon {
  background-position: -93px -14px;
}

.fr-window-skin-fresco .fr-side-previous:hover .fr-side-button-icon {
  background-position: -13px -114px;
}

.fr-window-skin-fresco .fr-side-next:hover .fr-side-button-icon {
  background-position: -93px -114px;
}

/* transition (png) */
.fr-window-skin-fresco.fr-no-svg .fr-hovering-previous .fr-side-previous .fr-side-button-icon,
.fr-window-skin-fresco.fr-no-svg.fr-mobile-touch .fr-side-previous .fr-side-button-icon {
  background-position: -13px -114px;
}

.fr-window-skin-fresco.fr-no-svg .fr-hovering-next .fr-side-next .fr-side-button-icon,
.fr-window-skin-fresco.fr-no-svg.fr-mobile-touch .fr-side-next .fr-side-button-icon {
  background-position: -93px -114px;
}

/* disabled state (png) */
.fr-window-skin-fresco.fr-no-svg .fr-side-previous.fr-side-disabled .fr-side-button-icon,
.fr-window-skin-fresco.fr-no-svg .fr-hovering-previous .fr-side-previous.fr-side-disabled .fr-side-button-icon,
.fr-window-skin-fresco.fr-no-svg .fr-side-previous.fr-side-disabled:hover .fr-side-button-icon {
  background-position: -13px -214px;
}

.fr-window-skin-fresco.fr-no-svg .fr-side-next.fr-side-disabled .fr-side-button-icon,
.fr-window-skin-fresco.fr-no-svg .fr-hovering-next .fr-side-next.fr-side-disabled .fr-side-button-icon,
.fr-window-skin-fresco.fr-no-svg .fr-side-next.fr-side-disabled:hover .fr-side-button-icon {
  background-position: -93px -214px;
}

/* transition (svg) */
.fr-window-skin-fresco.fr-svg .fr-side-previous .fr-side-button-icon {
  background-position: -13px -114px;
}

.fr-window-skin-fresco.fr-svg .fr-side-next .fr-side-button-icon {
  background-position: -93px -114px;
}

.fr-window-skin-fresco.fr-svg .fr-side-button-icon {
  opacity: 0.5;
}

.fr-window-skin-fresco.fr-svg .fr-side:hover .fr-side-button-icon,
.fr-window-skin-fresco.fr-svg .fr-hovering-previous .fr-side-previous .fr-side-button-icon,
.fr-window-skin-fresco.fr-svg .fr-hovering-next .fr-side-next .fr-side-button-icon {
  opacity: 1;
}

.fr-window-skin-fresco.fr-svg.fr-mobile-touch .fr-side .fr-side-button-icon {
  opacity: 0.8;
} /* touch always active but at lower opacity */
/* disabled (svg) */
.fr-window-skin-fresco.fr-svg .fr-side-disabled .fr-side-button-icon,
.fr-window-skin-fresco.fr-svg .fr-hovering-previous .fr-side-disabled .fr-side-button-icon,
.fr-window-skin-fresco.fr-svg .fr-hovering-next .fr-side-disabled .fr-side-button-icon,
.fr-window-skin-fresco.fr-svg .fr-side-disabled:hover .fr-side-button-icon,
.fr-window-skin-fresco.fr-svg.fr-mobile-touch .fr-side-disabled .fr-side-button-icon {
  opacity: 0.2;
} /* TODO: make sure this works */
/* hide for ui:inside/fullclick, only for the image type */
.fr-window-skin-fresco.fr-window-ui-inside .fr-type-image .fr-side-disabled .fr-side-button-icon,
.fr-window-skin-fresco.fr-window-ui-fullclick.fr-showing-type-image .fr-side-disabled .fr-side-button-icon {
  background-image: none;
}

/* < > responsive */
@media all and (max-width: 500px) and (orientation: portrait), all and (orientation: landscape) and (max-height: 414px) {
  .fr-window-skin-fresco .fr-side-previous .fr-side-button-icon {
    background-position: 0px -300px;
  }
  .fr-window-skin-fresco .fr-side-next .fr-side-button-icon {
    background-position: -48px -300px;
  }
  .fr-window-skin-fresco .fr-side-previous:hover .fr-side-button-icon {
    background-position: 0px -360px;
  }
  .fr-window-skin-fresco .fr-side-next:hover .fr-side-button-icon {
    background-position: -48px -360px;
  }
  /* transition (png) */
  .fr-window-skin-fresco.fr-no-svg .fr-hovering-previous .fr-side-previous .fr-side-button-icon,
  .fr-window-skin-fresco.fr-no-svg.fr-mobile-touch .fr-side-previous .fr-side-button-icon {
    background-position: 0px -360px;
  }
  .fr-window-skin-fresco.fr-no-svg .fr-hovering-next .fr-side-next .fr-side-button-icon,
  .fr-window-skin-fresco.fr-no-svg.fr-mobile-touch .fr-side-next .fr-side-button-icon {
    background-position: -48px -360px;
  }
  /* transition (svg) */
  .fr-window-skin-fresco.fr-svg .fr-side-previous .fr-side-button-icon {
    background-position: 0px -360px;
  }
  .fr-window-skin-fresco.fr-svg .fr-side-next .fr-side-button-icon {
    background-position: -48px -360px;
  }
  /* disabled state (png) */
  .fr-window-skin-fresco.fr-no-svg .fr-side-previous.fr-side-disabled .fr-side-button-icon,
  .fr-window-skin-fresco.fr-no-svg .fr-hovering-previous .fr-side-previous.fr-side-disabled .fr-side-button-icon,
  .fr-window-skin-fresco.fr-no-svg .fr-side-previous.fr-side-disabled:hover .fr-side-button-icon {
    background-position: 0px -420px;
  }
  .fr-window-skin-fresco.fr-no-svg .fr-side-next.fr-side-disabled .fr-side-button-icon,
  .fr-window-skin-fresco.fr-no-svg .fr-hovering-next .fr-side-next.fr-side-disabled .fr-side-button-icon,
  .fr-window-skin-fresco.fr-no-svg .fr-side-next.fr-side-disabled:hover .fr-side-button-icon {
    background-position: -48px -420px;
  }
}
/* X */
/* colors */
.fr-window-skin-fresco.fr-window-ui-outside .fr-close-background {
  background-color: #0093d1;
}

.fr-window-skin-fresco.fr-window-ui-outside .fr-close:hover .fr-close-background {
  background-color: #0093d1;
}

.fr-window-skin-fresco.fr-window-ui-inside .fr-close-background,
.fr-window-skin-fresco.fr-window-ui-fullclick .fr-close-background {
  background-color: #131313;
  filter: alpha(opacity=80);
  opacity: 0.8;
}

.fr-window-skin-fresco.fr-window-ui-inside .fr-close:hover .fr-close-background,
.fr-window-skin-fresco.fr-window-ui-fullclick .fr-close:hover .fr-close-background {
  background-color: #191919;
}

/* - image */
.fr-window-skin-fresco .fr-close .fr-close-icon {
  background-position: -168px -8px;
}

.fr-window-skin-fresco .fr-close:hover .fr-close-icon {
  background-position: -210px -8px;
}

/* - transition */
.fr-window-skin-fresco.fr-svg .fr-close .fr-close-icon {
  background-position: -210px -8px;
  opacity: 0.8;
}

.fr-window-skin-fresco .fr-close:hover .fr-close-icon {
  opacity: 1;
}

/* iOS 8.4.1 bug: when opacity changes it'll require 2 taps
   force a single opacity to fix this
*/
.fr-window-skin-fresco.fr-svg.fr-mobile-touch .fr-close .fr-close-icon,
.fr-window-skin-fresco.fr-mobile-touch .fr-close:hover .fr-close-icon {
  opacity: 1;
}

/* Thumbnails */
.fr-window-skin-fresco .fr-thumbnail-wrapper {
  border-color: transparent;
  border-style: solid;
  border-width: 0;
}

.fr-window-skin-fresco .fr-thumbnail-wrapper {
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

.fr-window-skin-fresco .fr-thumbnail-active .fr-thumbnail-wrapper {
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
}

.fr-window-skin-fresco .fr-thumbnail-wrapper {
  box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.3);
}

.fr-window-skin-fresco .fr-thumbnail-overlay-border {
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0.08); /* should remain rgba */
}

/* no inner border on active thumbnail */
.fr-window-skin-fresco .fr-thumbnail-active .fr-thumbnail-overlay-border,
.fr-window-skin-fresco .fr-thumbnail-active:hover .fr-thumbnail-overlay-border {
  border: 0px;
}

/* Thumbnails < > */
.fr-window-skin-fresco .fr-thumbnails-side-previous .fr-thumbnails-side-button-icon {
  background-position: -167px -49px;
}

.fr-window-skin-fresco .fr-thumbnails-side-previous:hover .fr-thumbnails-side-button-icon {
  background-position: -209px -49px;
}

.fr-window-skin-fresco .fr-thumbnails-side-next .fr-thumbnails-side-button-icon {
  background-position: -167px -91px;
}

.fr-window-skin-fresco .fr-thumbnails-side-next:hover .fr-thumbnails-side-button-icon {
  background-position: -209px -91px;
}

/* vertical ^ (up/down) adjustments */
.fr-window-skin-fresco.fr-thumbnails-vertical .fr-thumbnails-side-previous .fr-thumbnails-side-button-icon {
  background-position: -293px -49px;
}

.fr-window-skin-fresco.fr-thumbnails-vertical .fr-thumbnails-side-previous:hover .fr-thumbnails-side-button-icon {
  background-position: -335px -49px;
}

.fr-window-skin-fresco.fr-thumbnails-vertical .fr-thumbnails-side-next .fr-thumbnails-side-button-icon {
  background-position: -293px -91px;
}

.fr-window-skin-fresco.fr-thumbnails-vertical .fr-thumbnails-side-next:hover .fr-thumbnails-side-button-icon {
  background-position: -335px -91px;
}

/* Thumbnails < > transition */
.fr-window-skin-fresco.fr-svg .fr-thumbnails-side .fr-thumbnails-side-button-icon {
  -moz-transition: opacity 0.2s ease-in;
  -webkit-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
  opacity: 0.8;
}

.fr-window-skin-fresco.fr-svg .fr-thumbnails-side-previous .fr-thumbnails-side-button-icon,
.fr-window-skin-fresco.fr-svg .fr-thumbnails-side-previous .fr-thumbnails-side-button-disabled {
  background-position: -167px -49px;
}

.fr-window-skin-fresco.fr-svg .fr-thumbnails-side-next .fr-thumbnails-side-button-icon,
.fr-window-skin-fresco.fr-svg .fr-thumbnails-side-next .fr-thumbnails-side-button-disabled {
  background-position: -209px -91px;
}

.fr-window-skin-fresco.fr-svg .fr-thumbnails-side:hover .fr-thumbnails-side-button-icon {
  opacity: 1;
}

/* vertical ^ (up/down) adjustments */
.fr-window-skin-fresco.fr-svg.fr-thumbnails-vertical .fr-thumbnails-side-previous .fr-thumbnails-side-button-icon,
.fr-window-skin-fresco.fr-svg.fr-thumbnails-vertical .fr-thumbnails-side-previous .fr-thumbnails-side-button-disabled {
  background-position: -293px -49px;
}

.fr-window-skin-fresco.fr-svg.fr-thumbnails-vertical .fr-thumbnails-side-next .fr-thumbnails-side-button-icon,
.fr-window-skin-fresco.fr-svg.fr-thumbnails-vertical .fr-thumbnails-side-next .fr-thumbnails-side-button-disabled {
  background-position: -335px -91px;
}

/* lower opacity on disabled states */
.fr-window-skin-fresco.fr-svg .fr-thumbnails-side .fr-thumbnails-side-button-disabled,
.fr-window-skin-fresco.fr-svg .fr-thumbnails-side:hover .fr-thumbnails-side-button-disabled {
  opacity: 0.5;
}

/* lower opacity IE < 9 using images */
.fr-window-skin-fresco.fr-no-svg .fr-thumbnails-side-previous .fr-thumbnails-side-button-disabled .fr-thumbnails-side-button-icon,
.fr-window-skin-fresco.fr-no-svg .fr-thumbnails-side-previous:hover .fr-thumbnails-side-button-disabled .fr-thumbnails-side-button-icon {
  background-position: -251px -49px;
}

.fr-window-skin-fresco.fr-no-svg .fr-thumbnails-side-next .fr-thumbnails-side-button-disabled .fr-thumbnails-side-button-icon,
.fr-window-skin-fresco.fr-no-svg .fr-thumbnails-side-next:hover .fr-thumbnails-side-button-disabled .fr-thumbnails-side-button-icon {
  background-position: -251px -91px;
}

.fr-window-skin-fresco.fr-no-svg .fr-thumbnails-side .fr-thumbnails-side-button-disabled .fr-thumbnails-side-button-background,
.fr-window-skin-fresco.fr-no-svg .fr-thumbnails-side:hover .fr-thumbnails-side-button-disabled .fr-thumbnails-side-button-background {
  filter: alpha(opacity=50);
}

/* vertical ^ (up/down) adjustments */
.fr-window-skin-fresco.fr-no-svg.fr-thumbnails-vertical .fr-thumbnails-side-previous .fr-thumbnails-side-button-disabled .fr-thumbnails-side-button-icon,
.fr-window-skin-fresco.fr-no-svg.fr-thumbnails-vertical .fr-thumbnails-side-previous:hover .fr-thumbnails-side-button-disabled .fr-thumbnails-side-button-icon {
  background-position: -377px -49px;
}

.fr-window-skin-fresco.fr-no-svg.fr-thumbnails-vertical .fr-thumbnails-side-next .fr-thumbnails-side-button-disabled .fr-thumbnails-side-button-icon,
.fr-window-skin-fresco.fr-no-svg.fr-thumbnails-vertical .fr-thumbnails-side-next:hover .fr-thumbnails-side-button-disabled .fr-thumbnails-side-button-icon {
  background-position: -377px -91px;
}

html {
  font-size: 62.5%;
  line-height: 1.4;
}

body {
  font-family: "trade-gothic-next";
  font-weight: normal;
  color: #365c6c;
  padding: 0;
  margin: 0;
}

button {
  cursor: pointer;
}

[class$=__inner] {
  max-width: 860px;
  margin: 0 auto;
}
@media screen and (max-width: 860px) {
  [class$=__inner] {
    margin: 0 3.2rem;
  }
}
@media screen and (max-width: 480px) {
  [class$=__inner] {
    margin: 0 1.6rem;
  }
}

.header {
  position: relative;
}
.header .headerBottom {
  position: relative;
}
.header .headerTop {
  position: relative;
  background: #FFF;
  padding-top: 2.4rem;
  z-index: 2;
  transition: padding ease-out 0.25s;
}
.header .headerTop__inner {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 2.4rem;
  transition: all linear 0.25s;
}
.header .headerTop__title {
  display: inline;
  margin: 0;
  margin-left: 3.2rem;
  font-size: 2.4rem;
  font-weight: 200;
  color: #0093d1;
}
.header .headerTop__title a {
  color: #0093d1;
  text-decoration: none;
}
.header .headerTop__logo {
  display: flex;
  align-items: flex-end;
}
.header .intro {
  position: relative;
  overflow: hidden;
  height: auto;
  transition: height 0.25s linear;
}
.header .intro:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6.4rem;
  background: #1aa0dc;
  opacity: 0.46;
}
.header .intro__inner {
  overflow: hidden;
}
.header .logo {
  margin: 0;
  display: inline-block;
}
.header .logo img {
  display: block;
  width: 10.8rem;
  height: auto;
  transition: all linear 0.25s;
}
@media (max-width: 740px) {
  .header .logo img {
    width: 6.4rem;
    padding-bottom: 1.6rem;
  }
}
.header .serviceNav__item {
  color: #0093d1;
  font-size: 1.2rem;
  margin-left: 3.6rem;
  display: inline-block;
  text-decoration: none;
}
.header .serviceNav__item:first-child {
  margin: 0;
}
@media screen and (max-width: 640px) {
  .header .serviceNav__item {
    margin-left: 0.8rem;
  }
}
@media screen and (max-width: 480px) {
  .header .serviceNav__item[href="/"] {
    display: none;
  }
}
.header .serviceNav__item--current {
  color: #274856;
}
.header .serviceNav__item--lang {
  margin-left: 0;
  font-family: "trade-gothic-next-condensed";
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}
.header .serviceNav__item--lang--current {
  color: #365c6c;
}
.header .serviceNav__item--lang::after {
  content: " | ";
}
.header .serviceNav__item--lang:last-child::after {
  content: "";
}
.header .serviceNav__lang {
  margin-left: 3.6rem;
  display: inline-block;
}
@media (max-width: 480px) {
  .header .serviceNav__lang {
    display: block;
    text-align: right;
    margin-top: 0.4rem;
  }
}
.header .socialNav {
  position: absolute;
  right: -25.6rem;
}
@media screen and (max-width: 1384px) {
  .header .socialNav {
    right: 0;
    bottom: 0;
  }
}
.header .socialNav svg {
  width: 3.2rem;
  max-width: none;
  display: inline-block;
  margin-left: 0.4rem;
  box-sizing: border-box;
}
.header .socialNav__twitter {
  padding: 0.4rem;
}
.header .intro {
  text-align: center;
  position: relative;
  /*
          @media screen and (max-width: $breakPointM) {
              padding: 4.8rem 0;
          }  
  */
}
.header .intro__inner {
  padding: 9.6rem 0;
}
.header .intro--invert .intro__text, .header .intro--invert .intro__headline {
  color: #FFF;
}
.header .intro--invert .intro__headline:after {
  background: #FFF;
}
.header .intro--invert:after {
  display: none;
}
.header .intro__headline {
  font-size: 5.4rem;
  color: #0093d1;
  margin: 0;
  padding: 0;
  font-weight: 200;
}
.header .intro__headline:after {
  content: " ";
  width: 18rem;
  height: 2px;
  background: #0093d1;
  margin: 0 auto;
  display: block;
  margin-top: 3.6rem;
  margin-bottom: 3.6rem;
}
.header .intro__text {
  font-size: 2.4rem;
  color: #365c6c;
  font-weight: 200;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 480px) {
  .header .intro__text br {
    display: none;
  }
}

.mainNav, .mainNavDuplicate {
  background: #1aa0dc;
  padding: 4rem 0;
  transition: padding 0.1s linear;
  position: relative;
}
.mainNav__inner, .mainNavDuplicate__inner {
  display: flex;
}
@media screen and (max-width: 740px) {
  .mainNav__inner, .mainNavDuplicate__inner {
    flex-wrap: wrap;
  }
}
.mainNav__item, .mainNavDuplicate__item {
  color: #FFF;
  display: block;
  font-size: 1.8rem;
  padding: 0.7rem 1.6rem 0.9rem;
  border: 1.5px solid #FFF;
  border-radius: 0.8rem;
  text-decoration: none;
  font-weight: 200;
  width: 100%;
  text-align: center;
  margin: 0.8rem;
  box-sizing: border-box;
  white-space: nowrap;
}
@media screen and (max-width: 860px) {
  .mainNav__item, .mainNavDuplicate__item {
    font-size: 1.6rem;
  }
}
.mainNav__item:first-child, .mainNavDuplicate__item:first-child {
  margin-left: 0;
}
.mainNav__item:last-child, .mainNavDuplicate__item:last-child {
  margin-right: 0;
}
.mainNav__item:hover, .mainNavDuplicate__item:hover {
  background: rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 740px) {
  .mainNav__item, .mainNavDuplicate__item {
    width: 47.5%;
    margin: 0.8rem 2.5%;
  }
  .mainNav__item:first-child, .mainNav__item:nth-child(3), .mainNavDuplicate__item:first-child, .mainNavDuplicate__item:nth-child(3) {
    margin-left: 0;
  }
  .mainNav__item:last-child, .mainNav__item:nth-child(2), .mainNavDuplicate__item:last-child, .mainNavDuplicate__item:nth-child(2) {
    margin-right: 0;
  }
}
@media screen and (max-width: 360px) {
  .mainNav__item, .mainNavDuplicate__item {
    width: 100%;
    margin: 0.8rem 0;
  }
}
.mainNav__item--current, .mainNav__item:focus, .mainNavDuplicate__item--current, .mainNavDuplicate__item:focus {
  background: rgba(255, 255, 255, 0.4);
}

.headerBottom__background {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 13.6rem;
  background-position: center center;
}
@media screen and (max-width: 740px) {
  .headerBottom__background {
    bottom: 19.4rem;
  }
}

.mainNavDuplicate {
  display: none;
  transition: padding ease-out 0.25s;
}

.header--fixNav .headerTop {
  transition: all linear 0.25s;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10;
}
.header--shrinkNav .headerTop {
  padding-top: 1.6rem;
}
.header--shrinkNav .headerTop__inner {
  margin-bottom: 1.6rem;
}
.header--shrinkNav .headerTop .logo img {
  width: 6.4rem;
}
.header--showDuplicateMenu .mainNavDuplicate {
  display: block;
}
.header--showDuplicateMenu .mainNav {
  visibility: hidden;
}
.header--shrinkDuplicateMenu .mainNavDuplicate {
  padding: 0.4rem 0;
}
.header--small .headerTop {
  padding-top: 1.6rem;
}
.header--small .headerTop__inner {
  margin-bottom: 1.6rem;
}
.header--small .headerTop .logo img {
  width: 6.4rem;
}
.header--small .mainNav {
  padding: 0.4rem 0;
}

.footer {
  padding-bottom: 9.6rem;
  margin-top: 3.2rem;
}
.footer .serviceNav {
  text-align: center;
}
.footer .serviceNav__item {
  color: #0093d1;
  font-size: 1.2rem;
  margin-left: 3.6rem;
  display: inline-block;
  text-decoration: none;
}
.footer .serviceNav__item:first-child {
  margin: 0;
}
@media screen and (max-width: 640px) {
  .footer .serviceNav__item {
    margin-left: 0.8rem;
  }
}
.footer .serviceNav__item--current {
  color: #274856;
}

.layoutCatalog .mainNav, .layoutProduct .mainNav, .layoutWatchList .mainNav {
  display: none;
}

.catalogSearch {
  background: #1aa0dc;
  padding: 1.2rem 0;
  text-align: right;
}
.catalogSearch__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.catalogSearch__back {
  display: inline-block;
  color: #FFF;
  text-decoration: none;
  font-size: 1.6rem;
  white-space: nowrap;
  margin-right: 1.6rem;
  line-height: 1.8rem;
  text-transform: lowercase;
}
.catalogSearch__back span {
  display: inline-block;
  font-size: 3.5rem;
  border: 0.1rem solid #FFF;
  border-radius: 0.4rem;
  line-height: 0.5rem;
  width: 1.8rem;
  height: 1.8rem;
  overflow: hidden;
  position: relative;
  bottom: -0.3rem;
  box-sizing: border-box;
  margin-right: 0.4rem;
  font-weight: 200;
  text-align: center;
}
.catalogSearch__back:hover span, .catalogSearch__back:focus span {
  background: rgba(255, 255, 255, 0.25);
}
.catalogSearch__wrap {
  position: relative;
}
.catalogSearch__wrap::after {
  content: "";
  background: url("data:image/svg+xml;charset=utf8,%3Csvg id='Ebene_1' data-name='Ebene 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25.5 25.5'%3E%3Ctitle%3Esearch%3C/title%3E%3Ccircle cx='10.57' cy='10.57' r='9.06' style='fill:none;stroke:%23fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:3px'/%3E%3Cline x1='16.97' y1='16.97' x2='24' y2='24' style='fill:none;stroke:%23fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:3px'/%3E%3C/svg%3E");
  position: absolute;
  right: 1.2rem;
  top: 50%;
  height: 1.4rem;
  width: 1.4rem;
  margin-top: -0.7rem;
  background-size: contain;
  box-sizing: border-box;
}
.catalogSearch__wrap--filled .catalogSearch__clear {
  display: block;
}
.catalogSearch__wrap--filled::after {
  display: none;
}
.catalogSearch__headline {
  font-size: 2rem;
  padding: 0.8rem 2.4rem;
  border: 2px solid #FFF;
  border-radius: 0.8rem;
  margin: 0;
  color: #FFF;
  font-weight: normal;
  box-sizing: border-box;
}
.catalogSearch__clear {
  display: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: absolute;
  right: 1rem;
  top: 50%;
  height: 2.4rem;
  width: 2.4rem;
  margin-top: -1.6rem;
  background-size: contain;
  box-sizing: border-box;
  background: transparent;
  border: none;
  color: #FFF;
  font-size: 2.4rem;
  line-height: 1;
  font-family: "trade-gothic-next";
  font-weight: 200;
}
.catalogSearch__clear:focus {
  outline: none;
  text-decoration: underline;
}
.catalogSearch__input, .catalogSearch__select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  color: #FFF;
  border: 2px solid #FFF;
  font-family: "trade-gothic-next";
  font-size: 1.4rem;
  padding: 0.8rem 0.8rem 0.9rem;
  border: 1.5px solid #FFF;
  border-radius: 0.8rem;
  font-weight: 200;
  min-width: 32rem;
  line-height: 1.8rem;
  text-align: right;
  padding-right: 3.2rem;
  box-sizing: border-box;
}
@media screen and (max-width: 480px) {
  .catalogSearch__input, .catalogSearch__select {
    min-width: 75%;
  }
}
.catalogSearch__input:focus, .catalogSearch__select:focus {
  background-color: rgba(255, 255, 255, 0.25);
  outline: none;
}
.catalogSearch__input::-webkit-input-placeholder, .catalogSearch__select::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #FFF;
  text-align: right;
}
.catalogSearch__input::-moz-placeholder, .catalogSearch__select::-moz-placeholder { /* Firefox 19+ */
  color: #FFF;
  text-align: right;
}
.catalogSearch__input:-ms-input-placeholder, .catalogSearch__select:-ms-input-placeholder { /* IE 10+ */
  color: #FFF;
  text-align: right;
}
.catalogSearch__input:-moz-placeholder, .catalogSearch__select:-moz-placeholder { /* Firefox 18- */
  color: #FFF;
  text-align: right;
}
.catalogSearch__select {
  width: auto;
  min-width: 0;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg id='Ebene_1' data-name='Ebene 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2.15 1.7'%3E%3Ctitle%3EUnbenannt-5%3C/title%3E%3Cpolyline points='0 0 2.15 0 1.07 1.7 0 0' style='fill:%23ffffff'/%3E%3C/svg%3E");
  background-size: 1rem;
  background-repeat: no-repeat;
  background-position: 95% 1.3rem;
}

.catalog__inner {
  display: grid;
  grid-template-areas: "clear topNav" "filter products" "filter bottomNav";
  grid-gap: 3.2rem;
  grid-template-columns: minmax(16rem, 22%) 1fr;
  padding-bottom: 5.4rem;
}
@media screen and (max-width: 480px) {
  .catalog__inner {
    grid-template-areas: "clear" "filter" "topNav" "products" "bottomNav";
    grid-template-columns: 1fr;
  }
}
.catalog__clear {
  grid-area: clear;
  padding-top: 2.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.catalog__clear a {
  font-size: 1.4rem;
  color: #0093d1;
  text-decoration: none;
  border-bottom: 1px #0093d1 solid;
}
.catalog__export {
  font-size: 1.4rem;
  color: #0093d1;
  text-decoration: none;
  border-bottom: 1px #0093d1 solid;
}
.catalog__nav {
  grid-area: topNav;
}
.catalog__filter {
  grid-area: filter;
}
.catalog__footer {
  grid-area: bottomNav;
}
.catalog__products {
  grid-area: products;
  display: grid;
  grid-gap: 1.6rem;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: min-content;
}
@media screen and (max-width: 860px) {
  .catalog__products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .catalog__products {
    grid-template-columns: 1fr;
  }
}
.catalog__products--list, .catalog__products--empty {
  display: block;
}
.catalog__products--empty {
  border-top: #becdd5 solid 1px;
  padding-top: 1.6rem;
}
.catalog__products--empty .catalog__empty {
  font-size: 1.6rem;
  color: #365c6c;
  font-weight: 200;
  line-height: 1.8em;
  margin: 0 0 0.9em;
  text-align: center;
}
.catalog__products--empty .catalog__empty a {
  color: #0093d1;
  text-decoration: none;
  border-bottom: 1px solid #0093d1;
}
.catalog__filter h3 {
  font-family: "trade-gothic-next-condensed";
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.8rem;
  color: #5a899e;
  margin: 0 0 0.8rem;
}
.catalog__filter ul {
  list-style: none;
  margin: 0 0 3.2rem;
  padding: 0;
}
.catalog__filter ul ul {
  margin: 0.4rem 0 1.6rem;
}
.catalog__filter li {
  font-size: 1.4rem;
  font-weight: 200;
  color: #285B6F;
  position: relative;
  padding-left: 2.4rem;
  margin-bottom: 0.4rem;
}
.catalog__filter li:hover {
  color: #0093d1;
}
.catalog__filter .catalog__type > li > label > input:checked + span, .catalog__filter .catalog__level > li > label > input:checked + span {
  font-family: "trade-gothic-next-condensed";
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: #5a899e;
  font-weight: bold;
}
@media screen and (max-width: 480px) {
  .catalog__filter .catalog__type, .catalog__filter .catalog__level {
    columns: 2;
    column-gap: 1.6rem;
  }
}
.catalog__filter input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1px solid #1d1d1b;
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  background: #FFF;
  left: 0;
  top: -0.1rem;
  border-radius: 0.4rem;
}
.catalog__filter input[type=checkbox]:focus {
  outline: none;
}
.catalog__filter input[type=checkbox]:checked {
  background: #c2d4df;
}
.catalog__filter input[type=checkbox]:checked + span {
  font-weight: normal;
}

.productList {
  position: relative;
  border: #becdd5 solid 1px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0.8rem 0.8rem 4.8rem;
  cursor: pointer;
}
.productList__link {
  text-decoration: none;
  order: 1;
  display: block;
}
.productList__description {
  display: none;
}
.productList h3 {
  order: 2;
  font-weight: normal;
  color: #0093d1;
  font-weight: 200;
  font-size: 1.6rem;
  margin: 1.6rem 0 0;
}
.productList h3 span {
  color: #365c6c;
  font-weight: 200;
  display: block;
  font-size: 1.2rem;
}
.productList__img {
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 0;
  padding-bottom: 100%;
  position: relative;
}
.productList img {
  max-width: 100%;
  display: block;
}
.productList__level {
  position: absolute;
  right: 0.8rem;
  top: 0.8rem;
  width: 2.4rem;
  z-index: 1;
}
.productList__count {
  display: none;
  background-size: 100% 100%;
  background: url(../images/count.svg) no-repeat;
  box-sizing: border-box;
  font-size: 1.4rem;
  font-weight: 200;
  font-weight: normal;
  height: 2.4rem;
  line-height: 2.4rem;
  padding-left: 0.3rem;
  padding-top: 0.05rem;
  text-align: center;
  width: 2.4rem;
}
.productList__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  align-items: flex-end;
  font-weight: 200;
}
.productList__footer svg {
  width: 1.6rem;
}
.productList__footer select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #FFF;
  font-size: 1.2rem;
  padding: 0.3rem 0.8rem 0.5rem;
  padding-right: 1.8rem;
  border-radius: 0.4rem;
  color: #3a5c69;
  border: 1px solid #3a5c69;
  font-family: "trade-gothic-next";
  height: 2.6rem;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg id='Ebene_1' data-name='Ebene 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2.15 1.7'%3E%3Ctitle%3EUnbenannt-5%3C/title%3E%3Cpolyline points='0 0 2.15 0 1.07 1.7 0 0' style='fill:%23375b6a'/%3E%3C/svg%3E");
  background-size: 0.8rem;
  background-repeat: no-repeat;
  background-position: 92% 0.9rem;
  padding: 0rem 0.4rem 0.2rem;
  padding-right: 1rem;
  max-width: 10rem;
  height: 2rem;
  background-position: 91% 0.7rem;
}

.catalog__products--list .productList {
  padding: 0;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  padding-left: 21.2rem;
  min-height: 19.6rem;
  border: none;
  border-bottom: #becdd5 solid 1px;
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.catalog__products--list .productList:first-child {
  border-top: #becdd5 solid 1px;
}
.catalog__products--list .productList__link {
  order: 0;
}
.catalog__products--list .productList__link .productList__img {
  position: absolute;
  left: 0;
  top: 2.4rem;
  height: 18rem;
  width: 18rem;
  padding: 0;
  background-position: top center;
  margin: 0;
}
.catalog__products--list .productList__count {
  position: absolute;
  left: 1.2rem;
  top: 4rem;
}
.catalog__products--list .productList__level {
  width: 3.2rem;
  top: 1.6rem;
}
.catalog__products--list .productList__description {
  display: block;
  font-size: 1.6rem;
  color: #365c6c;
  font-weight: 200;
  line-height: 1.8em;
  margin: 0 0 0.9em;
  font-size: 1.4rem;
  line-height: 1.4;
  margin: 0.8rem 0 0.8rem;
}
.catalog__products--list .productList__description a {
  color: #0093d1;
  text-decoration: none;
  border-bottom: 1px solid #0093d1;
}
.catalog__products--list .productList h3 {
  margin: 0;
  font-size: 2.1rem;
  padding-right: 4.8rem;
}
.catalog__products--list .productList h3 span {
  font-size: 1.6rem;
}
.catalog__products--list .productList__footer {
  position: static;
}
.catalog__products--list .productList__footer svg {
  width: 2.4rem;
}

.catalogNav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  font-weight: 200;
  padding: 2.4rem 0 0;
  font-size: 1.4rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.catalogNav__pagination a {
  color: #85abb8;
  text-decoration: none;
  display: inline-block;
  padding: 0.4rem;
}
.catalogNav__pagination .MarkupPagerNavOn span {
  font-weight: bold;
  color: #0093d1;
}
.catalogNav.catalog__footer {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
}
.catalogNav__sort {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}
.catalogNav__sortSelect {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #FFF;
  font-size: 1.2rem;
  padding: 0.3rem 0.8rem 0.5rem;
  padding-right: 1.8rem;
  border-radius: 0.4rem;
  color: #3a5c69;
  border: 1px solid #3a5c69;
  font-family: "trade-gothic-next";
  height: 2.6rem;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg id='Ebene_1' data-name='Ebene 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2.15 1.7'%3E%3Ctitle%3EUnbenannt-5%3C/title%3E%3Cpolyline points='0 0 2.15 0 1.07 1.7 0 0' style='fill:%23375b6a'/%3E%3C/svg%3E");
  background-size: 0.8rem;
  background-repeat: no-repeat;
  background-position: 92% 0.9rem;
  background: none;
  padding-right: 0.8rem;
  margin-right: 0.4rem;
}
.catalogNav__sortDirection {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #FFF;
  font-size: 1.2rem;
  padding: 0.3rem 0.8rem 0.5rem;
  padding-right: 1.8rem;
  border-radius: 0.4rem;
  color: #3a5c69;
  border: 1px solid #3a5c69;
  font-family: "trade-gothic-next";
  height: 2.6rem;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg id='Ebene_1' data-name='Ebene 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2.15 1.7'%3E%3Ctitle%3EUnbenannt-5%3C/title%3E%3Cpolyline points='0 0 2.15 0 1.07 1.7 0 0' style='fill:%23375b6a'/%3E%3C/svg%3E");
  background-size: 0.8rem;
  background-repeat: no-repeat;
  background-position: 92% 0.9rem;
  height: 2.6rem;
  padding-right: 1.5rem;
  background-position: center 0.95rem;
}
.catalogNav__sortDirection--desc {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg id='Ebene_1' data-name='Ebene 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2.15 1.7'%3E%3Ctitle%3EUnbenannt-8%3C/title%3E%3Cpolyline points='2.15 1.7 0 1.7 1.08 0 2.15 1.7' style='fill:%23375b6a'/%3E%3C/svg%3E");
  background-position: center 0.8rem;
}
.catalogNav__select, .catalogNav__editListSelect {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #FFF;
  font-size: 1.2rem;
  padding: 0.3rem 0.8rem 0.5rem;
  padding-right: 1.8rem;
  border-radius: 0.4rem;
  color: #3a5c69;
  border: 1px solid #3a5c69;
  font-family: "trade-gothic-next";
  height: 2.6rem;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg id='Ebene_1' data-name='Ebene 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2.15 1.7'%3E%3Ctitle%3EUnbenannt-5%3C/title%3E%3Cpolyline points='0 0 2.15 0 1.07 1.7 0 0' style='fill:%23375b6a'/%3E%3C/svg%3E");
  background-size: 0.8rem;
  background-repeat: no-repeat;
  background-position: 92% 0.9rem;
  background: none;
  padding-right: 0.8rem;
  cursor: pointer;
}
.catalogNav__viewToggle {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding: 0;
  border: none;
  height: 2.6rem;
  width: 4.2rem;
  background-color: #FFF;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg id='Ebene_1' data-name='Ebene 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11.77 6.19'%3E%3Ctitle%3EUnbenannt-9%3C/title%3E%3Crect width='1.65' height='1.65' style='fill:%23375b6a'/%3E%3Crect y='2.29' width='1.65' height='1.65' style='fill:%23375b6a'/%3E%3Crect x='2.57' y='0.47' width='3.76' height='0.71' style='fill:%23375b6a'/%3E%3Crect x='2.57' y='2.76' width='3.76' height='0.71' style='fill:%23375b6a'/%3E%3Crect y='4.54' width='1.65' height='1.65' style='fill:%23375b6a'/%3E%3Crect x='2.57' y='5.01' width='3.76' height='0.71' style='fill:%23375b6a'/%3E%3Cpolyline points='9.62 2.14 11.77 2.14 10.69 3.83 9.62 2.14' style='fill:%23375b6a'/%3E%3C/svg%3E");
  background-size: 3.2rem;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
}
.catalogNav__viewToggle:focus, .catalogNav__viewToggle:hover {
  outline: none;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg id='Ebene_1' data-name='Ebene 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11.77 6.19'%3E%3Ctitle%3EUnbenannt-9%3C/title%3E%3Crect width='1.65' height='1.65' style='fill:%230093d1'/%3E%3Crect y='2.29' width='1.65' height='1.65' style='fill:%230093d1'/%3E%3Crect x='2.57' y='0.47' width='3.76' height='0.71' style='fill:%230093d1'/%3E%3Crect x='2.57' y='2.76' width='3.76' height='0.71' style='fill:%230093d1'/%3E%3Crect y='4.54' width='1.65' height='1.65' style='fill:%230093d1'/%3E%3Crect x='2.57' y='5.01' width='3.76' height='0.71' style='fill:%230093d1'/%3E%3Cpolyline points='9.62 2.14 11.77 2.14 10.69 3.83 9.62 2.14' style='fill:%230093d1'/%3E%3C/svg%3E");
}
.catalogNav__viewToggle--grid {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg id='Ebene_1' data-name='Ebene 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11.77 6.2'%3E%3Ctitle%3EUnbenannt-9%3C/title%3E%3Cpolyline points='9.62 2.14 11.77 2.14 10.69 3.83 9.62 2.14' style='fill:%23375b6a'/%3E%3Crect width='2.59' height='2.59' style='fill:%23375b6a'/%3E%3Crect x='3.64' width='2.6' height='2.59' style='fill:%23375b6a'/%3E%3Crect y='3.61' width='2.59' height='2.6' style='fill:%23375b6a'/%3E%3Crect x='3.64' y='3.61' width='2.6' height='2.6' style='fill:%23375b6a'/%3E%3C/svg%3E");
}
.catalogNav__viewToggle--grid:focus, .catalogNav__viewToggle--grid:hover {
  outline: none;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg id='Ebene_1' data-name='Ebene 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 11.77 6.2'%3E%3Ctitle%3EUnbenannt-9%3C/title%3E%3Cpolyline points='9.62 2.14 11.77 2.14 10.69 3.83 9.62 2.14' style='fill:%230093d1'/%3E%3Crect width='2.59' height='2.59' style='fill:%230093d1'/%3E%3Crect x='3.64' width='2.6' height='2.59' style='fill:%230093d1'/%3E%3Crect y='3.61' width='2.59' height='2.6' style='fill:%230093d1'/%3E%3Crect x='3.64' y='3.61' width='2.6' height='2.6' style='fill:%230093d1'/%3E%3C/svg%3E");
}

.product {
  margin-bottom: 5.4rem;
}
.product__inner {
  display: grid;
  grid-template-areas: "image info";
  grid-gap: 3.2rem;
  grid-template-columns: minmax(16rem, 22%) 1fr;
  padding-top: 3.2rem;
}
@media screen and (max-width: 480px) {
  .product__inner {
    grid-template-areas: "image" "info";
    grid-template-columns: 1fr;
  }
}
.product__image {
  grid-area: image;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
.product__image img {
  display: block;
  width: 100%;
  border: #aec7cf solid 1px;
  box-sizing: border-box;
  position: relative;
  top: 0.4rem;
}
.product__thumbnails {
  margin-top: 0.8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
}
.product__thumbnails a {
  display: inline-block;
  margin-right: 0.8rem;
  max-width: 25%;
}
.product__thumbnails a:last-child {
  margin: 0;
}
.product__thumbnails img {
  display: block;
  max-width: 100%;
  padding: 0.2rem;
}
.product__info {
  grid-area: info;
}
.product__info h3 {
  font-weight: normal;
  color: #0093d1;
  font-weight: 200;
  font-size: 2.4rem;
  margin: 0 0 1.6rem;
}
.product__info h3 span {
  color: #365c6c;
  font-weight: 200;
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}
.product__info p {
  font-size: 1.6rem;
  color: #365c6c;
  font-weight: 200;
  line-height: 1.8em;
  margin: 0 0 0.9em;
  font-size: 1.5rem;
  line-height: 1.4;
}
.product__info p a {
  color: #0093d1;
  text-decoration: none;
  border-bottom: 1px solid #0093d1;
}
.product__level {
  height: 3.2rem;
  margin-right: 1.2rem;
}
.product__table {
  margin-top: 4.8rem;
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
.product__table td, .product__table th {
  font-family: "trade-gothic-next";
  font-size: 1.5rem;
  color: #365c6c;
  text-align: left;
  padding: 1.2rem 0;
  border-top: 1px solid #8db2c4;
}
.product__table th {
  font-family: "trade-gothic-next-condensed";
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  width: 40%;
  padding-right: 1.6rem;
  font-weight: bold;
}
@media screen and (max-width: 480px) {
  .product__table th {
    width: 50%;
  }
}
.product__table th small {
  text-transform: none;
}
.product__table th small a {
  color: #0093d1;
}
.product__table td {
  color: #285B6F;
  font-weight: 200;
}
.product__table td a {
  color: #285B6F;
  text-decoration: none;
  border-bottom: 1px solid #285B6F;
}
.product__table tr:last-child td, .product__table tr:last-child th {
  border-bottom: 1px solid #8db2c4;
}
.product__table .product__certification:last-child td, .product__table .product__certification:last-child th {
  border-bottom: none;
  padding-top: 3.2rem;
}
.product__table + .product__table {
  margin-top: 2.4rem;
}
.product__certification svg {
  height: 3.2rem;
  margin-right: 1.6rem;
}
.product__certificationInfo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}
.product select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #FFF;
  font-size: 1.2rem;
  padding: 0.3rem 0.8rem 0.5rem;
  padding-right: 1.8rem;
  border-radius: 0.4rem;
  color: #3a5c69;
  border: 1px solid #3a5c69;
  font-family: "trade-gothic-next";
  height: 2.6rem;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg id='Ebene_1' data-name='Ebene 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2.15 1.7'%3E%3Ctitle%3EUnbenannt-5%3C/title%3E%3Cpolyline points='0 0 2.15 0 1.07 1.7 0 0' style='fill:%23375b6a'/%3E%3C/svg%3E");
  background-size: 0.8rem;
  background-repeat: no-repeat;
  background-position: 92% 0.9rem;
  padding: 0rem 0.4rem 0.2rem;
  padding-right: 1rem;
  max-width: 10rem;
  height: 2rem;
  background-position: 91% 0.7rem;
  margin: 1.6rem 0;
}

.message {
  font-size: 1.6rem;
  color: #365c6c;
  font-weight: 200;
  line-height: 1.8em;
  margin: 0 0 0.9em;
  padding: 1.6rem;
  margin: 3.2rem 0;
  background: #EEE;
}
.message a {
  color: #0093d1;
  text-decoration: none;
  border-bottom: 1px solid #0093d1;
}
.message--error {
  background: orange;
  color: #FFF;
}
.message--success {
  background: green;
  color: #FFF;
}

.layoutWatchList .catalog__inner {
  display: grid;
  grid-template-areas: "topNav" "products";
  grid-gap: 3.2rem;
  grid-template-columns: 1fr;
  padding-bottom: 5.4rem;
}

.productList__remove, .productList__note {
  font-size: 1.4rem;
  color: #0093d1;
  text-decoration: none;
  border-bottom: 1px solid #0093d1;
  margin-left: 1.6rem;
}

/*.productList__description--note {
    position: relative;
    background: linear-gradient(to bottom, rgba(255, 255, 235, 1) 18px, #f0c8c8) 0px -3px/100% 19px;
    background-position: 0 -4px;
    padding: 1.6rem;
    box-shadow: 0 0 300px 25px rgba(222,198,122,0.1) inset;
    line-height: 1.6rem;
    font-size: 1.4rem;
    box-shadow: 0 3px 5px rgba(0,0,0,0.075);

    &:before, &:after {
      content: ""; height: 2px;
      position: absolute;
      left: 0;
      right: 0;
      clip-path: polygon(0% 0%, 5%  100%, 10% 0%, 15%  100%, 20% 0%, 25% 100%, 30% 0%, 35%  100%, 40% 0%, 45%  100%, 50% 0%, 55%  100%, 60% 0%, 65%  100%, 70% 0%, 75%  100%, 80% 0%, 85%  100%, 90% 0%, 95%  100%, 100% 0%);
    }
    &:before {
      background-color: rgba(255, 255, 235,1);
      top: 0;
    }
    &:after {
      background-color: rgba(255, 255, 235, 1);
      bottom: -2px;
    }    

}*/
.note {
  position: relative;
  margin: 1.6rem 0;
}
.note__actions {
  display: flex;
  justify-content: flex-start;
}
.note__title {
  font-size: 1.4rem;
  margin: 0;
  padding: 0.4rem 1.6rem;
  background: #0093d1;
  color: #FFF;
  border-radius: 0.8rem 0.8rem 0 0;
  position: relative;
  z-index: 2;
}
.note__title:before {
  background: #0093d1;
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  position: absolute;
  bottom: 0;
  right: -0.8rem;
  pointer-events: none;
}
.note__title:after {
  background: #FFF;
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  bottom: 0;
  right: -1.6rem;
  border-radius: 0.8rem;
  pointer-events: none;
}
.note__action {
  border: none;
  padding: 0.4rem 1.2rem 0.4rem 0.4rem;
  position: relative;
  z-index: 2;
  left: -0.8rem;
  padding-left: 1.6rem;
  border: none !important;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg id='Ebene_1' data-name='Ebene 1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 77.86 24.46'%3E%3Ctitle%3EUnbenannt-3%3C/title%3E%3Cpath d='M74.17,19.08V6.43A6.43,6.43,0,0,0,67.74,0H0V.66H67.74a5.78,5.78,0,0,1,5.77,5.77V19.08a6.43,6.43,0,0,0,2.91,5.38h1.44A5.79,5.79,0,0,1,74.17,19.08Z' style='fill:%230093d1'/%3E%3C/svg%3E");
  background-position: top right;
  background-size: cover;
  /*
          &:before {
              background: #FFF;
              content: '';
              width: .4rem;
              height: .4rem;
              position: absolute;
              bottom: 0;
              right: -.4rem;            
          }
          &:after {
              position: absolute;
              content: '';
              width: .8rem;
              height: .8rem;
              bottom: 0;
              right: -.8rem;
              border-radius: 100%;
              border: 1px solid $colorLink;
              border-right-color: transparent;
              border-left-color: transparent;
              background: #FFF;
              transform: rotate(-45deg);
              box-sizing: border-box;
          } 
  */
}
.note__action:hover, .note__action:focus {
  outline: none;
}
.note__action:hover .a, .note__action:focus .a {
  stroke: #0093d1;
}
.note__action:last-child {
  left: -2.4rem;
  z-index: 1;
}
.note__action:last-child svg {
  position: relative;
  bottom: -0.2rem;
  width: 1.8rem;
  height: 1.8rem;
}
.note__action svg {
  width: 1.8rem;
  height: 1.6rem;
  position: relative;
  bottom: -0.2rem;
  position: relative;
  z-index: 5;
}
.note__text {
  padding: 1.6rem;
  margin: 0;
  background: #eaf6fd;
  border: 1px solid #0093d1;
  line-height: 1.6rem;
  font-size: 1.4rem;
}

/*
.productList__description--note {
    position: relative;
    background: #eaf6fd;
    padding: 1.6rem;
    border: 1px solid $colorLink;    
    line-height: 1.6rem;
    font-size: 1.4rem;


    &:before, &:after {
      content: ""; height: 2px;
      position: absolute;
      left: 0;
      right: 0;
      clip-path: polygon(0% 0%, 5%  100%, 10% 0%, 15%  100%, 20% 0%, 25% 100%, 30% 0%, 35%  100%, 40% 0%, 45%  100%, 50% 0%, 55%  100%, 60% 0%, 65%  100%, 70% 0%, 75%  100%, 80% 0%, 85%  100%, 90% 0%, 95%  100%, 100% 0%);
    }
    &:before {
      background-color: rgba(255, 255, 235,1);
      top: 0;
    }
    &:after {
      background-color: rgba(255, 255, 235, 1);
      bottom: -2px;
    }   

}*/
.watchlistSearch .catalogSearch__inner {
  justify-content: flex-start;
}
.watchlistSearch .catalogSearch__back {
  min-width: 18rem;
  text-align: left;
  margin-right: 3.2rem;
}

.backUrl a {
  display: inline-block;
  color: #0093d1;
  text-decoration: none;
  font-size: 1.6rem;
  white-space: nowrap;
  margin-right: 1.6rem;
  line-height: 1.8rem;
  text-transform: uppercase;
  position: relative;
  left: -2.4rem;
  padding-top: 6.4rem;
}
.backUrl a span {
  display: inline-block;
  font-size: 3.5rem;
  /*
              border: .1rem solid #FFF;
              border-radius: .4rem;
  */
  line-height: 0.5rem;
  width: 1.8rem;
  height: 1.8rem;
  overflow: hidden;
  position: relative;
  bottom: -0.3rem;
  box-sizing: border-box;
  margin-right: 0.4rem;
  font-weight: 200;
  text-align: center;
}

.meta {
  font-size: 1.6rem;
  color: #365c6c;
  font-weight: 200;
  line-height: 1.8em;
  margin: 0 0 0.9em;
  color: #0093d1;
  font-size: 1.4rem;
  margin: 3.2rem 0 9.6rem;
}
.meta a {
  color: #0093d1;
  text-decoration: none;
  border-bottom: 1px solid #0093d1;
}
.meta__inner {
  padding: 0.8rem 0;
  border: 1px solid #0093d1;
  border-left: none;
  border-right: none;
}
.meta b {
  font-weight: normal;
  text-transform: uppercase;
}
.meta__author {
  margin-right: 1.6rem;
  white-space: nowrap;
}
.meta__date {
  white-space: nowrap;
}

.blocker {
  background: rgba(255, 255, 255, 0.5);
}

.blocker {
  z-index: 10;
}
@media screen and (max-width: 480px) {
  .blocker {
    padding: 0.8rem;
  }
}

.modal {
  padding: 1.6rem;
  box-shadow: none;
  border: 2px solid;
  border-color: #009ee0;
}
@media screen and (max-width: 480px) {
  .modal {
    width: 100%;
  }
}
.modal__headline, .modal__title {
  font-family: "trade-gothic-next-condensed";
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  margin: 0 0 0.8rem;
}
.modal__input, .modal__button, .modal__textarea {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  color: #365c6c;
  border: 2px solid #0093d1;
  font-family: "trade-gothic-next";
  font-size: 1.6rem;
  padding: 0.8rem 0.8rem 0.9rem;
  border: 2px solid #0093d1;
  border-radius: 0.8rem;
  line-height: 1;
  box-sizing: border-box;
}
.modal__input:focus, .modal__button:focus, .modal__textarea:focus {
  outline: none;
  background: #EFEFEF;
}
.modal__input--block, .modal__button--block, .modal__textarea--block {
  display: block;
  border: 2px solid #0093d1;
}
.modal p {
  font-size: 1.6rem;
  color: #365c6c;
  font-weight: 200;
  line-height: 1.8em;
  margin: 0 0 0.9em;
  line-height: 1.4;
}
.modal p a {
  color: #0093d1;
  text-decoration: none;
  border-bottom: 1px solid #0093d1;
}
.modal__input {
  border-radius: 0.8rem 0 0 0.8rem;
  width: 75%;
  border-right: none;
}
.modal__input--block {
  width: 100%;
  border-radius: 0.8rem;
  border: 2px solid #0093d1;
}
.modal__textarea {
  width: 100%;
  font-size: 1.4rem;
  line-height: 1.5;
  display: block;
}
.modal__button {
  font-weight: bold;
  text-align: center;
  border-left: none;
  border-radius: 0 0.8rem 0.8rem 0;
  width: 25%;
  background: #0093d1;
  color: #FFF;
}
.modal__button:focus {
  border-color: rgb(0, 111.1291866029, 158);
  background: rgb(0, 111.1291866029, 158);
}
.modal__button--save {
  border-radius: 0.8rem;
}
.modal__form {
  display: flex;
}
.modal__form--text {
  display: block;
}
.modal__actions {
  display: flex;
  justify-content: space-between;
  margin-top: 3.2rem;
}
.modal__actions a {
  display: inline-block;
  color: #0093d1;
  text-decoration: none;
  border: 2px solid #0093d1;
  border-radius: 0.8rem;
  padding: 0.8rem 1.6rem;
  font-size: 1.4rem;
}
.modal__actions a:last-child {
  background: #0093d1;
  color: #FFF;
}

.contentSimple {
  padding: 9.6rem 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.contentSimple__inner {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.contentSimple__text {
  width: 60%;
  padding-right: 3.2rem;
}
@media screen and (max-width: 480px) {
  .contentSimple__text {
    width: auto;
    padding: 0;
  }
}
.contentSimple__text h3 {
  font-size: 3.2rem;
  color: #0093d1;
  font-weight: 200;
  margin: 0;
  padding: 0;
  padding-bottom: 1.6rem;
}
.contentSimple__text h3 a {
  color: #0093d1;
  text-decoration: none;
}
@media screen and (max-width: 480px) {
  .contentSimple__text h3 {
    padding-right: 8rem;
  }
  .contentSimple__text h3 br {
    display: none;
  }
}
.contentSimple__text p, .contentSimple__text li {
  font-size: 1.6rem;
  color: #365c6c;
  font-weight: 200;
  line-height: 1.8em;
  margin: 0 0 0.9em;
  /*			
           a {

   			display: inline-block;
   			border: 1px solid $colorLink;
   			padding: 0rem 1.6rem .2rem;
   			border-radius: .4rem;
   			text-decoration: none;
   			font-weight: normal;
   			margin: 0 .4rem;
   			line-height: 1.4;

  }
  */
}
.contentSimple__text p a, .contentSimple__text li a {
  color: #0093d1;
  text-decoration: none;
  border-bottom: 1px solid #0093d1;
}
.contentSimple__text li {
  margin: 0;
}
.contentSimple--invert .contentSimple__text p, .contentSimple--invert .contentSimple__text h3 {
  color: #FFF;
}
.contentSimple__image {
  width: 40%;
  padding-left: 3.2rem;
  margin-top: 1.6rem;
}
@media screen and (max-width: 480px) {
  .contentSimple__image {
    position: absolute;
    top: -0.8rem;
    right: 0;
    width: 7.2rem;
  }
}
.contentSimple__image img {
  max-width: 100%;
  border-radius: 3.2rem;
}
@media screen and (max-width: 480px) {
  .contentSimple__image img {
    height: 7.2rem;
    width: 7.2rem;
    border-radius: 10%;
  }
}
.contentSimple__toggle {
  margin-top: 3.2rem;
  text-align: center;
}
.contentSimple__toggle .contentSimple__button {
  min-width: 6.4rem;
  background: none;
  display: inline-block;
  border: none;
}
.contentSimple__toggle .contentSimple__button:focus {
  outline: 0;
}
.contentSimple__toggle .contentSimple__button svg {
  display: inline-block;
  max-width: 6.4rem;
  transition: transform ease-out 0.25s;
  transform: rotate(180deg);
}
.contentSimple__toggle .contentSimple__button svg polygon, .contentSimple__toggle .contentSimple__button svg path {
  stroke: #0093d1 !important;
}
.contentSimple__toggle .contentSimple__button:hover svg, .contentSimple__toggle .contentSimple__button:focus svg {
  transform: rotate(0);
}
.contentSimple__toggle .contentSimple__button:hover svg polygon, .contentSimple__toggle .contentSimple__button:focus svg polygon {
  fill: #aec5d2 !important;
  stroke: #aec5d2 !important;
}
.contentSimple__toggle .contentSimple__button--reverse svg {
  transform: rotate(0deg);
}
.contentSimple__toggle .contentSimple__button--reverse:hover svg {
  transform: rotate(180deg);
}

.contentSimple--noImageLeft .contentSimple__text {
  width: auto;
}

.contentSimple--imageBottom, .contentSimple--noImage {
  padding-top: 6.4rem;
}
.contentSimple--imageBottom .contentSimple__inner, .contentSimple--noImage .contentSimple__inner {
  display: block;
}
.contentSimple--imageBottom .contentSimple__text, .contentSimple--noImage .contentSimple__text {
  width: auto;
  text-align: center;
  padding: 0 9.6rem;
}
@media screen and (max-width: 480px) {
  .contentSimple--imageBottom .contentSimple__text, .contentSimple--noImage .contentSimple__text {
    width: auto;
    padding: 0;
  }
}
.contentSimple--imageBottom .contentSimple__text h3, .contentSimple--noImage .contentSimple__text h3 {
  font-size: 3.2rem;
  color: #0093d1;
  font-weight: 200;
  margin: 0;
  padding: 0;
  padding-bottom: 1.6rem;
  margin-bottom: 1.6rem;
}
.contentSimple--imageBottom .contentSimple__text h3 a, .contentSimple--noImage .contentSimple__text h3 a {
  color: #0093d1;
  text-decoration: none;
}
@media screen and (max-width: 480px) {
  .contentSimple--imageBottom .contentSimple__text h3, .contentSimple--noImage .contentSimple__text h3 {
    padding: 0;
  }
}
.contentSimple--imageBottom .contentSimple__text p, .contentSimple--noImage .contentSimple__text p {
  font-size: 1.6rem;
  color: #365c6c;
  font-weight: 200;
  line-height: 1.8em;
  margin: 0 0 0.9em;
}
.contentSimple--imageBottom .contentSimple__text p a, .contentSimple--noImage .contentSimple__text p a {
  color: #0093d1;
  text-decoration: none;
  border-bottom: 1px solid #0093d1;
}
.contentSimple--imageBottom .contentSimple__image, .contentSimple--noImage .contentSimple__image {
  width: auto;
  text-align: center;
  padding: 3.2rem 9.6rem 0;
  display: block;
}
.contentSimple--imageBottom .contentSimple__image--toggle, .contentSimple--noImage .contentSimple__image--toggle {
  display: none;
}
@media screen and (max-width: 480px) {
  .contentSimple--imageBottom .contentSimple__image, .contentSimple--noImage .contentSimple__image {
    position: static;
    display: block;
    padding: 3.2rem 3.2rem 0;
  }
}
.contentSimple--imageBottom .contentSimple__image img, .contentSimple--noImage .contentSimple__image img {
  max-width: 100%;
  border-radius: 0;
}
@media screen and (max-width: 480px) {
  .contentSimple--imageBottom .contentSimple__image img, .contentSimple--noImage .contentSimple__image img {
    height: auto;
    width: auto;
  }
}
.contentSimple--imageBottom .contentSimple__image--multiple, .contentSimple--noImage .contentSimple__image--multiple {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 21rem;
}
@media screen and (max-width: 480px) {
  .contentSimple--imageBottom .contentSimple__image--multiple, .contentSimple--noImage .contentSimple__image--multiple {
    height: 18rem;
  }
}
.contentSimple--imageBottom .contentSimple__image--multiple img, .contentSimple--noImage .contentSimple__image--multiple img {
  width: 12rem;
  padding: 0 0.8rem;
  transition: width ease-out 0.5s;
}
@media screen and (max-width: 480px) {
  .contentSimple--imageBottom .contentSimple__image--multiple img, .contentSimple--noImage .contentSimple__image--multiple img {
    width: 8rem;
    padding: 0.4rem;
  }
}
.contentSimple--imageBottom .contentSimple__image--animation img:nth-child(2), .contentSimple--noImage .contentSimple__image--animation img:nth-child(2) {
  width: 14.8rem;
}
@media screen and (max-width: 480px) {
  .contentSimple--imageBottom .contentSimple__image--animation img:nth-child(2), .contentSimple--noImage .contentSimple__image--animation img:nth-child(2) {
    width: 10.8rem;
  }
}
.contentSimple--imageBottom .contentSimple__image--animation img:nth-child(3), .contentSimple--noImage .contentSimple__image--animation img:nth-child(3) {
  width: 18.58rem;
}
@media screen and (max-width: 480px) {
  .contentSimple--imageBottom .contentSimple__image--animation img:nth-child(3), .contentSimple--noImage .contentSimple__image--animation img:nth-child(3) {
    width: 14.58rem;
  }
}

.contentSimple--smallPaddings {
  padding: 3.2rem 0;
}

.contentIcons {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  padding: 9.6rem 0;
  padding-top: 6.4rem;
}
.contentIcons__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contentIcons__inner--intro {
  display: block;
}
@media screen and (max-width: 480px) {
  .contentIcons__inner {
    display: block;
  }
}
.contentIcons__headline {
  text-align: center;
  font-size: 3.2rem;
  color: #0093d1;
  font-weight: 200;
  margin: 0;
  padding: 0;
  padding-bottom: 1.6rem;
  padding-bottom: 3.2rem;
}
.contentIcons__headline a {
  color: #0093d1;
  text-decoration: none;
}
.contentIcons__text p {
  text-align: center;
  font-size: 1.6rem;
  color: #365c6c;
  font-weight: 200;
  line-height: 1.8em;
  margin: 0 0 0.9em;
  padding-bottom: 3.2rem;
}
.contentIcons__text p a {
  color: #0093d1;
  text-decoration: none;
  border-bottom: 1px solid #0093d1;
}
.contentIcons__icon {
  text-align: center;
  flex-grow: 1;
  flex-basis: 0;
  padding: 0 3.2rem;
  text-decoration: none;
  position: relative;
}
.contentIcons__icon:first-child {
  padding-left: 0;
}
.contentIcons__icon:last-child {
  padding-right: 0;
}
@media screen and (max-width: 480px) {
  .contentIcons__icon {
    display: block;
    margin-bottom: 5.6rem;
    padding: 0;
  }
  .contentIcons__icon:last-child {
    margin-bottom: 0;
  }
}
.contentIcons__icon img {
  width: 100%;
  height: auto;
}
.contentIcons__icon h3 {
  font-size: 3.2rem;
  color: #0093d1;
  font-weight: 200;
  margin: 0;
  padding: 0;
  padding-bottom: 1.6rem;
}
.contentIcons__icon h3 a {
  color: #0093d1;
  text-decoration: none;
}
.contentIcons__icon p {
  font-size: 1.6rem;
  color: #365c6c;
  font-weight: 200;
  line-height: 1.8em;
  margin: 0 0 0.9em;
}
.contentIcons__icon p a {
  color: #0093d1;
  text-decoration: none;
  border-bottom: 1px solid #0093d1;
}
.contentIcons__iconImage {
  position: relative;
  width: 12.8rem;
  margin: 0 auto;
}
.contentIcons__iconImage:hover::after {
  content: "";
  width: 2px;
  position: absolute;
  left: 50%;
  margin-right: -1px;
  top: 1.6rem;
  bottom: 1.6rem;
  background: #FFF;
}
.contentIcons__iconImage:hover::before {
  content: "";
  height: 2px;
  position: absolute;
  bottom: 50%;
  margin-top: -1px;
  right: 1.6rem;
  left: 1.6rem;
  background: #FFF;
}
.contentIcons__iconImage:hover svg path:last-child {
  fill: rgba(138, 179, 197, 0.75);
}
.contentIcons__iconImage path:last-child {
  fill: rgba(138, 179, 197, 0);
  transition: fill linear 0.25s;
}
.contentIcons__info {
  margin-top: 3.6rem;
}
@media screen and (max-width: 480px) {
  .contentIcons__info {
    margin-top: 1.6rem;
  }
}
.contentIcons__link {
  font-family: "trade-gothic-next-condensed";
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: #0093d1;
  font-weight: bold;
  font-size: 1.4rem;
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .contentIcons__link {
    display: block;
    text-align: center;
  }
}

.contentIcons--animation .contentIcons__link {
  display: none;
}

.contentIconsAdvanced {
  transition: margin-bottom linear 0.25s;
  position: relative;
}
.contentIconsAdvanced__bg {
  background: #FFF;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  position: relative;
  z-index: 3;
  padding: 9.6rem 0;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .contentIconsAdvanced__bg {
    padding: 9.6rem 0 4.8rem;
  }
}
.contentIconsAdvanced h3 {
  font-size: 3.2rem;
  color: #0093d1;
  font-weight: 200;
  margin: 0;
  padding: 0;
  padding-bottom: 1.6rem;
  text-align: center;
  margin: 0 0 4.8rem;
  padding: 0;
}
.contentIconsAdvanced h3 a {
  color: #0093d1;
  text-decoration: none;
}
.contentIconsAdvanced__icons {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .contentIconsAdvanced__icons {
    display: block;
  }
}
@media screen and (max-width: 640px) {
  .contentIconsAdvanced__icons {
    display: block;
  }
}
.contentIconsAdvanced__icon {
  text-align: center;
  flex-grow: 1;
  flex-basis: 0;
  margin: 0 3.2rem;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  background: none;
  border: none;
  font-family: "trade-gothic-next";
  color: #365c6c;
}
.contentIconsAdvanced__icon:focus {
  outline: none;
}
.contentIconsAdvanced__icon:focus svg [class$=background] {
  fill: #FFF;
}
.contentIconsAdvanced__icon:first-child {
  margin-left: 0;
}
.contentIconsAdvanced__icon:last-child {
  margin-right: 0;
}
@media screen and (max-width: 860px) {
  .contentIconsAdvanced__icon {
    margin: 0;
  }
}
@media screen and (max-width: 640px) {
  .contentIconsAdvanced__icon {
    width: 50%;
    float: left;
    margin: 1.6rem 0;
  }
}
@media screen and (max-width: 480px) {
  .contentIconsAdvanced__icon {
    display: block;
    margin-bottom: 5.6rem;
    padding: 0;
  }
  .contentIconsAdvanced__icon:last-child {
    margin-bottom: 0;
  }
}
.contentIconsAdvanced__icon img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 480px) {
  .contentIconsAdvanced__icon .contentIconsAdvanced__info {
    display: block;
    margin-top: 0;
    opacity: 1;
  }
}
.contentIconsAdvanced__icon:hover .contentIconsAdvanced__info {
  display: block;
  margin-top: 0;
  opacity: 1;
}
.contentIconsAdvanced__icon:hover svg [class$=background] {
  fill: rgba(138, 179, 197, 0.75);
}
.contentIconsAdvanced__iconImage {
  position: relative;
  width: 12.8rem;
  margin: 0 auto;
}
.contentIconsAdvanced__info {
  opacity: 0;
  transition: margin-top 0.25s linear, opacity 0.25s linear;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  font-size: 1.6rem;
  font-weight: 200;
  margin: 0;
  margin-top: -0.8rem;
}
.contentIconsAdvanced__info h4 {
  font-family: "trade-gothic-next-condensed";
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  margin: 0;
  padding: 0.8rem 0 0;
  color: #4a859c;
  font-size: 1.4rem;
  font-weight: normal;
}
@media screen and (max-width: 480px) {
  .contentIconsAdvanced__info {
    margin-top: 1.6rem;
  }
}

.contentIconsAdvancedBlock {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: 100%;
  transition: top linear 0.25s, opacity linear 0.25s;
  text-align: center;
  background: #FFF;
  visibility: visible;
  height: auto;
  opacity: 1;
}
.contentIconsAdvancedBlock__inner {
  padding: 4.8rem 0;
}
.contentIconsAdvancedBlock--hidden {
  overflow: hidden;
  z-index: 1;
  transition: top linear 0.25s 0.25s;
  opacity: 0;
}
.contentIconsAdvancedBlock__headline {
  font-size: 3.2rem;
  color: #0093d1;
  margin: 0;
  padding: 0;
  font-weight: 200;
}
.contentIconsAdvancedBlock__headline:after {
  content: " ";
  width: 12rem;
  height: 2px;
  background: #0093d1;
  margin: 0 auto;
  display: block;
  margin-top: 1.2rem;
  margin-bottom: 1.4rem;
}
.contentIconsAdvancedBlock__copy {
  font-size: 1.6rem;
  color: #365c6c;
  font-weight: 200;
  line-height: 1.8em;
  margin: 0 0 0.9em;
  margin-bottom: 4rem;
}
.contentIconsAdvancedBlock__copy a {
  color: #0093d1;
  text-decoration: none;
  border-bottom: 1px solid #0093d1;
}
.contentIconsAdvancedBlock__copy p {
  margin: 0 0 1rem;
}
.contentIconsAdvancedBlock__copy p:last-child {
  margin: 0;
}
.contentIconsAdvancedBlock__list {
  font-size: 1.6rem;
  color: #365c6c;
  font-weight: 200;
  line-height: 1.8em;
  margin: 0 0 0.9em;
  font-size: 1.4rem;
  text-align: left;
  padding: 0 10%;
  color: #0093d1;
}
.contentIconsAdvancedBlock__list a {
  color: #0093d1;
  text-decoration: none;
  border-bottom: 1px solid #0093d1;
}
.contentIconsAdvancedBlock__list ul {
  text-align: left;
  display: inline-block;
  margin-top: 0;
  margin-bottom: 0;
  column-count: 2;
  column-gap: 3.2rem;
}
@media screen and (max-width: 860px) {
  .contentIconsAdvancedBlock__list ul {
    column-count: 1;
  }
}

.contentNews {
  padding: 9.6rem 0;
}
.contentNews__linkIcon {
  display: block;
  width: 8rem;
  margin: 0 auto;
}
.contentNews__linkIcon:hover svg .readMore-1 {
  fill: rgba(138, 179, 197, 0.75);
}
.contentNews__linkIcon:hover svg .readMore-2 {
  stroke: #FFF;
}
.contentNews__linkIcon .readMore-1 {
  fill: rgba(138, 179, 197, 0);
  transition: fill linear 0.25s, stroke linear 0.25s;
}

.newsItem {
  display: flex;
  align-items: center;
  margin-bottom: 3.2rem;
  padding-bottom: 3.2rem;
  border-bottom: 2px solid #009ee0;
}
@media screen and (max-width: 480px) {
  .newsItem {
    display: block;
  }
}
.newsItem__info {
  width: 66.66666%;
}
@media screen and (max-width: 480px) {
  .newsItem__info {
    width: auto;
  }
}
.newsItem__link {
  font-family: "trade-gothic-next-condensed";
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  display: block;
  text-align: center;
  width: 33.33333%;
  font-weight: bold;
  font-size: 1.4rem;
  text-decoration: none;
  color: #0093d1;
}
@media screen and (max-width: 480px) {
  .newsItem__link {
    width: auto;
    text-align: left;
  }
}
.newsItem__headline {
  font-size: 3.2rem;
  color: #0093d1;
  font-weight: 200;
  margin: 0;
  padding: 0;
  padding-bottom: 1.6rem;
}
.newsItem__headline a {
  color: #0093d1;
  text-decoration: none;
}
.newsItem__abstract {
  font-size: 1.6rem;
  color: #365c6c;
  font-weight: 200;
  line-height: 1.8em;
  margin: 0 0 0.9em;
}
.newsItem__abstract a {
  color: #0093d1;
  text-decoration: none;
  border-bottom: 1px solid #0093d1;
}

.contentHeadline {
  margin: 0;
}
.contentHeadline__headline {
  font-family: "trade-gothic-next-condensed";
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: #FFF;
  text-align: center;
  font-size: 5.4rem;
  font-weight: normal;
  padding: 7.2rem 0;
  margin: 0;
  background-color: #1aa0dc;
  background-size: cover;
  background-position: center center;
  font-family: "trade-gothic-next";
  font-weight: 200;
}
.contentHeadline__headlineText {
  display: inline-block;
  position: relative;
}
.contentHeadline__headlineText:after {
  content: "";
  position: absolute;
  left: 1.6rem;
  right: 1.6rem;
  border-bottom: 2px solid #FFF;
  bottom: -1.6rem;
}

.contentParagraphBackground {
  padding: 4.8rem 0;
  background-color: #355d6d;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.contentParagraphBackground__text {
  text-align: center;
  padding: 0 4.8rem;
}
@media screen and (max-width: 480px) {
  .contentParagraphBackground__text {
    width: auto;
    padding: 0;
  }
}
.contentParagraphBackground__text p {
  font-size: 1.6rem;
  color: #365c6c;
  font-weight: 200;
  line-height: 1.8em;
  margin: 0 0 0.9em;
  color: #FFF;
}
.contentParagraphBackground__text p a {
  color: #0093d1;
  text-decoration: none;
  border-bottom: 1px solid #0093d1;
}
.contentParagraphBackground__text p:last-child {
  margin-bottom: 0;
}

.contentBackgroundImage {
  padding: 7.2rem 0;
  background-color: #558aa0;
  background-repeat: repeat-y;
  background-size: cover;
  background-position: center center;
}
.contentBackgroundImage--parallax {
  background-position: center 0px;
}
.contentBackgroundImage--smaller {
  padding: 3.2rem 0;
}

.contentHorizontalList {
  padding: 0 !important;
  background: #284753;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.contentHorizontalList__inner {
  white-space: nowrap;
  max-width: none;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  overflow-y: hidden;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  margin: 0;
}
@media screen and (max-width: 860px) {
  .contentHorizontalList__inner {
    margin: 0;
  }
}
@media screen and (max-width: 480px) {
  .contentHorizontalList__inner {
    margin: 0;
  }
}
.contentHorizontalList__item {
  position: relative;
  padding: 6.4rem;
  white-space: normal;
  overflow: hidden;
  display: inline-block;
  flex: 0 0;
  min-width: 21rem;
  display: flex;
  flex-direction: column;
  transition: min-width linear 0.25s;
  cursor: pointer;
}
@media screen and (max-width: 480px) {
  .contentHorizontalList__item {
    padding: 3.2rem;
  }
}
.contentHorizontalList__item::after {
  content: "";
  position: absolute;
  right: 0;
  width: 1px;
  top: 4.8rem;
  bottom: 4.8rem;
  background: #FFF;
}
.contentHorizontalList__item:last-child::after {
  display: none;
}
.contentHorizontalList__item:hover svg {
  transform: rotate(180deg) scale(0.75);
}
.contentHorizontalList__item:hover svg path {
  fill: rgba(255, 255, 255, 0.15) !important;
}
.contentHorizontalList__item--open {
  min-width: 42rem;
  background: rgba(255, 255, 255, 0.15);
}
@media screen and (max-width: 480px) {
  .contentHorizontalList__item--open {
    min-width: 28rem;
  }
}
.contentHorizontalList__item--open .contentHorizontalList__copy {
  height: auto;
  opacity: 1;
}
.contentHorizontalList__item--open .contentHorizontalList__headline {
  display: none;
}
.contentHorizontalList__item--open .contentHorizontalList__toggle svg {
  transform: rotate(180deg) scale(0.75);
}
.contentHorizontalList__toggle {
  margin-top: 3.2rem;
  background: none;
  border: none;
  cursor: pointer;
}
.contentHorizontalList__toggle:focus {
  outline: none;
}
.contentHorizontalList__toggle svg {
  max-width: 6.4rem;
  transition: transform ease-out 0.25s;
}
.contentHorizontalList__headline, .contentHorizontalList__copyHeadline {
  font-size: 3.2rem;
  color: #0093d1;
  font-weight: 200;
  margin: 0;
  padding: 0;
  padding-bottom: 1.6rem;
  font-family: "trade-gothic-next-condensed";
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: #FFF;
  font-size: 2.4rem;
  font-size: 1.8rem;
  font-weight: 200;
}
.contentHorizontalList__headline a, .contentHorizontalList__copyHeadline a {
  color: #0093d1;
  text-decoration: none;
}
.contentHorizontalList__headline {
  max-width: 21rem;
  height: 11.2rem;
  margin: 0;
}
.contentHorizontalList__copyHeadline {
  margin-bottom: 1.6rem;
  font-weight: 200;
}
.contentHorizontalList__copy {
  height: 0;
  opacity: 0;
  width: 42rem;
  overflow: hidden;
  transition: opacity linear 0.25s;
}
@media screen and (max-width: 480px) {
  .contentHorizontalList__copy {
    width: 28rem;
  }
}
.contentHorizontalList__copy p, .contentHorizontalList__copy li {
  font-size: 1.6rem;
  color: #365c6c;
  font-weight: 200;
  line-height: 1.8em;
  margin: 0 0 0.9em;
  color: #FFF;
  font-size: 1.5rem;
  line-height: 1.5em;
}
.contentHorizontalList__copy p a, .contentHorizontalList__copy li a {
  color: #0093d1;
  text-decoration: none;
  border-bottom: 1px solid #0093d1;
}
.contentHorizontalList__copy p a, .contentHorizontalList__copy li a {
  color: #FFF;
  border-color: #FFF;
}
.contentHorizontalList__copy p:last-child, .contentHorizontalList__copy li:last-child {
  margin-bottom: 0;
}
.contentHorizontalList__copy li {
  margin: 0;
}

.contentWhiteSpace {
  padding: 1.6rem 0;
  height: 0;
  background-color: #FFF;
}

.contentFaq {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 5.6rem 0;
}

.faq {
  border-bottom: 1px solid #009ee0;
  position: relative;
  padding: 1.6rem;
  padding-left: 3.2rem;
}
.faq:hover svg .cls-1, .faq--open svg .cls-1 {
  fill: #0093d1;
}
.faq:hover svg .cls-2, .faq--open svg .cls-2 {
  fill: #fff;
}
.faq:hover .faq__question, .faq--open .faq__question {
  color: #0093d1;
}
.faq__question {
  font-size: 1.6rem;
  color: #365c6c;
  font-weight: normal;
  margin: 0;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.faq__answer {
  display: none;
  font-size: 1.6rem;
  color: #365c6c;
  font-weight: 200;
  padding-bottom: 1.6rem;
}
.faq__answer p {
  margin: 1.6rem 0;
}
.faq__icon {
  width: 1.8rem;
  height: 1.8rem;
  position: absolute;
  left: 0;
  top: 1.8rem;
}
.faq__icon svg {
  width: 1.8rem;
  height: 1.8rem;
}
.faq__icon svg .cls-1, .faq__icon svg .cls-2 {
  transition: all linear 0.25s;
}

.contentDownloads {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 5.6rem 0;
}
.contentDownloads__headline {
  font-size: 3.2rem;
  color: #0093d1;
  font-weight: 200;
  margin: 0;
  padding: 0;
  padding-bottom: 1.6rem;
}
.contentDownloads__headline a {
  color: #0093d1;
  text-decoration: none;
}
.contentDownloads__downloads {
  list-style: none;
  margin: 0;
  padding: 0;
}

.download {
  border-bottom: 1px solid #009ee0;
  position: relative;
  padding: 1.6rem;
  padding-left: 3.2rem;
  font-size: 1.6rem;
  color: #365c6c;
  font-weight: 200;
  line-height: 1.8em;
  margin: 0 0 0.9em;
}
.download a {
  color: #0093d1;
  text-decoration: none;
  border-bottom: 1px solid #0093d1;
}
.download:last-child {
  border-bottom: none;
}
.download:hover svg .cls-1, .download--open svg .cls-1 {
  fill: #0093d1;
}
.download:hover svg .cls-2, .download--open svg .cls-2 {
  fill: #fff;
}
.download:hover .faq__question, .download--open .faq__question {
  color: #0093d1;
}
.download__label {
  font-size: 1.6rem;
  color: #365c6c;
  font-weight: normal;
  margin: 0;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.download__icon {
  width: 1.8rem;
  height: 1.8rem;
  position: absolute;
  left: 0;
  bottom: 2.1rem;
}
.download__icon svg {
  width: 1.8rem;
  height: 1.8rem;
}
.download__icon svg .cls-1, .download__icon svg .cls-2 {
  transition: all linear 0.25s;
}

.contentCertifiers {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  padding: 9.6rem 0;
}
.contentCertifiers--smallPaddings {
  padding: 6.4rem 0;
}
.contentCertifiers__headline {
  text-align: center;
  font-size: 3.2rem;
  color: #0093d1;
  font-weight: 200;
  margin: 0;
  padding: 0;
  padding-bottom: 1.6rem;
  padding-bottom: 3.2rem;
}
.contentCertifiers__headline a {
  color: #0093d1;
  text-decoration: none;
}
.contentCertifiers__text p {
  text-align: center;
  font-size: 1.6rem;
  color: #365c6c;
  font-weight: 200;
  line-height: 1.8em;
  margin: 0 0 0.9em;
}
.contentCertifiers__text p a {
  color: #0093d1;
  text-decoration: none;
  border-bottom: 1px solid #0093d1;
}
.contentCertifiers__certifiers {
  text-align: center;
  list-style: none;
  white-space: nowrap;
  padding: 0;
  margin: -2.4rem 0 0.8rem;
  padding: 2.4rem 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overflow-y: hidden;
}

.certifier {
  display: inline-block;
  white-space: normal;
  text-align: center;
  width: 15rem;
  min-height: 7.4rem;
  margin: 0 0.8rem;
  background: #FFF;
  border-radius: 0.8rem;
  border: 1px solid #0093d1;
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  padding: 0.8rem;
  vertical-align: top;
}
.certifier:hover, .certifier:focus {
  outline: none;
  background: rgba(138, 179, 197, 0.75);
  position: relative;
}
.certifier:hover::after, .certifier:focus::after {
  content: "";
  width: 2px;
  position: absolute;
  left: 50%;
  margin-right: -1px;
  top: 1.6rem;
  bottom: 1.6rem;
  background: #FFF;
}
.certifier:hover::before, .certifier:focus::before {
  content: "";
  height: 2px;
  position: absolute;
  bottom: 50%;
  margin-top: -1px;
  right: 4.8rem;
  left: 4.8rem;
  background: #FFF;
}
.certifier__name {
  text-transform: uppercase;
  margin: 0;
  font-size: 1.6rem;
  font-weight: 300;
  color: #0093d1;
  margin-bottom: 0.4rem;
}
.certifier__country {
  text-transform: uppercase;
  margin: 0;
  font-size: 1.2rem;
  font-weight: 300;
  color: #0093d1;
}

.contentAdvantages {
  padding: 0rem 0 9.6rem;
  margin-top: -6.4rem;
}
.contentAdvantages__button {
  padding: 0;
  border: none;
  background: none;
  color: #0093d1;
  border: 1px solid #0093d1;
  border-radius: 0.4rem;
  font-family: "trade-gothic-next-condensed";
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 0.2rem 0.4rem;
  padding-bottom: 0.3rem;
  padding-right: 1rem;
  display: inline-block;
}
.contentAdvantages__button:hover {
  background: rgba(138, 179, 197, 0.75);
  color: #FFF;
}
.contentAdvantages__button svg {
  width: 1.5rem;
  position: relative;
  display: inline-block;
  bottom: -0.15rem;
  margin-right: 0.6rem;
}
.contentAdvantages__modal {
  display: none;
  padding: 2.4rem 4.8rem !important;
  max-width: 58rem;
  background: #e8f5fc;
  border: 1px solid #0093d1;
}
@media (max-width: 420px) {
  .contentAdvantages__modal {
    padding: 2.4rem !important;
  }
}
.contentAdvantages__modal a.close-modal {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
  display: block;
  width: 18px;
  height: 18px;
  text-indent: -9999px;
  background: #FFF;
  border-radius: 0;
  border: 1px solid #50ace9;
  line-height: 0.9;
  text-align: center;
}
.contentAdvantages__modal a.close-modal:after {
  color: #50ace9;
  font-weight: 200;
  left: 0;
  right: 0;
  top: -7.5px;
}
.contentAdvantages__modal ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.contentAdvantages__modal ul p {
  margin: 0;
  font-weight: 200;
  font-size: 1.6rem;
  display: inline;
}
.contentAdvantages__modal ul p b, .contentAdvantages__modal ul p strong {
  color: #0093d1;
  font-weight: 400;
}
.contentAdvantages__modal ul li {
  position: relative;
  margin: 1.6rem 0;
  padding-left: 2.4rem;
}
.contentAdvantages__modal ul li svg {
  width: 1.5rem;
  display: inline-block;
  top: 0.4rem;
  margin-right: 0.6rem;
  position: absolute;
  left: 0;
}
.contentAdvantages__modal--show {
  display: block;
}

.contentSimple__table h3 {
  padding-left: 18.5rem;
  margin-left: 1.6rem;
}

.reqTable {
  border-collapse: collapse;
  margin: 6.4rem auto;
  table-layout: fixed;
}
.reqTable td, .reqTable th {
  text-align: center;
  color: #4698E8;
  font-size: 1.4rem;
  border-bottom: 0.2rem solid #FFF;
  border-left: 0.2rem solid #FFF;
  font-weight: 200;
  width: 9.5rem;
  padding: 0.4rem 0 0.4rem;
}
.reqTable th {
  padding-bottom: 1.2rem;
}
.reqTable th:nth-child(2), .reqTable th:last-child {
  font-weight: bold;
}
.reqTable th:last-child {
  width: 7.5rem;
}
.reqTable td {
  color: #FFF;
  background: #62C2EF;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
}
.reqTable__legend th {
  padding-bottom: 0.5rem;
}
.reqTable__legend th:last-child {
  border-top: 1px solid #4698E8;
  border-left: 1px solid #4698E8;
  border-right: 1px solid #4698E8;
  padding-bottom: 0;
  line-height: 1rem;
}
.reqTable__legend th:last-child span {
  position: relative;
  top: -1.4rem;
  background: #FFF;
  display: inline-block;
  padding: 0 0.8rem;
  font-weight: 200;
  font-style: italic;
  line-height: 1.2rem;
}
.reqTable__body th {
  text-align: right;
  width: auto;
  white-space: nowrap;
  padding-right: 1.6rem;
  width: 18.5rem;
  font-style: italic;
  font-weight: 400;
}
.reqTable__body td:nth-child(2) {
  background: #92d0f3;
}
.reqTable__body td:last-child {
  background: #9ac355;
  width: 7.5rem;
}

.modal.modal--contact {
  border-radius: 0 0 0.8rem 0.8rem;
  border-top: 7.6rem solid #009ee0;
}
.modal.modal--contact .close-modal {
  position: absolute;
  top: -5.8rem;
  right: 1.6rem;
  display: block;
  width: 18px;
  height: 18px;
  text-indent: -9999px;
  background: none;
  border-radius: 100%;
  border: 1.5px solid #FFF;
  border-radius: 0.4rem;
  line-height: 0.9;
}
.modal.modal--contact .close-modal:after {
  right: 0;
}
.modal.modal--contact .modal__logo {
  width: 4rem;
  position: absolute;
  top: -5.8rem;
  left: 1.6rem;
}
.modal.modal--contact .modal__title {
  color: #FFF;
  position: absolute;
  left: 7.2rem;
  top: -4.4rem;
  font-size: 2.1rem;
  font-weight: normal;
  text-transform: none;
}

/**
* https://robots.thoughtbot.com/controlling-color-with-sass-color-functions
*/
/*default colors*/
/* calc of heading in mixin/types */
#comparison-table {
  border-collapse: collapse;
  table-layout: fixed;
  max-width: 72rem;
  margin: 0 auto;
}
#comparison-table th, #comparison-table td {
  border: 5px solid #D5EEFA;
  padding: 1rem;
  font-size: 1.6rem;
}
#comparison-table th {
  background: transparent;
  color: #1aa0dc;
  border-top: none;
  border-left: none;
  text-align: left;
  vertical-align: bottom;
  padding-bottom: 0.25rem;
}
#comparison-table td {
  background: #97d4ef;
  border-left: none;
  vertical-align: top;
}
#comparison-table td br {
  display: block;
  margin-top: 0.25rem;
  line-height: 1.25;
}
#comparison-table td:first-child {
  width: 20rem;
  font-weight: bold;
}
#comparison-table td:last-child, #comparison-table td:nth-last-child(2) {
  width: 35rem;
  vertical-align: middle;
}
#comparison-table thead td, #comparison-table thead td:first-child {
  background: none;
}
#comparison-table .gray,
#comparison-table .light-green,
#comparison-table .green,
#comparison-table .red,
#comparison-table .light-red,
#comparison-table .yellow,
#comparison-table .white {
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  color: rgb(20, 34.0740740741, 40) !important;
}
#comparison-table .gray, #comparison-table .white {
  background-color: rgb(237.8842975207, 247.6198347107, 253.1157024793);
}
#comparison-table .green {
  background-color: #9AC355;
  color: #0f4b00;
}
#comparison-table .light-green {
  background-color: #b3e89b;
  color: #50753e;
}
#comparison-table .red {
  background-color: #ed9073;
  color: #7d1908;
}
#comparison-table .light-red {
  background-color: #ffcab9;
  color: #8f4033;
}
#comparison-table .yellow {
  background-color: rgba(240, 224, 80, 0.9019607843);
  color: #a77800;
}

.comparison {
  display: none;
}
.comparison.active {
  display: block;
}
.comparison .table {
  margin-top: 0;
  overflow-y: scroll;
}

.filter-two-out,
.filter-one-out,
.filter-focus-out,
.filter-chapter-out,
.certification-out {
  display: none;
}

#cert-selector-2 {
  display: none;
}

.contentComparison {
  padding: 6.4rem 0;
  background: #D5EEFA;
}
.contentComparison__text p {
  text-align: center;
  font-size: 1.6rem;
  color: #365c6c;
  font-weight: 200;
  line-height: 1.8em;
  margin: 0 0 0.9em;
}
.contentComparison__text p a {
  color: #0093d1;
  text-decoration: none;
  border-bottom: 1px solid #0093d1;
}
.contentComparison__certification-list-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  align-content: center;
  padding: 4rem 0;
}
.contentComparison__certification-list-filter button {
  display: flex;
  align-items: center;
  background: #FFF;
  border-radius: 0rem;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  border: 1px solid #0093d1;
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  padding: 0.8rem 1rem;
  border-right: 0;
}
.contentComparison__certification-list-filter button .color-indicator {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.8rem;
  border-radius: 0.2rem;
  background-color: var(--color);
}
.contentComparison__certification-list-filter button:first-child {
  border-bottom-left-radius: 0.8rem;
  border-top-left-radius: 0.8rem;
}
.contentComparison__certification-list-filter button:last-child {
  border-bottom-right-radius: 0.8rem;
  border-top-right-radius: 0.8rem;
  border-right: 1px solid #0093d1;
}
.contentComparison__certification-list-filter button:last-child .color-indicator {
  display: none;
}
.contentComparison__certification-list-filter button.active {
  color: #FFF;
  background: #0093d1;
}
.contentComparison__certification-list-choice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  align-content: center;
  padding: 2rem 0 0rem;
}
.contentComparison__certification-list-choice button {
  background: #FFF;
  border-radius: 0.8rem;
  border: 1px solid #0093d1;
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  padding: 0.8rem;
}
.contentComparison__certification-list-choice button.active {
  color: #FFF;
  background: #0093d1;
}
.contentComparison__certification-list-choice:not(:has(button)) {
  display: none;
}
.contentComparison__certification-list {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow-x: auto;
  justify-content: safe center;
  align-items: start;
  list-style: none;
  gap: 1.6rem;
  padding: 2rem;
  margin: auto;
}
.contentComparison__certification-list button {
  text-align: left;
  position: relative;
  display: flex;
  align-content: start;
  flex-direction: column;
  justify-content: space-between;
  aspect-ratio: 1/1;
  overflow: hidden;
  text-wrap: balance;
  white-space: wrap;
  text-overflow-ellipsis: ellipsis;
  flex: 14rem 0 0;
  background: #FFF;
  border-radius: 0.8rem;
  border: 1px solid #0093d1;
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  padding: 0.8rem;
  color: #0093d1;
  margin-bottom: 0.4rem;
}
.contentComparison__certification-list button.active {
  color: #FFF;
  background: #0093d1;
}
.contentComparison__certification-list button:hover:not(.active) {
  outline: none;
  background: rgba(138, 179, 197, 0.75);
  position: relative;
}
.contentComparison__certification-list button:hover:not(.active)::before {
  content: "";
  height: 2px;
  position: absolute;
  bottom: 50%;
  margin-top: -1px;
  right: 5rem;
  left: 5rem;
  background: #FFF;
}
.contentComparison__certification-list button:hover:not(.active)::after {
  content: "";
  width: 2px;
  position: absolute;
  left: 50%;
  margin-right: -1px;
  height: 3.2rem;
  bottom: 50%;
  background: #FFF;
  transform: translateY(1.6rem);
}
.contentComparison__certification-list h4 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 300;
  text-transform: uppercase;
}
.contentComparison__certification-list span {
  font-weight: 300;
  font-size: 1.2rem;
  text-align: right;
  text-transform: uppercase;
}
.contentComparison__search {
  text-align: center;
  padding: 2rem 0;
}
.contentComparison__search-selector {
  appearance: none;
  text-align: center;
  color: #365c6c;
  background: #FFF;
  display: block;
  font-size: 1.8rem;
  padding: 0.7rem 1.6rem 0.9rem;
  border: 1.5px solid #0093d1;
  border-radius: 0.8rem;
  text-decoration: none;
  font-weight: 200;
  width: auto;
  margin: 0 auto;
  box-sizing: border-box;
  white-space: nowrap;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2.15 1.7'%3E%3Ctitle%3EUnbenannt-5%3C/title%3E%3Cpolyline points='0 0 2.15 0 1.07 1.7 0 0' style='fill:%230093d1'/%3E%3C/svg%3E");
  background-size: 1.25rem;
  background-repeat: no-repeat;
  background-position: calc(100% - 1rem) 1.325rem;
  padding-right: 3rem;
}
.contentComparison__filter {
  display: none;
  margin: 4rem auto 2rem;
  align-items: flex-end;
  grid-gap: 1.6rem;
  font-size: 1.6rem;
  justify-content: center;
  max-width: 174rem;
  border-radius: 0.8rem;
}
.contentComparison__filter.open {
  display: flex;
}

.filters__field label {
  display: block;
}
.filters__field input, .filters__field select {
  appearance: none;
  color: #365c6c;
  background: #FFF;
  display: block;
  font-size: 1.6rem;
  padding: 0.7rem 1.6rem 0.9rem;
  border: 1.5px solid #0093d1;
  border-radius: 0.8rem;
  text-decoration: none;
  font-weight: 200;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  white-space: nowrap;
  text-align: left;
}
.filters__field button {
  appearance: none;
  color: #FFF;
  background: #0093d1;
  font-size: 1.6rem;
  padding: 0.7rem 1.6rem 0.9rem;
  border: none;
  border-radius: 0.8rem;
  position: relative;
}
.filters__field button#reset-filters {
  display: none;
}
.filters__field button#close-table {
  padding-right: 3rem;
}
.filters__field button#close-table::after {
  font-family: "trade-gothic-next-condensed";
  text-transform: uppercase;
  content: "×";
  color: #FFF;
  font-size: 2.8rem;
  right: 1rem;
  top: -5px;
  bottom: 0;
  position: absolute;
  text-indent: 0;
  text-align: center;
}
.filters__field input.filter--filtered {
  background-color: #0093d1;
  color: #FFF;
}
.filters__field select {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2.15 1.7'%3E%3Ctitle%3EUnbenannt-5%3C/title%3E%3Cpolyline points='0 0 2.15 0 1.07 1.7 0 0' style='fill:%230093d1'/%3E%3C/svg%3E");
  background-size: 1.25rem;
  background-repeat: no-repeat;
  background-position: calc(100% - 1rem) 1.325rem;
  padding-right: 3rem;
}
.filters__field select.filter--filtered {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2.15 1.7'%3E%3Ctitle%3EUnbenannt-5%3C/title%3E%3Cpolyline points='0 0 2.15 0 1.07 1.7 0 0' style='fill:%23FFF'/%3E%3C/svg%3E");
  background-color: #0093d1;
  color: #FFF;
  font-weight: bold;
}

.contentVideo {
  background: #1aa0dc;
  color: #FFF;
  display: grid;
  grid-template-columns: auto 1fr;
}
@media (max-width: 1080px) {
  .contentVideo {
    display: flex;
    flex-direction: column-reverse;
  }
}
.contentVideo__play {
  background: none;
  border: 0;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-areas: "button";
}
.contentVideo__play:hover svg path {
  fill: rgba(26, 160, 220, 0.4);
}
.contentVideo__play svg {
  grid-area: button;
  height: 13rem;
  width: 13rem;
  z-index: 2;
  margin: auto;
}
@media (max-width: 1280px) {
  .contentVideo__play svg {
    height: 10rem;
  }
}
@media (max-width: 480px) {
  .contentVideo__play svg {
    height: 8rem;
  }
}
.contentVideo__play svg path {
  transition: fill linear 0.25s;
}
.contentVideo__play img {
  grid-area: button;
  display: block;
  height: 16rem;
  aspect-ratio: 621/178;
  object-fit: cover;
  object-position: right top;
}
@media (max-width: 1280px) {
  .contentVideo__play img {
    height: 12.5rem;
  }
}
@media (max-width: 1080px) {
  .contentVideo__play img {
    height: auto;
    width: 100%;
  }
}
.contentVideo__text {
  padding: 1rem 4rem 2rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 1080px) {
  .contentVideo__text {
    padding: 4rem;
  }
}
.contentVideo__text h2 {
  font-size: 3.2rem;
  margin: 0;
  font-weight: 300;
  line-height: 1.25;
}
.contentVideo__text p {
  margin: 0;
  margin-top: 0.5rem;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.5;
  font-size: 1.6rem;
  text-wrap: balance;
}
.contentVideo__video {
  display: none;
}

@media all and (-ms-high-contrast: none) {
  .catalog__filter {
    width: 20%;
    float: left;
    padding-top: 6.4rem;
  }
  .catalog__products {
    width: 80%;
    float: right;
    padding-top: 1.6rem;
    padding-bottom: 1.6rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .catalog__products .productList {
    width: 31.66666%;
    box-sizing: border-box;
    margin-left: 2.5%;
    margin-top: 1.6rem;
  }
  .catalog__products .productList:nth-child(3n+1) {
    margin-left: 0;
  }
  .catalog__products--list {
    display: block;
  }
  .catalog__products--list .productList {
    width: 100%;
    margin-left: 0;
  }
  .catalog__footer {
    clear: both;
  }
  .productList__footer svg {
    height: 2.35rem;
  }
  .product__inner {
    overflow: hidden;
  }
  .product__image {
    float: left;
    width: 30%;
  }
  .product__info {
    float: right;
    width: 70%;
    box-sizing: border-box;
    padding-left: 3.2rem;
  }
  .product__certificationInfo .product__level {
    width: 100%;
  }
  .header--small .headerTop .logo img {
    height: 100%;
  }
  .contentAdvantages__button svg, .contentAdvantages__modal svg {
    height: 1.5rem;
    width: 1.5rem;
  }
}
.modal.modal--contact {
  border-radius: 0 0 0.8rem 0.8rem;
  border-top: 7.6rem solid #009ee0;
}
.modal.modal--contact .close-modal {
  position: absolute;
  top: -5.8rem;
  right: 1.6rem;
  display: block;
  width: 18px;
  height: 18px;
  text-indent: -9999px;
  background: none;
  border-radius: 100%;
  border: 1.5px solid #FFF;
  border-radius: 0.4rem;
  line-height: 0.9;
}
.modal.modal--contact .close-modal:after {
  right: 0;
}
.modal.modal--contact .modal__logo {
  width: 4rem;
  position: absolute;
  top: -5.8rem;
  left: 1.6rem;
}
.modal.modal--contact .modal__title {
  color: #FFF;
  position: absolute;
  left: 7.2rem;
  top: -4.4rem;
  font-size: 2.1rem;
  font-weight: normal;
  text-transform: none;
}

.contentButton {
  padding: 12rem 0;
  background-color: #365b6a;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  text-align: center;
  margin-bottom: 3.2rem;
}
.contentButton__button {
  color: #FFF;
  display: block;
  font-size: 1.8rem;
  padding: 0.7rem 1.6rem 0.9rem;
  border: 1.5px solid #FFF;
  border-radius: 0.8rem;
  text-decoration: none;
  font-weight: 200;
  display: inline-block;
  font-size: 3.2rem;
  padding: 1.6rem 4rem 2rem;
  border-radius: 1.8rem;
}
@media screen and (max-width: 860px) {
  .contentButton__button {
    font-size: 1.6rem;
  }
}
.contentButton__button:hover {
  background: #1aa0dc;
}

.parallax-slider {
  left: 0;
  right: 0;
}

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