@charset "UTF-8";
/**
 * Foundation for Sites by ZURB
 * Version 6.3.1
 * foundation.zurb.com
 * Licensed under MIT Open Source
 */
.container {
  max-width: 80rem;
  margin: 0 auto;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
}

.flex-row {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  margin-right: -0.9375rem;
  margin-left: -0.9375rem;
  box-sizing: border-box;
  max-width: 80rem;
}
@media print, screen and (min-width: 64em) {
  .flex-row {
    flex-wrap: nowrap;
  }
}
@media (max-width: 767px) {
  .flex-row {
    width: auto;
    min-width: 100%;
  }
}

.flex-row [class*=" col-"],
.flex-row [class^=col-] {
  position: relative;
  flex-grow: 0;
  width: 100%;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  box-sizing: border-box;
}

@media print, screen and (min-width: 64em) {
  .flex-row .col-12 {
    width: 100%;
  }
  .flex-row .col-11 {
    width: 91.6666666666%;
  }
  .flex-row .col-10 {
    width: 83.3333333333%;
  }
  .flex-row .col-9 {
    width: 75%;
  }
  .flex-row .col-8 {
    width: 66.6666666666%;
  }
  .flex-row .col-7 {
    width: 58.3333333333%;
  }
  .flex-row .col-6 {
    width: 50%;
  }
  .flex-row .col-5 {
    width: 41.6666666666%;
  }
  .flex-row .col-4 {
    width: 33.3333333333%;
  }
  .flex-row .col-3 {
    width: 25%;
  }
  .flex-row .col-2 {
    width: 16.6666666666%;
  }
  .flex-row .col-1 {
    width: 8.3333333333%;
  }
}
/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
.owl-carousel, .owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  -moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item, .owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
  display: none;
}

.no-js .owl-carousel, .owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

.owl-carousel .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.owl-height {
  transition: height 0.5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 0.1s ease;
}

.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon, .owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 0.4s ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
.owl-theme .owl-dots, .owl-theme .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav {
  margin-top: 10px;
}

.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}

.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 0.2s ease;
  border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

/**
 * Swiper 6.4.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2020 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: December 18, 2020
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

/* 3D Effects */
.swiper-container-3d {
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-prev.swiper-button-white,
.swiper-button-next.swiper-button-white {
  --swiper-navigation-color: #ffffff;
}

.swiper-button-prev.swiper-button-black,
.swiper-button-next.swiper-button-black {
  --swiper-navigation-color: #000000;
}

.swiper-button-lock {
  display: none;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color: #ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
:root {
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  100% {
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  backface-visibility: hidden;
}

body, html {
  width: 100%;
}
body:not(#article_single-page, .single-distekniques, #distekniques-single, #news), html:not(#article_single-page, .single-distekniques, #distekniques-single, #news) {
  overflow-x: hidden;
}
@media screen and (min-width: 75em) {
  body, html {
    font-size: 18px;
  }
}

/*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */
/* Document
   ========================================================================== */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  font-family: sans-serif; /* 1 */
  line-height: 1.15; /* 2 */
  -ms-text-size-adjust: 100%; /* 3 */
  -webkit-text-size-adjust: 100%; /* 3 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
figcaption,
figure {
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * Add the correct display in IE.
 */
main {
  display: block;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Links
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
}

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted; /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 */
button {
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* 2 */
}

button,
[type=button],
[type=reset],
[type=submit] {
  /**
   * Remove the inner border and padding in Firefox.
   */
  /**
   * Restore the focus styles unset by the previous rule.
   */
}
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Show the overflow in Edge.
 */
input {
  overflow: visible;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
  /**
   * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
   */
}
[type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  color: inherit; /* 2 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Add the correct display in IE 9-.
 */
menu {
  display: block;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

.foundation-mq {
  font-family: "small=0em&lsmall=26.25em&smedium=30em&medium=47.5em&large=64em&xlarge=80em&xxlarge=118.75em&xxxlarge=120.0625em";
}

html {
  box-sizing: border-box;
  font-size: 100%;
}

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

body {
  margin: 0;
  padding: 0;
  background: #fefefe;
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-weight: normal;
  line-height: 1.5;
  color: #0a0a0a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  -ms-interpolation-mode: bicubic;
}

textarea {
  height: auto;
  min-height: 50px;
  border-radius: 0;
}

select {
  box-sizing: border-box;
  width: 100%;
  border-radius: 0;
}

.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
  max-width: none !important;
}

button {
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  line-height: 1;
}
[data-whatinput=mouse] button {
  outline: 0;
}

pre {
  overflow: auto;
}

.is-visible {
  display: block !important;
}

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

.row {
  max-width: 80rem;
  margin-right: auto;
  margin-left: auto;
}
.row::before, .row::after {
  display: table;
  content: " ";
}
.row::after {
  clear: both;
}
.row.collapse > .column, .row.collapse > .columns {
  padding-right: 0;
  padding-left: 0;
}
.row .row {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}
@media screen and (min-width: 26.25em) {
  .row .row {
    margin-right: -0.625rem;
    margin-left: -0.625rem;
  }
}
@media screen and (min-width: 30em) {
  .row .row {
    margin-right: -0.625rem;
    margin-left: -0.625rem;
  }
}
@media print, screen and (min-width: 47.5em) {
  .row .row {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
@media print, screen and (min-width: 64em) {
  .row .row {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
@media screen and (min-width: 80em) {
  .row .row {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
@media screen and (min-width: 118.75em) {
  .row .row {
    margin-right: -0.9375rem;
    margin-left: -0.9375rem;
  }
}
.row .row.collapse {
  margin-right: 0;
  margin-left: 0;
}
.row.expanded {
  max-width: none;
}
.row.expanded .row {
  margin-right: auto;
  margin-left: auto;
}
.row:not(.expanded) .row {
  max-width: none;
}
.row.gutter-small > .column, .row.gutter-small > .columns {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
.row.gutter-medium > .column, .row.gutter-medium > .columns {
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
}

.column, .columns {
  width: 100%;
  float: left;
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 47.5em) {
  .column, .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
  float: right;
}
.column.end:last-child:last-child, .end.columns:last-child:last-child {
  float: left;
}

.column.row.row, .row.row.columns {
  float: none;
}

.row .column.row.row, .row .row.row.columns {
  margin-right: 0;
  margin-left: 0;
  padding-right: 0;
  padding-left: 0;
}

.small-1 {
  width: 8.3333333333%;
}

.small-push-1 {
  position: relative;
  left: 8.3333333333%;
}

.small-pull-1 {
  position: relative;
  left: -8.3333333333%;
}

.small-offset-0 {
  margin-left: 0%;
}

.small-2 {
  width: 16.6666666667%;
}

.small-push-2 {
  position: relative;
  left: 16.6666666667%;
}

.small-pull-2 {
  position: relative;
  left: -16.6666666667%;
}

.small-offset-1 {
  margin-left: 8.3333333333%;
}

.small-3 {
  width: 25%;
}

.small-push-3 {
  position: relative;
  left: 25%;
}

.small-pull-3 {
  position: relative;
  left: -25%;
}

.small-offset-2 {
  margin-left: 16.6666666667%;
}

.small-4 {
  width: 33.3333333333%;
}

.small-push-4 {
  position: relative;
  left: 33.3333333333%;
}

.small-pull-4 {
  position: relative;
  left: -33.3333333333%;
}

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

.small-5 {
  width: 41.6666666667%;
}

.small-push-5 {
  position: relative;
  left: 41.6666666667%;
}

.small-pull-5 {
  position: relative;
  left: -41.6666666667%;
}

.small-offset-4 {
  margin-left: 33.3333333333%;
}

.small-6 {
  width: 50%;
}

.small-push-6 {
  position: relative;
  left: 50%;
}

.small-pull-6 {
  position: relative;
  left: -50%;
}

.small-offset-5 {
  margin-left: 41.6666666667%;
}

.small-7 {
  width: 58.3333333333%;
}

.small-push-7 {
  position: relative;
  left: 58.3333333333%;
}

.small-pull-7 {
  position: relative;
  left: -58.3333333333%;
}

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

.small-8 {
  width: 66.6666666667%;
}

.small-push-8 {
  position: relative;
  left: 66.6666666667%;
}

.small-pull-8 {
  position: relative;
  left: -66.6666666667%;
}

.small-offset-7 {
  margin-left: 58.3333333333%;
}

.small-9 {
  width: 75%;
}

.small-push-9 {
  position: relative;
  left: 75%;
}

.small-pull-9 {
  position: relative;
  left: -75%;
}

.small-offset-8 {
  margin-left: 66.6666666667%;
}

.small-10 {
  width: 83.3333333333%;
}

.small-push-10 {
  position: relative;
  left: 83.3333333333%;
}

.small-pull-10 {
  position: relative;
  left: -83.3333333333%;
}

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

.small-11 {
  width: 91.6666666667%;
}

.small-push-11 {
  position: relative;
  left: 91.6666666667%;
}

.small-pull-11 {
  position: relative;
  left: -91.6666666667%;
}

.small-offset-10 {
  margin-left: 83.3333333333%;
}

.small-12 {
  width: 100%;
}

.small-offset-11 {
  margin-left: 91.6666666667%;
}

.small-up-1 > .column, .small-up-1 > .columns {
  float: left;
  width: 100%;
}
.small-up-1 > .column:nth-of-type(1n), .small-up-1 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-1 > .column:nth-of-type(1n+1), .small-up-1 > .columns:nth-of-type(1n+1) {
  clear: both;
}
.small-up-1 > .column:last-child, .small-up-1 > .columns:last-child {
  float: left;
}

.small-up-2 > .column, .small-up-2 > .columns {
  float: left;
  width: 50%;
}
.small-up-2 > .column:nth-of-type(1n), .small-up-2 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-2 > .column:nth-of-type(2n+1), .small-up-2 > .columns:nth-of-type(2n+1) {
  clear: both;
}
.small-up-2 > .column:last-child, .small-up-2 > .columns:last-child {
  float: left;
}

.small-up-3 > .column, .small-up-3 > .columns {
  float: left;
  width: 33.3333333333%;
}
.small-up-3 > .column:nth-of-type(1n), .small-up-3 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-3 > .column:nth-of-type(3n+1), .small-up-3 > .columns:nth-of-type(3n+1) {
  clear: both;
}
.small-up-3 > .column:last-child, .small-up-3 > .columns:last-child {
  float: left;
}

.small-up-4 > .column, .small-up-4 > .columns {
  float: left;
  width: 25%;
}
.small-up-4 > .column:nth-of-type(1n), .small-up-4 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-4 > .column:nth-of-type(4n+1), .small-up-4 > .columns:nth-of-type(4n+1) {
  clear: both;
}
.small-up-4 > .column:last-child, .small-up-4 > .columns:last-child {
  float: left;
}

.small-up-5 > .column, .small-up-5 > .columns {
  float: left;
  width: 20%;
}
.small-up-5 > .column:nth-of-type(1n), .small-up-5 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-5 > .column:nth-of-type(5n+1), .small-up-5 > .columns:nth-of-type(5n+1) {
  clear: both;
}
.small-up-5 > .column:last-child, .small-up-5 > .columns:last-child {
  float: left;
}

.small-up-6 > .column, .small-up-6 > .columns {
  float: left;
  width: 16.6666666667%;
}
.small-up-6 > .column:nth-of-type(1n), .small-up-6 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-6 > .column:nth-of-type(6n+1), .small-up-6 > .columns:nth-of-type(6n+1) {
  clear: both;
}
.small-up-6 > .column:last-child, .small-up-6 > .columns:last-child {
  float: left;
}

.small-up-7 > .column, .small-up-7 > .columns {
  float: left;
  width: 14.2857142857%;
}
.small-up-7 > .column:nth-of-type(1n), .small-up-7 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-7 > .column:nth-of-type(7n+1), .small-up-7 > .columns:nth-of-type(7n+1) {
  clear: both;
}
.small-up-7 > .column:last-child, .small-up-7 > .columns:last-child {
  float: left;
}

.small-up-8 > .column, .small-up-8 > .columns {
  float: left;
  width: 12.5%;
}
.small-up-8 > .column:nth-of-type(1n), .small-up-8 > .columns:nth-of-type(1n) {
  clear: none;
}
.small-up-8 > .column:nth-of-type(8n+1), .small-up-8 > .columns:nth-of-type(8n+1) {
  clear: both;
}
.small-up-8 > .column:last-child, .small-up-8 > .columns:last-child {
  float: left;
}

.small-collapse > .column, .small-collapse > .columns {
  padding-right: 0;
  padding-left: 0;
}
.small-collapse .row {
  margin-right: 0;
  margin-left: 0;
}

.expanded.row .small-collapse.row {
  margin-right: 0;
  margin-left: 0;
}

.small-uncollapse > .column, .small-uncollapse > .columns {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}

.small-centered {
  margin-right: auto;
  margin-left: auto;
}
.small-centered, .small-centered:last-child:not(:first-child) {
  float: none;
  clear: both;
}

.small-uncentered,
.small-push-0,
.small-pull-0 {
  position: static;
  float: left;
  margin-right: 0;
  margin-left: 0;
}

@media screen and (min-width: 26.25em) {
  .lsmall-1 {
    width: 8.3333333333%;
  }
  .lsmall-push-1 {
    position: relative;
    left: 8.3333333333%;
  }
  .lsmall-pull-1 {
    position: relative;
    left: -8.3333333333%;
  }
  .lsmall-offset-0 {
    margin-left: 0%;
  }
  .lsmall-2 {
    width: 16.6666666667%;
  }
  .lsmall-push-2 {
    position: relative;
    left: 16.6666666667%;
  }
  .lsmall-pull-2 {
    position: relative;
    left: -16.6666666667%;
  }
  .lsmall-offset-1 {
    margin-left: 8.3333333333%;
  }
  .lsmall-3 {
    width: 25%;
  }
  .lsmall-push-3 {
    position: relative;
    left: 25%;
  }
  .lsmall-pull-3 {
    position: relative;
    left: -25%;
  }
  .lsmall-offset-2 {
    margin-left: 16.6666666667%;
  }
  .lsmall-4 {
    width: 33.3333333333%;
  }
  .lsmall-push-4 {
    position: relative;
    left: 33.3333333333%;
  }
  .lsmall-pull-4 {
    position: relative;
    left: -33.3333333333%;
  }
  .lsmall-offset-3 {
    margin-left: 25%;
  }
  .lsmall-5 {
    width: 41.6666666667%;
  }
  .lsmall-push-5 {
    position: relative;
    left: 41.6666666667%;
  }
  .lsmall-pull-5 {
    position: relative;
    left: -41.6666666667%;
  }
  .lsmall-offset-4 {
    margin-left: 33.3333333333%;
  }
  .lsmall-6 {
    width: 50%;
  }
  .lsmall-push-6 {
    position: relative;
    left: 50%;
  }
  .lsmall-pull-6 {
    position: relative;
    left: -50%;
  }
  .lsmall-offset-5 {
    margin-left: 41.6666666667%;
  }
  .lsmall-7 {
    width: 58.3333333333%;
  }
  .lsmall-push-7 {
    position: relative;
    left: 58.3333333333%;
  }
  .lsmall-pull-7 {
    position: relative;
    left: -58.3333333333%;
  }
  .lsmall-offset-6 {
    margin-left: 50%;
  }
  .lsmall-8 {
    width: 66.6666666667%;
  }
  .lsmall-push-8 {
    position: relative;
    left: 66.6666666667%;
  }
  .lsmall-pull-8 {
    position: relative;
    left: -66.6666666667%;
  }
  .lsmall-offset-7 {
    margin-left: 58.3333333333%;
  }
  .lsmall-9 {
    width: 75%;
  }
  .lsmall-push-9 {
    position: relative;
    left: 75%;
  }
  .lsmall-pull-9 {
    position: relative;
    left: -75%;
  }
  .lsmall-offset-8 {
    margin-left: 66.6666666667%;
  }
  .lsmall-10 {
    width: 83.3333333333%;
  }
  .lsmall-push-10 {
    position: relative;
    left: 83.3333333333%;
  }
  .lsmall-pull-10 {
    position: relative;
    left: -83.3333333333%;
  }
  .lsmall-offset-9 {
    margin-left: 75%;
  }
  .lsmall-11 {
    width: 91.6666666667%;
  }
  .lsmall-push-11 {
    position: relative;
    left: 91.6666666667%;
  }
  .lsmall-pull-11 {
    position: relative;
    left: -91.6666666667%;
  }
  .lsmall-offset-10 {
    margin-left: 83.3333333333%;
  }
  .lsmall-12 {
    width: 100%;
  }
  .lsmall-offset-11 {
    margin-left: 91.6666666667%;
  }
  .lsmall-up-1 > .column, .lsmall-up-1 > .columns {
    float: left;
    width: 100%;
  }
  .lsmall-up-1 > .column:nth-of-type(1n), .lsmall-up-1 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .lsmall-up-1 > .column:nth-of-type(1n+1), .lsmall-up-1 > .columns:nth-of-type(1n+1) {
    clear: both;
  }
  .lsmall-up-1 > .column:last-child, .lsmall-up-1 > .columns:last-child {
    float: left;
  }
  .lsmall-up-2 > .column, .lsmall-up-2 > .columns {
    float: left;
    width: 50%;
  }
  .lsmall-up-2 > .column:nth-of-type(1n), .lsmall-up-2 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .lsmall-up-2 > .column:nth-of-type(2n+1), .lsmall-up-2 > .columns:nth-of-type(2n+1) {
    clear: both;
  }
  .lsmall-up-2 > .column:last-child, .lsmall-up-2 > .columns:last-child {
    float: left;
  }
  .lsmall-up-3 > .column, .lsmall-up-3 > .columns {
    float: left;
    width: 33.3333333333%;
  }
  .lsmall-up-3 > .column:nth-of-type(1n), .lsmall-up-3 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .lsmall-up-3 > .column:nth-of-type(3n+1), .lsmall-up-3 > .columns:nth-of-type(3n+1) {
    clear: both;
  }
  .lsmall-up-3 > .column:last-child, .lsmall-up-3 > .columns:last-child {
    float: left;
  }
  .lsmall-up-4 > .column, .lsmall-up-4 > .columns {
    float: left;
    width: 25%;
  }
  .lsmall-up-4 > .column:nth-of-type(1n), .lsmall-up-4 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .lsmall-up-4 > .column:nth-of-type(4n+1), .lsmall-up-4 > .columns:nth-of-type(4n+1) {
    clear: both;
  }
  .lsmall-up-4 > .column:last-child, .lsmall-up-4 > .columns:last-child {
    float: left;
  }
  .lsmall-up-5 > .column, .lsmall-up-5 > .columns {
    float: left;
    width: 20%;
  }
  .lsmall-up-5 > .column:nth-of-type(1n), .lsmall-up-5 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .lsmall-up-5 > .column:nth-of-type(5n+1), .lsmall-up-5 > .columns:nth-of-type(5n+1) {
    clear: both;
  }
  .lsmall-up-5 > .column:last-child, .lsmall-up-5 > .columns:last-child {
    float: left;
  }
  .lsmall-up-6 > .column, .lsmall-up-6 > .columns {
    float: left;
    width: 16.6666666667%;
  }
  .lsmall-up-6 > .column:nth-of-type(1n), .lsmall-up-6 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .lsmall-up-6 > .column:nth-of-type(6n+1), .lsmall-up-6 > .columns:nth-of-type(6n+1) {
    clear: both;
  }
  .lsmall-up-6 > .column:last-child, .lsmall-up-6 > .columns:last-child {
    float: left;
  }
  .lsmall-up-7 > .column, .lsmall-up-7 > .columns {
    float: left;
    width: 14.2857142857%;
  }
  .lsmall-up-7 > .column:nth-of-type(1n), .lsmall-up-7 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .lsmall-up-7 > .column:nth-of-type(7n+1), .lsmall-up-7 > .columns:nth-of-type(7n+1) {
    clear: both;
  }
  .lsmall-up-7 > .column:last-child, .lsmall-up-7 > .columns:last-child {
    float: left;
  }
  .lsmall-up-8 > .column, .lsmall-up-8 > .columns {
    float: left;
    width: 12.5%;
  }
  .lsmall-up-8 > .column:nth-of-type(1n), .lsmall-up-8 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .lsmall-up-8 > .column:nth-of-type(8n+1), .lsmall-up-8 > .columns:nth-of-type(8n+1) {
    clear: both;
  }
  .lsmall-up-8 > .column:last-child, .lsmall-up-8 > .columns:last-child {
    float: left;
  }
  .lsmall-collapse > .column, .lsmall-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }
  .lsmall-collapse .row {
    margin-right: 0;
    margin-left: 0;
  }
  .expanded.row .lsmall-collapse.row {
    margin-right: 0;
    margin-left: 0;
  }
  .lsmall-uncollapse > .column, .lsmall-uncollapse > .columns {
    padding-right: 0.625rem;
    padding-left: 0.625rem;
  }
  .lsmall-centered {
    margin-right: auto;
    margin-left: auto;
  }
  .lsmall-centered, .lsmall-centered:last-child:not(:first-child) {
    float: none;
    clear: both;
  }
  .lsmall-uncentered,
  .lsmall-push-0,
  .lsmall-pull-0 {
    position: static;
    float: left;
    margin-right: 0;
    margin-left: 0;
  }
}
@media screen and (min-width: 30em) {
  .smedium-1 {
    width: 8.3333333333%;
  }
  .smedium-push-1 {
    position: relative;
    left: 8.3333333333%;
  }
  .smedium-pull-1 {
    position: relative;
    left: -8.3333333333%;
  }
  .smedium-offset-0 {
    margin-left: 0%;
  }
  .smedium-2 {
    width: 16.6666666667%;
  }
  .smedium-push-2 {
    position: relative;
    left: 16.6666666667%;
  }
  .smedium-pull-2 {
    position: relative;
    left: -16.6666666667%;
  }
  .smedium-offset-1 {
    margin-left: 8.3333333333%;
  }
  .smedium-3 {
    width: 25%;
  }
  .smedium-push-3 {
    position: relative;
    left: 25%;
  }
  .smedium-pull-3 {
    position: relative;
    left: -25%;
  }
  .smedium-offset-2 {
    margin-left: 16.6666666667%;
  }
  .smedium-4 {
    width: 33.3333333333%;
  }
  .smedium-push-4 {
    position: relative;
    left: 33.3333333333%;
  }
  .smedium-pull-4 {
    position: relative;
    left: -33.3333333333%;
  }
  .smedium-offset-3 {
    margin-left: 25%;
  }
  .smedium-5 {
    width: 41.6666666667%;
  }
  .smedium-push-5 {
    position: relative;
    left: 41.6666666667%;
  }
  .smedium-pull-5 {
    position: relative;
    left: -41.6666666667%;
  }
  .smedium-offset-4 {
    margin-left: 33.3333333333%;
  }
  .smedium-6 {
    width: 50%;
  }
  .smedium-push-6 {
    position: relative;
    left: 50%;
  }
  .smedium-pull-6 {
    position: relative;
    left: -50%;
  }
  .smedium-offset-5 {
    margin-left: 41.6666666667%;
  }
  .smedium-7 {
    width: 58.3333333333%;
  }
  .smedium-push-7 {
    position: relative;
    left: 58.3333333333%;
  }
  .smedium-pull-7 {
    position: relative;
    left: -58.3333333333%;
  }
  .smedium-offset-6 {
    margin-left: 50%;
  }
  .smedium-8 {
    width: 66.6666666667%;
  }
  .smedium-push-8 {
    position: relative;
    left: 66.6666666667%;
  }
  .smedium-pull-8 {
    position: relative;
    left: -66.6666666667%;
  }
  .smedium-offset-7 {
    margin-left: 58.3333333333%;
  }
  .smedium-9 {
    width: 75%;
  }
  .smedium-push-9 {
    position: relative;
    left: 75%;
  }
  .smedium-pull-9 {
    position: relative;
    left: -75%;
  }
  .smedium-offset-8 {
    margin-left: 66.6666666667%;
  }
  .smedium-10 {
    width: 83.3333333333%;
  }
  .smedium-push-10 {
    position: relative;
    left: 83.3333333333%;
  }
  .smedium-pull-10 {
    position: relative;
    left: -83.3333333333%;
  }
  .smedium-offset-9 {
    margin-left: 75%;
  }
  .smedium-11 {
    width: 91.6666666667%;
  }
  .smedium-push-11 {
    position: relative;
    left: 91.6666666667%;
  }
  .smedium-pull-11 {
    position: relative;
    left: -91.6666666667%;
  }
  .smedium-offset-10 {
    margin-left: 83.3333333333%;
  }
  .smedium-12 {
    width: 100%;
  }
  .smedium-offset-11 {
    margin-left: 91.6666666667%;
  }
  .smedium-up-1 > .column, .smedium-up-1 > .columns {
    float: left;
    width: 100%;
  }
  .smedium-up-1 > .column:nth-of-type(1n), .smedium-up-1 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .smedium-up-1 > .column:nth-of-type(1n+1), .smedium-up-1 > .columns:nth-of-type(1n+1) {
    clear: both;
  }
  .smedium-up-1 > .column:last-child, .smedium-up-1 > .columns:last-child {
    float: left;
  }
  .smedium-up-2 > .column, .smedium-up-2 > .columns {
    float: left;
    width: 50%;
  }
  .smedium-up-2 > .column:nth-of-type(1n), .smedium-up-2 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .smedium-up-2 > .column:nth-of-type(2n+1), .smedium-up-2 > .columns:nth-of-type(2n+1) {
    clear: both;
  }
  .smedium-up-2 > .column:last-child, .smedium-up-2 > .columns:last-child {
    float: left;
  }
  .smedium-up-3 > .column, .smedium-up-3 > .columns {
    float: left;
    width: 33.3333333333%;
  }
  .smedium-up-3 > .column:nth-of-type(1n), .smedium-up-3 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .smedium-up-3 > .column:nth-of-type(3n+1), .smedium-up-3 > .columns:nth-of-type(3n+1) {
    clear: both;
  }
  .smedium-up-3 > .column:last-child, .smedium-up-3 > .columns:last-child {
    float: left;
  }
  .smedium-up-4 > .column, .smedium-up-4 > .columns {
    float: left;
    width: 25%;
  }
  .smedium-up-4 > .column:nth-of-type(1n), .smedium-up-4 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .smedium-up-4 > .column:nth-of-type(4n+1), .smedium-up-4 > .columns:nth-of-type(4n+1) {
    clear: both;
  }
  .smedium-up-4 > .column:last-child, .smedium-up-4 > .columns:last-child {
    float: left;
  }
  .smedium-up-5 > .column, .smedium-up-5 > .columns {
    float: left;
    width: 20%;
  }
  .smedium-up-5 > .column:nth-of-type(1n), .smedium-up-5 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .smedium-up-5 > .column:nth-of-type(5n+1), .smedium-up-5 > .columns:nth-of-type(5n+1) {
    clear: both;
  }
  .smedium-up-5 > .column:last-child, .smedium-up-5 > .columns:last-child {
    float: left;
  }
  .smedium-up-6 > .column, .smedium-up-6 > .columns {
    float: left;
    width: 16.6666666667%;
  }
  .smedium-up-6 > .column:nth-of-type(1n), .smedium-up-6 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .smedium-up-6 > .column:nth-of-type(6n+1), .smedium-up-6 > .columns:nth-of-type(6n+1) {
    clear: both;
  }
  .smedium-up-6 > .column:last-child, .smedium-up-6 > .columns:last-child {
    float: left;
  }
  .smedium-up-7 > .column, .smedium-up-7 > .columns {
    float: left;
    width: 14.2857142857%;
  }
  .smedium-up-7 > .column:nth-of-type(1n), .smedium-up-7 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .smedium-up-7 > .column:nth-of-type(7n+1), .smedium-up-7 > .columns:nth-of-type(7n+1) {
    clear: both;
  }
  .smedium-up-7 > .column:last-child, .smedium-up-7 > .columns:last-child {
    float: left;
  }
  .smedium-up-8 > .column, .smedium-up-8 > .columns {
    float: left;
    width: 12.5%;
  }
  .smedium-up-8 > .column:nth-of-type(1n), .smedium-up-8 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .smedium-up-8 > .column:nth-of-type(8n+1), .smedium-up-8 > .columns:nth-of-type(8n+1) {
    clear: both;
  }
  .smedium-up-8 > .column:last-child, .smedium-up-8 > .columns:last-child {
    float: left;
  }
  .smedium-collapse > .column, .smedium-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }
  .smedium-collapse .row {
    margin-right: 0;
    margin-left: 0;
  }
  .expanded.row .smedium-collapse.row {
    margin-right: 0;
    margin-left: 0;
  }
  .smedium-uncollapse > .column, .smedium-uncollapse > .columns {
    padding-right: 0.625rem;
    padding-left: 0.625rem;
  }
  .smedium-centered {
    margin-right: auto;
    margin-left: auto;
  }
  .smedium-centered, .smedium-centered:last-child:not(:first-child) {
    float: none;
    clear: both;
  }
  .smedium-uncentered,
  .smedium-push-0,
  .smedium-pull-0 {
    position: static;
    float: left;
    margin-right: 0;
    margin-left: 0;
  }
}
@media print, screen and (min-width: 47.5em) {
  .medium-1 {
    width: 8.3333333333%;
  }
  .medium-push-1 {
    position: relative;
    left: 8.3333333333%;
  }
  .medium-pull-1 {
    position: relative;
    left: -8.3333333333%;
  }
  .medium-offset-0 {
    margin-left: 0%;
  }
  .medium-2 {
    width: 16.6666666667%;
  }
  .medium-push-2 {
    position: relative;
    left: 16.6666666667%;
  }
  .medium-pull-2 {
    position: relative;
    left: -16.6666666667%;
  }
  .medium-offset-1 {
    margin-left: 8.3333333333%;
  }
  .medium-3 {
    width: 25%;
  }
  .medium-push-3 {
    position: relative;
    left: 25%;
  }
  .medium-pull-3 {
    position: relative;
    left: -25%;
  }
  .medium-offset-2 {
    margin-left: 16.6666666667%;
  }
  .medium-4 {
    width: 33.3333333333%;
  }
  .medium-push-4 {
    position: relative;
    left: 33.3333333333%;
  }
  .medium-pull-4 {
    position: relative;
    left: -33.3333333333%;
  }
  .medium-offset-3 {
    margin-left: 25%;
  }
  .medium-5 {
    width: 41.6666666667%;
  }
  .medium-push-5 {
    position: relative;
    left: 41.6666666667%;
  }
  .medium-pull-5 {
    position: relative;
    left: -41.6666666667%;
  }
  .medium-offset-4 {
    margin-left: 33.3333333333%;
  }
  .medium-6 {
    width: 50%;
  }
  .medium-push-6 {
    position: relative;
    left: 50%;
  }
  .medium-pull-6 {
    position: relative;
    left: -50%;
  }
  .medium-offset-5 {
    margin-left: 41.6666666667%;
  }
  .medium-7 {
    width: 58.3333333333%;
  }
  .medium-push-7 {
    position: relative;
    left: 58.3333333333%;
  }
  .medium-pull-7 {
    position: relative;
    left: -58.3333333333%;
  }
  .medium-offset-6 {
    margin-left: 50%;
  }
  .medium-8 {
    width: 66.6666666667%;
  }
  .medium-push-8 {
    position: relative;
    left: 66.6666666667%;
  }
  .medium-pull-8 {
    position: relative;
    left: -66.6666666667%;
  }
  .medium-offset-7 {
    margin-left: 58.3333333333%;
  }
  .medium-9 {
    width: 75%;
  }
  .medium-push-9 {
    position: relative;
    left: 75%;
  }
  .medium-pull-9 {
    position: relative;
    left: -75%;
  }
  .medium-offset-8 {
    margin-left: 66.6666666667%;
  }
  .medium-10 {
    width: 83.3333333333%;
  }
  .medium-push-10 {
    position: relative;
    left: 83.3333333333%;
  }
  .medium-pull-10 {
    position: relative;
    left: -83.3333333333%;
  }
  .medium-offset-9 {
    margin-left: 75%;
  }
  .medium-11 {
    width: 91.6666666667%;
  }
  .medium-push-11 {
    position: relative;
    left: 91.6666666667%;
  }
  .medium-pull-11 {
    position: relative;
    left: -91.6666666667%;
  }
  .medium-offset-10 {
    margin-left: 83.3333333333%;
  }
  .medium-12 {
    width: 100%;
  }
  .medium-offset-11 {
    margin-left: 91.6666666667%;
  }
  .medium-up-1 > .column, .medium-up-1 > .columns {
    float: left;
    width: 100%;
  }
  .medium-up-1 > .column:nth-of-type(1n), .medium-up-1 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-1 > .column:nth-of-type(1n+1), .medium-up-1 > .columns:nth-of-type(1n+1) {
    clear: both;
  }
  .medium-up-1 > .column:last-child, .medium-up-1 > .columns:last-child {
    float: left;
  }
  .medium-up-2 > .column, .medium-up-2 > .columns {
    float: left;
    width: 50%;
  }
  .medium-up-2 > .column:nth-of-type(1n), .medium-up-2 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-2 > .column:nth-of-type(2n+1), .medium-up-2 > .columns:nth-of-type(2n+1) {
    clear: both;
  }
  .medium-up-2 > .column:last-child, .medium-up-2 > .columns:last-child {
    float: left;
  }
  .medium-up-3 > .column, .medium-up-3 > .columns {
    float: left;
    width: 33.3333333333%;
  }
  .medium-up-3 > .column:nth-of-type(1n), .medium-up-3 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-3 > .column:nth-of-type(3n+1), .medium-up-3 > .columns:nth-of-type(3n+1) {
    clear: both;
  }
  .medium-up-3 > .column:last-child, .medium-up-3 > .columns:last-child {
    float: left;
  }
  .medium-up-4 > .column, .medium-up-4 > .columns {
    float: left;
    width: 25%;
  }
  .medium-up-4 > .column:nth-of-type(1n), .medium-up-4 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-4 > .column:nth-of-type(4n+1), .medium-up-4 > .columns:nth-of-type(4n+1) {
    clear: both;
  }
  .medium-up-4 > .column:last-child, .medium-up-4 > .columns:last-child {
    float: left;
  }
  .medium-up-5 > .column, .medium-up-5 > .columns {
    float: left;
    width: 20%;
  }
  .medium-up-5 > .column:nth-of-type(1n), .medium-up-5 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-5 > .column:nth-of-type(5n+1), .medium-up-5 > .columns:nth-of-type(5n+1) {
    clear: both;
  }
  .medium-up-5 > .column:last-child, .medium-up-5 > .columns:last-child {
    float: left;
  }
  .medium-up-6 > .column, .medium-up-6 > .columns {
    float: left;
    width: 16.6666666667%;
  }
  .medium-up-6 > .column:nth-of-type(1n), .medium-up-6 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-6 > .column:nth-of-type(6n+1), .medium-up-6 > .columns:nth-of-type(6n+1) {
    clear: both;
  }
  .medium-up-6 > .column:last-child, .medium-up-6 > .columns:last-child {
    float: left;
  }
  .medium-up-7 > .column, .medium-up-7 > .columns {
    float: left;
    width: 14.2857142857%;
  }
  .medium-up-7 > .column:nth-of-type(1n), .medium-up-7 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-7 > .column:nth-of-type(7n+1), .medium-up-7 > .columns:nth-of-type(7n+1) {
    clear: both;
  }
  .medium-up-7 > .column:last-child, .medium-up-7 > .columns:last-child {
    float: left;
  }
  .medium-up-8 > .column, .medium-up-8 > .columns {
    float: left;
    width: 12.5%;
  }
  .medium-up-8 > .column:nth-of-type(1n), .medium-up-8 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .medium-up-8 > .column:nth-of-type(8n+1), .medium-up-8 > .columns:nth-of-type(8n+1) {
    clear: both;
  }
  .medium-up-8 > .column:last-child, .medium-up-8 > .columns:last-child {
    float: left;
  }
  .medium-collapse > .column, .medium-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }
  .medium-collapse .row {
    margin-right: 0;
    margin-left: 0;
  }
  .expanded.row .medium-collapse.row {
    margin-right: 0;
    margin-left: 0;
  }
  .medium-uncollapse > .column, .medium-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
  .medium-centered {
    margin-right: auto;
    margin-left: auto;
  }
  .medium-centered, .medium-centered:last-child:not(:first-child) {
    float: none;
    clear: both;
  }
  .medium-uncentered,
  .medium-push-0,
  .medium-pull-0 {
    position: static;
    float: left;
    margin-right: 0;
    margin-left: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .large-1 {
    width: 8.3333333333%;
  }
  .large-push-1 {
    position: relative;
    left: 8.3333333333%;
  }
  .large-pull-1 {
    position: relative;
    left: -8.3333333333%;
  }
  .large-offset-0 {
    margin-left: 0%;
  }
  .large-2 {
    width: 16.6666666667%;
  }
  .large-push-2 {
    position: relative;
    left: 16.6666666667%;
  }
  .large-pull-2 {
    position: relative;
    left: -16.6666666667%;
  }
  .large-offset-1 {
    margin-left: 8.3333333333%;
  }
  .large-3 {
    width: 25%;
  }
  .large-push-3 {
    position: relative;
    left: 25%;
  }
  .large-pull-3 {
    position: relative;
    left: -25%;
  }
  .large-offset-2 {
    margin-left: 16.6666666667%;
  }
  .large-4 {
    width: 33.3333333333%;
  }
  .large-push-4 {
    position: relative;
    left: 33.3333333333%;
  }
  .large-pull-4 {
    position: relative;
    left: -33.3333333333%;
  }
  .large-offset-3 {
    margin-left: 25%;
  }
  .large-5 {
    width: 41.6666666667%;
  }
  .large-push-5 {
    position: relative;
    left: 41.6666666667%;
  }
  .large-pull-5 {
    position: relative;
    left: -41.6666666667%;
  }
  .large-offset-4 {
    margin-left: 33.3333333333%;
  }
  .large-6 {
    width: 50%;
  }
  .large-push-6 {
    position: relative;
    left: 50%;
  }
  .large-pull-6 {
    position: relative;
    left: -50%;
  }
  .large-offset-5 {
    margin-left: 41.6666666667%;
  }
  .large-7 {
    width: 58.3333333333%;
  }
  .large-push-7 {
    position: relative;
    left: 58.3333333333%;
  }
  .large-pull-7 {
    position: relative;
    left: -58.3333333333%;
  }
  .large-offset-6 {
    margin-left: 50%;
  }
  .large-8 {
    width: 66.6666666667%;
  }
  .large-push-8 {
    position: relative;
    left: 66.6666666667%;
  }
  .large-pull-8 {
    position: relative;
    left: -66.6666666667%;
  }
  .large-offset-7 {
    margin-left: 58.3333333333%;
  }
  .large-9 {
    width: 75%;
  }
  .large-push-9 {
    position: relative;
    left: 75%;
  }
  .large-pull-9 {
    position: relative;
    left: -75%;
  }
  .large-offset-8 {
    margin-left: 66.6666666667%;
  }
  .large-10 {
    width: 83.3333333333%;
  }
  .large-push-10 {
    position: relative;
    left: 83.3333333333%;
  }
  .large-pull-10 {
    position: relative;
    left: -83.3333333333%;
  }
  .large-offset-9 {
    margin-left: 75%;
  }
  .large-11 {
    width: 91.6666666667%;
  }
  .large-push-11 {
    position: relative;
    left: 91.6666666667%;
  }
  .large-pull-11 {
    position: relative;
    left: -91.6666666667%;
  }
  .large-offset-10 {
    margin-left: 83.3333333333%;
  }
  .large-12 {
    width: 100%;
  }
  .large-offset-11 {
    margin-left: 91.6666666667%;
  }
  .large-up-1 > .column, .large-up-1 > .columns {
    float: left;
    width: 100%;
  }
  .large-up-1 > .column:nth-of-type(1n), .large-up-1 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-1 > .column:nth-of-type(1n+1), .large-up-1 > .columns:nth-of-type(1n+1) {
    clear: both;
  }
  .large-up-1 > .column:last-child, .large-up-1 > .columns:last-child {
    float: left;
  }
  .large-up-2 > .column, .large-up-2 > .columns {
    float: left;
    width: 50%;
  }
  .large-up-2 > .column:nth-of-type(1n), .large-up-2 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-2 > .column:nth-of-type(2n+1), .large-up-2 > .columns:nth-of-type(2n+1) {
    clear: both;
  }
  .large-up-2 > .column:last-child, .large-up-2 > .columns:last-child {
    float: left;
  }
  .large-up-3 > .column, .large-up-3 > .columns {
    float: left;
    width: 33.3333333333%;
  }
  .large-up-3 > .column:nth-of-type(1n), .large-up-3 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-3 > .column:nth-of-type(3n+1), .large-up-3 > .columns:nth-of-type(3n+1) {
    clear: both;
  }
  .large-up-3 > .column:last-child, .large-up-3 > .columns:last-child {
    float: left;
  }
  .large-up-4 > .column, .large-up-4 > .columns {
    float: left;
    width: 25%;
  }
  .large-up-4 > .column:nth-of-type(1n), .large-up-4 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-4 > .column:nth-of-type(4n+1), .large-up-4 > .columns:nth-of-type(4n+1) {
    clear: both;
  }
  .large-up-4 > .column:last-child, .large-up-4 > .columns:last-child {
    float: left;
  }
  .large-up-5 > .column, .large-up-5 > .columns {
    float: left;
    width: 20%;
  }
  .large-up-5 > .column:nth-of-type(1n), .large-up-5 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-5 > .column:nth-of-type(5n+1), .large-up-5 > .columns:nth-of-type(5n+1) {
    clear: both;
  }
  .large-up-5 > .column:last-child, .large-up-5 > .columns:last-child {
    float: left;
  }
  .large-up-6 > .column, .large-up-6 > .columns {
    float: left;
    width: 16.6666666667%;
  }
  .large-up-6 > .column:nth-of-type(1n), .large-up-6 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-6 > .column:nth-of-type(6n+1), .large-up-6 > .columns:nth-of-type(6n+1) {
    clear: both;
  }
  .large-up-6 > .column:last-child, .large-up-6 > .columns:last-child {
    float: left;
  }
  .large-up-7 > .column, .large-up-7 > .columns {
    float: left;
    width: 14.2857142857%;
  }
  .large-up-7 > .column:nth-of-type(1n), .large-up-7 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-7 > .column:nth-of-type(7n+1), .large-up-7 > .columns:nth-of-type(7n+1) {
    clear: both;
  }
  .large-up-7 > .column:last-child, .large-up-7 > .columns:last-child {
    float: left;
  }
  .large-up-8 > .column, .large-up-8 > .columns {
    float: left;
    width: 12.5%;
  }
  .large-up-8 > .column:nth-of-type(1n), .large-up-8 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .large-up-8 > .column:nth-of-type(8n+1), .large-up-8 > .columns:nth-of-type(8n+1) {
    clear: both;
  }
  .large-up-8 > .column:last-child, .large-up-8 > .columns:last-child {
    float: left;
  }
  .large-collapse > .column, .large-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }
  .large-collapse .row {
    margin-right: 0;
    margin-left: 0;
  }
  .expanded.row .large-collapse.row {
    margin-right: 0;
    margin-left: 0;
  }
  .large-uncollapse > .column, .large-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
  .large-centered {
    margin-right: auto;
    margin-left: auto;
  }
  .large-centered, .large-centered:last-child:not(:first-child) {
    float: none;
    clear: both;
  }
  .large-uncentered,
  .large-push-0,
  .large-pull-0 {
    position: static;
    float: left;
    margin-right: 0;
    margin-left: 0;
  }
}
@media screen and (min-width: 80em) {
  .xlarge-1 {
    width: 8.3333333333%;
  }
  .xlarge-push-1 {
    position: relative;
    left: 8.3333333333%;
  }
  .xlarge-pull-1 {
    position: relative;
    left: -8.3333333333%;
  }
  .xlarge-offset-0 {
    margin-left: 0%;
  }
  .xlarge-2 {
    width: 16.6666666667%;
  }
  .xlarge-push-2 {
    position: relative;
    left: 16.6666666667%;
  }
  .xlarge-pull-2 {
    position: relative;
    left: -16.6666666667%;
  }
  .xlarge-offset-1 {
    margin-left: 8.3333333333%;
  }
  .xlarge-3 {
    width: 25%;
  }
  .xlarge-push-3 {
    position: relative;
    left: 25%;
  }
  .xlarge-pull-3 {
    position: relative;
    left: -25%;
  }
  .xlarge-offset-2 {
    margin-left: 16.6666666667%;
  }
  .xlarge-4 {
    width: 33.3333333333%;
  }
  .xlarge-push-4 {
    position: relative;
    left: 33.3333333333%;
  }
  .xlarge-pull-4 {
    position: relative;
    left: -33.3333333333%;
  }
  .xlarge-offset-3 {
    margin-left: 25%;
  }
  .xlarge-5 {
    width: 41.6666666667%;
  }
  .xlarge-push-5 {
    position: relative;
    left: 41.6666666667%;
  }
  .xlarge-pull-5 {
    position: relative;
    left: -41.6666666667%;
  }
  .xlarge-offset-4 {
    margin-left: 33.3333333333%;
  }
  .xlarge-6 {
    width: 50%;
  }
  .xlarge-push-6 {
    position: relative;
    left: 50%;
  }
  .xlarge-pull-6 {
    position: relative;
    left: -50%;
  }
  .xlarge-offset-5 {
    margin-left: 41.6666666667%;
  }
  .xlarge-7 {
    width: 58.3333333333%;
  }
  .xlarge-push-7 {
    position: relative;
    left: 58.3333333333%;
  }
  .xlarge-pull-7 {
    position: relative;
    left: -58.3333333333%;
  }
  .xlarge-offset-6 {
    margin-left: 50%;
  }
  .xlarge-8 {
    width: 66.6666666667%;
  }
  .xlarge-push-8 {
    position: relative;
    left: 66.6666666667%;
  }
  .xlarge-pull-8 {
    position: relative;
    left: -66.6666666667%;
  }
  .xlarge-offset-7 {
    margin-left: 58.3333333333%;
  }
  .xlarge-9 {
    width: 75%;
  }
  .xlarge-push-9 {
    position: relative;
    left: 75%;
  }
  .xlarge-pull-9 {
    position: relative;
    left: -75%;
  }
  .xlarge-offset-8 {
    margin-left: 66.6666666667%;
  }
  .xlarge-10 {
    width: 83.3333333333%;
  }
  .xlarge-push-10 {
    position: relative;
    left: 83.3333333333%;
  }
  .xlarge-pull-10 {
    position: relative;
    left: -83.3333333333%;
  }
  .xlarge-offset-9 {
    margin-left: 75%;
  }
  .xlarge-11 {
    width: 91.6666666667%;
  }
  .xlarge-push-11 {
    position: relative;
    left: 91.6666666667%;
  }
  .xlarge-pull-11 {
    position: relative;
    left: -91.6666666667%;
  }
  .xlarge-offset-10 {
    margin-left: 83.3333333333%;
  }
  .xlarge-12 {
    width: 100%;
  }
  .xlarge-offset-11 {
    margin-left: 91.6666666667%;
  }
  .xlarge-up-1 > .column, .xlarge-up-1 > .columns {
    float: left;
    width: 100%;
  }
  .xlarge-up-1 > .column:nth-of-type(1n), .xlarge-up-1 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xlarge-up-1 > .column:nth-of-type(1n+1), .xlarge-up-1 > .columns:nth-of-type(1n+1) {
    clear: both;
  }
  .xlarge-up-1 > .column:last-child, .xlarge-up-1 > .columns:last-child {
    float: left;
  }
  .xlarge-up-2 > .column, .xlarge-up-2 > .columns {
    float: left;
    width: 50%;
  }
  .xlarge-up-2 > .column:nth-of-type(1n), .xlarge-up-2 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xlarge-up-2 > .column:nth-of-type(2n+1), .xlarge-up-2 > .columns:nth-of-type(2n+1) {
    clear: both;
  }
  .xlarge-up-2 > .column:last-child, .xlarge-up-2 > .columns:last-child {
    float: left;
  }
  .xlarge-up-3 > .column, .xlarge-up-3 > .columns {
    float: left;
    width: 33.3333333333%;
  }
  .xlarge-up-3 > .column:nth-of-type(1n), .xlarge-up-3 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xlarge-up-3 > .column:nth-of-type(3n+1), .xlarge-up-3 > .columns:nth-of-type(3n+1) {
    clear: both;
  }
  .xlarge-up-3 > .column:last-child, .xlarge-up-3 > .columns:last-child {
    float: left;
  }
  .xlarge-up-4 > .column, .xlarge-up-4 > .columns {
    float: left;
    width: 25%;
  }
  .xlarge-up-4 > .column:nth-of-type(1n), .xlarge-up-4 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xlarge-up-4 > .column:nth-of-type(4n+1), .xlarge-up-4 > .columns:nth-of-type(4n+1) {
    clear: both;
  }
  .xlarge-up-4 > .column:last-child, .xlarge-up-4 > .columns:last-child {
    float: left;
  }
  .xlarge-up-5 > .column, .xlarge-up-5 > .columns {
    float: left;
    width: 20%;
  }
  .xlarge-up-5 > .column:nth-of-type(1n), .xlarge-up-5 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xlarge-up-5 > .column:nth-of-type(5n+1), .xlarge-up-5 > .columns:nth-of-type(5n+1) {
    clear: both;
  }
  .xlarge-up-5 > .column:last-child, .xlarge-up-5 > .columns:last-child {
    float: left;
  }
  .xlarge-up-6 > .column, .xlarge-up-6 > .columns {
    float: left;
    width: 16.6666666667%;
  }
  .xlarge-up-6 > .column:nth-of-type(1n), .xlarge-up-6 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xlarge-up-6 > .column:nth-of-type(6n+1), .xlarge-up-6 > .columns:nth-of-type(6n+1) {
    clear: both;
  }
  .xlarge-up-6 > .column:last-child, .xlarge-up-6 > .columns:last-child {
    float: left;
  }
  .xlarge-up-7 > .column, .xlarge-up-7 > .columns {
    float: left;
    width: 14.2857142857%;
  }
  .xlarge-up-7 > .column:nth-of-type(1n), .xlarge-up-7 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xlarge-up-7 > .column:nth-of-type(7n+1), .xlarge-up-7 > .columns:nth-of-type(7n+1) {
    clear: both;
  }
  .xlarge-up-7 > .column:last-child, .xlarge-up-7 > .columns:last-child {
    float: left;
  }
  .xlarge-up-8 > .column, .xlarge-up-8 > .columns {
    float: left;
    width: 12.5%;
  }
  .xlarge-up-8 > .column:nth-of-type(1n), .xlarge-up-8 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xlarge-up-8 > .column:nth-of-type(8n+1), .xlarge-up-8 > .columns:nth-of-type(8n+1) {
    clear: both;
  }
  .xlarge-up-8 > .column:last-child, .xlarge-up-8 > .columns:last-child {
    float: left;
  }
  .xlarge-collapse > .column, .xlarge-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }
  .xlarge-collapse .row {
    margin-right: 0;
    margin-left: 0;
  }
  .expanded.row .xlarge-collapse.row {
    margin-right: 0;
    margin-left: 0;
  }
  .xlarge-uncollapse > .column, .xlarge-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
  .xlarge-centered {
    margin-right: auto;
    margin-left: auto;
  }
  .xlarge-centered, .xlarge-centered:last-child:not(:first-child) {
    float: none;
    clear: both;
  }
  .xlarge-uncentered,
  .xlarge-push-0,
  .xlarge-pull-0 {
    position: static;
    float: left;
    margin-right: 0;
    margin-left: 0;
  }
}
@media screen and (min-width: 118.75em) {
  .xxlarge-1 {
    width: 8.3333333333%;
  }
  .xxlarge-push-1 {
    position: relative;
    left: 8.3333333333%;
  }
  .xxlarge-pull-1 {
    position: relative;
    left: -8.3333333333%;
  }
  .xxlarge-offset-0 {
    margin-left: 0%;
  }
  .xxlarge-2 {
    width: 16.6666666667%;
  }
  .xxlarge-push-2 {
    position: relative;
    left: 16.6666666667%;
  }
  .xxlarge-pull-2 {
    position: relative;
    left: -16.6666666667%;
  }
  .xxlarge-offset-1 {
    margin-left: 8.3333333333%;
  }
  .xxlarge-3 {
    width: 25%;
  }
  .xxlarge-push-3 {
    position: relative;
    left: 25%;
  }
  .xxlarge-pull-3 {
    position: relative;
    left: -25%;
  }
  .xxlarge-offset-2 {
    margin-left: 16.6666666667%;
  }
  .xxlarge-4 {
    width: 33.3333333333%;
  }
  .xxlarge-push-4 {
    position: relative;
    left: 33.3333333333%;
  }
  .xxlarge-pull-4 {
    position: relative;
    left: -33.3333333333%;
  }
  .xxlarge-offset-3 {
    margin-left: 25%;
  }
  .xxlarge-5 {
    width: 41.6666666667%;
  }
  .xxlarge-push-5 {
    position: relative;
    left: 41.6666666667%;
  }
  .xxlarge-pull-5 {
    position: relative;
    left: -41.6666666667%;
  }
  .xxlarge-offset-4 {
    margin-left: 33.3333333333%;
  }
  .xxlarge-6 {
    width: 50%;
  }
  .xxlarge-push-6 {
    position: relative;
    left: 50%;
  }
  .xxlarge-pull-6 {
    position: relative;
    left: -50%;
  }
  .xxlarge-offset-5 {
    margin-left: 41.6666666667%;
  }
  .xxlarge-7 {
    width: 58.3333333333%;
  }
  .xxlarge-push-7 {
    position: relative;
    left: 58.3333333333%;
  }
  .xxlarge-pull-7 {
    position: relative;
    left: -58.3333333333%;
  }
  .xxlarge-offset-6 {
    margin-left: 50%;
  }
  .xxlarge-8 {
    width: 66.6666666667%;
  }
  .xxlarge-push-8 {
    position: relative;
    left: 66.6666666667%;
  }
  .xxlarge-pull-8 {
    position: relative;
    left: -66.6666666667%;
  }
  .xxlarge-offset-7 {
    margin-left: 58.3333333333%;
  }
  .xxlarge-9 {
    width: 75%;
  }
  .xxlarge-push-9 {
    position: relative;
    left: 75%;
  }
  .xxlarge-pull-9 {
    position: relative;
    left: -75%;
  }
  .xxlarge-offset-8 {
    margin-left: 66.6666666667%;
  }
  .xxlarge-10 {
    width: 83.3333333333%;
  }
  .xxlarge-push-10 {
    position: relative;
    left: 83.3333333333%;
  }
  .xxlarge-pull-10 {
    position: relative;
    left: -83.3333333333%;
  }
  .xxlarge-offset-9 {
    margin-left: 75%;
  }
  .xxlarge-11 {
    width: 91.6666666667%;
  }
  .xxlarge-push-11 {
    position: relative;
    left: 91.6666666667%;
  }
  .xxlarge-pull-11 {
    position: relative;
    left: -91.6666666667%;
  }
  .xxlarge-offset-10 {
    margin-left: 83.3333333333%;
  }
  .xxlarge-12 {
    width: 100%;
  }
  .xxlarge-offset-11 {
    margin-left: 91.6666666667%;
  }
  .xxlarge-up-1 > .column, .xxlarge-up-1 > .columns {
    float: left;
    width: 100%;
  }
  .xxlarge-up-1 > .column:nth-of-type(1n), .xxlarge-up-1 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxlarge-up-1 > .column:nth-of-type(1n+1), .xxlarge-up-1 > .columns:nth-of-type(1n+1) {
    clear: both;
  }
  .xxlarge-up-1 > .column:last-child, .xxlarge-up-1 > .columns:last-child {
    float: left;
  }
  .xxlarge-up-2 > .column, .xxlarge-up-2 > .columns {
    float: left;
    width: 50%;
  }
  .xxlarge-up-2 > .column:nth-of-type(1n), .xxlarge-up-2 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxlarge-up-2 > .column:nth-of-type(2n+1), .xxlarge-up-2 > .columns:nth-of-type(2n+1) {
    clear: both;
  }
  .xxlarge-up-2 > .column:last-child, .xxlarge-up-2 > .columns:last-child {
    float: left;
  }
  .xxlarge-up-3 > .column, .xxlarge-up-3 > .columns {
    float: left;
    width: 33.3333333333%;
  }
  .xxlarge-up-3 > .column:nth-of-type(1n), .xxlarge-up-3 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxlarge-up-3 > .column:nth-of-type(3n+1), .xxlarge-up-3 > .columns:nth-of-type(3n+1) {
    clear: both;
  }
  .xxlarge-up-3 > .column:last-child, .xxlarge-up-3 > .columns:last-child {
    float: left;
  }
  .xxlarge-up-4 > .column, .xxlarge-up-4 > .columns {
    float: left;
    width: 25%;
  }
  .xxlarge-up-4 > .column:nth-of-type(1n), .xxlarge-up-4 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxlarge-up-4 > .column:nth-of-type(4n+1), .xxlarge-up-4 > .columns:nth-of-type(4n+1) {
    clear: both;
  }
  .xxlarge-up-4 > .column:last-child, .xxlarge-up-4 > .columns:last-child {
    float: left;
  }
  .xxlarge-up-5 > .column, .xxlarge-up-5 > .columns {
    float: left;
    width: 20%;
  }
  .xxlarge-up-5 > .column:nth-of-type(1n), .xxlarge-up-5 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxlarge-up-5 > .column:nth-of-type(5n+1), .xxlarge-up-5 > .columns:nth-of-type(5n+1) {
    clear: both;
  }
  .xxlarge-up-5 > .column:last-child, .xxlarge-up-5 > .columns:last-child {
    float: left;
  }
  .xxlarge-up-6 > .column, .xxlarge-up-6 > .columns {
    float: left;
    width: 16.6666666667%;
  }
  .xxlarge-up-6 > .column:nth-of-type(1n), .xxlarge-up-6 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxlarge-up-6 > .column:nth-of-type(6n+1), .xxlarge-up-6 > .columns:nth-of-type(6n+1) {
    clear: both;
  }
  .xxlarge-up-6 > .column:last-child, .xxlarge-up-6 > .columns:last-child {
    float: left;
  }
  .xxlarge-up-7 > .column, .xxlarge-up-7 > .columns {
    float: left;
    width: 14.2857142857%;
  }
  .xxlarge-up-7 > .column:nth-of-type(1n), .xxlarge-up-7 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxlarge-up-7 > .column:nth-of-type(7n+1), .xxlarge-up-7 > .columns:nth-of-type(7n+1) {
    clear: both;
  }
  .xxlarge-up-7 > .column:last-child, .xxlarge-up-7 > .columns:last-child {
    float: left;
  }
  .xxlarge-up-8 > .column, .xxlarge-up-8 > .columns {
    float: left;
    width: 12.5%;
  }
  .xxlarge-up-8 > .column:nth-of-type(1n), .xxlarge-up-8 > .columns:nth-of-type(1n) {
    clear: none;
  }
  .xxlarge-up-8 > .column:nth-of-type(8n+1), .xxlarge-up-8 > .columns:nth-of-type(8n+1) {
    clear: both;
  }
  .xxlarge-up-8 > .column:last-child, .xxlarge-up-8 > .columns:last-child {
    float: left;
  }
  .xxlarge-collapse > .column, .xxlarge-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
  }
  .xxlarge-collapse .row {
    margin-right: 0;
    margin-left: 0;
  }
  .expanded.row .xxlarge-collapse.row {
    margin-right: 0;
    margin-left: 0;
  }
  .xxlarge-uncollapse > .column, .xxlarge-uncollapse > .columns {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
  .xxlarge-centered {
    margin-right: auto;
    margin-left: auto;
  }
  .xxlarge-centered, .xxlarge-centered:last-child:not(:first-child) {
    float: none;
    clear: both;
  }
  .xxlarge-uncentered,
  .xxlarge-push-0,
  .xxlarge-pull-0 {
    position: static;
    float: left;
    margin-right: 0;
    margin-left: 0;
  }
}
.column-block {
  margin-bottom: 1.25rem;
}
.column-block > :last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 47.5em) {
  .column-block {
    margin-bottom: 1.875rem;
  }
  .column-block > :last-child {
    margin-bottom: 0;
  }
}

.menu {
  margin: 0;
  list-style-type: none;
}
.menu > li {
  display: table-cell;
  vertical-align: middle;
}
[data-whatinput=mouse] .menu > li {
  outline: 0;
}
.menu > li > a {
  display: block;
  padding: 0.7rem 1rem;
  line-height: 1;
}
.menu input,
.menu select,
.menu a,
.menu button {
  margin-bottom: 0;
}
.menu > li > a img,
.menu > li > a i,
.menu > li > a svg {
  vertical-align: middle;
}
.menu > li > a img + span,
.menu > li > a i + span,
.menu > li > a svg + span {
  vertical-align: middle;
}
.menu > li > a img,
.menu > li > a i,
.menu > li > a svg {
  margin-right: 0.25rem;
  display: inline-block;
}
.menu > li, .menu.horizontal > li {
  display: table-cell;
}
.menu.expanded {
  display: table;
  width: 100%;
  table-layout: fixed;
}
.menu.expanded > li:first-child:last-child {
  width: 100%;
}
.menu.vertical > li {
  display: block;
}
@media screen and (min-width: 26.25em) {
  .menu.lsmall-horizontal > li {
    display: table-cell;
  }
  .menu.lsmall-expanded {
    display: table;
    width: 100%;
    table-layout: fixed;
  }
  .menu.lsmall-expanded > li:first-child:last-child {
    width: 100%;
  }
  .menu.lsmall-vertical > li {
    display: block;
  }
}
@media screen and (min-width: 30em) {
  .menu.smedium-horizontal > li {
    display: table-cell;
  }
  .menu.smedium-expanded {
    display: table;
    width: 100%;
    table-layout: fixed;
  }
  .menu.smedium-expanded > li:first-child:last-child {
    width: 100%;
  }
  .menu.smedium-vertical > li {
    display: block;
  }
}
@media print, screen and (min-width: 47.5em) {
  .menu.medium-horizontal > li {
    display: table-cell;
  }
  .menu.medium-expanded {
    display: table;
    width: 100%;
    table-layout: fixed;
  }
  .menu.medium-expanded > li:first-child:last-child {
    width: 100%;
  }
  .menu.medium-vertical > li {
    display: block;
  }
}
@media print, screen and (min-width: 64em) {
  .menu.large-horizontal > li {
    display: table-cell;
  }
  .menu.large-expanded {
    display: table;
    width: 100%;
    table-layout: fixed;
  }
  .menu.large-expanded > li:first-child:last-child {
    width: 100%;
  }
  .menu.large-vertical > li {
    display: block;
  }
}
@media screen and (min-width: 80em) {
  .menu.xlarge-horizontal > li {
    display: table-cell;
  }
  .menu.xlarge-expanded {
    display: table;
    width: 100%;
    table-layout: fixed;
  }
  .menu.xlarge-expanded > li:first-child:last-child {
    width: 100%;
  }
  .menu.xlarge-vertical > li {
    display: block;
  }
}
@media screen and (min-width: 118.75em) {
  .menu.xxlarge-horizontal > li {
    display: table-cell;
  }
  .menu.xxlarge-expanded {
    display: table;
    width: 100%;
    table-layout: fixed;
  }
  .menu.xxlarge-expanded > li:first-child:last-child {
    width: 100%;
  }
  .menu.xxlarge-vertical > li {
    display: block;
  }
}
.menu.simple li {
  display: inline-block;
  vertical-align: top;
  line-height: 1;
}
.menu.simple a {
  padding: 0;
}
.menu.simple li {
  margin-left: 0;
  margin-right: 1rem;
}
.menu.simple.align-right li {
  margin-right: 0;
  margin-left: 1rem;
}
.menu.align-right::before, .menu.align-right::after {
  display: table;
  content: " ";
}
.menu.align-right::after {
  clear: both;
}
.menu.align-right > li {
  float: right;
}
.menu.icon-top > li > a {
  text-align: center;
}
.menu.icon-top > li > a img,
.menu.icon-top > li > a i,
.menu.icon-top > li > a svg {
  display: block;
  margin: 0 auto 0.25rem;
}
.menu.icon-top.vertical a > span {
  margin: auto;
}
.menu.nested {
  margin-left: 1rem;
}
.menu .active > a {
  background: #1779ba;
  color: #fefefe;
}
.menu.menu-bordered li {
  border: 1px solid #e6e6e6;
}
.menu.menu-bordered li:not(:first-child) {
  border-top: 0;
}
.menu.menu-hover li:hover {
  background-color: #e6e6e6;
}

.menu-text {
  padding-top: 0;
  padding-bottom: 0;
  padding: 0.7rem 1rem;
  font-weight: bold;
  line-height: 1;
  color: inherit;
}

.menu-centered {
  text-align: center;
}
.menu-centered > .menu {
  display: inline-block;
  vertical-align: top;
}

.no-js [data-responsive-menu] ul {
  display: none;
}

.top-bar {
  padding: 0.5rem;
}
.top-bar::before, .top-bar::after {
  display: table;
  content: " ";
}
.top-bar::after {
  clear: both;
}
.top-bar,
.top-bar ul {
  background-color: transparent;
}
.top-bar ul ul {
  background-color: #e6e6e6;
}
.top-bar input {
  max-width: 200px;
  margin-right: 1rem;
}
.top-bar .input-group-field {
  width: 100%;
  margin-right: 0;
}
.top-bar input.button {
  width: auto;
}
.top-bar .top-bar-left,
.top-bar .top-bar-right {
  width: 100%;
}
@media print, screen and (min-width: 47.5em) {
  .top-bar .top-bar-left,
  .top-bar .top-bar-right {
    width: auto;
  }
}
@media screen and (max-width: 29.9375em) {
  .top-bar.stacked-for-lsmall .top-bar-left,
  .top-bar.stacked-for-lsmall .top-bar-right {
    width: 100%;
  }
}
@media screen and (max-width: 47.4375em) {
  .top-bar.stacked-for-smedium .top-bar-left,
  .top-bar.stacked-for-smedium .top-bar-right {
    width: 100%;
  }
}
@media screen and (max-width: 63.9375em) {
  .top-bar.stacked-for-medium .top-bar-left,
  .top-bar.stacked-for-medium .top-bar-right {
    width: 100%;
  }
}
@media screen and (max-width: 79.9375em) {
  .top-bar.stacked-for-large .top-bar-left,
  .top-bar.stacked-for-large .top-bar-right {
    width: 100%;
  }
}
@media screen and (max-width: 118.6875em) {
  .top-bar.stacked-for-xlarge .top-bar-left,
  .top-bar.stacked-for-xlarge .top-bar-right {
    width: 100%;
  }
}
@media screen and (max-width: 120em) {
  .top-bar.stacked-for-xxlarge .top-bar-left,
  .top-bar.stacked-for-xxlarge .top-bar-right {
    width: 100%;
  }
}

.top-bar-title {
  display: inline-block;
  float: left;
  padding: 0.5rem 1rem 0.5rem 0;
}
.top-bar-title .menu-icon {
  bottom: 2px;
}

.top-bar-left {
  float: left;
}

.top-bar-right {
  float: right;
}

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

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

.float-center {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.clearfix::before, .clearfix::after {
  display: table;
  content: " ";
}
.clearfix::after {
  clear: both;
}

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

p {
  margin-bottom: 1rem;
  font-size: inherit;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

em,
i {
  font-style: italic;
  line-height: inherit;
}

strong,
b {
  font-weight: bold;
  line-height: inherit;
}

small {
  font-size: 80%;
  line-height: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  color: inherit;
  text-rendering: optimizeLegibility;
}
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
  line-height: 0;
  color: #cacaca;
}

h1 {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.25rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h3 {
  font-size: 1.1875rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h4 {
  font-size: 1.125rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h5 {
  font-size: 1.0625rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

h6 {
  font-size: 1rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

@media print, screen and (min-width: 47.5em) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  h3 {
    font-size: 1.9375rem;
  }
  h4 {
    font-size: 1.5625rem;
  }
  h5 {
    font-size: 1.25rem;
  }
  h6 {
    font-size: 1rem;
  }
}
a {
  line-height: inherit;
  color: #1779ba;
  text-decoration: none;
  cursor: pointer;
}
a:hover, a:focus {
  color: #1468a0;
}
a img {
  border: 0;
}

hr {
  clear: both;
  max-width: 75rem;
  height: 0;
  margin: 1.25rem auto;
  border-top: 0;
  border-right: 0;
  border-bottom: 1px solid #cacaca;
  border-left: 0;
}

ul,
ol,
dl {
  margin-bottom: 1rem;
  list-style-position: outside;
  line-height: 1.6;
}

li {
  font-size: inherit;
}

ul {
  margin-left: 1.25rem;
  list-style-type: disc;
}

ol {
  margin-left: 1.25rem;
}

ul ul, ul ol, ol ul, ol ol {
  margin-left: 1.25rem;
  margin-bottom: 0;
}

dl {
  margin-bottom: 1rem;
}
dl dt {
  margin-bottom: 0.3rem;
  font-weight: bold;
}

blockquote {
  margin: 0 0 1rem;
  padding: 0.5625rem 1.25rem 0 1.1875rem;
  border-left: 1px solid #cacaca;
}
blockquote, blockquote p {
  line-height: 1.6;
  color: #8a8a8a;
}

cite {
  display: block;
  font-size: 0.8125rem;
  color: #8a8a8a;
}
cite:before {
  content: "— ";
}

abbr {
  border-bottom: 1px dotted #0a0a0a;
  color: #0a0a0a;
  cursor: help;
}

figure {
  margin: 0;
}

code {
  padding: 0.125rem 0.3125rem 0.0625rem;
  border: 1px solid #cacaca;
  background-color: #e6e6e6;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  font-weight: normal;
  color: #0a0a0a;
}

kbd {
  margin: 0;
  padding: 0.125rem 0.25rem 0;
  background-color: #e6e6e6;
  font-family: Consolas, "Liberation Mono", Courier, monospace;
  color: #0a0a0a;
}

.subheader {
  margin-top: 0.2rem;
  margin-bottom: 0.5rem;
  font-weight: normal;
  line-height: 1.4;
  color: #8a8a8a;
}

.lead {
  font-size: 125%;
  line-height: 1.6;
}

.stat {
  font-size: 2.5rem;
  line-height: 1;
}
p + .stat {
  margin-top: -1rem;
}

.no-bullet {
  margin-left: 0;
  list-style: none;
}

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

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

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

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

@media screen and (min-width: 26.25em) {
  .lsmall-text-left {
    text-align: left;
  }
  .lsmall-text-right {
    text-align: right;
  }
  .lsmall-text-center {
    text-align: center;
  }
  .lsmall-text-justify {
    text-align: justify;
  }
}
@media screen and (min-width: 30em) {
  .smedium-text-left {
    text-align: left;
  }
  .smedium-text-right {
    text-align: right;
  }
  .smedium-text-center {
    text-align: center;
  }
  .smedium-text-justify {
    text-align: justify;
  }
}
@media print, screen and (min-width: 47.5em) {
  .medium-text-left {
    text-align: left;
  }
  .medium-text-right {
    text-align: right;
  }
  .medium-text-center {
    text-align: center;
  }
  .medium-text-justify {
    text-align: justify;
  }
}
@media print, screen and (min-width: 64em) {
  .large-text-left {
    text-align: left;
  }
  .large-text-right {
    text-align: right;
  }
  .large-text-center {
    text-align: center;
  }
  .large-text-justify {
    text-align: justify;
  }
}
@media screen and (min-width: 80em) {
  .xlarge-text-left {
    text-align: left;
  }
  .xlarge-text-right {
    text-align: right;
  }
  .xlarge-text-center {
    text-align: center;
  }
  .xlarge-text-justify {
    text-align: justify;
  }
}
@media screen and (min-width: 118.75em) {
  .xxlarge-text-left {
    text-align: left;
  }
  .xxlarge-text-right {
    text-align: right;
  }
  .xxlarge-text-center {
    text-align: center;
  }
  .xxlarge-text-justify {
    text-align: justify;
  }
}
.show-for-print {
  display: none !important;
}

@media print {
  * {
    background: transparent !important;
    box-shadow: none !important;
    color: black !important;
    text-shadow: none !important;
  }
  .show-for-print {
    display: block !important;
  }
  .hide-for-print {
    display: none !important;
  }
  table.show-for-print {
    display: table !important;
  }
  thead.show-for-print {
    display: table-header-group !important;
  }
  tbody.show-for-print {
    display: table-row-group !important;
  }
  tfoot.show-for-print {
    display: table-footer-group !important;
  }
  tr.show-for-print {
    display: table-row !important;
  }
  td.show-for-print {
    display: table-cell !important;
  }
  th.show-for-print {
    display: table-cell !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  pre,
  blockquote {
    border: 1px solid #333333;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  .print-break-inside {
    page-break-inside: auto;
  }
}
.hide {
  display: none !important;
}

.invisible {
  visibility: hidden;
}

@media screen and (max-width: 26.1875em) {
  .hide-for-small-only {
    display: none !important;
  }
}

@media screen and (max-width: 0em), screen and (min-width: 26.25em) {
  .show-for-small-only {
    display: none !important;
  }
}

@media screen and (min-width: 26.25em) {
  .hide-for-lsmall {
    display: none !important;
  }
}

@media screen and (max-width: 26.1875em) {
  .show-for-lsmall {
    display: none !important;
  }
}

@media screen and (min-width: 26.25em) and (max-width: 29.9375em) {
  .hide-for-lsmall-only {
    display: none !important;
  }
}

@media screen and (max-width: 26.1875em), screen and (min-width: 30em) {
  .show-for-lsmall-only {
    display: none !important;
  }
}

@media screen and (min-width: 30em) {
  .hide-for-smedium {
    display: none !important;
  }
}

@media screen and (max-width: 29.9375em) {
  .show-for-smedium {
    display: none !important;
  }
}

@media screen and (min-width: 30em) and (max-width: 47.4375em) {
  .hide-for-smedium-only {
    display: none !important;
  }
}

@media screen and (max-width: 29.9375em), screen and (min-width: 47.5em) {
  .show-for-smedium-only {
    display: none !important;
  }
}

@media print, screen and (min-width: 47.5em) {
  .hide-for-medium {
    display: none !important;
  }
}

@media screen and (max-width: 47.4375em) {
  .show-for-medium {
    display: none !important;
  }
}

@media screen and (min-width: 47.5em) and (max-width: 63.9375em) {
  .hide-for-medium-only {
    display: none !important;
  }
}

@media screen and (max-width: 47.4375em), screen and (min-width: 64em) {
  .show-for-medium-only {
    display: none !important;
  }
}

@media print, screen and (min-width: 64em) {
  .hide-for-large {
    display: none !important;
  }
}

@media screen and (max-width: 63.9375em) {
  .show-for-large {
    display: none !important;
  }
}

@media screen and (min-width: 64em) and (max-width: 79.9375em) {
  .hide-for-large-only {
    display: none !important;
  }
}

@media screen and (max-width: 63.9375em), screen and (min-width: 80em) {
  .show-for-large-only {
    display: none !important;
  }
}

@media screen and (min-width: 80em) {
  .hide-for-xlarge {
    display: none !important;
  }
}

@media screen and (max-width: 79.9375em) {
  .show-for-xlarge {
    display: none !important;
  }
}

@media screen and (min-width: 80em) and (max-width: 118.6875em) {
  .hide-for-xlarge-only {
    display: none !important;
  }
}

@media screen and (max-width: 79.9375em), screen and (min-width: 118.75em) {
  .show-for-xlarge-only {
    display: none !important;
  }
}

@media screen and (min-width: 118.75em) {
  .hide-for-xxlarge {
    display: none !important;
  }
}

@media screen and (max-width: 118.6875em) {
  .show-for-xxlarge {
    display: none !important;
  }
}

@media screen and (min-width: 118.75em) and (max-width: 120em) {
  .hide-for-xxlarge-only {
    display: none !important;
  }
}

@media screen and (max-width: 118.6875em), screen and (min-width: 120.0625em) {
  .show-for-xxlarge-only {
    display: none !important;
  }
}

.show-for-sr,
.show-on-focus {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.show-on-focus:active, .show-on-focus:focus {
  position: static !important;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
}

.show-for-landscape,
.hide-for-portrait {
  display: block !important;
}
@media screen and (orientation: landscape) {
  .show-for-landscape,
  .hide-for-portrait {
    display: block !important;
  }
}
@media screen and (orientation: portrait) {
  .show-for-landscape,
  .hide-for-portrait {
    display: none !important;
  }
}

.hide-for-landscape,
.show-for-portrait {
  display: none !important;
}
@media screen and (orientation: landscape) {
  .hide-for-landscape,
  .show-for-portrait {
    display: none !important;
  }
}
@media screen and (orientation: portrait) {
  .hide-for-landscape,
  .show-for-portrait {
    display: block !important;
  }
}

.badge {
  display: inline-block;
  min-width: 2.1em;
  padding: 0.3em;
  border-radius: 50%;
  font-size: 0.6rem;
  text-align: center;
  background: #1779ba;
  color: #fefefe;
}
.badge.primary {
  background: #1779ba;
  color: #fefefe;
}
.badge.secondary {
  background: #767676;
  color: #fefefe;
}
.badge.success {
  background: #3adb76;
  color: #0a0a0a;
}
.badge.warning {
  background: #ffae00;
  color: #0a0a0a;
}
.badge.alert {
  background: #cc4b37;
  color: #fefefe;
}

[type=text], [type=password], [type=date], [type=datetime], [type=datetime-local], [type=month], [type=week], [type=email], [type=number], [type=search], [type=tel], [type=time], [type=url], [type=color],
textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 48px;
  margin: 0 0 1.5rem;
  padding: 0.75rem;
  border: 1px solid #cacaca;
  border-radius: 24px;
  background-color: #fefefe;
  box-shadow: none;
  font-family: inherit;
  font-size: 1.125rem;
  font-weight: normal;
  color: #0a0a0a;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
[type=text]:focus, [type=text]:hover, [type=password]:focus, [type=password]:hover, [type=date]:focus, [type=date]:hover, [type=datetime]:focus, [type=datetime]:hover, [type=datetime-local]:focus, [type=datetime-local]:hover, [type=month]:focus, [type=month]:hover, [type=week]:focus, [type=week]:hover, [type=email]:focus, [type=email]:hover, [type=number]:focus, [type=number]:hover, [type=search]:focus, [type=search]:hover, [type=tel]:focus, [type=tel]:hover, [type=time]:focus, [type=time]:hover, [type=url]:focus, [type=url]:hover, [type=color]:focus, [type=color]:hover,
textarea:focus,
textarea:hover {
  outline: none;
  border: 1px solid #393799;
  background-color: #fefefe;
  /*box-shadow: $input-shadow-focus;*/
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}

textarea {
  max-width: 100%;
}
textarea[rows] {
  height: auto;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #cacaca;
}

input::placeholder,
textarea::placeholder {
  color: #cacaca;
}
input:disabled, input[readonly],
textarea:disabled,
textarea[readonly] {
  background-color: #e6e6e6;
  cursor: not-allowed;
}

[type=submit],
[type=button] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

input[type=search] {
  box-sizing: border-box;
}

[type=file],
[type=checkbox],
[type=radio] {
  margin: 0 0 1.5rem;
}

[type=checkbox] + label,
[type=radio] + label {
  display: inline-block;
  vertical-align: baseline;
  margin-left: 0.75rem;
  margin-right: 1.5rem;
  margin-bottom: 0;
}
[type=checkbox] + label[for],
[type=radio] + label[for] {
  cursor: pointer;
}

label > [type=checkbox],
label > [type=radio] {
  margin-right: 0.75rem;
}

[type=file] {
  width: 100%;
}

label {
  display: block;
  margin: 0;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.8;
  color: #0a0a0a;
}
label.middle {
  margin: 0 0 1.5rem;
  padding: 0.8125rem 0;
}

.help-text {
  margin-top: -0.75rem;
  font-size: 0.8125rem;
  font-style: italic;
  color: #0a0a0a;
}

.input-group {
  display: table;
  width: 100%;
  margin-bottom: 1.5rem;
}
.input-group > :first-child {
  border-radius: 24px 0 0 24px;
}
.input-group > :last-child > * {
  border-radius: 0 24px 24px 0;
}

.input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label, .input-group-button, .input-group-field, .input-group-label {
  margin: 0;
  white-space: nowrap;
  display: table-cell;
  vertical-align: middle;
}

.input-group-label {
  padding: 0 1rem;
  border: 1px solid #cacaca;
  background: #e6e6e6;
  color: #0a0a0a;
  text-align: center;
  white-space: nowrap;
  width: 1%;
  height: 100%;
}
.input-group-label:first-child {
  border-right: 0;
}
.input-group-label:last-child {
  border-left: 0;
}

.input-group-field {
  border-radius: 0;
  height: 3.375rem;
}

.input-group-button {
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  width: 1%;
  height: 100%;
}
.input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label {
  height: 3.375rem;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 1.125rem;
}

.input-group .input-group-button {
  display: table-cell;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  max-width: 100%;
  margin-bottom: 0.75rem;
}

.fieldset {
  margin: 1.125rem 0;
  padding: 1.25rem;
  border: 1px solid #cacaca;
}
.fieldset legend {
  margin: 0;
  margin-left: -0.1875rem;
  padding: 0 0.1875rem;
  background: #fefefe;
}

select {
  height: 48px;
  margin: 0 0 1.5rem;
  padding: 0.75rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #cacaca;
  border-radius: 24px;
  background-color: #fefefe;
  font-family: inherit;
  font-size: 1.125rem;
  line-height: normal;
  color: #0a0a0a;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='32' height='24' viewBox='0 0 32 24'><polygon points='0,0 32,0 16,24' style='fill: rgb%28138, 138, 138%29'></polygon></svg>");
  background-origin: content-box;
  background-position: right -1.5rem center;
  background-repeat: no-repeat;
  background-size: 9px 6px;
  padding-right: 2.25rem;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
@media screen and (min-width: 0\0 ) {
  select {
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==");
  }
}
select:focus {
  outline: none;
  border: 1px solid #393799;
  background-color: #fefefe;
  /*box-shadow: $input-shadow-focus;*/
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}
select:disabled {
  background-color: #e6e6e6;
  cursor: not-allowed;
}
select::-ms-expand {
  display: none;
}
select[multiple] {
  height: auto;
  background-image: none;
}

.is-invalid-input:not(:focus) {
  border-color: #cc4b37;
  background-color: #faedeb;
}
.is-invalid-input:not(:focus)::-moz-placeholder {
  color: #cc4b37;
}
.is-invalid-input:not(:focus)::placeholder {
  color: #cc4b37;
}

.is-invalid-label {
  color: #cc4b37;
}

.form-error {
  display: none;
  margin-top: -0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  font-weight: bold;
  color: #cc4b37;
}
.form-error.is-visible {
  display: block;
}

.is-accordion-submenu-parent > a {
  position: relative;
}
.is-accordion-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: "";
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #1779ba transparent transparent;
  position: absolute;
  top: 50%;
  margin-top: -3px;
  right: 1rem;
}

.is-accordion-submenu-parent[aria-expanded=true] > a::after {
  transform: rotate(180deg);
  transform-origin: 50% 50%;
}

ul {
  -webkit-margin-before: 0em;
  -webkit-margin-after: 0em;
  -webkit-padding-start: 0em;
}

body {
  font-family: "Lato", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "avenir-lt-pro", "Avenir LT W01_85 Heavy1475544", "Helvetica", sans-serif;
  font-weight: 700;
}

.top-bar .mobile-navigation li a {
  font-family: "avenir-lt-pro", "Avenir LT W01_95 Black1475556", sans-serif;
  font-weight: 800;
}
.top-bar .mobile-navigation .dropdown ul li a, .top-bar .mobile-navigation .dropdown--xxlarge ul li a {
  font-family: "avenir-lt-pro", "Avenir LT W01_65 Medium1475532", sans-serif;
  font-weight: 500;
}
.top-bar .menu li > a .badge {
  font-family: "avenir-lt-pro", "Avenir LT W01_95 Black1475556", sans-serif;
  font-weight: 800;
  font-size: 16px;
}
.top-bar .menu .text {
  font-family: "avenir-lt-pro", "Avenir LT W01_95 Black1475556", sans-serif;
  font-weight: 800;
  font-size: 16px;
  line-height: 16px;
}
.top-bar .dropdown--xxlarge {
  font-family: "avenir-lt-pro", "Avenir LT W01_65 Medium1475532", sans-serif;
  font-weight: 500;
}

.side-nav a {
  font-family: "avenir-lt-pro", "Avenir LT W01_95 Black1475556", sans-serif;
  font-weight: 800;
}

.sticky-nav .links a {
  font-family: "avenir-lt-pro", "Avenir LT W01_85 Heavy1475544", sans-serif;
  font-weight: 700;
}
.sticky-nav .text a {
  font-family: "avenir-lt-pro", "Avenir LT W01_85 Heavy1475544", sans-serif;
  font-weight: 700;
}

a {
  transition: all 0.25s ease-in-out;
}
a:hover {
  color: #aa273e;
}

.button {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  padding: 0.85em 1em;
  -webkit-appearance: none;
  border: 1px solid transparent;
  border-radius: 60px;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  border: 1px solid #ffffff;
  color: #ffffff;
  border-width: 4px;
  font-size: 16px;
  font-family: "avenir-lt-pro", "Avenir LT W01_85 Heavy1475544", "Helvetica", sans-serif;
  font-weight: 700;
  padding: 0.85em 1.5em;
}
[data-whatinput=mouse] .button {
  outline: 0;
}
.button, .button:hover, .button:focus {
  background-color: transparent;
}
.button:hover, .button:focus {
  border-color: gray;
  color: gray;
}
.button:hover {
  background-color: #fff;
  color: #aa273e;
  border-color: #ffffff;
}
.button.secondary:hover {
  color: #26247b;
}
.button.disabled {
  color: #666;
  border-color: #666;
  background-color: #fff;
  cursor: default;
}
.button.disabled:hover {
  background-color: #fff;
  color: #666;
}
.button.on-white {
  color: #000000;
  border-color: #000000;
}
.button.on-white:hover {
  background-color: #000000;
  color: #ffffff;
}
.button.on-white.primary {
  color: #aa273e;
  border-color: #aa273e;
}
.button.on-white.primary:hover {
  background-color: #aa273e;
  color: #ffffff;
}
.button.on-white.secondary {
  color: #26247b;
  border-color: #26247b;
}
.button.on-white.secondary:hover {
  background-color: #26247b;
  color: #ffffff;
}
.button.expanded {
  width: 100%;
}
.button.large {
  font-size: 18px;
}
@media print, screen and (min-width: 64em) {
  .button.large {
    font-size: 20px;
  }
}
@media screen and (min-width: 80em) {
  .button.large {
    padding: 1em 3em;
  }
}
.button.normalized {
  font-size: 18px;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}
@media print, screen and (min-width: 64em) {
  .button.normalized {
    font-size: 20px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media screen and (min-width: 80em) {
  .button.normalized {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.button.tiny {
  font-size: 16px;
}
.button.narrow {
  padding: 1.1em 2em;
}
@media screen and (min-width: 80em) {
  .button.narrow {
    padding: 1.1em 2em;
  }
}
.button.arrow {
  position: relative;
}
.button.arrow > svg {
  fill: #ffffff;
  width: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: 20px;
  transform: rotate(90deg) translate(50%, 40px);
}
.button.loading {
  color: rgba(255, 255, 255, 0) !important;
  background: #d6d6d6 !important;
  border-color: #d6d6d6 !important;
  position: relative !important;
}
.button.loading:before {
  content: url("../images/icons/loading.svg");
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 30em) {
  .button, .button.large {
    font-size: 22px;
  }
}

.nav {
  width: 100%;
  overflow: auto;
  margin: 2em 0;
}
.nav a {
  float: left;
  display: block;
  width: 30px;
  height: 24px;
  margin-right: 1em;
  overflow: hidden;
  opacity: 0.2;
}
.nav a:hover {
  opacity: 1;
}
.nav a.back {
  transform: rotate(180deg);
}

a > svg {
  width: 100%;
  height: 100%;
}

.badge.white {
  background: #ffffff;
  color: #333333;
}

.bg-shadow {
  width: 100%;
  position: fixed;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.25s ease-out;
}
.bg-shadow.active {
  transition: opacity 0.25s ease-in;
  z-index: 7;
  opacity: 1;
}

.side-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  position: fixed;
  text-transform: uppercase;
  width: 50px;
  z-index: 9;
  left: 3%;
  border-radius: 40px;
  border: 4px solid rgba(255, 255, 255, 0.2);
}
.side-nav a {
  position: relative;
  display: block;
  width: 50px;
  height: 10px;
  margin: 15px 0;
}
.side-nav a:before {
  content: "";
  border-radius: 50%;
  background: #ffffff;
  opacity: 0.2;
  width: 10px;
  height: 10px;
  position: absolute;
  left: 50%;
  transform: translate(-10px, 0);
}
.side-nav a > .text {
  position: absolute;
  left: 60px;
  width: 150px;
  height: 16px;
  max-width: 0;
  overflow: hidden;
  font-size: 14px;
  color: #ffffff;
  white-space: nowrap;
  top: -5px;
  transition: all 0.25s ease-in;
}
.side-nav a.active:before, .side-nav a:hover:before {
  opacity: 1;
}
.side-nav a.active > .text, .side-nav a:hover > .text {
  max-width: 200px;
}
.side-nav.on-white {
  border-color: rgba(38, 36, 123, 0.2);
  transition: border-color 0.25s ease-in-out;
}
.side-nav.on-white a:before {
  background: #26247b;
  transition: all 0.25s ease-in-out;
}
.side-nav.on-white a > .text {
  color: #26247b;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar. */
}

.center {
  margin: 0 auto;
}

.marginTop-0 {
  margin-top: 0 !important;
}

@media screen and (min-width: 80em) {
  .xlarge-hidden {
    display: none;
  }
}

.h-8 {
  height: 32px;
}

@media all and (min-width: 760px) {
  .md\:h-12 {
    height: 48px;
  }
}
.animation-bg {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  transform: translate(20%, 10%);
}
.animation-bg div.wrapper {
  margin-top: calc(50vmin - 50vmax);
}
.animation-bg div {
  width: 100vmax;
  height: 100vmax;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /*
  background: black;
  box-shadow: inset 0px 0px 1px 0px red,
  	0px 0px 1px 0px red;
  */
  border: solid thin rgba(255, 255, 255, 0.1);
  border-radius: 25%;
  animation: twist 15s ease-in-out infinite alternate;
}
.animation-bg div > div {
  width: 90%;
  height: 90%;
  /*
  opacity:.9;
  */
}
.animation-bg .reverse {
  animation: reverseTwist 20s linear infinite normal;
  /*
  opacity: .5;
  */
}
.animation-bg body {
  overflow: hidden;
  background: white;
}
@keyframes twist {
  from {
    transform: rotate(-10deg);
  }
  /*
  50%{
  	border-color:black;
  	opacity:1;
  	border-radius:50%;
  	 transform: scale(1.25);
  }
  */
  to {
    transform: rotate(10deg);
  }
}
@keyframes reverseTwist {
  to {
    transform: rotate(-360deg);
  }
}
@media (orientation: portrait) {
  .animation-bg div.wrapper {
    margin-top: 0;
    margin-left: calc(50vmin - 50vmax);
  }
}

.top-bar {
  padding: 0.5em 20px;
  display: table;
  width: 100%;
  position: relative;
  z-index: 9;
  overflow: visible;
  padding-bottom: 30px;
}
.top-bar .dropdown--xxlarge {
  margin-top: -5px;
}
@media screen and (min-width: 30em) {
  .top-bar {
    padding: 10px 30px;
  }
}
@media screen and (min-width: 118.75em) {
  .top-bar {
    padding-bottom: 30px;
  }
}
.top-bar .top-bar-right {
  margin-bottom: 1em;
}
.top-bar .top-bar-right .search {
  width: 40px;
}
.top-bar .top-bar-right .cart {
  width: 50px;
}
@media screen and (min-width: 118.75em) {
  .top-bar .top-bar-right .search {
    width: 70px;
  }
  .top-bar .top-bar-right .cart {
    width: 80px;
  }
}
.top-bar:before {
  content: "";
  width: 101%;
  height: 80%;
  display: block;
  position: absolute;
  left: -1px;
  top: 0;
  z-index: -1;
  background: left top url("../images/bg-topbar.png") no-repeat;
  background-size: 200% 90%;
}
@media screen and (min-width: 30em) {
  .top-bar:before {
    height: 100%;
    background-size: 200% 100%;
    background-position: 50% 0;
  }
}
@media print, screen and (min-width: 47.5em) {
  .top-bar:before {
    background-size: 100% 100%;
  }
}
.top-bar .mobile-navigation {
  list-style-type: none;
  margin-left: 0;
  z-index: -2;
  position: absolute;
  top: 0px;
  width: 100%;
  text-align: center;
  background: #aa273e;
  overflow: hidden;
  left: 0;
  padding-top: 100px;
  opacity: 0;
  transition: opacity 0.25s ease-out;
  transform: translate(0, -120%);
}
.top-bar .mobile-navigation.active {
  opacity: 1;
  transform: translate(0, 0);
  transition: opacity 0.25s ease-in;
}
.top-bar .mobile-navigation .badge {
  border-radius: 6px;
  position: absolute;
  font-size: 11px;
  top: 15px;
  right: 0px;
  line-height: 11px;
  padding: 4px 4px 1px;
}
@media screen and (min-width: 118.75em) {
  .top-bar .mobile-navigation .badge {
    top: 13px;
    right: -3px;
  }
}
.top-bar .mobile-navigation > li {
  border-bottom: 1px solid rgba(245, 245, 245, 0.2);
}
.top-bar .mobile-navigation > li:last-child {
  border-bottom: none;
}
.top-bar .mobile-navigation > li > a:not(.show-dropdown, .no-hover) {
  position: relative;
  text-transform: uppercase;
  font-size: 18px;
  padding: 1.5em;
  display: inline-block;
  color: #ffffff;
}
.top-bar .mobile-navigation > li > a:not(.show-dropdown, .no-hover):after {
  content: "";
  display: block;
  position: relative;
  bottom: 0;
  opacity: 0;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: all 0.25s ease-in-out;
}
.top-bar .mobile-navigation > li > a:not(.show-dropdown, .no-hover):hover:after {
  opacity: 1;
  width: 100%;
}
.top-bar .mobile-navigation > li.logo a {
  display: inline-block;
}
.top-bar .mobile-navigation > li.logo a:hover {
  opacity: 1;
}
.top-bar .mobile-navigation > li.has-dropdown {
  position: relative;
}
.top-bar .mobile-navigation > li.has-dropdown a.show-dropdown {
  position: absolute;
  width: 30px;
  height: 20px;
  top: 30px;
  padding: 0;
  right: 20px;
  transform: rotate(180deg);
}
.top-bar .mobile-navigation > li.has-dropdown a.show-dropdown svg {
  fill: #ffffff;
}
.top-bar .mobile-navigation > li.has-dropdown a.show-dropdown.active {
  transform: rotate(0);
}
@media screen and (min-width: 118.75em) {
  .top-bar .mobile-navigation {
    position: relative;
    opacity: 1;
    z-index: 1;
    padding-top: 0;
    overflow: visible;
    display: inline-block;
    margin: 0 auto;
    left: auto;
    top: auto;
    width: auto;
    transform: translate(0, 0);
  }
  .top-bar .mobile-navigation > li {
    float: left;
    border: none;
  }
  .top-bar .mobile-navigation > li .dropdown, .top-bar .mobile-navigation > li .dropdown--xxlarge {
    position: absolute;
  }
  .top-bar .mobile-navigation > li a.no-hover {
    padding: 20px 30px;
  }
  .top-bar .mobile-navigation > li a:not(.show-dropdown, .no-hover) {
    padding: 20px 30px;
    font-size: 15px;
    position: relative;
  }
  .top-bar .mobile-navigation > li a:not(.show-dropdown, .no-hover):after {
    content: "";
    display: block;
    position: relative;
    bottom: 0;
    opacity: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: all 0.25s ease-in-out;
  }
  .top-bar .mobile-navigation > li a:not(.show-dropdown, .no-hover):hover {
    opacity: 1;
  }
  .top-bar .mobile-navigation > li a:not(.show-dropdown, .no-hover):hover:after {
    opacity: 1;
    width: 100%;
  }
  .top-bar .mobile-navigation > li.logo img {
    margin-top: -10px;
  }
  .top-bar .mobile-navigation > li.has-dropdown a.show-dropdown {
    position: relative;
    width: 15px;
    top: 5px;
  }
}
.top-bar .dropdown, .top-bar .dropdown--xxlarge {
  max-height: 0;
  overflow: hidden;
  background: #ffffff;
  transition: max-height 0.35s ease-out;
}
.top-bar .dropdown ul, .top-bar .dropdown--xxlarge ul {
  list-style-type: none;
  margin-left: 0;
  text-align: left;
  background: transparent;
}
.top-bar .dropdown ul li, .top-bar .dropdown--xxlarge ul li {
  min-height: 120px;
  position: relative;
  padding-bottom: 20px;
}
.top-bar .dropdown ul li:after, .top-bar .dropdown--xxlarge ul li:after {
  content: "";
  display: block;
  width: 94%;
  margin-left: 3%;
  height: 1px;
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.05);
}
.top-bar .dropdown ul li:last-child:after, .top-bar .dropdown--xxlarge ul li:last-child:after {
  display: none;
}
.top-bar .dropdown ul li a, .top-bar .dropdown--xxlarge ul li a {
  color: #000000;
  text-transform: none;
  display: block;
  padding: 1.5em 1em;
}
.top-bar .dropdown ul li a svg, .top-bar .dropdown--xxlarge ul li a svg {
  margin-top: 3px;
  width: 23px;
  height: 23px;
  float: right;
  opacity: 0.2;
  transition: all 0.35s ease-in-out;
}
.top-bar .dropdown ul li a:hover svg, .top-bar .dropdown--xxlarge ul li a:hover svg {
  opacity: 1;
}
.top-bar .dropdown ul li .sublinks, .top-bar .dropdown--xxlarge ul li .sublinks {
  margin-top: -20px;
}
.top-bar .dropdown ul li .sublinks a, .top-bar .dropdown--xxlarge ul li .sublinks a {
  font-size: 15px;
  padding: 0 1.2em 5px;
}
.top-bar .dropdown.active, .top-bar .active.dropdown--xxlarge {
  max-height: 2500px;
  transition: max-height 0.3s ease-in;
}
.top-bar .dropdown .banner, .top-bar .dropdown--xxlarge .banner {
  position: relative;
  text-align: left;
  padding-left: 1em;
  padding-top: 2em;
}
.top-bar .dropdown .banners, .top-bar .dropdown--xxlarge .banners {
  margin: 2em auto;
}
@media screen and (min-width: 118.75em) {
  .top-bar .dropdown .banners, .top-bar .dropdown--xxlarge .banners {
    margin: 0 auto;
  }
}
.top-bar .dropdown .banners .img-wrapper, .top-bar .dropdown--xxlarge .banners .img-wrapper {
  height: 160px;
  position: relative;
  width: 90%;
  margin-left: 5%;
  overflow: hidden;
}
.top-bar .dropdown .banners .img-wrapper img, .top-bar .dropdown--xxlarge .banners .img-wrapper img {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}
@media screen and (min-width: 118.75em) {
  .top-bar .dropdown, .top-bar .dropdown--xxlarge {
    display: none;
  }
}
.top-bar .dropdown--xxlarge {
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
  z-index: -2;
  visibility: hidden;
  opacity: 0;
  max-height: none;
  padding-top: 50px;
  transition: all 0.2s ease-out;
}
.top-bar .dropdown--xxlarge ul li a:hover {
  color: #aa273e;
}
.top-bar .dropdown--xxlarge:before {
  content: "";
  width: 101%;
  height: 150px;
  display: block;
  position: absolute;
  left: -1px;
  bottom: -150px;
  z-index: -1;
  background: left bottom url("../images/bg-dropdown.png") no-repeat;
  background-size: 100% auto;
}
.top-bar .dropdown--xxlarge.active {
  transform: translate(0, 0);
  transition: all 0.2s ease-in;
  opacity: 1;
  overflow: visible;
  visibility: visible;
}
@media screen and (min-width: 118.75em) {
  .top-bar {
    text-align: center;
  }
}
.top-bar .title {
  display: table-cell;
  vertical-align: top;
  padding-top: 0.7em;
}
.top-bar .menu {
  margin: 0;
}
.top-bar .menu > li > a {
  padding: 0.7em 0.3em;
  position: relative;
}
.top-bar .menu > li > a > span.text {
  display: none;
  color: #ffffff;
  vertical-align: middle;
  text-transform: uppercase;
  padding-left: 0.7em;
  padding-top: 3px;
  width: 65px;
}
@media screen and (min-width: 30em) {
  .top-bar .menu > li > a > span.text {
    display: inline-block;
  }
}
.top-bar .menu > li > a .badge {
  right: 2px;
  top: 10px;
  padding: 0;
  min-width: 0;
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
}
.top-bar .menu > li > a.cart {
  line-height: inherit;
}
@media screen and (min-width: 118.75em) {
  .top-bar .menu > li > a {
    padding: 0.7em 1em;
  }
  .top-bar .menu > li > a .badge {
    top: 10px;
    right: 10px;
  }
}
.top-bar .menu .menu-icon {
  margin-left: 1em;
  margin-bottom: 4px;
  position: relative;
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #ffffff;
}
.top-bar .menu .menu-icon:after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  background: #ffffff;
  bottom: -10px;
}
.top-bar .menu .menu-icon, .top-bar .menu .menu-icon:after, .top-bar .menu .menu-icon:before {
  transition: all 0.25s ease-in-out;
}
.top-bar .menu .menu-icon:before {
  transform: rotate(0);
  content: "";
  height: 2px;
  background: #ffffff;
  width: 100%;
  position: absolute;
  display: block;
  opacity: 1;
  top: -10px;
}
.top-bar .menu .menu-icon.close {
  transform: translate(0, 10px);
  background: transparent;
}
.top-bar .menu .menu-icon.close:after, .top-bar .menu .menu-icon.close:hover:after {
  box-shadow: none;
}
.top-bar .menu .menu-icon.close:after {
  transform: rotate(-45deg);
  bottom: 10px;
}
.top-bar .menu .menu-icon.close:before {
  transform: rotate(45deg);
}

.news-feed {
  background: #252B74;
  color: #ffffff;
  position: relative;
}
.news-feed h2 {
  font-size: 48px;
  line-height: 48px;
  margin-bottom: 56px;
  text-align: center;
}
.news-feed--top, .news-feed--bottom {
  width: 100%;
  height: 40px;
}
.news-feed--top {
  height: 43px;
}
.news-feed--top {
  margin-top: -39px;
}
.news-feed--bottom {
  margin-bottom: -39px;
}
.news-feed > .row {
  padding-top: 50px;
  padding-bottom: 90px;
}
.news-feed--clip {
  display: none;
  height: 0px;
}
.news-feed a {
  color: #ffffff;
}
.news-feed--image {
  margin-bottom: 20px;
  width: 100%;
  height: 0;
  position: relative;
  padding-bottom: 75%;
}
.news-feed--image img {
  display: block;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  margin-left: auto;
  margin-right: auto;
}
.news-feed--title {
  font-size: 20px;
  font-weight: bold;
  line-height: 28px;
}
.news-feed--label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  font-weight: bold;
  line-height: 28px;
  margin-bottom: 8px;
}
.news-feed--button {
  display: block;
  margin-top: 24px;
}
.news-feed--button a {
  color: #252B74;
  font-weight: 900;
  font-size: 20px;
  line-height: 28px;
  height: 48px;
  border-radius: 48px;
  background: white;
  display: inline-flex;
  width: 100%;
  max-width: 320px;
  align-items: center;
  justify-content: center;
  transition: 0.3s all linear;
}
.news-feed--button a:hover, .news-feed--button a:focus {
  color: white;
  background-color: #A91938;
}
.news-feed--more {
  display: block;
  text-align: right;
}
.news-feed--item {
  display: block;
}
.news-feed--item svg {
  width: 24px;
  height: 24px;
  vertical-align: top;
}
.news-feed--item svg path {
  transition: 0.3s all linear;
}
.news-feed--item--1 {
  margin-bottom: 70px;
}
.news-feed--item--1 .news-feed--title {
  font-family: "avenir-lt-pro", "Avenir LT W01_45 Book1475508", "AvenirLTW01-45Book", "Avenir", "Avenir LT", "Helvetica", sans-serif;
  font-weight: normal;
  font-size: 30px;
  line-height: 36px;
}
.news-feed--item--1 .news-feed--title:hover, .news-feed--item--1 .news-feed--title:focus {
  color: rgba(255, 255, 255, 0.75);
}
.news-feed--item--2 {
  margin-bottom: 40px;
}
.news-feed--item--2, .news-feed--item--3 {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  transition: 0.3s all linear;
  display: flex;
}
.news-feed--item--2 a, .news-feed--item--3 a {
  padding: 16px;
  display: block;
  line-height: 28px;
}
.news-feed--item--2 .news-feed--label, .news-feed--item--3 .news-feed--label {
  margin-bottom: 16px;
}
.news-feed--item--2 .news-feed--more, .news-feed--item--3 .news-feed--more {
  margin-top: 24px;
}
.news-feed--item--2:hover, .news-feed--item--2:focus, .news-feed--item--3:hover, .news-feed--item--3:focus {
  background: white;
  border-color: rgba(255, 255, 255, 0.75);
  color: #252B74;
}
.news-feed--item--2:hover a, .news-feed--item--2:focus a, .news-feed--item--3:hover a, .news-feed--item--3:focus a {
  color: #252B74;
}
.news-feed--item--2:hover .news-feed--label, .news-feed--item--2:focus .news-feed--label, .news-feed--item--3:hover .news-feed--label, .news-feed--item--3:focus .news-feed--label {
  color: #666666;
}
.news-feed--item--2:hover .news-feed--more svg path, .news-feed--item--2:focus .news-feed--more svg path, .news-feed--item--3:hover .news-feed--more svg path, .news-feed--item--3:focus .news-feed--more svg path {
  stroke: #252B74;
}
@media all and (min-width: 400px) {
  .news-feed--image {
    width: 100%;
    height: auto;
    padding-bottom: 0;
    max-height: 240px;
  }
  .news-feed--image img {
    position: static;
    width: 100%;
    max-width: 320px;
    height: auto;
    max-height: 240px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .news-feed h2 {
    font-size: 60px;
    line-height: 60px;
    text-align: left;
  }
  .news-feed--half-right {
    margin-top: 40px;
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: max-content;
  }
  .news-feed--item--1 {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: max-content;
    margin-bottom: 0;
  }
  .news-feed--item--1[data-no-image] {
    grid-template-columns: 1fr;
    max-width: 75%;
  }
  .news-feed--item--2, .news-feed--item--3 {
    margin-bottom: 0;
    position: relative;
  }
  .news-feed--item--2 a, .news-feed--item--3 a {
    padding-bottom: 64px;
  }
  .news-feed--image {
    width: 100%;
    min-width: 100%;
    height: 240px;
    margin-right: 0;
    margin-bottom: 0;
  }
  .news-feed--image img {
    min-width: 100%;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
    max-height: auto;
  }
  .news-feed--more {
    position: absolute;
    bottom: 16px;
    right: 16px;
  }
}
@media print, screen and (min-width: 64em) {
  .news-feed {
    clip-path: url(#news-feed--clip);
    margin-top: -50px;
    margin-bottom: -50px;
  }
  .news-feed > .row {
    padding-top: 96px;
    padding-bottom: 90px;
  }
  .news-feed h2 {
    font-size: 72px;
    line-height: 72px;
  }
  .news-feed--top, .news-feed--bottom {
    display: none;
  }
  .news-feed--clip {
    display: block;
  }
  .news-feed--item--1 {
    display: flex;
    margin-bottom: 0;
    gap: 0;
  }
  .news-feed--item--1 .news-feed--label {
    margin-top: 16px;
  }
  .news-feed--item--1 .news-feed--title {
    font-size: 36px;
    line-height: 40px;
  }
  .news-feed--item--2 .news-feed--more, .news-feed--item--3 .news-feed--more {
    margin-top: 0;
  }
  .news-feed--image {
    width: 200px;
    min-width: 200px;
    height: 240px;
    margin-right: 24px;
  }
  .news-feed--image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center center;
    object-position: center center;
    max-height: auto;
  }
  .news-feed--button a {
    width: auto;
    max-width: 100%;
    min-width: 320px;
  }
  .news-feed .columns {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr 1fr;
  }
  .news-feed--half-right {
    margin-top: 0;
    gap: 24px;
  }
}

.news-teaser {
  position: fixed;
  z-index: 990;
  top: 140px;
  transition: 1s transform ease-out;
  transform: translateY(-500px);
  right: 60px;
  width: 312px;
  display: none;
}
.news-teaser--box {
  position: relative;
  transition: 1s top ease-out;
  top: 0;
}
.news-teaser--chevron {
  vertical-align: top;
  display: inline-flex;
}
.news-teaser--show {
  display: none;
  color: white;
  transition: 0.3s all linear;
}
.news-teaser--hide {
  transition: 0.3s all linear;
}
.news-teaser--showhide {
  color: white;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 18px;
  position: absolute;
  top: 16px;
  right: 12px;
  z-index: 1;
}
.news-teaser--showhide svg {
  transition: 0.3s all linear;
}
.news-teaser--showhide svg path {
  fill: white;
  transition: 0.3s all linear;
}
.news-teaser--label {
  color: rgba(255, 255, 255, 0.5);
  transition: 0.3s all linear;
}
.news-teaser--content {
  color: white;
  background: rgba(37, 43, 116, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px;
  gap: 10px;
  width: 100%;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  transition: 0.3s all linear;
}
.news-teaser--content svg path {
  transition: 0.3s all linear;
}
.news-teaser--more {
  align-self: flex-end;
  text-align: right;
  transition: 0.3s all linear;
}
.news-teaser:hover .news-teaser--showhide svg path, .news-teaser:focus .news-teaser--showhide svg path {
  fill: #252B74;
}
.news-teaser:hover .news-teaser--content, .news-teaser:focus .news-teaser--content {
  background: white;
  color: #252B74;
}
.news-teaser:hover .news-teaser--label, .news-teaser:focus .news-teaser--label {
  color: #666666;
}
.news-teaser:hover .news-teaser--title, .news-teaser:focus .news-teaser--title {
  color: #252B74;
}
.news-teaser:hover .news-teaser--more, .news-teaser:focus .news-teaser--more {
  color: #252B74;
}
.news-teaser:hover .news-teaser--more svg path, .news-teaser:focus .news-teaser--more svg path {
  stroke: #252B74;
}
@media print, screen and (min-width: 64em) {
  .news-teaser {
    display: block;
  }
}

footer.footer {
  padding: 2em 0;
  color: #666666;
}
footer.footer--border {
  border-top: 4px solid #f5f5f5;
}
footer.footer img {
  margin-top: 2em;
}
footer.footer h5 {
  color: #aa273e;
  font-size: 24px;
  margin-top: 2em;
}
@media print, screen and (min-width: 64em) {
  footer.footer h5 {
    margin-bottom: 50px;
    font-size: 34px;
  }
}
footer.footer nav a {
  display: table;
  color: #666666;
  padding: 0.3em 0;
}
footer.footer nav a:after {
  content: "";
  display: block;
  position: relative;
  bottom: 0;
  opacity: 0;
  width: 0;
  height: 2px;
  background: #aa273e;
  transition: all 0.25s ease-in-out;
}
footer.footer nav a:hover {
  color: #aa273e;
}
footer.footer nav a:hover:after {
  opacity: 1;
  width: 100%;
}
footer.footer nav .divider {
  height: 30px;
}
footer.footer .copyright {
  border-top: 4px solid #f5f5f5;
  margin-top: 2em;
  padding-top: 2em;
}
footer.footer .socials a {
  display: inline-block;
  padding-right: 1em;
  opacity: 0.4;
  transition: all 0.35s ease-in-out;
  max-width: 48px;
}
footer.footer .socials a:hover {
  opacity: 1;
}
footer.footer .socials img {
  margin-top: 0;
}
@media print, screen and (min-width: 64em) {
  footer.footer .description p {
    max-width: 80%;
  }
}
footer.footer .iso-logo img {
  max-width: 76px;
}
@media screen and (min-width: 30em) {
  footer.footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media print, screen and (min-width: 47.5em) {
  footer.footer .socials {
    text-align: right;
  }
  footer.footer .socials a {
    width: 40px;
  }
}
@media screen and (min-width: 80em) {
  footer.footer .address {
    margin-left: 5%;
    width: 20%;
  }
  footer.footer .socials a {
    width: auto;
  }
}

.footer-logo {
  max-width: 150px;
}

.morphsearch {
  width: 0;
  min-height: 40px;
  background: #fff;
  position: absolute;
  z-index: 10000;
  top: 25px;
  right: 120px;
  transform-origin: 100% 0;
  transition-property: min-height, width, top, right;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

.morphsearch.open {
  position: fixed;
  width: 100%;
  min-height: 75%;
  max-height: 100%;
  overflow: scroll;
  top: 0px;
  right: 0px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
}

.morphsearch .storeSearch-box {
  display: none;
}

.morphsearch.open .storeSearch-box {
  display: block;
}

.morphsearch-form {
  width: 100%;
  height: 40px;
  margin: 0 auto;
  position: relative;
  transition-property: width, height, transform;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
  visibility: hidden;
}

.morphsearch.open .morphsearch-form {
  width: 80%;
  height: 160px;
  transform: translate3d(0, 3em, 0);
  visibility: visible;
}

.morphsearch-input::-ms-clear { /* remove cross in IE */
  display: none;
}

/* placeholder */
/* hide placeholder when active in Chrome */
.gn-search:focus::-webkit-input-placeholder {
  color: transparent;
}

input[type=search] { /* reset normalize */
  box-sizing: border-box;
}

.morphsearch-input:focus,
.morphsearch-submit:focus {
  outline: none;
}

.morphsearch-close {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 1em;
  top: 1em;
  overflow: hidden;
  text-indent: 100%;
  cursor: pointer;
  pointer-events: none;
  opacity: 0;
  transform: scale3d(0, 0, 1);
}
@media print, screen and (min-width: 64em) {
  .morphsearch-close {
    width: 50px;
    height: 50px;
  }
}

.morphsearch.open .morphsearch-close {
  opacity: 1;
  pointer-events: auto;
  transform: scale3d(1, 1, 1);
  transition: opacity 0.3s, transform 0.3s;
  transition-delay: 0.5s;
}

.morphsearch-close::before,
.morphsearch-close::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 100%;
  top: 0;
  left: 50%;
  border-radius: 3px;
  background: #AA273E;
}

.morphsearch-close:hover.morphsearch-close::before,
.morphsearch-close:hover.morphsearch-close::after {
  opacity: 1;
}

.morphsearch-close::before {
  transform: rotate(45deg);
}

.morphsearch-close::after {
  transform: rotate(-45deg);
}

.morphsearch-content {
  color: #333;
  margin-top: 1.5em;
  width: 100%;
  height: 0;
  overflow: hidden;
  padding: 0 10.5%;
  background: #fff;
  position: absolute;
  pointer-events: none;
  opacity: 0;
}

.morphsearch.open .morphsearch-content {
  opacity: 1;
  height: auto;
  overflow: visible; /* this breaks the transition of the children in FF: https://bugzilla.mozilla.org/show_bug.cgi?id=625289 */
  pointer-events: auto;
  transition: opacity 0.3s 0.5s;
}

.dummy-column {
  width: 30%;
  padding: 0 0 6em;
  float: left;
  opacity: 0;
  transform: translateY(100px);
  transition: transform 0.5s, opacity 0.5s;
}
.dummy-column.-memberCenter p {
  padding: 0 0 1em;
}

.morphsearch.open .dummy-column:first-child {
  transition-delay: 0.4s;
}

.morphsearch.open .dummy-column:nth-child(2) {
  transition-delay: 0.45s;
}

.morphsearch.open .dummy-column:nth-child(3) {
  transition-delay: 0.5s;
}

.morphsearch.open .dummy-column {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.dummy-column:nth-child(2) {
  margin: 0 5%;
}

.dummy-column h2 {
  font-size: 1em;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 800;
  color: #333;
  padding: 0.5em 0;
}

.dummy-column .search-title {
  font-size: 1em;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 800;
  color: #333;
  padding: 0.5em 0;
  font-family: "avenir-lt-pro", "Avenir LT W01_85 Heavy1475544", Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.round {
  border-radius: 50%;
}

.dummy-media-object {
  padding: 0.75em;
  display: block;
  margin: 0.3em 0;
  cursor: pointer;
  border-radius: 5px;
  background: rgba(118, 117, 128, 0.05);
}

.dummy-media-object:hover,
.dummy-media-object:focus {
  background: rgba(118, 117, 128, 0.1);
}

.dummy-media-object img {
  display: inline-block;
  width: 50px;
  margin: 0 10px 0 0;
  vertical-align: middle;
}

.dummy-media-object h3 {
  vertical-align: middle;
  font-size: 0.85em;
  display: inline-block;
  font-weight: 700;
  margin: 0 0 0 0;
  width: calc(100% - 70px);
  color: #666;
}

.dummy-media-object:hover h3 {
  color: rgb(236, 90, 98);
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1);
}

.morphsearch.open ~ .overlay {
  opacity: 1;
}

@media screen and (max-width: 53.125em) {
  .dummy-column {
    float: none;
    width: auto;
    padding: 0 0 2em;
  }
  .dummy-column:nth-child(2) {
    margin: 0;
  }
}
@media screen and (max-width: 60.625em) {
  .morphsearch {
    top: 25px;
    right: 180px;
  }
}
#morphsearch .storeSearch-box {
  margin-top: 50px;
}

.spacer-50 {
  height: 50px;
  clear: both;
}

.spacer-80 {
  height: 80px;
  clear: both;
}

.hero--product, .product-cpo {
  margin-top: -60px;
  background: top left url("../images/product/bg-hero.png") no-repeat;
  background-position: 0 0;
  background-size: 800px auto;
}
.hero--product .extra-img, .product-cpo .extra-img {
  position: absolute;
  right: 70px;
  top: 220px;
  max-width: 90px;
}
@media print, screen and (min-width: 64em) {
  .hero--product .extra-img, .product-cpo .extra-img {
    max-width: 127px;
  }
}
.hero--product .product, .product-cpo .product {
  padding-top: 40px;
  color: #ffffff;
}
.hero--product .product .columns > *, .product-cpo .product .columns > * {
  transition: all 1.3s ease-out;
  transform: translate(-10%, 0);
  transition-delay: 0.5s;
  opacity: 0;
}
.hero--product .product .columns > *.img-wrapper, .product-cpo .product .columns > *.img-wrapper {
  transform: translate(10%, 0);
}
.hero--product .product .columns > *:nth-child(1), .product-cpo .product .columns > *:nth-child(1) {
  transition-delay: 0.25s;
}
.hero--product .product .columns > *:nth-child(2), .product-cpo .product .columns > *:nth-child(2) {
  transition-delay: 0.5s;
}
.hero--product .product .columns > *:nth-child(3), .product-cpo .product .columns > *:nth-child(3) {
  transition-delay: 0.75s;
}
.hero--product .product .columns > *:nth-child(4), .product-cpo .product .columns > *:nth-child(4) {
  transition-delay: 1s;
}
.hero--product .product .columns > *:nth-child(5), .product-cpo .product .columns > *:nth-child(5) {
  transition-delay: 1.25s;
}
.hero--product .product.active .columns > *, .product-cpo .product.active .columns > * {
  transform: translate(0, 0);
  opacity: 1;
}
.hero--product .product > div, .product-cpo .product > div {
  position: relative;
}
.hero--product .product > div .columns, .product-cpo .product > div .columns {
  padding: 0 20px;
}
@media screen and (min-width: 30em) {
  .hero--product .product > div .columns, .product-cpo .product > div .columns {
    padding: 0 30px;
  }
}
@media screen and (min-width: 118.75em) {
  .hero--product .product > div .columns, .product-cpo .product > div .columns {
    padding: 0 0;
  }
}
.hero--product .product h5, .product-cpo .product h5 {
  font-size: 14px;
  line-height: 14px;
  margin-bottom: 45px;
}
.hero--product .product h5 a, .product-cpo .product h5 a {
  color: #fff;
  display: inline-block;
  position: relative;
}
.hero--product .product h5 a:before, .product-cpo .product h5 a:before {
  content: "";
  display: block;
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  background: #fff;
  height: 1px;
  transition: 0.2s;
  opacity: 0;
}
.hero--product .product h5 a:hover:before, .product-cpo .product h5 a:hover:before {
  bottom: -2px;
  opacity: 1;
}
.hero--product .product .brdcrmbs, .product-cpo .product .brdcrmbs {
  font-size: 14px;
  line-height: 14px;
  margin-bottom: 45px;
  font-weight: 700;
  font-family: "avenir-lt-pro", "Avenir LT W01_85 Heavy1475544", "Helvetica", sans-serif;
}
.hero--product .product .brdcrmbs a, .product-cpo .product .brdcrmbs a {
  color: #fff;
  display: inline-block;
  position: relative;
}
.hero--product .product .brdcrmbs a:before, .product-cpo .product .brdcrmbs a:before {
  content: "";
  display: block;
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  background: #fff;
  height: 1px;
  transition: 0.2s;
  opacity: 0;
}
.hero--product .product .brdcrmbs a:hover:before, .product-cpo .product .brdcrmbs a:hover:before {
  bottom: -2px;
  opacity: 1;
}
.hero--product .product h1, .product-cpo .product h1 {
  font-size: 42px;
  line-height: 42px;
  text-indent: -5px;
  position: relative;
  z-index: 1;
}
.hero--product .product h2, .product-cpo .product h2 {
  font-size: 16px;
  line-height: 16px;
  margin-top: 5px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}
.hero--product .product .text-box, .product-cpo .product .text-box {
  background: #ffffff;
  width: 100%;
  margin-top: 30px;
  color: #000000;
  padding: 35px 20px;
  font-size: 16px;
  margin-bottom: 50px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}
.hero--product .product .text-box p, .product-cpo .product .text-box p {
  margin-bottom: 0;
  overflow: hidden;
  display: block;
  text-overflow: ellipsis;
  position: relative;
}
.hero--product .product .img-wrapper, .product-cpo .product .img-wrapper {
  position: relative;
  right: auto;
  top: auto;
}
@media screen and (min-width: 30em) {
  .hero--product, .product-cpo {
    margin-top: -60px;
    background-position: -450px 0;
    background-size: 1350px auto;
  }
  .hero--product .product, .product-cpo .product {
    padding-top: 80px;
  }
  .hero--product .product .brdcrmbs, .product-cpo .product .brdcrmbs {
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 40px;
  }
  .hero--product .product h5, .product-cpo .product h5 {
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 40px;
  }
  .hero--product .product h1, .product-cpo .product h1 {
    font-size: 54px;
    line-height: 54px;
    text-indent: -5px;
  }
  .hero--product .product h2, .product-cpo .product h2 {
    font-size: 18px;
    line-height: 18px;
    margin-top: 15px;
  }
  .hero--product .product .text-box, .product-cpo .product .text-box {
    margin-top: 35px;
    padding: 35px;
    font-size: 16px;
    margin-bottom: 70px;
  }
  .hero--product .product .img-wrapper, .product-cpo .product .img-wrapper {
    right: 0px;
    top: 0px;
    width: 400px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .hero--product, .product-cpo {
    margin-top: -80px;
    background-position: -200px 0;
    background-size: 1300px auto;
  }
  .hero--product .product, .product-cpo .product {
    padding-top: 130px;
  }
  .hero--product .product .brdcrmbs, .product-cpo .product .brdcrmbs {
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 70px;
  }
  .hero--product .product h5, .product-cpo .product h5 {
    font-size: 16px;
    line-height: 16px;
    margin-bottom: 70px;
  }
  .hero--product .product h1, .product-cpo .product h1 {
    font-size: 54px;
    line-height: 54px;
    text-indent: -5px;
  }
  .hero--product .product h2, .product-cpo .product h2 {
    font-size: 18px;
    line-height: 18px;
    margin-top: 15px;
    margin-bottom: 0;
  }
  .hero--product .product .text-box, .product-cpo .product .text-box {
    width: 300px;
    margin-top: 35px;
    padding: 35px;
    font-size: 16px;
    margin-bottom: 70px;
  }
  .hero--product .product .img-wrapper, .product-cpo .product .img-wrapper {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 400px;
  }
}
@media print, screen and (min-width: 64em) {
  .hero--product, .product-cpo {
    margin-top: -80px;
    background-position: 0 0;
    background-size: 1300px auto;
  }
  .hero--product .product, .product-cpo .product {
    padding-top: 130px;
  }
  .hero--product .product .brdcrmbs, .product-cpo .product .brdcrmbs {
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 60px;
  }
  .hero--product .product h5, .product-cpo .product h5 {
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 60px;
  }
  .hero--product .product h1, .product-cpo .product h1 {
    font-size: 72px;
    line-height: 72px;
    text-indent: -5px;
  }
  .hero--product .product h2, .product-cpo .product h2 {
    font-size: 20px;
    line-height: 20px;
    margin-top: 10px;
  }
  .hero--product .product .text-box, .product-cpo .product .text-box {
    width: 420px;
    margin-top: 35px;
    padding: 50px 55px;
    font-size: 16px;
    margin-bottom: 70px;
  }
  .hero--product .product .text-box p, .product-cpo .product .text-box p {
    height: auto;
  }
  .hero--product .product .img-wrapper, .product-cpo .product .img-wrapper {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 500px;
  }
}
@media screen and (min-width: 80em) {
  .hero--product, .product-cpo {
    margin-top: -80px;
    background-position: 0 -100px;
    background-size: auto;
  }
  .hero--product .product, .product-cpo .product {
    padding-top: 100px;
  }
  .hero--product .product .brdcrmbs, .product-cpo .product .brdcrmbs {
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 60px;
  }
  .hero--product .product h5, .product-cpo .product h5 {
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 60px;
  }
  .hero--product .product h1, .product-cpo .product h1 {
    font-size: 100px;
    line-height: 100px;
    text-indent: -5px;
  }
  .hero--product .product h2, .product-cpo .product h2 {
    font-size: 30px;
    line-height: 30px;
    margin-top: 10px;
  }
  .hero--product .product .text-box, .product-cpo .product .text-box {
    width: 460px;
    margin-top: 60px;
    padding: 50px 55px;
    font-size: 18px;
    margin-bottom: 180px;
  }
  .hero--product .product .img-wrapper, .product-cpo .product .img-wrapper {
    right: -40px;
    top: 0;
    padding-top: 40px;
    width: auto;
    max-height: 100%;
    display: flex;
  }
}
@media screen and (min-width: 118.75em) {
  .hero--product, .product-cpo {
    background-size: 100%;
  }
}

.media--product {
  padding-top: 60px;
  margin-top: 0;
  background: transparent url("../images/product/media-product-bg.png") no-repeat;
  position: relative;
}
@media screen and (min-width: 30em) {
  .media--product {
    background-position: -700px -20px;
  }
  .media--product .title {
    margin-left: 20px;
  }
  .media--product .carousel-wrapper {
    margin-left: 40px;
  }
}
@media screen and (min-width: 80em) {
  .media--product {
    background-position: 0 -20px;
  }
  .media--product .title {
    margin-left: 20px;
  }
  .media--product .carousel-wrapper {
    margin-left: 40px;
  }
}
@media screen and (min-width: 118.75em) {
  .media--product {
    background-size: 100% 100%;
  }
}

.sticky-wrapper {
  position: relative;
  background-color: #fff;
  z-index: 555;
}

.sticky-nav {
  text-align: center;
  background: #ffffff;
}
.sticky-nav.no-border {
  border-top: none;
}
.sticky-nav.shift-bottom:not(.sticky) .btn-wrapper {
  border: none;
  padding: 0;
  margin-bottom: -15px;
}
@media screen and (max-width: 26.1875em) {
  .sticky-nav.shift-bottom:not(.sticky) {
    padding: 30px 0 45px 0;
  }
}
@media screen and (min-width: 30em) and (max-width: 47.4375em) {
  .sticky-nav.shift-bottom:not(.sticky) {
    padding: 30px 0 45px 0;
  }
}
.sticky-nav .columns {
  border-top: 1px solid #f5f5f5;
  padding-top: 25px;
  padding-bottom: 25px;
  position: relative;
}
.sticky-nav nav {
  display: inline-block;
}
.sticky-nav nav .text {
  display: inline-block;
  color: #aa273e;
  margin: 0 35px;
}
.sticky-nav nav .text a {
  margin-bottom: 0;
  line-height: 20px;
  display: none;
  color: #aa273e;
}
.sticky-nav nav .text a.active {
  display: inline-block;
}
.sticky-nav nav > a {
  vertical-align: middle;
  display: inline-block;
  width: 20px;
  height: 30px;
}
.sticky-nav nav > a.up, .sticky-nav nav > a.down {
  position: absolute;
  top: calc(50% - 15px);
  left: 10px;
}
.sticky-nav nav > a svg {
  stroke: #aa273e;
}
.sticky-nav nav > a.up {
  transform: rotate(180deg);
  right: 10px;
  left: auto;
}
.sticky-nav .btn-wrapper .btn-block {
  display: block;
}
.sticky-nav .btn-wrapper .button {
  margin-bottom: 0;
  background: white;
}
.sticky-nav.sticky {
  z-index: 9999;
  position: fixed;
  top: 0;
  width: 100%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}
.sticky-nav.sticky .btn-wrapper .btn-block-buynow {
  display: none;
}
@media print, screen and (min-width: 47.5em) {
  .sticky-nav.sticky .btn-wrapper .btn-block-buynow {
    display: inline-block;
  }
}
.sticky-nav .btn-wrapper .button {
  padding: 10px 30px;
}
.sticky-nav .btn-wrapper .button.buy-now-url {
  margin-bottom: 30px;
  padding: 10px 46px;
}
@media screen and (min-width: 30em) {
  .sticky-nav nav .text {
    margin: 0 20px;
  }
  .sticky-nav .btn-wrapper {
    border-left: 1px solid #f5f5f5;
    display: block;
  }
  .sticky-nav .btn-wrapper .button {
    font-size: 16px;
    margin-bottom: 0;
    margin-top: -5px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .sticky-nav .btn-wrapper .btn-block {
    display: inline;
  }
  .sticky-nav .btn-wrapper .button.buy-now-url {
    margin-bottom: 0;
    margin-right: 10px;
  }
}
@media print, screen and (min-width: 64em) {
  .sticky-nav .columns {
    border: none;
    width: auto;
    border-top: 1px solid #f5f5f5;
  }
  .sticky-nav .links {
    padding: 0;
    padding-left: 20px;
    width: 67%;
  }
  .sticky-nav .links a {
    font-size: 13px;
    display: inline-block;
    padding: 30px 9px;
    width: auto;
    height: auto;
    color: #000000;
    border-right: 1px solid #f5f5f5;
  }
  .sticky-nav .links a:hover, .sticky-nav .links a.active {
    color: #aa273e;
  }
  .sticky-nav .btn-wrapper {
    width: 33%;
    padding-bottom: 20px;
    padding-left: 0;
  }
  .sticky-nav .btn-wrapper .button {
    font-size: 14px;
    padding: 10px 25px;
  }
  .sticky-nav .btn-wrapper .button.buy-now-url {
    margin-bottom: 0;
    padding: 10px 45px;
  }
}
@media screen and (min-width: 80em) {
  .sticky-nav {
    border-top: 1px solid #f5f5f5;
  }
  .sticky-nav .columns {
    border: none;
  }
  .sticky-nav .links {
    padding-left: 0;
  }
  .sticky-nav .links a {
    font-size: 17px;
    padding: 30px 20px;
  }
  .sticky-nav .links nav {
    float: left;
  }
  .sticky-nav .btn-wrapper .button {
    font-size: 18px;
  }
}

.featured-slider {
  background: #000000;
  position: relative;
  height: 950px;
  overflow: hidden;
  width: 100%;
  margin-bottom: 50px;
}
.featured-slider > .row {
  height: 100%;
}
.featured-slider > .row > .columns, .featured-slider > .row .right {
  height: 50%;
  position: relative;
}
.featured-slider .columns {
  padding: 0 20px;
}
.featured-slider .item {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  transition: all 0.5s ease-in-out;
}
.featured-slider .item h2, .featured-slider .item ul {
  transition: all 1s ease-in-out;
  transform: translate(-20%, 0);
  opacity: 0;
}
.featured-slider .item ul {
  transition-delay: 0.5s;
}
.featured-slider .item.active {
  opacity: 1;
  visibility: visible;
}
.featured-slider .item.active h2, .featured-slider .item.active ul {
  transform: translate(0, 0);
  opacity: 1;
}
.featured-slider > .slider-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
}
.featured-slider .slider-nav {
  display: block;
  text-align: center;
}
.featured-slider .slider-nav .dots {
  background: #aa273e;
  border-radius: 20px;
  padding: 10px;
  width: auto;
  margin: 0 auto;
  display: inline-block;
}
.featured-slider .slider-nav .dots .dot {
  width: 7px;
  height: 7px;
  display: block;
  float: left;
  background: #ffffff;
  opacity: 0.4;
  border-radius: 50%;
  margin: 0 5px;
}
.featured-slider .slider-nav .dots .dot:hover, .featured-slider .slider-nav .dots .dot.active {
  opacity: 1;
}
.featured-slider .left {
  padding-top: 70px;
  padding-bottom: 70px;
  background: #000000;
  color: #ffffff;
}
.featured-slider .left img {
  top: -25px;
  position: relative;
}
.featured-slider h2 {
  font-size: 24px;
  position: relative;
}
.featured-slider ul {
  margin-left: 0;
  margin-top: 25px;
  list-style-type: none;
}
.featured-slider ul li {
  padding: 0 0 1em 25px;
  position: relative;
}
.featured-slider ul li:first-child {
  margin-top: 25px;
}
.featured-slider ul li svg {
  position: absolute;
  width: 30px;
  height: 25px;
  left: -55px;
  top: 2px;
  fill: #ffffff;
  opacity: 0.3;
}
.featured-slider ul li:before {
  display: block;
  width: 10px;
  content: "";
  left: 5px;
  background-color: #fff;
  top: 15px;
  backface-visibility: hidden;
  position: absolute;
  height: 1px;
}
@media print, screen and (min-width: 47.5em) {
  .featured-slider {
    height: 540px;
    margin-bottom: 0;
  }
  .featured-slider .left, .featured-slider .right {
    width: 50%;
    height: 100%;
    float: left;
  }
  .featured-slider > .row > .columns {
    padding: 0;
  }
  .featured-slider > .row > .columns, .featured-slider > .row .right {
    height: 100%;
  }
  .featured-slider .slider-nav {
    margin: 0;
    margin-left: -14px;
    width: 25px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .featured-slider .slider-nav .dots {
    padding: 15px 5px;
  }
  .featured-slider .slider-nav .dots .dot {
    display: block;
    margin-bottom: 10px;
  }
  .featured-slider .slider-nav .dots .dot:last-child {
    margin-bottom: 0;
  }
  .featured-slider .left {
    width: 100%;
    position: relative;
  }
  .featured-slider .left .columns {
    padding: 0 30px;
  }
  .featured-slider .right {
    height: 540px;
  }
  .featured-slider .right * {
    height: 100%;
  }
  .featured-slider .right .img-wrapper {
    overflow: hidden;
  }
  .featured-slider .right .img-wrapper img {
    max-width: none;
  }
  .featured-slider h2 img {
    right: auto;
    left: -10px;
  }
}
@media print, screen and (min-width: 64em) {
  .featured-slider {
    height: 720px;
  }
  .featured-slider h2 {
    font-size: 32px;
  }
  .featured-slider .slider-nav {
    width: 40px;
    margin-left: -22px;
  }
  .featured-slider .slider-nav .dots {
    padding: 25px 10px;
  }
  .featured-slider .slider-nav .dots .dot {
    width: 12px;
    height: 12px;
    margin-bottom: 15px;
  }
  .featured-slider .left .columns {
    padding: 120px 50px 0;
  }
  .featured-slider .right {
    height: 720px;
    overflow: hidden;
  }
  .featured-slider .right .item .img-wrapper img {
    min-width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 80em) {
  .featured-slider {
    height: 990px;
    position: relative;
  }
  .featured-slider h2 {
    font-size: 34px;
    margin-bottom: 50px;
  }
  .featured-slider > .row > .columns {
    padding: 0 0 0 40px;
  }
  .featured-slider .left {
    position: relative;
    z-index: 1;
    height: 990px;
    font-size: 18px;
  }
  .featured-slider .left img {
    top: -50px;
  }
  .featured-slider .left .columns {
    padding: 0;
  }
  .featured-slider .left .item {
    max-width: 380px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .featured-slider .right {
    height: 990px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
    overflow: visible;
  }
  .featured-slider .right .item {
    width: 100%;
    height: 100%;
    position: absolute;
  }
  .featured-slider .right .item .img-wrapper {
    overflow: visible;
  }
  .featured-slider .right .item .img-wrapper img {
    min-width: 100%;
    height: 100%;
  }
}
@media screen and (min-width: 118.75em) {
  .featured-slider .right .item .img-wrapper img {
    min-width: 100%;
    width: 51vw;
  }
}

.featured-slider-cpo {
  background: linear-gradient(90deg, #1A1A1A 50%, #fff 50%);
  position: relative;
  width: 100%;
  margin-bottom: 150px;
  overflow: hidden;
}
@media screen and (min-width: 118.75em) {
  .featured-slider-cpo {
    background: linear-gradient(90deg, #1A1A1A 50%, #fff 50%);
  }
}
.featured-slider-cpo > .row {
  height: 100%;
}
.featured-slider-cpo > .row > .columns, .featured-slider-cpo > .row .right {
  height: 50%;
  position: relative;
}
.featured-slider-cpo__image-slider {
  position: relative;
}
.featured-slider-cpo .item {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  width: 100%;
  top: 0;
  transition: all 0.5s ease-in-out;
}
.featured-slider-cpo .item.active {
  position: relative;
}
.featured-slider-cpo .item h2, .featured-slider-cpo .item ul {
  transition: all 1s ease-in-out;
  transform: translate(-20%, 0);
  opacity: 0;
}
.featured-slider-cpo .item h2 {
  line-height: 120%;
}
.featured-slider-cpo .item ul {
  transition-delay: 0.5s;
}
.featured-slider-cpo .item ul, .featured-slider-cpo .item li, .featured-slider-cpo .item p {
  line-height: 2;
}
.featured-slider-cpo .item.active {
  opacity: 1;
  visibility: visible;
}
.featured-slider-cpo .item.active h2, .featured-slider-cpo .item.active ul {
  transform: translate(0, 0);
  opacity: 1;
}
.featured-slider-cpo .item .moreinfo {
  padding-top: 20px;
}
.featured-slider-cpo .item .moreinfo p {
  color: rgba(255, 255, 255, 0.6);
}
.featured-slider-cpo .item .moreinfo p a {
  color: inherit;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}
.featured-slider-cpo .item .btn-buy-now-wrap {
  padding-bottom: 30px;
}
.featured-slider-cpo .item .btn-buy-now-wrap .btn-buy-now {
  margin-top: 30px;
  color: white;
  font-weight: 800;
  font-size: 20px;
  line-height: 27px;
  background: #1A1A1A;
  border: 4.3px solid #FFFFFF;
  box-sizing: border-box;
  border-radius: 67px;
  height: 63px;
  width: 284px;
  display: inline-block;
  text-align: center;
  padding-top: 12px;
}
.featured-slider-cpo .item .btn-buy-now-wrap .btn-buy-now:hover, .featured-slider-cpo .item .btn-buy-now-wrap .btn-buy-now:focus {
  color: #1A1A1A;
  background: #FFFFFF;
}
.featured-slider-cpo .left {
  height: 100%;
  padding-left: 55px;
  padding-right: 10px;
}
.featured-slider-cpo > .slider-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  left: 45%;
}
.featured-slider-cpo .slider-nav {
  display: block;
  text-align: center;
}
.featured-slider-cpo .slider-nav .dots {
  background: none;
  border-radius: 20px;
  padding: 10px;
  width: auto;
  margin: 0 auto;
  display: inline-block;
}
.featured-slider-cpo .slider-nav .dots .dot {
  width: 9px;
  height: 9px;
  display: block;
  float: left;
  background: #ffffff;
  opacity: 1;
  border-radius: 50%;
  margin: 0 5px;
  border: 1px solid #1A1A1A;
}
.featured-slider-cpo .slider-nav .dots .dot:hover, .featured-slider-cpo .slider-nav .dots .dot.active {
  opacity: 1;
}
.featured-slider-cpo .slider-nav .dots .dot:hover {
  background: #1A1A1A;
}
.featured-slider-cpo .slider-nav .dots .dot.active {
  background: #1A1A1A;
}
.featured-slider-cpo .left {
  padding-top: 70px;
  padding-bottom: 70px;
  color: #ffffff;
}
.featured-slider-cpo .left img {
  top: -25px;
  position: relative;
}
.featured-slider-cpo h2 {
  font-size: 28px;
  position: relative;
}
.featured-slider-cpo ul {
  margin-left: 0;
  margin-top: 25px;
  list-style-type: none;
}
.featured-slider-cpo ul li {
  padding: 0 0 0 25px;
  position: relative;
}
.featured-slider-cpo ul li:first-child {
  margin-top: 25px;
}
.featured-slider-cpo ul li svg {
  position: absolute;
  width: 30px;
  height: 25px;
  left: -55px;
  top: 2px;
  fill: #ffffff;
  opacity: 0.3;
}
.featured-slider-cpo ul li:before {
  display: block;
  width: 10px;
  content: "";
  left: 5px;
  background-color: #fff;
  top: 15px;
  backface-visibility: hidden;
  position: absolute;
  height: 1px;
}
@media screen and (min-width: 30em) and (max-width: 47.4375em) {
  .featured-slider-cpo .right {
    background: white;
  }
  .featured-slider-cpo > .slider-nav {
    left: 0%;
    width: 100%;
    transform: none;
    margin-top: -40px;
  }
}
@media screen and (min-width: 30em) {
  .featured-slider-cpo > .row > .columns {
    padding: 0;
  }
}
@media screen and (max-width: 47.4375em) {
  .featured-slider-cpo {
    margin-bottom: 50px;
    overflow: visible;
    margin-top: 0;
    background: none;
  }
  .featured-slider-cpo .left, .featured-slider-cpo .right {
    height: auto;
    float: none;
  }
  .featured-slider-cpo > .item > .row {
    height: auto;
  }
  .featured-slider-cpo > .item > .row > .columns {
    padding: 0;
  }
  .featured-slider-cpo > .item > .row > .columns, .featured-slider-cpo > .item > .row .right {
    height: auto;
  }
  .featured-slider-cpo .slider-nav {
    margin: 0;
    position: static;
    text-align: center;
    transform: none;
    height: 40px;
  }
  .featured-slider-cpo .slider-nav .dots {
    padding: 15px 5px;
  }
  .featured-slider-cpo .slider-nav .dots .dot {
    display: block;
    margin-bottom: 10px;
  }
  .featured-slider-cpo .slider-nav .dots .dot:last-child {
    margin-bottom: 0;
  }
  .featured-slider-cpo .left {
    background: #1A1A1A;
    width: 100%;
    position: relative;
    float: none;
  }
  .featured-slider-cpo .left .columns {
    padding: 0 30px;
  }
  .featured-slider-cpo .right {
    width: 100%;
    height: auto;
    float: none;
    padding: 15px;
  }
  .featured-slider-cpo .right > * {
    height: auto;
  }
  .featured-slider-cpo .right .img-wrapper {
    position: relative;
    text-align: center;
  }
  .featured-slider-cpo .right .img-wrapper img {
    max-width: 100%;
  }
  .featured-slider-cpo h2 img {
    right: auto;
    left: -10px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .featured-slider-cpo h2 {
    font-size: 36px;
  }
  .featured-slider-cpo > .item {
    position: absolute;
  }
  .featured-slider-cpo > .item.active {
    position: relative;
  }
  .featured-slider-cpo .slider-nav {
    width: 40px;
    margin-left: 35px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
  }
  .featured-slider-cpo .slider-nav .dots {
    padding: 25px 10px;
  }
  .featured-slider-cpo .slider-nav .dots .dot {
    width: 16px;
    height: 16px;
    margin-bottom: 15px;
  }
  .featured-slider-cpo > .item > .row {
    display: flex;
    flex-flow: row nowrap;
  }
  .featured-slider-cpo > .item > .row .left .columns {
    padding: 0 50px 0;
  }
  .featured-slider-cpo > .item > .row .right {
    background: white;
    overflow: hidden;
  }
  .featured-slider-cpo > .item > .row .right > * {
    height: 100%;
  }
  .featured-slider-cpo > .item > .row .right .item {
    height: 100%;
  }
  .featured-slider-cpo > .item > .row .right .item .img-wrapper {
    height: 100%;
    width: 100%;
    padding-left: 80px;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
  }
  .featured-slider-cpo > .item > .row .right .item .img-wrapper img {
    max-width: 100%;
    display: block;
    height: auto;
    max-height: 100%;
  }
}
@media screen and (min-width: 80em) {
  .featured-slider-cpo {
    position: relative;
  }
  .featured-slider-cpo h2 {
    font-size: 40px;
    margin-bottom: 50px;
  }
  .featured-slider-cpo > .row > .columns {
    padding: 0 0 0 40px;
  }
  .featured-slider-cpo .left {
    position: relative;
    z-index: 1;
    font-size: 18px;
  }
  .featured-slider-cpo .left img {
    top: -50px;
  }
  .featured-slider-cpo .left .columns {
    padding: 0;
  }
}
@media screen and (min-width: 118.75em) {
  .featured-slider-cpo .right .item .img-wrapper img {
    display: block;
    max-height: 100%;
    max-width: 100%;
  }
}

.gallery {
  padding-top: 42px;
  background: transparent url("../images/product/bg-wave-blue.png") no-repeat;
  background-position: -1000px 150px;
}
.gallery .owl-item {
  padding-top: 30px;
  padding-bottom: 30px;
}
.gallery .owl-item.center .item img {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
.gallery .item {
  width: 80%;
  margin-left: 10%;
  cursor: pointer;
}
.gallery .item p {
  margin-top: 10px;
  color: #fff;
}
.gallery .gallery-nav {
  text-align: center;
  padding-bottom: 55px;
}
.gallery .gallery-nav > * {
  display: inline-block;
  vertical-align: middle;
}
.gallery .gallery-nav .items {
  font-size: 22px;
  color: #ffffff;
}
.gallery .gallery-nav a {
  width: 35px;
  height: 20px;
  margin-right: 40px;
  opacity: 0.4;
  color: #ffffff;
}
.gallery .gallery-nav a svg {
  fill: #ffffff;
}
.gallery .gallery-nav a.back {
  transform: rotate(180deg);
}
.gallery .gallery-nav a.next {
  margin-right: 0;
  margin-left: 40px;
}
.gallery .gallery-nav a:hover {
  opacity: 1;
}
@media screen and (min-width: 30em) {
  .gallery {
    background-position: 0 100px;
    padding-bottom: 200px;
    background-size: 200% 100%;
  }
  .gallery .owl-item {
    padding-top: 40px;
    padding-bottom: 40px;
    transform: scale(1);
    transition: all 0.6s ease-in-out;
  }
  .gallery .owl-item.center {
    transform: scale(1.2);
  }
}
@media print, screen and (min-width: 47.5em) {
  .gallery {
    margin-top: 30px;
  }
  .gallery .owl-item {
    padding-top: 60px;
  }
  .gallery .gallery-nav {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .gallery .gallery-nav .items {
    font-size: 26px;
  }
}
@media print, screen and (min-width: 64em) {
  .gallery {
    background-position: 0 100px;
    background-size: 100% 80%;
  }
  .gallery .item {
    width: 300px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 118.75em) {
  .gallery {
    margin-top: 100px;
    background-position: 0 150px;
    padding-bottom: 300px;
  }
  .gallery .item {
    width: 500px;
  }
  .gallery .gallery-nav .items {
    font-size: 40px;
  }
  .gallery .gallery-nav a {
    width: 45px;
    height: 30px;
  }
}

.gallery-cpo-wrapper-wrap {
  margin: 0 50px;
}

.gallery-cpo-wrapper {
  position: relative;
}
.gallery-cpo-wrapper .gallery-cpo-shadow-left {
  content: "";
  display: block;
  clear: both;
  width: 90px;
  height: 100%;
  position: absolute;
  left: -50px;
  top: 0;
  background: linear-gradient(to right, rgb(255, 255, 255), rgb(255, 255, 255) 55%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}
.gallery-cpo-wrapper .gallery-cpo-shadow-right {
  content: "";
  display: block;
  clear: both;
  width: 90px;
  height: 100%;
  position: absolute;
  right: -50px;
  top: 0;
  background: linear-gradient(to left, rgb(255, 255, 255), rgb(255, 255, 255) 55%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}
.gallery-cpo-wrapper .prev {
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='black'><path d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/></svg>");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 30px;
  width: 70px;
  height: 100%;
  position: absolute;
  left: -30px;
  top: 0;
  z-index: 2;
  opacity: 0.5;
  outline: none;
}
.gallery-cpo-wrapper .prev:hover, .gallery-cpo-wrapper .prev:focus {
  opacity: 1;
}
.gallery-cpo-wrapper .next {
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='black'><path d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/></svg>");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 30px;
  width: 70px;
  height: 100%;
  position: absolute;
  right: -30px;
  top: 0;
  z-index: 2;
  opacity: 0.5;
  outline: none;
}
.gallery-cpo-wrapper .next:hover, .gallery-cpo-wrapper .next:focus {
  opacity: 1;
}

.gallery-cpo {
  background: none;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  height: 283px;
  padding-top: 130px;
  padding-bottom: 75px;
  position: relative;
}
.gallery-cpo .slider {
  position: relative;
}
.gallery-cpo .owl-dots {
  display: none;
}
.gallery-cpo .swiper-wrapper.justify-center {
  justify-content: center;
}
.gallery-cpo .swiper-slide {
  cursor: pointer;
}
.gallery-cpo .swiper-slide:not(.swiper-slide-active):hover .img-wrap {
  border-color: #EDF3FF;
}
.gallery-cpo .item {
  padding: 0;
  width: 78px;
  min-height: 78px;
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  margin-left: 0;
  position: relative;
}
.gallery-cpo .item h2 {
  left: 0;
  right: 0;
  padding: 10px 5px 20px 5px;
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.15;
  text-align: center;
}
.gallery-cpo .item .img-wrap {
  width: 100%;
  padding-bottom: 100%;
  border: 2.17802px solid white;
  border-radius: 17.0303px;
  display: block;
  position: relative;
  top: 0;
  left: 0;
  box-shadow: none;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.gallery-cpo .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.gallery-cpo .swiper-slide.swiper-slide-active .img-wrap {
  border: 2.17802px solid #242876;
}
.gallery-cpo .swiper-slide.swiper-slide-active .img-wrap img {
  box-shadow: none;
}
.gallery-cpo .swiper-slide.center {
  opacity: 1;
}
.gallery-cpo .swiper-slide.center .item {
  box-shadow: none;
}
.gallery-cpo .gallery-nav .items {
  color: #000;
}
.gallery-cpo .gallery-nav a {
  color: #000;
}
.gallery-cpo .gallery-nav a svg {
  fill: #000;
}
.gallery-cpo .swiper-slide {
  padding: 0 6px;
}
.gallery-cpo .swiper-slide h2 {
  font-size: 10px;
  padding: 5px 0;
}
@media screen and (min-width: 30em) {
  .gallery-cpo {
    padding-bottom: 112px;
    height: 364px;
  }
  .gallery-cpo .swiper-slide {
    padding: 0 9px;
    width: 117px;
    min-height: 117px;
  }
  .gallery-cpo .swiper-slide h2 {
    font-size: 15px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .gallery-cpo {
    height: 422px;
  }
  .gallery-cpo .swiper-slide {
    padding: 0 35px;
    width: 175px;
    min-height: 175px;
  }
  .gallery-cpo .swiper-slide h2 {
    font-size: 22px;
  }
  .gallery-cpo .prev {
    width: 90px;
    left: -20px;
  }
  .gallery-cpo .next {
    width: 90px;
    right: -20px;
  }
}

.video-section {
  position: relative;
}
@media screen and (min-width: 30em) {
  .video-section {
    margin: 25px auto;
    margin-top: -200px;
    width: 50%;
  }
}
@media screen and (min-width: 118.75em) {
  .video-section {
    margin-top: -300px;
  }
}

.parts {
  padding-top: 80px;
  padding-bottom: 40px;
}
.parts h4 {
  font-size: 24px;
  max-width: 60%;
  float: left;
}
.parts .button {
  font-size: 18px;
  padding: 15px 35px;
}
.parts .slider {
  padding-top: 40px;
}
.parts .slider .owl-item {
  padding-bottom: 30px;
}
.parts .slider .item {
  box-sizing: border-box;
}
.parts .slider .item .img-wrapper {
  border: 4px solid #26247b;
  position: relative;
  width: 180px;
  height: 180px;
}
.parts .slider .item .img-wrapper img {
  width: auto;
  max-height: 100%;
  padding: 20px 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.parts .slider .item .content {
  max-width: 160px;
  background: #ffffff;
  padding: 40px 20px 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transform: translate(35px, -25px);
}
.parts .slider-nav {
  text-align: center;
  padding-top: 35px;
  float: right;
  padding-right: 20px;
}
.parts .slider-nav > * {
  display: inline-block;
  vertical-align: middle;
}
.parts .slider-nav a {
  width: 35px;
  height: 30px;
  opacity: 0.2;
  color: #000000;
}
.parts .slider-nav a svg {
  fill: #000000;
}
.parts .slider-nav a.back {
  transform: rotate(180deg);
}
.parts .slider-nav a.next {
  margin-right: 0;
  margin-left: 15px;
}
.parts .slider-nav a:hover {
  opacity: 1;
}
@media screen and (min-width: 30em) {
  .parts h4 {
    font-size: 36px;
    margin-left: 20px;
  }
  .parts h5 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .parts .slider .item .img-wrapper {
    width: 240px;
    height: 240px;
  }
  .parts .slider .item .content {
    max-width: 220px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .parts h4 {
    font-size: 48px;
    max-width: 50%;
  }
  .parts .slider-nav {
    padding-top: 80px;
  }
}
@media print, screen and (min-width: 64em) {
  .parts h4 {
    font-size: 62px;
  }
  .parts .slider-nav {
    padding-top: 110px;
  }
}
@media screen and (min-width: 80em) {
  .parts .slider {
    margin-left: 5%;
  }
  .parts .slider .item .content {
    transform: translate(60px, -25px);
  }
  .parts h4 {
    max-width: 40%;
  }
  .parts .slider-nav {
    padding-top: 105px;
  }
  .parts .slider-nav a {
    width: 45px;
    height: 30px;
  }
}
@media screen and (min-width: 118.75em) {
  .parts h4 {
    font-size: 82px;
  }
  .parts h5 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .parts .button {
    font-size: 22px;
    padding: 25px 70px;
  }
  .parts .slider-nav {
    padding-top: 155px;
  }
  .parts .slider {
    margin-left: 18%;
  }
  .parts .slider .item .img-wrapper {
    width: 300px;
    height: 300px;
  }
  .parts .slider .item .content {
    max-width: 280px;
  }
}

.applications {
  position: relative;
}
.applications:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  height: calc(100% + 170px);
  width: 100%;
  z-index: -1;
  background: #f7f7f7;
}
.applications h4 {
  font-size: 36px;
  color: #26247b;
  text-align: center;
}
.applications .slider-nav {
  margin-top: 40px;
  padding: 0 10px;
}
.applications .slider-nav nav > a {
  color: #000000;
  display: block;
  border-bottom: 1px solid #c6c6c6;
  padding: 15px 0;
}
.applications .slider-nav nav > a:last-child {
  border-bottom: none;
}
.applications .slider-nav nav > a:hover, .applications .slider-nav nav > a.active {
  color: #aa273e;
}
.applications .slider-nav .arrows {
  text-align: center;
  padding-top: 35px;
  padding-bottom: 35px;
  padding-right: 20px;
  position: relative;
}
.applications .slider-nav .arrows > * {
  display: inline-block;
  vertical-align: middle;
}
.applications .slider-nav .arrows a {
  width: 35px;
  height: 30px;
  opacity: 0.2;
  color: #000000;
}
.applications .slider-nav .arrows a svg {
  fill: #000000;
}
.applications .slider-nav .arrows a.back {
  transform: rotate(180deg);
}
.applications .slider-nav .arrows a.next {
  margin-right: 0;
  margin-left: 85px;
}
.applications .slider-nav .arrows a:hover {
  opacity: 1;
}
.applications .owl-item {
  padding: 10px 10px 30px;
}
.applications .slider .item {
  background: #ffffff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  padding: 40px 30px;
}
.applications .slider .item h5 {
  font-size: 28px;
  margin-bottom: 15px;
}
@media screen and (min-width: 30em) {
  .applications:after {
    top: 0;
    height: calc(100% + 30px);
  }
  .applications h4 {
    font-size: 48px;
  }
  .applications .slider-nav {
    padding: 0 25px;
  }
  .applications .slider-nav .arrows {
    text-align: left;
  }
  .applications .slider-nav .arrows a.next {
    margin-left: 50px;
  }
  .applications .owl-item {
    padding: 10px 20px 30px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .applications {
    min-height: 500px;
  }
  .applications h4 {
    margin-bottom: 0;
    text-align: right;
    padding-right: 30px;
  }
  .applications .slider-nav {
    width: 40%;
    float: right;
  }
  .applications .slider {
    width: 55%;
  }
}
@media print, screen and (min-width: 64em) {
  .applications {
    min-height: 630px;
    padding-top: 40px;
  }
  .applications:after {
    top: 0;
  }
  .applications h4 {
    font-size: 62px;
  }
  .applications .slider-nav {
    width: 35%;
    font-size: 18px;
  }
  .applications .owl-item {
    padding: 20px 20px 30px;
  }
  .applications .slider .item {
    padding: 60px;
  }
  .applications .slider .item h5 {
    font-size: 34px;
  }
}
@media screen and (min-width: 118.75em) {
  .applications {
    min-height: 630px;
    padding-top: 40px;
  }
  .applications:after {
    top: 50px;
  }
  .applications h4 {
    font-size: 82px;
    margin-right: 10px;
  }
}

.additional {
  background: transparent url("../images/product/parallax-wavy-bg.png") no-repeat;
  background-position: -350px 50px;
  background-size: 1000px auto;
}
.additional .button {
  font-size: 18px;
  padding: 15px 30px;
}
.additional h3 {
  font-size: 34px;
  text-align: center;
  color: #ffffff;
  margin-top: 100px;
}
.additional .content {
  background: #ffffff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  padding: 25px 20px;
  margin: 10px;
  text-align: center;
}
.additional .content p {
  display: block;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
}
.additional .content .button {
  display: inline-block;
  margin-bottom: 0;
  margin-top: 15px;
}
@media screen and (min-width: 30em) {
  .additional {
    margin-top: 0px;
    background-position: -240px 0;
  }
  .additional h3 {
    margin-top: 60px;
    margin-bottom: 20px;
  }
  .additional .content {
    margin: 20px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .additional {
    margin-top: -100px;
    padding-top: 100px;
    background-position: 50% 0px;
    background-size: 150% auto;
  }
  .additional h3 {
    font-size: 48px;
    margin-top: 30px;
  }
  .additional .content {
    margin: 20px;
    padding: 50px;
    text-align: left;
  }
  .additional .content p {
    max-width: 450px;
    display: inline-block;
  }
  .additional .content .button {
    float: right;
  }
}
@media print, screen and (min-width: 64em) {
  .additional {
    background-size: 1280px auto;
  }
  .additional h3 {
    font-size: 62px;
    margin-top: 30px;
  }
  .additional .content {
    padding: 60px 50px;
    max-width: 70%;
    margin-left: 15%;
  }
  .additional .content p {
    max-height: 80px;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 80em) {
  .additional {
    background-size: 100% 90%;
  }
}
@media screen and (min-width: 118.75em) {
  .additional {
    background-size: 100% 90%;
    min-height: 600px;
  }
  .additional h3 {
    font-size: 82px;
    margin-top: 150px;
  }
  .additional .content {
    font-size: 18px;
  }
  .additional .content p {
    max-height: 80px;
    max-width: 520px;
  }
  .additional .content .button {
    font-size: 22px;
    padding: 25px 40px;
    margin-top: 0;
  }
}

.info-boxes {
  margin-bottom: 50px;
}
.info-boxes .button {
  font-size: 18px;
}
.info-boxes .box {
  position: relative;
  margin-top: 50px;
  padding: 0 20px 100px;
}
.info-boxes .box h5 {
  font-size: 24px;
  max-width: 80%;
}
.info-boxes .box p {
  overflow: hidden;
  margin-bottom: 20px;
  color: #666666;
}
.info-boxes .box .button {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  right: 0.625rem;
  left: calc(25% + 0.625rem);
}
@media print, screen and (min-width: 47.5em) {
  .info-boxes .box .button {
    right: 0.9375rem;
    left: 0.9375rem;
  }
}
@media screen and (min-width: 30em) {
  .info-boxes .box {
    padding: 0 30px 100px;
  }
  .info-boxes .box .button {
    margin-top: 20px;
  }
  .info-boxes .box > div div:first-child {
    padding: 10px 20px 0 20px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .info-boxes .box {
    padding: 0 30px 100px;
  }
  .info-boxes .box .button {
    margin-top: 20px;
  }
  .info-boxes .box h5 {
    display: inline-block;
    margin-top: 40px;
  }
  .info-boxes .box > div div:first-child img {
    max-height: 85px;
  }
}
@media print, screen and (min-width: 64em) {
  .info-boxes {
    margin-bottom: 80px;
  }
  .info-boxes .box {
    padding: 0 20px 100px;
  }
  .info-boxes .box .button {
    margin-top: 40px;
  }
  .info-boxes .box h5 {
    margin-top: 80px;
    margin-bottom: 30px;
    font-size: 28px;
    max-width: none;
  }
  .info-boxes .box > div div:first-child img {
    max-height: 110px;
  }
}
@media screen and (min-width: 118.75em) {
  .info-boxes {
    margin-top: 50px;
  }
  .info-boxes .box .button {
    font-size: 22px;
  }
  .info-boxes .box h5 {
    font-size: 34px;
  }
  .info-boxes .box > div div:first-child img {
    max-height: 141px;
  }
}

.sticky-arrow {
  background: #26247b;
  padding: 25px 0;
  width: 85px;
  height: 85px;
  display: none;
  position: fixed;
  bottom: 50px;
  z-index: 9;
  right: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  transition: all 0.35s ease-in-out;
  transform: translate(0, 150px);
}
.sticky-arrow.showed {
  transform: translate(0, 0);
}
.sticky-arrow a {
  height: 35px;
  transform: rotate(-90deg);
  display: block;
}
.sticky-arrow a svg {
  fill: #ffffff;
}
@media print, screen and (min-width: 47.5em) {
  .sticky-arrow {
    display: block;
  }
}

.product-cpo {
  padding-bottom: 0;
  background-image: url("../images/product/bg-hero-blue@2x.jpg");
  background-size: 1100px auto;
}
@media screen and (max-width: 63.9375em) {
  .product-cpo {
    background-size: 1300px auto;
    background-position: 100% -150px;
  }
}
@media screen and (max-width: 47.4375em) {
  .product-cpo {
    background-size: 768px auto;
    background-position: 100% top;
  }
}
@media print, screen and (min-width: 64em) {
  .product-cpo {
    background-size: 1500px auto;
  }
}
@media screen and (min-width: 80em) {
  .product-cpo {
    background-size: 1920px;
  }
}
@media screen and (min-width: 118.75em) {
  .product-cpo {
    padding-top: 50px;
    margin-top: -90px;
    background-size: 100%;
  }
}
@media screen and (min-width: 137.5em) {
  .product-cpo {
    background-position: center bottom;
  }
}
.product-cpo .product .brdcrmbs {
  padding-top: 12px;
  margin-bottom: 24px;
}
.product-cpo .product.active .columns > * {
  transform: translate(0, 0);
  opacity: 1;
}
.product-cpo .product .product-cpo__wrap-hero-text .text-box {
  width: 100%;
  margin-bottom: 0;
}
.product-cpo .product .product-cpo__wrap-hero-text .img-wrapper {
  position: static;
  top: 0px;
  right: 0px;
  text-align: center;
  margin: 0 auto;
}
@media print, screen and (min-width: 47.5em) {
  .product-cpo .product .product-cpo__wrap-hero-text .img-wrapper {
    text-align: right;
    margin: 0;
  }
}
.product-cpo .product .product-cpo__wrap-hero-text .img-wrapper img {
  width: 70%;
  padding-top: 120px;
  padding-bottom: 120px;
}
@media print, screen and (min-width: 47.5em) {
  .product-cpo .product .product-cpo__wrap-hero-text .img-wrapper img {
    padding-top: 0;
    padding-bottom: 0;
    width: 70%;
    margin-bottom: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .product-cpo .product .product-cpo__wrap-hero-text .img-wrapper img {
    width: 418px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .product-cpo .product .product-cpo__wrap-hero-text {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 80px;
  }
  .product-cpo .product .product-cpo__wrap-hero-text .text-box {
    margin-top: 0px;
    order: -1;
    width: 540px;
    margin-bottom: 0px;
  }
}
@media screen and (min-width: 47.5em) {
  .product-cpo .product {
    padding-top: 60px;
  }
}
@media screen and (min-width: 64em) {
  .product-cpo .product {
    padding-top: 80px;
  }
  .product-cpo .product .brdcrmbs {
    margin-bottom: 48px;
  }
}

ul.gform_fields {
  margin: 0;
  padding: 0;
  margin-left: -0.9375rem;
  margin-right: -0.9375rem;
}

ul.gform_fields li {
  list-style: none;
  margin: 0;
}

.gform_fields .gfield_required {
  display: none;
}

.gform_fields input[type=file] {
  display: none;
}

.gfield_checkbox {
  text-align: left;
}

.gform_button.button {
  width: 100%;
  margin-top: 0px;
  margin-bottom: 60px;
}

.gform_submission_error {
  padding: 14px;
  color: #A62B2B;
  font-size: 17px !important;
  line-height: 1.2 !important;
  font-weight: normal !important;
  font-family: "avenir-lt-pro", "Avenir LT W01_45 Book1475508", "AvenirLTW01-45Book", "Avenir", "Avenir LT", "Helvetica", sans-serif;
  margin-bottom: 0;
}

.storeProduct-price .quantity {
  display: none !important;
}
.storeProduct-price .cart {
  float: right;
}
.storeProduct-price .variations_form {
  width: 100%;
}
.storeProduct-price .variations_form table.variations {
  width: 100%;
}
.storeProduct-price .variations_form table.variations .label {
  vertical-align: top;
  padding-top: 14px;
  padding-right: 10px;
}
.storeProduct-price .variations_form table.variations .reset_variations {
  float: left;
  margin-bottom: 10px;
}
.storeProduct-price .variations_form button[type=submit].disabled {
  color: rgba(0, 0, 0, 0.3) !important;
  border-color: rgba(0, 0, 0, 0.3) !important;
  background: white !important;
}
.storeProduct-price .variations_form button[type=submit].disabled:before {
  display: inline;
  content: "Configure to ";
}
.storeProduct-price .variations_form button[type=submit].disabled:hover {
  color: rgba(0, 0, 0, 0.3) !important;
  border-color: rgba(0, 0, 0, 0.3) !important;
  background: white !important;
  cursor: not-allowed;
}

#viewMoreNews.hidden,
#viewMoreEvents.hidden {
  opacity: 0;
}

.button.on-white.primary {
  color: #aa273e;
  border-color: #aa273e;
}

body .member-center .sidebar .menu ul li.has-dropdown.is-active ul {
  max-height: 400px;
}

.woocommerce-orders .woocommerce-Message.woocommerce-Message--info.woocommerce-info {
  min-height: 400px;
  padding-top: 130px;
}

.gform_body li label.gfield_label {
  display: none;
}

#sagepaymentsusaapi-cc-form .form-row-first {
  width: 49%;
  display: inline-block;
}

#sagepaymentsusaapi-cc-form .form-row-last {
  width: 49%;
  margin-left: 1%;
  display: inline-block;
}

.wc_payment_methods.payment_methods li {
  list-style: none;
  padding-left: 0;
}

.form-row.place-order {
  margin-top: 40px;
}

.storeCheckout-payments {
  border: 0 none;
}

.wc_payment_methods.payment_methods.methods {
  margin-left: 0;
  margin-right: 0;
}

.gform_wrapper .gfcoupon_container {
  text-align: left;
}
.gform_wrapper .gfcoupon_container input.gf_coupon_code {
  width: 66.6666666666%;
  display: inline-block;
}
.gform_wrapper .gfcoupon_container #gf_coupon_button {
  width: 32.33333%;
  color: #26247b;
  border-color: #26247b;
  background: white;
  float: right;
  margin-right: 0;
  margin-left: 0;
  padding-top: 1.15em;
  padding-bottom: 1.15em;
}
.gform_wrapper .gfcoupon_container #gf_coupon_button[disabled] {
  color: #999999;
  border-color: #999999;
}
.gform_wrapper .gfcoupon_container #gf_coupon_info .gf_coupon_name_container {
  padding-bottom: 20px;
  border-bottom: none;
}
.gform_wrapper .gfcoupon_container #gf_coupon_info .gf_coupon_discount_container {
  border-bottom: none;
}
.gform_wrapper .gfcoupon_container #gf_coupon_info .gf_coupon_discount_container .gf_coupon_discount {
  padding-top: 2px;
}
.gform_wrapper .attendees_container table.gpnf-nested-entries {
  width: 100%;
}
.gform_wrapper .attendees_container table.gpnf-nested-entries th {
  background-color: rgba(38, 36, 123, 0.3);
}
.gform_wrapper .attendees_container table.gpnf-nested-entries .gpnf-row-actions {
  width: 200px;
  text-align: right;
}
.gform_wrapper .attendees_container table.gpnf-nested-entries .gpnf-row-actions .edit {
  margin-right: 20px;
}
.gform_wrapper .attendees_container button.gpnf-add-entry {
  cursor: pointer;
  width: auto;
  margin: 20px 0;
  padding: 18px 28px;
  border: 3px solid #26247b;
  border-radius: 30px;
  color: #26247b;
  font-weight: bold;
}
.gform_wrapper .attendees_subtotal {
  position: absolute;
  left: -9999px;
  text-indent: -9999px;
  height: 0;
  width: 0;
}
.gform_wrapper .total {
  font-size: 150%;
}
.gform_wrapper .total .gfield_label {
  display: block;
}

/*
* Fixing the erro forms layout
*/
.gform_footer {
  clear: both;
}

.clearfix_field {
  clear: both;
}

/* fix for fields that are missing the custom class and forces to overlap the other fields */
ul.gform_fields li.gfield:not(.columns) {
  clear: both;
}

/* reCaptcha privacy policy notice */
.gf-privacy-notice {
  font-size: 12px;
  color: #777;
}

.gform_footer .gf-privacy-notice {
  margin-top: -40px;
  margin-bottom: 40px;
}

/* autocomplete popup z-index adjustment */
.pac-container {
  z-index: 15000;
}

/* jquery ui adjustments */
.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
  background-color: #da2727;
  border-width: 0;
}

.ui-datepicker .ui-datepicker-prev-hover {
  border-width: 0;
  left: 2px;
  top: 2px;
}

.ui-datepicker .ui-datepicker-next-hover {
  border-width: 0;
  right: 2px;
  top: 2px;
}

.ui-datepicker .ui-datepicker-title {
  line-height: 18px;
}

.ui-datepicker .ui-datepicker-title select {
  font-size: 16px;
  margin-left: 5px;
  margin-right: 5px;
  height: 32px;
  padding-top: 4px;
  padding-bottom: 4px;
}

html {
  margin-top: 0 !important;
}

body {
  min-height: 1500px;
}

.header--main {
  position: relative;
  background-image: url("../images/header-wave--small.svg");
  width: 100%;
  z-index: 1000;
  margin-bottom: 0px;
}

.storeCounter {
  position: absolute;
  top: -3px;
  right: -7px;
  background: #fff;
  padding: 2px 4px;
  font-size: 12px;
  color: #000;
  font-weight: bold;
  border-radius: 8px;
}

.trigger {
  z-index: 100;
}

.trigger--nav {
  position: absolute;
  top: 13px;
  right: 10px;
  padding: 20px 10px;
  cursor: pointer;
}
@media print, screen and (min-width: 47.5em) {
  .trigger--nav {
    top: 14px;
  }
}

.trigger--nav span {
  display: block;
  height: 3px;
  border-radius: 2px;
  background-color: #fff;
  width: 26px;
  position: relative;
}

.trigger--nav span:before,
.trigger--nav span:after {
  display: block;
  height: 3px;
  border-radius: 2px;
  background-color: #fff;
  width: 26px;
  position: absolute;
  top: -8px;
  left: 0;
  content: "";
  transition: 0.3s;
}

.trigger--nav span:after {
  top: 8px;
}

.trigger--nav.trigger--active span {
  background-color: transparent;
}

.trigger--nav.trigger--active span:before {
  transform: rotate(-45deg);
  top: 0;
}

.trigger--nav.trigger--active span:after {
  transform: rotate(45deg);
  top: 0;
}

.logo--main {
  position: absolute;
  top: 13px;
  left: 10px;
  z-index: 100;
}
@media print, screen and (min-width: 47.5em) {
  .logo--main {
    top: 13px;
  }
}

.logo--main a {
  padding: 10px;
  display: block;
  line-height: 1;
}

.logo--main svg {
  width: 102px;
  height: 24px;
}

.icon {
  line-height: 1;
  padding: 5px;
}

.icon--header {
  position: absolute;
  top: 14px;
  padding: 0;
  display: block;
  z-index: 100;
  transition: none;
  cursor: pointer;
}
@media print, screen and (min-width: 47.5em) {
  .icon--header {
    top: 15px;
  }
}

.icon--profile {
  right: 182px;
}

.icon--cart {
  right: 126px;
}

.icon--search {
  right: 70px;
}

.nnav--main {
  display: block;
  padding: 60px 0 20px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  transition: top 0.3s;
  top: -700px;
  z-index: -100;
  position: relative;
  background-color: #AA273E;
  z-index: 100;
  transition: none;
}

.header--main {
  height: 105px;
  background-position: top -135px center;
  background-size: 768px auto;
}
@media print, screen and (min-width: 47.5em) {
  .header--main {
    height: 100px;
    margin-bottom: 30px;
    background-image: none;
  }
  .header--main:before {
    background-image: url("../images/header-wave--v2.svg");
    background-position: top -37px right;
    background-size: 1920px auto;
    height: 130px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    content: "";
    z-index: -1;
    pointer-events: none;
  }
}
@media screen and (min-width: 80em) {
  .header--main {
    background: 0 0;
    margin-bottom: 48px;
  }
  .header--main:before {
    display: none;
  }
}

@media print, screen and (min-width: 64em) {
  .header--main.header--fixed .nnav--main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin-top: 0;
    transition: margin-top 0.3s;
  }
  .header--main.header--fixed .icon--header {
    position: fixed;
    top: 16px;
    margin: 0;
    transition: margin-top 0.3s;
  }
}
.nnav--main.nnav--open {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transition: top 0.3s;
}

/* Lists */
.list {
  margin: 0;
  padding: 0;
}

.list__item--cart,
.list__item--search {
  position: absolute;
  top: 0;
  right: 0;
}

.list--top-nav {
  height: 34px;
  line-height: 34px;
  text-align: right;
  padding: 0 20px;
}

.list--top-nav .list__item--separator {
  padding-right: 20px;
  margin-right: 5px;
  border-right: 1px solid #D2D2D2;
}

.list--main-nav {
  text-align: center;
}

.list--top-nav .icon {
  margin-left: 8px;
}

.list__item--new .new {
  display: block;
  background: #fff;
  padding: 2px 6px;
  border-radius: 7px;
  font-size: 12px;
  text-transform: uppercase;
  line-height: 0.9;
  position: absolute;
  right: 12px;
  top: 13px;
}

.list--top-nav .list__link,
.list--main-nav .list__link {
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: bold;
}

.list--top-nav .list__link {
  font-size: 14px;
}

.list--main-nav .list__item {
  display: block;
  width: 100%;
  box-sizing: border-box;
}

.list__item {
  position: relative;
  list-style-type: none;
  line-height: 1;
}

.list--main-nav .list__item--dropdown .trigger--dropdown {
  position: absolute;
  right: 10px;
  content: "";
  background-image: url("../images/nav-arrow.svg");
  width: 26px;
  height: 20px;
  top: 6px;
  background-repeat: no-repeat;
  padding: 5px 10px;
  display: block;
  box-sizing: content-box;
  background-position: center center;
  line-height: 1;
  transition: 0.3s;
}

.list--main-nav .list__item--dropdown.list__item--open .trigger--dropdown {
  transform: rotate(-180deg);
}

.list--main-nav .list__item--logo {
  display: none;
}

.list__link {
  display: block;
}

.list--main-nav .list__link {
  padding: 12px 0;
}

.list--sub-nav {
  background: #fff;
  padding: 0;
  text-align: left;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: padding-top 0.3s ease 0s, opacity 0.3s ease 0s, max-height 0.3s ease 0s, padding-left 0s linear 0.3s;
}

.list__item--open .list--sub-nav {
  max-height: 2550px;
  padding: 10px 20px;
  opacity: 1;
  transition: padding-top 0.3s ease 0s, opacity 0.3s ease 0s, max-height 0.3s ease 0s, padding-left 0s linear 0s;
}

.list--sub-nav .list__item {
  display: block;
}

.list--sub-nav .list__link {
  display: block;
  color: #000;
  font-size: 15px;
  text-transform: none;
  font-weight: normal;
  padding: 5px 0;
}

.list--sub-nav .list__link--cat {
  color: #666;
  font-size: 13px;
}

.list--sub-nav .list__item--cat {
  padding-top: 20px;
  margin-top: 0;
}

.list--sub-nav .list__item--cat.pad-top {
  margin-top: 20px;
}

.list--sub-nav .list__item--cat:first-child {
  margin-top: 0;
  padding-top: 0;
}

body.admin-bar {
  padding-top: 32px;
}

@media (min-width: 1280px) {
  body.admin-bar .header--main.header--fixed .nnav--main {
    top: 32px;
  }
  body.admin-bar .header--main.header--fixed .icon--header {
    top: 48px;
  }
  .header--spacer {
    height: 100px;
  }
  .list--main-nav > .list__item:not(.list__item--logo) > .list__link {
    position: relative;
  }
  .list--main-nav > .list__item:not(.list__item--logo) > .list__link::before {
    position: absolute;
    content: "";
    height: 3px;
    background-color: #fff;
    left: 0;
    width: 0;
    bottom: 10px;
    opacity: 0;
    transition: 0.3s;
    border-radius: 1px;
  }
  .list--main-nav > .list__item:not(.list__item--logo) > .list__link:hover::before {
    opacity: 1;
    width: 100%;
  }
  .list--main-nav .list__link {
    padding: 23px 0;
  }
  .list--main-nav > .list__item:nth-child(6),
  .list--main-nav > .list__item:nth-child(7) {
    margin: 0 10px;
  }
  .list__item--dropdown .list--sub-nav {
    background: none;
  }
  .list__item--dropdown.active .dropdown--full,
  .list__item--dropdown:hover .dropdown--full {
    position: absolute;
    top: 50px;
    right: 0;
    padding: 50px 0 0;
    min-width: 90vw;
  }
  .list__item--dropdown.active .dropdown .list--sub-nav, .list__item--dropdown.active .top-bar .dropdown--xxlarge .list--sub-nav, .top-bar .list__item--dropdown.active .dropdown--xxlarge .list--sub-nav,
  .list__item--dropdown:hover .dropdown .list--sub-nav,
  .list__item--dropdown:hover .top-bar .dropdown--xxlarge .list--sub-nav,
  .top-bar .list__item--dropdown:hover .dropdown--xxlarge .list--sub-nav {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    top: 0;
    transition: opacity 0.3s, transform 0.3s;
  }
  .dropdown--full .list--sub-nav {
    width: 33.3333333333%;
    float: left;
  }
  .list__item--dropdown.active .dropdown--small,
  .list__item--dropdown:hover .dropdown--small {
    padding: 50px 0 0;
  }
  .list__item--dropdown.active .dropdown--small .list--sub-nav,
  .list__item--dropdown:hover .dropdown--small .list--sub-nav {
    float: none;
    width: 100%;
    padding: 0;
  }
  .list__item--dropdown.active .dropdown--medium .list--sub-nav,
  .list__item--dropdown:hover .dropdown--medium .list--sub-nav {
    float: left;
    width: 50%;
    padding: 10px 10px;
  }
  .list__item--dropdown.active .dropdown--large .list--sub-nav,
  .list__item--dropdown:hover .dropdown--large .list--sub-nav {
    float: left;
    width: 25%;
    padding: 10px 10px 10px 10px;
  }
  .list__item--dropdown.active .dropdown--small .list__item,
  .list__item--dropdown:hover .dropdown--small .list__item {
    margin: 15px 0;
    padding: 0 8px;
  }
  .list__item--dropdown .dropdown, .list__item--dropdown .top-bar .dropdown--xxlarge, .top-bar .list__item--dropdown .dropdown--xxlarge {
    position: absolute;
    left: 0;
    z-index: 0;
    top: -99999px;
  }
  .list__item--dropdown .dropdown--small {
    width: 300px;
    z-index: 0;
  }
  .list__item--dropdown .dropdown--medium {
    width: 720px;
    z-index: 0;
  }
  .list__item--dropdown .dropdown--large {
    width: 1240px;
    z-index: 0;
  }
  .list__item--dropdown.active .dropdown--small,
  .list__item--dropdown:hover .dropdown--small {
    top: 50px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .list__item--dropdown.active .dropdown--medium,
  .list__item--dropdown:hover .dropdown--medium {
    top: 50px;
    padding: 50px 10px;
  }
  .list__item--dropdown.active .dropdown--large,
  .list__item--dropdown:hover .dropdown--large {
    top: 50px;
    padding: 50px 10px;
  }
  .list__item--dropdown .dropdown-shadow {
    background: #fff;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
    z-index: -3 !important;
    margin-top: 0 !important;
    padding: 50px 0 !important;
  }
  .dropdown--pharmaceutical + .dropdown-shadow {
    min-height: 300px;
  }
  .dropdown--bioprocessing + .dropdown-shadow {
    min-height: 300px;
  }
  .dropdown--services + .dropdown-shadow {
    min-height: 350px;
  }
  .dropdown--contact + .dropdown-shadow {
    min-height: 300px;
  }
  .dropdown--company + .dropdown-shadow {
    min-height: 395px;
  }
  .list__item--logo .list__link {
    padding: 0;
    width: 163px;
    height: 39px;
  }
  .list__item--logo .list__link svg {
    max-width: 100%;
    height: auto;
  }
  .list--top-nav .list__item {
    display: inline-block;
  }
  .list--sub-nav .list__link {
    font-size: 18px;
    padding: 8px 44px 8px 0;
    background: url("../images/arrow-right-burgundy.svg") no-repeat center right 10px;
    transition: 0.3s;
  }
  .list--sub-nav .list__link:hover {
    color: #AA273E;
    background-position: center right 0;
  }
  .list--sub-nav .list__item--cat .list__link {
    cursor: default;
    padding: 8px 0;
  }
  .list--sub-nav .list__item--cat .list__link:hover {
    color: #4A4A4A;
  }
  .list--sub-nav .list__link--cat {
    text-transform: uppercase;
    color: #4A4A4A;
    font-size: 12px;
    background: none;
  }
  .list--sub-nav .list__item--cat {
    border: 0;
  }
  .list--sub-nav .list__item--cat:nth-child(1n+2) {
    margin-top: 15px;
  }
  .list--main-nav {
    position: relative;
    padding-right: 120px;
  }
  .logo,
  .trigger--nav {
    display: none;
  }
  .nnav--main {
    position: relative;
    top: 0;
    padding: 5px 0 0 0;
    background-color: transparent;
    top: 0;
    margin-top: -100px;
  }
  .nnav--main:before {
    background-image: url(../images/header-wave--v2.svg);
    background-position: center -5px;
    background-size: 1440px auto;
    height: 130px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    content: "";
    z-index: -1;
    pointer-events: none;
  }
  .list--main-nav .list__item {
    display: inline-block;
    width: auto;
    vertical-align: middle;
    padding: 0 18px;
    position: relative;
  }
  .list--main-nav .list__item .list__item {
    padding: 0 10px 0 0;
  }
  .list--main-nav .list__item.unset {
    position: unset;
  }
  .only-mobile {
    display: none !important;
  }
  .list--main-nav .list__item--dropdown .trigger--dropdown {
    display: none;
  }
  .list--sub-nav {
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    padding: 10px;
    opacity: 0;
    max-height: none;
    overflow: hidden;
    font-size: 0;
    transition: none;
    transform: translateY(-20px);
  }
  .list--sub-nav.active {
    opacity: 1;
    max-height: 999px;
    transform: translateY(0);
  }
  .list__item--new .list__link {
    display: inline-block;
    vertical-align: middle;
  }
  .list__item--new .new {
    position: relative;
    right: auto;
    top: auto;
    display: inline-block;
    vertical-align: middle;
    font-size: 10px;
    font-weight: bold;
    top: -5px;
  }
  .list--sub-nav .list__item {
    display: block;
    width: 100%;
  }
  .icon--header {
    margin-top: -30px;
    top: 47px;
  }
  .icon--header.icon--profile {
    right: 136px;
  }
  .icon--cart {
    right: 80px;
  }
  .icon--search {
    right: 24px;
  }
  .nnav--main {
    box-shadow: none;
  }
  .list--sub-nav-full {
    z-index: 10;
  }
}
@media (min-width: 1366px) {
  .list--main-nav > .list__item:nth-child(6),
  .list--main-nav > .list__item:nth-child(7) {
    margin: 0 20px;
  }
}
@media (min-width: 1440px) {
  .list--main-nav {
    padding-right: 10%;
  }
  .header--main {
    background-position: top 25px center;
  }
  .list--main-nav .list__link {
    font-size: 20px;
  }
  .list--sub-nav .list__item {
    margin-left: 0;
    margin-right: 0;
  }
  .list--sub-nav {
    top: 110px;
  }
  .nnav--main {
    background-position: top center;
  }
  .list--sub-nav .list__link {
    font-size: 18px;
  }
  .list--sub-nav .list__link--cat {
    color: #666;
    font-size: 13px;
  }
  .dropdown--full .list--sub-nav {
    width: 20%;
  }
}
@media (min-width: 1900px) {
  .nnav--main:before {
    background-size: 1920px auto;
    background-position: center -15px;
    height: 165px;
  }
  body.admin-bar .header--main.header--fixed .icon--header {
    top: 56px;
  }
  .list--main-nav {
    padding-top: 10px;
  }
  .list--main-nav > .list__item:nth-child(6),
  .list--main-nav > .list__item:nth-child(7) {
    margin: 0 35px;
  }
  .list--main-nav > .list__item:nth-child(0),
  .list--main-nav > .list__item:nth-child(1) {
    margin: 0 20px;
  }
  .list--sub-nav {
    padding: 10px 25px;
  }
  .list--main-nav > .list__item {
    margin: 0 35px;
  }
  .list__item--dropdown .dropdown, .list__item--dropdown .top-bar .dropdown--xxlarge, .top-bar .list__item--dropdown .dropdown--xxlarge {
    padding: 50px 25px;
  }
  .list__item--dropdown.active .dropdown--full,
  .list__item--dropdown:hover .dropdown--full {
    top: 50px;
    padding-top: 60px;
  }
  .list__item--dropdown.active .dropdown--medium,
  .list__item--dropdown:hover .dropdown--medium {
    top: 50px;
    padding-top: 60px;
  }
  .list__item--dropdown.active .dropdown--large,
  .list__item--dropdown:hover .dropdown--large {
    top: 50px;
    padding-top: 60px;
  }
  .list__item--dropdown.active .dropdown--small,
  .list__item--dropdown:hover .dropdown--small {
    top: 50px;
    padding-top: 50px;
  }
  .header--main .icon--header {
    top: 56px;
  }
  .header--main.header--fixed .icon--header {
    top: 26px;
  }
}
/*
 * Livehelp optimizations
 */
#lhnHelpOutCenter input,
#lhnHelpOutCenter textarea,
#lhnHelpOutCenter button {
  min-width: auto;
}

.sentry-error-embed-wrapper {
  z-index: 9999 !important;
}
