@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, .card.-featured::before, .clearfix::after, .card.-featured::after, .storeCheckout-shipments .shipments-methods .shipping-method-groups::after, .storeCartTable .cart_item .variation::after {
  display: table;
  content: " ";
}
.clearfix::after, .card.-featured::after, .storeCheckout-shipments .shipments-methods .shipping-method-groups::after, .storeCartTable .cart_item .variation::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);
}

.hero {
  background: transparent;
  height: auto;
  position: relative;
  margin-top: -90px;
  padding-top: 4em;
  color: #ffffff;
}
.hero .extra-img {
  position: absolute;
  z-index: 1;
  right: 20px;
  top: 80px;
  max-width: 90px;
  display: none;
}
@media screen and (min-width: 30em) {
  .hero .extra-img {
    display: block;
  }
}
@media print, screen and (min-width: 64em) {
  .hero .extra-img {
    max-width: 127px;
    right: 80px;
    top: 170px;
  }
}
@media screen and (min-width: 80em) {
  .hero .extra-img {
    right: 100px;
    top: 140px;
  }
}
.hero .bg {
  position: absolute;
  z-index: 0;
  top: -1px;
  width: 100%;
  height: 200%;
  background-image: url("../images/waves/slide2b.jpg");
  background-size: auto 100%;
  background-repeat: no-repeat;
  transition: background-image 0.8s ease-in;
}
.hero .bg:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 110px;
  bottom: 0;
  left: 0;
  background-image: url("../images/waves/hero.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: bottom left;
}
@media screen and (min-width: 30em) {
  .hero .bg {
    height: 160%;
  }
}
@media print, screen and (min-width: 47.5em) {
  .hero .bg {
    height: 800px;
  }
}
@media screen and (min-width: 80em) {
  .hero .bg {
    background-size: 100% auto;
    height: 1000px;
  }
}
@media screen and (min-width: 118.75em) {
  .hero .bg {
    height: 950px;
    top: 0;
  }
  .hero .bg:after {
    background-size: 100% auto;
  }
}
.hero .slide {
  padding: 0;
  position: relative;
  padding-bottom: 50px;
  min-height: 500px;
}
@media screen and (min-width: 118.75em) {
  .hero .slide {
    padding-top: 60px;
  }
}
.hero .slide h1 {
  font-size: 50px;
  line-height: 55px;
  max-width: 80%;
  margin: 0.5em auto;
}
@media screen and (min-width: 30em) {
  .hero .slide h1 {
    margin-left: 0;
    font-size: 64px;
    max-width: 60%;
    line-height: 70px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .hero .slide h1 {
    font-size: 80px;
    max-width: none;
  }
}
@media print, screen and (min-width: 64em) {
  .hero .slide h1 {
    font-size: 100px;
    line-height: 80px;
  }
}
@media screen and (min-width: 80em) {
  .hero .slide h1 {
    font-size: 120px;
    line-height: 100px;
  }
}
.hero .slide p {
  margin: 2em 0;
}
@media print, screen and (min-width: 47.5em) {
  .hero .slide p {
    max-width: 60%;
  }
}
@media print, screen and (min-width: 64em) {
  .hero .slide p {
    max-width: 50%;
    margin: 4em 0;
  }
}
.hero .item {
  position: absolute;
  top: 0;
  visibility: hidden;
  width: 95%;
  margin: 0 auto;
  opacity: 0;
}
.hero .item .slide > * {
  transition: all 0.6s ease-out;
  transform: translate(-10%, 0);
  opacity: 0;
}
.hero .item.active {
  transition: all 1s ease-in-out;
  position: relative;
  visibility: visible;
  z-index: 1;
  opacity: 1;
}
.hero .item.active .slide > * {
  transition: all 1.4s ease-in-out;
  transform: translate(0, 0);
  opacity: 1;
}
.hero .item.active .slide > *:nth-child(1) {
  transition-delay: 0.25s;
  opacity: 1;
}
.hero .item.active .slide > *:nth-child(2) {
  transition-delay: 0.5s;
  opacity: 1;
}
.hero .item.active .slide > *:nth-child(3) {
  transition-delay: 0.75s;
  opacity: 1;
}
@media screen and (min-width: 30em) {
  .hero .item {
    width: 90%;
  }
}
@media print, screen and (min-width: 64em) {
  .hero .item {
    height: 650px;
  }
}
@media screen and (min-width: 80em) {
  .hero .item {
    width: 80%;
    height: 715px;
  }
}
@media screen and (min-width: 118.75em) {
  .hero .item {
    width: 66%;
    height: 560px;
  }
}

.boxes {
  overflow: hidden;
  margin: 2em 0;
}
.boxes:not(.boxes--secondary) {
  margin-top: -100px;
}
@media print, screen and (min-width: 64em) {
  .boxes:not(.boxes--secondary) {
    margin-top: -300px;
  }
}
@media screen and (min-width: 118.75em) {
  .boxes:not(.boxes--secondary) {
    margin-top: -100px;
  }
}
.boxes .box {
  padding: 6em 1em 2em;
  width: 85%;
  margin-bottom: 2em;
  max-width: 280px;
  background: #ffffff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  position: relative;
  float: left;
  opacity: 0;
  transform: translate(20%, 0);
  transition: all 0.8s ease-in-out;
}
.boxes .box > * {
  transform: translate(20%, 0);
  transition: all 1.2s ease-in-out;
  opacity: 0;
}
.boxes .box.animated {
  opacity: 1;
  transform: translate(0, 0);
}
.boxes .box.animated > *:nth-child(1) {
  transform: translate(0, 0);
  transition-delay: 0.25s;
  opacity: 1;
}
.boxes .box.animated > *:nth-child(2) {
  transform: translate(0, 0);
  transition-delay: 0.5s;
  opacity: 1;
}
.boxes .box.animated > *:nth-child(3) {
  transform: translate(0, 0);
  transition-delay: 0.75s;
  opacity: 1;
}
.boxes .box.animated > *:nth-child(4) {
  transform: translate(0, 0);
  transition-delay: 1s;
  opacity: 1;
}
@media screen and (min-width: 30em) {
  .boxes .box {
    max-width: 380px;
    margin-left: 1em;
    padding-right: 2em;
    padding-left: 2em;
  }
}
@media print, screen and (min-width: 47.5em) {
  .boxes .box {
    max-width: 450px;
    margin: 2em;
  }
}
@media screen and (min-width: 80em) {
  .boxes .box {
    max-width: 610px;
    padding-top: 8em;
  }
}
.boxes .box img {
  position: absolute;
  right: 40px;
  top: 30px;
  max-width: 115px;
}
@media screen and (min-width: 80em) {
  .boxes .box img {
    max-width: none;
  }
}
.boxes .box h2 {
  font-size: 34px;
  margin-bottom: 0.3em;
}
@media screen and (min-width: 30em) {
  .boxes .box h2 {
    font-size: 48px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .boxes .box h2 {
    font-size: 62px;
  }
}
@media screen and (min-width: 80em) {
  .boxes .box h2 {
    font-size: 82px;
  }
}
.boxes .box .button {
  margin-top: 1em;
}
.boxes .box--position {
  padding-top: 150px;
  margin-top: 100px;
}
@media screen and (min-width: 30em) {
  .boxes .box--position {
    margin-top: 100px;
  }
}
@media print, screen and (min-width: 64em) {
  .boxes .box--position {
    margin-top: 60px;
  }
}
@media screen and (min-width: 80em) {
  .boxes .box--position {
    margin-top: 350px;
    padding-top: 250px;
  }
  .boxes .box--position img {
    top: 100px;
  }
}
@media screen and (min-width: 80em) {
  .boxes .box--position {
    margin-top: -90px;
    padding-top: 220px;
  }
}
.boxes .box.right {
  float: right;
  z-index: 1;
  top: 100px;
  padding-top: 160px;
}
.boxes .box.right img {
  left: 40px;
  right: auto;
  top: 50px;
}
.boxes .box.right h2 {
  margin-left: -50px;
}
@media screen and (min-width: 30em) {
  .boxes .box.right {
    margin-right: 2em;
  }
  .boxes .box.right h2 {
    margin-left: -70px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .boxes .box.right {
    margin-top: -100px;
  }
}
@media print, screen and (min-width: 64em) {
  .boxes .box.right {
    max-width: 400px;
  }
}
@media screen and (min-width: 80em) {
  .boxes .box.right {
    max-width: 450px;
    margin-top: 0;
    top: 0;
    padding-top: 120px;
  }
  .boxes .box.right h2 {
    margin-left: -250px;
  }
  .boxes .box.right img {
    top: 20px;
    left: 30px;
  }
}
.boxes .box.red {
  background: #aa273e;
  color: #ffffff;
}
@media print, screen and (min-width: 47.5em) {
  .boxes .box.red {
    margin-bottom: -90px;
    position: relative;
    z-index: 1;
  }
}
@media screen and (min-width: 80em) {
  .boxes .box.red {
    max-width: 460px;
  }
}
.boxes--secondary {
  overflow: visible;
  margin-top: 4em;
  padding-top: 4em;
  padding-bottom: 20%;
  position: relative;
  z-index: 1;
}
.boxes--secondary .bg {
  background: #f5f5f5;
  background-image: url("../images/bg-lines.png");
  background-position: cover;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
  width: 90%;
  position: absolute;
  height: 100%;
}
@media screen and (min-width: 30em) {
  .boxes--secondary {
    padding-bottom: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .boxes--secondary {
    padding-top: 0;
  }
  .boxes--secondary .bg {
    width: 80%;
  }
}
@media screen and (min-width: 80em) {
  .boxes--secondary {
    margin-top: 150px;
  }
  .boxes--secondary .bg {
    width: 92%;
  }
}
@media screen and (min-width: 118.75em) {
  .boxes--secondary .bg {
    width: 80%;
  }
}
.boxes--secondary .title h3 {
  font-size: 46px;
  line-height: 56px;
  width: 75%;
  margin-right: -40px;
  margin-top: -50px;
}
@media screen and (min-width: 30em) {
  .boxes--secondary .title h3 {
    font-size: 54px;
    margin-right: -50px;
    width: 60%;
  }
}
@media print, screen and (min-width: 47.5em) {
  .boxes--secondary .title h3 {
    margin-right: -100px;
    width: 40%;
  }
}
@media print, screen and (min-width: 64em) {
  .boxes--secondary .title {
    margin-bottom: 0;
  }
  .boxes--secondary .title h3 {
    font-size: 62px;
    line-height: 72px;
    margin-right: -230px;
    margin-top: -70px;
  }
}
@media screen and (min-width: 80em) {
  .boxes--secondary .title h3 {
    font-size: 82px;
    max-width: 350px;
    margin-right: -30px;
    margin-top: -50px;
    line-height: 92px;
    transform: translate(0, 0);
  }
}
.boxes--secondary .box {
  background: none;
  box-shadow: none;
  padding: 0;
  margin-left: 0;
  position: relative;
  width: 90%;
  max-width: none;
  max-height: 440px;
}
.boxes--secondary .box:first-child {
  margin-top: 20%;
}
@media screen and (min-width: 30em) {
  .boxes--secondary .box {
    max-height: 350px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .boxes--secondary .box {
    margin-top: -5%;
    margin-left: 1em;
  }
  .boxes--secondary .box:first-child {
    margin-top: -5%;
  }
}
@media print, screen and (min-width: 64em) {
  .boxes--secondary .box {
    max-width: 50%;
    margin-top: -5%;
    max-height: 470px;
  }
}
.boxes--secondary .box .img-wrapper {
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
  padding: 30px;
  max-width: 320px;
  height: 260px;
}
@media print, screen and (min-width: 64em) {
  .boxes--secondary .box .img-wrapper {
    max-width: 480px;
    height: 320px;
  }
}
@media screen and (min-width: 80em) {
  .boxes--secondary .box .img-wrapper {
    max-width: 540px;
    height: 350px;
  }
}
.boxes--secondary .box .img-wrapper img {
  position: absolute;
  max-width: none;
  height: 100%;
  top: 0;
  left: 0;
}
@media print, screen and (min-width: 64em) {
  .boxes--secondary .box .img-wrapper img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}
.boxes--secondary .box .content {
  margin-top: -2em;
  padding: 2em 3em;
  background: #ffffff;
  position: relative;
  max-width: 420px;
  left: 50px;
}
.boxes--secondary .box .content h2 {
  font-size: 32px;
  margin-bottom: 0.5em;
}
@media print, screen and (min-width: 47.5em) {
  .boxes--secondary .box .content {
    left: 200px;
    max-width: 460px;
  }
}
@media print, screen and (min-width: 64em) {
  .boxes--secondary .box .content {
    left: 250px;
    top: -50px;
  }
  .boxes--secondary .box .content p {
    font-size: 18px;
  }
  .boxes--secondary .box .content h2 {
    font-size: 36px;
  }
}
@media screen and (min-width: 80em) {
  .boxes--secondary .box .content {
    left: 450px;
    top: -100px;
  }
  .boxes--secondary .box .content h2 {
    font-size: 48px;
    margin-bottom: 10px;
  }
}
.boxes--secondary .box--reverse {
  left: 200px;
  margin-top: -10%;
}
.boxes--secondary .box--reverse .content {
  left: -200px;
  max-width: 300px;
  top: -100px;
}
.boxes--secondary .box--reverse .img-wrapper {
  left: -100px;
}
@media screen and (min-width: 30em) {
  .boxes--secondary .box--reverse {
    left: 300px;
    margin-top: 5%;
  }
  .boxes--secondary .box--reverse .content {
    top: -100px;
    left: -250px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .boxes--secondary .box--reverse {
    left: 500px;
  }
  .boxes--secondary .box--reverse .content {
    left: -450px;
    max-width: 460px;
  }
}
@media print, screen and (min-width: 64em) {
  .boxes--secondary .box--reverse {
    margin-top: -5%;
    left: 500px;
  }
  .boxes--secondary .box--reverse .content {
    top: -200px;
    left: -400px;
  }
}
@media screen and (min-width: 80em) {
  .boxes--secondary .box--reverse {
    left: 740px;
  }
  .boxes--secondary .box--reverse .img-wrapper {
    left: -50px;
  }
  .boxes--secondary .box--reverse .content {
    max-width: 460px;
    left: -450px;
  }
}
.boxes--secondary .box--left {
  margin-top: -15%;
}
.boxes--secondary .box--left .img-wrapper {
  margin-top: 20px;
  z-index: 1;
  max-width: 360px;
  max-height: 320px;
  left: -100px;
}
.boxes--secondary .box--left .img-wrapper img {
  height: 100%;
  width: auto;
  max-width: none;
}
.boxes--secondary .box--left .content {
  max-width: 280px;
  top: 30px;
  left: 60px;
}
@media screen and (min-width: 30em) {
  .boxes--secondary .box--left {
    margin-top: 5%;
  }
  .boxes--secondary .box--left .img-wrapper {
    left: -150px;
  }
  .boxes--secondary .box--left .content {
    left: 200px;
    top: -150px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .boxes--secondary .box--left {
    margin-top: -5%;
  }
  .boxes--secondary .box--left .img-wrapper {
    left: auto;
  }
  .boxes--secondary .box--left .content {
    max-width: 400px;
    left: 350px;
  }
}
@media print, screen and (min-width: 64em) {
  .boxes--secondary .box--left {
    margin-top: -150px;
    left: 50px;
  }
}
@media screen and (min-width: 80em) {
  .boxes--secondary .box--left {
    left: 150px;
    margin-top: -10%;
  }
  .boxes--secondary .box--left .content {
    max-width: 500px;
  }
}
@media screen and (min-width: 118.75em) {
  .boxes--secondary .box--left .content {
    max-width: 550px;
    padding: 50px 100px;
    margin-left: -50px;
  }
}

.products {
  padding: 1em;
  margin-top: -50px;
}
@media print, screen and (min-width: 64em) {
  .products {
    margin-top: -100px;
  }
}
@media screen and (min-width: 80em) {
  .products {
    overflow: visible;
  }
}
.products .carousel {
  position: relative;
}
.products .carousel .item {
  float: left;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  transition: opacity 1s ease-in-out;
}
.products .carousel .item img {
  transition: all 1.5s ease-in-out;
  transform: translate(150px, 0);
  opacity: 0;
}
.products .carousel .item .content h3, .products .carousel .item .content p, .products .carousel .item .content .learn-more {
  transition: all 1.5s ease-in-out;
  transform: translate(-150px, 0);
  opacity: 0;
}
.products .carousel .item .content p {
  transition: all 2s ease-in-out;
  transform: translate(-100px, 0);
}
.products .carousel .item .content .learn-more {
  transition: all 1.5s ease-in-out;
  transform: translate(-50px, 0);
  display: block;
}
.products .carousel .item.active {
  position: relative;
  visibility: visible;
  opacity: 1;
}
.products .carousel .item.active img {
  transform: translate(0, 0);
  opacity: 1;
}
.products .carousel .item.active .content h3 {
  transform: translate(0, 0);
  opacity: 1;
}
.products .carousel .item.active .content p {
  transform: translate(0, 0);
  opacity: 1;
  transition-delay: 0.5s;
}
.products .carousel .item.active .content .learn-more {
  transform: translate(0, 0);
  opacity: 1;
  transition-delay: 1.5s;
}
.products .carousel .item h3 {
  margin: 1em 0;
  font-size: 26px;
}
.products .carousel .item img {
  margin-bottom: 50px;
}
@media print, screen and (min-width: 47.5em) {
  .products .carousel .item img {
    width: 50%;
    float: right;
  }
  .products .carousel .item .nav {
    margin-top: 50%;
  }
  .products .carousel .item .content {
    width: 35%;
    margin-left: 5%;
  }
}
@media print, screen and (min-width: 64em) {
  .products .carousel .item .nav {
    margin-top: 0;
  }
  .products .carousel .item .content {
    margin-top: 30%;
    margin-left: 10%;
  }
}
@media screen and (min-width: 80em) {
  .products .carousel .item h3 {
    font-size: 32px;
  }
  .products .carousel .item .content {
    max-width: 400px;
    margin-top: 15%;
  }
  .products .carousel .item img {
    margin-top: -200px;
    margin-bottom: 0;
    width: 40%;
  }
}
@media screen and (min-width: 118.75em) {
  .products .carousel .item img {
    width: 50%;
    margin-right: -100px;
  }
}

.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;
  }
}

.info {
  padding: 80px 40px 90px 40px;
  color: #ffffff;
  overflow: hidden;
}
.info h3 {
  font-size: 34px;
  line-height: 42px;
  margin-bottom: 1em;
  margin-top: 50px;
}
@media screen and (min-width: 30em) {
  .info h3 {
    font-size: 44px;
    line-height: 52px;
    margin-bottom: 0.5em;
  }
}
@media print, screen and (min-width: 64em) {
  .info h3 {
    font-size: 48px;
    line-height: 56px;
    margin-bottom: 0.5em;
  }
}
@media screen and (min-width: 80em) {
  .info h3 {
    font-size: 62px;
    line-height: 70px;
    margin-bottom: 0.5em;
  }
}
.info .button {
  padding: 20px 50px;
  margin-bottom: 0;
}
.info.parallax {
  width: 100%;
}
@media print, screen and (min-width: 47.5em) {
  .info.parallax {
    min-height: 400px;
  }
}

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;
}

.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;
  }
}

.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;
  }
}

/**
 * universal checkbox
 */
.distek-checkbox.mb-9 {
  margin-bottom: 36px;
}
.distek-checkbox label:not(.floating-label) {
  font-weight: bold;
  font-size: 20px;
  line-height: 28px;
  color: #252b74;
  margin-bottom: 0px;
  margin-right: 0px;
  padding-right: 0px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.distek-checkbox label:not(.floating-label) input {
  display: none;
}
.distek-checkbox label:not(.floating-label) .icon {
  display: inline-block;
  background-position: center center;
  background-size: 20px auto;
  box-sizing: border-box;
  border-radius: 12px;
  border: 1px solid #9ca3af;
  width: 40px;
  height: 40px;
  vertical-align: middle;
  margin-right: 16px;
  transition: 0.1s all linear;
}
.distek-checkbox label:not(.floating-label) input + .icon {
  display: block !important;
}
.distek-checkbox label:not(.floating-label):hover input:not(:checked) + .icon {
  background: #bbbae0 url("../../assets/images/icons/icon-check-white.svg") no-repeat center center;
  background-size: 20px auto;
}
.distek-checkbox label:not(.floating-label) input:checked + .icon {
  border-color: #26247b;
  background: #26247b url("../../assets/images/icons/icon-check-white.svg") no-repeat center center;
  background-size: 20px auto;
}

.registration-form .distek-checkbox {
  margin-bottom: 8px;
}
.registration-form .distek-checkbox label {
  color: inherit;
  font-size: inherit;
  font-weight: normal;
  line-height: 1.4;
}
.registration-form .distek-checkbox label .icon {
  border-radius: 4px;
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.registration-form .checkboxes-with-label {
  margin-bottom: 6px;
}
.registration-form .checkboxes-with-label > label {
  color: #5c5c5c;
  margin-bottom: 8px;
}
.registration-form .checkboxes-with-label.gfield_error > label {
  color: #FF0000;
}
@media print, screen and (min-width: 47.5em) {
  .registration-form .checkboxes-with-label > label {
    margin-bottom: 4px;
  }
  .registration-form .checkboxes-with-label .distek-checkbox {
    margin-bottom: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .registration-form .checkboxes-with-label {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    height: 40px;
    margin-bottom: 1rem;
  }
  .registration-form .checkboxes-with-label .distek-checkbox {
    margin-bottom: 0px;
  }
  .registration-form .checkboxes-with-label > label {
    margin-bottom: 0;
  }
}
.registration-form .checkbox-group {
  display: block;
}
@media print, screen and (min-width: 47.5em) {
  .registration-form .checkbox-group {
    display: flex;
    flex-direction: row;
    gap: 12px;
  }
}

/**
 * styled checkbox
 */
.styled-checkbox .ginput_container_checkbox {
  margin-left: 0 !important;
}
.styled-checkbox .gchoice label {
  padding: 16px;
  display: flex;
  width: 100%;
  align-items: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
  cursor: pointer;
}
.styled-checkbox .gchoice label input {
  position: absolute;
  top: -20px;
  left: -20px;
  margin-right: 0;
}
.styled-checkbox .gchoice label span {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  font-weight: 600;
  line-height: 19px;
  color: #000;
  font-family: "Lato", "Helvetica", "sans-serif";
}
.styled-checkbox .gchoice label span:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: white url("../images/icons/check.svg") no-repeat center center;
  background-size: 12px auto;
  border: 1px solid #CACACA;
  border-radius: 4px;
  margin-right: 12px;
  transition: 0.3s all linear;
  flex-shrink: 0;
}
.styled-checkbox .gchoice label span:after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s all linear;
  background: #EFEFF4;
  border-radius: 24px;
}
.styled-checkbox .gchoice label span svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.styled-checkbox .gchoice label span svg path {
  transition: 0.3s all linear;
  fill: transparent;
}
.styled-checkbox .gchoice label:hover span:after {
  background-color: #DFDFEA;
}
.styled-checkbox .gchoice label input:checked + span:before {
  background-color: #26247b;
  border-color: white;
}
.styled-checkbox .gchoice label input:checked + span:after {
  background-color: #DFDFEA;
}
.styled-checkbox .gchoice label input:checked + span svg path {
  fill: #26247b;
}
.styled-checkbox .gchoice + .gchoice {
  margin-top: 8px;
}

.form-thankyou {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}
@media screen and (min-width: 80em) {
  .form-thankyou {
    align-items: center;
  }
}
.form-thankyou > * {
  width: 100%;
}
.form-thankyou__image {
  max-width: 100px;
  height: auto;
  margin-bottom: 8px;
  align-self: center;
}
.form-thankyou__image svg, .form-thankyou__image img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.form-thankyou h2, .form-thankyou h3 {
  margin: 0;
  text-align: center !important;
}
.form-thankyou h2 {
  font-family: "avenir-lt-pro", "Avenir LT W01_95 Black1475556", "AvenirLTW01-95Black", "Avenir", "Avenir LT", "Helvetica", sans-serif !important;
  font-style: normal;
  font-weight: 800;
  font-size: 48px !important;
  line-height: 48px !important;
  color: #000 !important;
}
.form-thankyou p {
  color: #666;
  font-weight: 400;
  font-size: 18px;
  line-height: 160%;
}

.boxes {
  overflow: hidden;
  margin: 2em 0;
}
.boxes:not(.boxes--secondary) {
  margin-top: -100px;
}
@media print, screen and (min-width: 64em) {
  .boxes:not(.boxes--secondary) {
    margin-top: -300px;
  }
}
@media screen and (min-width: 118.75em) {
  .boxes:not(.boxes--secondary) {
    margin-top: -100px;
  }
}
.boxes .box {
  padding: 6em 1em 2em;
  width: 85%;
  margin-bottom: 2em;
  max-width: 280px;
  background: #ffffff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  position: relative;
  float: left;
  opacity: 0;
  transform: translate(20%, 0);
  transition: all 0.8s ease-in-out;
}
.boxes .box > * {
  transform: translate(20%, 0);
  transition: all 1.2s ease-in-out;
  opacity: 0;
}
.boxes .box.animated {
  opacity: 1;
  transform: translate(0, 0);
}
.boxes .box.animated > *:nth-child(1) {
  transform: translate(0, 0);
  transition-delay: 0.25s;
  opacity: 1;
}
.boxes .box.animated > *:nth-child(2) {
  transform: translate(0, 0);
  transition-delay: 0.5s;
  opacity: 1;
}
.boxes .box.animated > *:nth-child(3) {
  transform: translate(0, 0);
  transition-delay: 0.75s;
  opacity: 1;
}
.boxes .box.animated > *:nth-child(4) {
  transform: translate(0, 0);
  transition-delay: 1s;
  opacity: 1;
}
@media screen and (min-width: 30em) {
  .boxes .box {
    max-width: 380px;
    margin-left: 1em;
    padding-right: 2em;
    padding-left: 2em;
  }
}
@media print, screen and (min-width: 47.5em) {
  .boxes .box {
    max-width: 450px;
    margin: 2em;
  }
}
@media screen and (min-width: 80em) {
  .boxes .box {
    max-width: 610px;
    padding-top: 8em;
  }
}
.boxes .box img {
  position: absolute;
  right: 40px;
  top: 30px;
  max-width: 115px;
}
@media screen and (min-width: 80em) {
  .boxes .box img {
    max-width: none;
  }
}
.boxes .box h2 {
  font-size: 34px;
  margin-bottom: 0.3em;
}
@media screen and (min-width: 30em) {
  .boxes .box h2 {
    font-size: 48px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .boxes .box h2 {
    font-size: 62px;
  }
}
@media screen and (min-width: 80em) {
  .boxes .box h2 {
    font-size: 82px;
  }
}
.boxes .box .button {
  margin-top: 1em;
}
.boxes .box--position {
  padding-top: 150px;
  margin-top: 100px;
}
@media screen and (min-width: 30em) {
  .boxes .box--position {
    margin-top: 100px;
  }
}
@media print, screen and (min-width: 64em) {
  .boxes .box--position {
    margin-top: 60px;
  }
}
@media screen and (min-width: 80em) {
  .boxes .box--position {
    margin-top: 350px;
    padding-top: 250px;
  }
  .boxes .box--position img {
    top: 100px;
  }
}
@media screen and (min-width: 80em) {
  .boxes .box--position {
    margin-top: -90px;
    padding-top: 220px;
  }
}
.boxes .box.right {
  float: right;
  z-index: 1;
  top: 100px;
  padding-top: 160px;
}
.boxes .box.right img {
  left: 40px;
  right: auto;
  top: 50px;
}
.boxes .box.right h2 {
  margin-left: -50px;
}
@media screen and (min-width: 30em) {
  .boxes .box.right {
    margin-right: 2em;
  }
  .boxes .box.right h2 {
    margin-left: -70px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .boxes .box.right {
    margin-top: -100px;
  }
}
@media print, screen and (min-width: 64em) {
  .boxes .box.right {
    max-width: 400px;
  }
}
@media screen and (min-width: 80em) {
  .boxes .box.right {
    max-width: 450px;
    margin-top: 0;
    top: 0;
    padding-top: 120px;
  }
  .boxes .box.right h2 {
    margin-left: -250px;
  }
  .boxes .box.right img {
    top: 20px;
    left: 30px;
  }
}
.boxes .box.red {
  background: #aa273e;
  color: #ffffff;
}
@media print, screen and (min-width: 47.5em) {
  .boxes .box.red {
    margin-bottom: -90px;
    position: relative;
    z-index: 1;
  }
}
@media screen and (min-width: 80em) {
  .boxes .box.red {
    max-width: 460px;
  }
}
.boxes--secondary {
  overflow: visible;
  margin-top: 4em;
  padding-top: 4em;
  padding-bottom: 20%;
  position: relative;
  z-index: 1;
}
.boxes--secondary .bg {
  background: #f5f5f5;
  background-image: url("../images/bg-lines.png");
  background-position: cover;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
  width: 90%;
  position: absolute;
  height: 100%;
}
@media screen and (min-width: 30em) {
  .boxes--secondary {
    padding-bottom: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .boxes--secondary {
    padding-top: 0;
  }
  .boxes--secondary .bg {
    width: 80%;
  }
}
@media screen and (min-width: 80em) {
  .boxes--secondary {
    margin-top: 150px;
  }
  .boxes--secondary .bg {
    width: 92%;
  }
}
@media screen and (min-width: 118.75em) {
  .boxes--secondary .bg {
    width: 80%;
  }
}
.boxes--secondary .title h3 {
  font-size: 46px;
  line-height: 56px;
  width: 75%;
  margin-right: -40px;
  margin-top: -50px;
}
@media screen and (min-width: 30em) {
  .boxes--secondary .title h3 {
    font-size: 54px;
    margin-right: -50px;
    width: 60%;
  }
}
@media print, screen and (min-width: 47.5em) {
  .boxes--secondary .title h3 {
    margin-right: -100px;
    width: 40%;
  }
}
@media print, screen and (min-width: 64em) {
  .boxes--secondary .title {
    margin-bottom: 0;
  }
  .boxes--secondary .title h3 {
    font-size: 62px;
    line-height: 72px;
    margin-right: -230px;
    margin-top: -70px;
  }
}
@media screen and (min-width: 80em) {
  .boxes--secondary .title h3 {
    font-size: 82px;
    max-width: 350px;
    margin-right: -30px;
    margin-top: -50px;
    line-height: 92px;
    transform: translate(0, 0);
  }
}
.boxes--secondary .box {
  background: none;
  box-shadow: none;
  padding: 0;
  margin-left: 0;
  position: relative;
  width: 90%;
  max-width: none;
  max-height: 440px;
}
.boxes--secondary .box:first-child {
  margin-top: 20%;
}
@media screen and (min-width: 30em) {
  .boxes--secondary .box {
    max-height: 350px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .boxes--secondary .box {
    margin-top: -5%;
    margin-left: 1em;
  }
  .boxes--secondary .box:first-child {
    margin-top: -5%;
  }
}
@media print, screen and (min-width: 64em) {
  .boxes--secondary .box {
    max-width: 50%;
    margin-top: -5%;
    max-height: 470px;
  }
}
.boxes--secondary .box .img-wrapper {
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
  padding: 30px;
  max-width: 320px;
  height: 260px;
}
@media print, screen and (min-width: 64em) {
  .boxes--secondary .box .img-wrapper {
    max-width: 480px;
    height: 320px;
  }
}
@media screen and (min-width: 80em) {
  .boxes--secondary .box .img-wrapper {
    max-width: 540px;
    height: 350px;
  }
}
.boxes--secondary .box .img-wrapper img {
  position: absolute;
  max-width: none;
  height: 100%;
  top: 0;
  left: 0;
}
@media print, screen and (min-width: 64em) {
  .boxes--secondary .box .img-wrapper img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}
.boxes--secondary .box .content {
  margin-top: -2em;
  padding: 2em 3em;
  background: #ffffff;
  position: relative;
  max-width: 420px;
  left: 50px;
}
.boxes--secondary .box .content h2 {
  font-size: 32px;
  margin-bottom: 0.5em;
}
@media print, screen and (min-width: 47.5em) {
  .boxes--secondary .box .content {
    left: 200px;
    max-width: 460px;
  }
}
@media print, screen and (min-width: 64em) {
  .boxes--secondary .box .content {
    left: 250px;
    top: -50px;
  }
  .boxes--secondary .box .content p {
    font-size: 18px;
  }
  .boxes--secondary .box .content h2 {
    font-size: 36px;
  }
}
@media screen and (min-width: 80em) {
  .boxes--secondary .box .content {
    left: 450px;
    top: -100px;
  }
  .boxes--secondary .box .content h2 {
    font-size: 48px;
    margin-bottom: 10px;
  }
}
.boxes--secondary .box--reverse {
  left: 200px;
  margin-top: -10%;
}
.boxes--secondary .box--reverse .content {
  left: -200px;
  max-width: 300px;
  top: -100px;
}
.boxes--secondary .box--reverse .img-wrapper {
  left: -100px;
}
@media screen and (min-width: 30em) {
  .boxes--secondary .box--reverse {
    left: 300px;
    margin-top: 5%;
  }
  .boxes--secondary .box--reverse .content {
    top: -100px;
    left: -250px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .boxes--secondary .box--reverse {
    left: 500px;
  }
  .boxes--secondary .box--reverse .content {
    left: -450px;
    max-width: 460px;
  }
}
@media print, screen and (min-width: 64em) {
  .boxes--secondary .box--reverse {
    margin-top: -5%;
    left: 500px;
  }
  .boxes--secondary .box--reverse .content {
    top: -200px;
    left: -400px;
  }
}
@media screen and (min-width: 80em) {
  .boxes--secondary .box--reverse {
    left: 740px;
  }
  .boxes--secondary .box--reverse .img-wrapper {
    left: -50px;
  }
  .boxes--secondary .box--reverse .content {
    max-width: 460px;
    left: -450px;
  }
}
.boxes--secondary .box--left {
  margin-top: -15%;
}
.boxes--secondary .box--left .img-wrapper {
  margin-top: 20px;
  z-index: 1;
  max-width: 360px;
  max-height: 320px;
  left: -100px;
}
.boxes--secondary .box--left .img-wrapper img {
  height: 100%;
  width: auto;
  max-width: none;
}
.boxes--secondary .box--left .content {
  max-width: 280px;
  top: 30px;
  left: 60px;
}
@media screen and (min-width: 30em) {
  .boxes--secondary .box--left {
    margin-top: 5%;
  }
  .boxes--secondary .box--left .img-wrapper {
    left: -150px;
  }
  .boxes--secondary .box--left .content {
    left: 200px;
    top: -150px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .boxes--secondary .box--left {
    margin-top: -5%;
  }
  .boxes--secondary .box--left .img-wrapper {
    left: auto;
  }
  .boxes--secondary .box--left .content {
    max-width: 400px;
    left: 350px;
  }
}
@media print, screen and (min-width: 64em) {
  .boxes--secondary .box--left {
    margin-top: -150px;
    left: 50px;
  }
}
@media screen and (min-width: 80em) {
  .boxes--secondary .box--left {
    left: 150px;
    margin-top: -10%;
  }
  .boxes--secondary .box--left .content {
    max-width: 500px;
  }
}
@media screen and (min-width: 118.75em) {
  .boxes--secondary .box--left .content {
    max-width: 550px;
    padding: 50px 100px;
    margin-left: -50px;
  }
}

.hero--center {
  position: relative;
  margin-top: -90px;
  padding-top: 60px;
}
.hero--center > .bg {
  background: top left url("../images/company/bg-hero.png") no-repeat;
  background-size: 960px;
  background-position: -200px -70px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  z-index: 1;
  clip-path: url("#bg-hero-mask");
}
.hero--center > .mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}
.hero--center > .mask svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
}
.hero--center > .row {
  position: relative;
  z-index: 3;
}
.hero--center h1 {
  font-size: 54px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 20px;
}
.hero--center.hero--companyAnimate h1 {
  opacity: 0;
  transform: translate(-20%, 0);
  transition: all 0.8s ease-in-out;
}
.hero--center.hero--companyAnimate.animated h1 {
  opacity: 1;
  transform: translate(0, 0);
}
.hero--center .extra-img {
  position: absolute;
  right: 70px;
  top: 220px;
  max-width: 90px;
}
@media print, screen and (min-width: 64em) {
  .hero--center .extra-img {
    max-width: 127px;
  }
}
.hero--center .text-box {
  background: #ffffff;
  padding: 40px 40px 125px;
  right: -10%;
  position: relative;
  max-width: 95%;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}
.hero--center .text-box p {
  color: #333333;
}
.hero--center .text-box h2 {
  font-size: 34px;
  line-height: 38px;
  position: absolute;
  bottom: 30px;
  max-width: 200px;
  left: -30px;
}
.hero--center .text-box > img {
  position: absolute;
  max-width: 70px;
  bottom: 45px;
  right: 30px;
}
@media screen and (min-width: 30em) {
  .hero--center > .bg {
    background-size: 1424px auto;
    background-position: -400px -50px;
    height: 375px;
  }
  .hero--center .text-box h2 {
    font-size: 48px;
    line-height: 52px;
    bottom: 10px;
    max-width: 250px;
  }
  .hero--center .text-box > img {
    max-width: 92px;
    bottom: 30px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .hero--center {
    padding-top: 100px;
  }
  .hero--center h1 {
    font-size: 80px;
    margin-bottom: 50px;
  }
  .hero--center .text-box {
    padding-bottom: 50px;
    max-width: 80%;
    right: -25%;
  }
  .hero--center .text-box h2 {
    font-size: 62px;
    line-height: 68px;
    bottom: 40px;
    max-width: 350px;
    left: -170px;
  }
  .hero--center .text-box > img {
    max-width: 92px;
    bottom: auto;
    top: 50px;
    right: auto;
  }
  .hero--center .text-box > p {
    padding-left: 150px;
  }
}
@media print, screen and (min-width: 64em) {
  .hero--center > .bg {
    background-size: 2500px auto;
    background-position: -600px -550px;
    height: 450px;
  }
  .hero--center h1 {
    font-size: 100px;
    margin-bottom: 60px;
  }
  .hero--center .text-box {
    max-width: 85%;
    float: right;
    right: -20px;
    padding-top: 60px;
  }
  .hero--center .text-box h2 {
    font-size: 62px;
  }
  .hero--center .text-box > img {
    max-width: 128px;
    left: 70px;
    top: 65px;
  }
  .hero--center .text-box > p {
    padding-left: 200px;
  }
}
@media screen and (min-width: 80em) {
  .hero--center .extra-img {
    top: 150px;
  }
  .hero--center .text-box {
    background: none;
    box-shadow: none;
    position: relative;
    z-index: 1;
  }
  .hero--center .text-box:before {
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    position: absolute;
    background: #ffffff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.002);
  }
}
@media screen and (min-width: 118.75em) {
  .hero--center {
    padding-top: 140px;
  }
  .hero--center > .bg {
    background-size: 100% auto;
    background-position: 0 -100px;
    height: 0;
    padding-bottom: 25%;
  }
  .hero--center .extra-img {
    top: 220px;
  }
  .hero--center h1 {
    font-size: 120px;
    margin-bottom: 60px;
  }
  .hero--center .text-box {
    max-width: 80%;
  }
  .hero--center .text-box h2 {
    font-size: 82px;
    line-height: 90px;
    max-width: 450px;
    left: -220px;
    text-shadow: 0 0 100px rgba(255, 255, 255, 0.9);
  }
  .hero--center .text-box > img {
    max-width: 128px;
    left: 70px;
    top: 65px;
  }
  .hero--center .text-box > p {
    padding-left: 200px;
  }
}

.timeline {
  margin-top: 80px;
}
.timeline .slider .item {
  cursor: pointer;
  transition: transform 0.5s ease-in-out;
  width: 200px;
  text-align: center;
}
.timeline .slider .item h4, .timeline .slider .item p {
  opacity: 0;
  width: 135%;
  margin-left: -15%;
}
.timeline .slider .item h4 {
  font-size: 24px;
  margin-bottom: 20px;
}
.timeline .slider .item .date {
  font-size: 25px;
  text-align: right;
  opacity: 0.2;
  padding-top: 35px;
}
.timeline .slider .item .date:before, .timeline .slider .item .date:after {
  display: inline-block;
  content: "";
  width: 10px;
  height: 2px;
  vertical-align: middle;
  background: rgba(0, 0, 0, 0.9);
  margin: -5px 5px 0;
}
.timeline .slider .item p {
  text-align: left;
  margin-bottom: 30px;
}
.timeline .slider .owl-item.active .date {
  text-align: left;
}
.timeline .slider .owl-item.center h4, .timeline .slider .owl-item.center p {
  transition: all 0.5s ease-in-out;
  transition-delay: 0.3s;
  opacity: 1;
}
.timeline .slider .owl-item.center .date {
  padding-top: 0;
  opacity: 1;
  font-size: 81px;
  text-align: center;
}
.timeline .slider .owl-item.center .date:before, .timeline .slider .owl-item.center .date:after {
  display: none;
}
.timeline .slider-nav {
  text-align: center;
  padding: 15px 40px;
  border: 4px solid #f5f5f5;
  width: 220px;
  border-radius: 60px;
  margin: 0 auto;
}
.timeline .slider-nav > * {
  display: inline-block;
  vertical-align: middle;
}
.timeline .slider-nav a {
  width: 40px;
  height: 35px;
  opacity: 0.2;
  color: #000000;
}
.timeline .slider-nav a svg {
  fill: #000000;
}
.timeline .slider-nav a.back {
  transform: rotate(180deg);
}
.timeline .slider-nav a.next {
  margin-right: 0;
  margin-left: 40px;
}
.timeline .slider-nav a:hover {
  opacity: 1;
}
@media screen and (min-width: 30em) {
  .timeline .slider .item {
    width: 300px;
  }
  .timeline .slider .item h4 {
    font-size: 28px;
  }
  .timeline .slider .item .date {
    font-size: 36px;
    padding-top: 50px;
  }
  .timeline .slider .owl-item.center .date {
    font-size: 121px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .timeline {
    margin-bottom: 100px;
  }
  .timeline .slider .item {
    width: 400px;
  }
  .timeline .slider .item .date {
    font-size: 48px;
    padding-top: 70px;
  }
  .timeline .slider .item .date:before, .timeline .slider .item .date:after {
    width: 20px;
    height: 4px;
  }
  .timeline .slider .item .date:before {
    margin-right: 20px;
  }
  .timeline .slider .item .date:after {
    margin-left: 20px;
  }
  .timeline .slider .owl-item.center .date {
    font-size: 160px;
  }
}
@media print, screen and (min-width: 64em) {
  .timeline {
    margin-bottom: 200px;
  }
  .timeline .slider .item {
    width: 550px;
  }
  .timeline .slider .item h4 {
    font-size: 34px;
  }
  .timeline .slider .item .date {
    font-size: 70px;
    padding-top: 70px;
  }
  .timeline .slider .item .date:before, .timeline .slider .item .date:after {
    width: 20px;
    height: 4px;
  }
  .timeline .slider .item .date:before {
    margin-right: 20px;
  }
  .timeline .slider .item .date:after {
    margin-left: 20px;
  }
  .timeline .slider .owl-item.center .date {
    font-size: 200px;
  }
}
@media screen and (min-width: 118.75em) {
  .timeline {
    margin-bottom: 250px;
    margin-top: 150px;
  }
  .timeline .slider .item {
    width: 700px;
  }
  .timeline .slider .item h4, .timeline .slider .item p {
    width: 100%;
    margin-left: 0;
  }
  .timeline .slider .item p {
    margin-bottom: 50px;
  }
  .timeline .slider .item .date {
    font-size: 130px;
    padding-top: 60px;
  }
  .timeline .slider .item .date:before, .timeline .slider .item .date:after {
    width: 100px;
    height: 4px;
  }
  .timeline .slider .item .date:before {
    margin-right: 20px;
  }
  .timeline .slider .item .date:after {
    margin-left: 20px;
  }
  .timeline .slider .owl-item.center .date {
    font-size: 240px;
  }
}

.boxes--company {
  background: #ededed;
  padding-bottom: 200px;
  padding-top: 0;
  margin-top: 150px;
  margin-bottom: 0;
}
.boxes--company:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100px;
  top: -100px;
  background: transparent url("../images/waves/bg-boxes.svg") no-repeat;
  background-position: -700px 0;
}
@media screen and (min-width: 118.75em) {
  .boxes--company:before {
    background: transparent url("../images/waves/bg-boxes-no-aspect.svg") no-repeat;
    background-size: cover;
  }
}
.boxes--company .box .img-wrapper img {
  max-width: 100%;
  height: auto;
  min-height: 100%;
}
.boxes--company .box:first-child {
  margin-top: -85px;
  margin-left: -15px;
}
.boxes--company .box--reverse {
  margin-top: -5%;
}
@media screen and (min-width: 30em) {
  .boxes--company {
    padding-bottom: 80px;
  }
  .boxes--company .box--reverse {
    margin-top: 20px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .boxes--company {
    padding-bottom: 50px;
  }
  .boxes--company:before {
    background-position: 0 0;
  }
  .boxes--company .box .content h2 {
    font-size: 36px;
    margin-bottom: 5px;
  }
  .boxes--company .box:first-child {
    margin-left: 20px;
  }
  .boxes--company .box:first-child .img-wrapper {
    max-width: 360px;
    height: 420px;
  }
  .boxes--company .box:first-child .content {
    top: -250px;
    left: 300px;
    max-width: 360px;
  }
  .boxes--company .box--reverse {
    width: 50%;
    right: -50px;
    left: auto;
    float: right;
    margin-top: -50px;
  }
  .boxes--company .box--reverse .img-wrapper {
    max-width: 300px;
    left: 30px;
    height: 275px;
  }
  .boxes--company .box--reverse .content {
    max-width: 375px;
    top: -70px;
    left: -300px;
  }
  .boxes--company .box--left {
    margin-top: 10px;
  }
  .boxes--company .box--left .img-wrapper {
    max-width: 360px;
    height: 300px;
    max-height: none;
  }
  .boxes--company .box--left .img-wrapper img {
    width: 100%;
    height: auto;
  }
  .boxes--company .box--left .content {
    left: 340px;
  }
}
@media print, screen and (min-width: 64em) {
  .boxes--company:before {
    background-position: -400px 0;
  }
  .boxes--company .box .content h2 {
    font-size: 54px;
    margin-bottom: 10px;
  }
  .boxes--company .box:first-child {
    margin-left: 30px;
  }
  .boxes--company .box:first-child .img-wrapper {
    max-width: 480px;
    height: 560px;
  }
  .boxes--company .box:first-child .content {
    top: -300px;
    left: 320px;
    max-width: 420px;
  }
  .boxes--company .box--reverse {
    right: -30px;
    left: auto;
    float: right;
  }
  .boxes--company .box--reverse .img-wrapper {
    max-width: 460px;
    left: 30px;
    height: 400px;
  }
  .boxes--company .box--reverse .content {
    max-width: 375px;
    top: -150px;
    left: -200px;
  }
  .boxes--company .box--left {
    margin-top: 10px;
  }
  .boxes--company .box--left .img-wrapper {
    max-width: 460px;
    height: 380px;
    max-height: none;
  }
  .boxes--company .box--left .img-wrapper img {
    width: 100%;
    height: auto;
  }
  .boxes--company .box--left .content {
    left: 420px;
    padding-left: 80px;
  }
}
@media screen and (min-width: 80em) {
  .boxes--company:before {
    background-position: 0 0;
  }
}
@media screen and (min-width: 118.75em) {
  .boxes--company {
    padding-bottom: 150px;
  }
  .boxes--company:before {
    background-size: 100% 100%;
  }
  .boxes--company .box .content h2 {
    font-size: 62px;
  }
  .boxes--company .box:first-child .img-wrapper {
    max-width: 540px;
    height: 640px;
  }
  .boxes--company .box:first-child .content {
    top: -400px;
    left: 420px;
    max-width: 460px;
  }
  .boxes--company .box--reverse {
    right: -30px;
    left: auto;
    float: right;
  }
  .boxes--company .box--reverse .img-wrapper {
    max-width: 520px;
    height: 480px;
  }
  .boxes--company .box--reverse .content {
    max-width: 460px;
    left: -300px;
  }
  .boxes--company .box--left {
    margin-top: 70px;
  }
  .boxes--company .box--left .img-wrapper {
    max-width: 540px;
    height: 450px;
  }
  .boxes--company .box--left .content {
    left: 540px;
    padding-left: 100px;
    margin-top: -50px;
  }
}

.media--company {
  background: transparent url("../images/product/bg-wave-blue.png") no-repeat;
  background-size: auto 100%;
  background-position: -500px -70px;
}
@media screen and (min-width: 30em) {
  .media--company .title {
    margin-left: 20px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .media--company {
    background-position: -200px -300px;
    background-size: 1280px auto;
    margin-top: 100px;
    padding-top: 50px;
  }
}
@media print, screen and (min-width: 64em) {
  .media--company {
    background-position: 0 -300px;
    background-size: 1280px auto;
    margin-top: 100px;
    padding-top: 50px;
  }
}
@media screen and (min-width: 80em) {
  .media--company {
    background-position: 0 -600px;
    background-size: 1900px auto;
  }
}
@media screen and (min-width: 118.75em) {
  .media--company {
    padding-top: 500px;
    padding-bottom: 100px;
    margin-top: -400px;
    background-position: 0 0;
    background-size: 100% 95%;
  }
}

.team-members {
  background: transparent url("../images/bg-lines.png") repeat;
  background-position: 0 0;
  padding-bottom: 50px;
  padding-top: 50px;
}
.team-members h3 {
  font-size: 48px;
  line-height: 52px;
  margin-left: 60px;
  margin-bottom: 20px;
  position: relative;
}
.team-members h3:before {
  content: "";
  width: 35px;
  height: 15px;
  display: inline-block;
  border-top: 7px solid #000000;
  border-right: 7px solid #000000;
  position: absolute;
  left: -55px;
  top: 10px;
}
.team-members .member {
  margin-left: 20px;
  margin-top: 30px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translate(20%, 0);
  transition: all 1s ease-in-out;
}
.team-members .member > * {
  display: inline-block;
  transition: all 1s ease-in-out;
  opacity: 0;
  transform: translate(20%, 0);
}
.team-members .member .img-wrapper {
  max-width: 160px;
}
.team-members .member .desc {
  max-width: 200px;
  padding: 30px 20px;
  background: #ffffff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  margin-top: -20px;
  margin-left: 20px;
}
.team-members .member .desc h4 {
  font-size: 28px;
  line-height: 32px;
}
.team-members .member .desc p {
  margin-bottom: 0;
}
.team-members .member--second {
  margin-top: -15px;
  text-align: right;
  position: relative;
  z-index: 0;
}
.team-members .member--second .desc {
  margin-left: 0;
  margin-right: 20px;
}
.team-members .member--reverse .desc {
  margin-top: 10px;
  z-index: 1;
  position: relative;
}
.team-members .member--reverse .img-wrapper {
  margin-top: -15px;
}
.team-members .member.animated {
  opacity: 1;
  transform: translate(0, 0);
}
.team-members .member.animated > *:nth-child(1) {
  transform: translate(0, 0);
  transition-delay: 0.25s;
  opacity: 1;
}
.team-members .member.animated > *:nth-child(2) {
  transform: translate(0, 0);
  transition-delay: 0.5s;
  opacity: 1;
}
@media screen and (min-width: 30em) {
  .team-members h3 {
    max-width: 50%;
    float: right;
    transform: translate(20px, 100px);
  }
  .team-members .member {
    max-width: 50%;
    margin-top: -50px;
  }
  .team-members .member .img-wrapper {
    margin-left: -30px;
  }
  .team-members .member--second {
    margin-left: auto;
    text-align: left;
    margin-right: 15px;
  }
  .team-members .member--second .img-wrapper {
    max-width: 180px;
  }
  .team-members .member--second .desc {
    margin-left: 30px;
    margin-right: auto;
    max-width: none;
    width: 100%;
  }
  .team-members .member--reverse {
    margin-top: 40px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .team-members h3 {
    font-size: 64px;
    line-height: 70px;
  }
  .team-members .member {
    margin-top: -80px;
  }
  .team-members .member .medium-float-right {
    float: right;
    margin-right: -50px;
  }
  .team-members .member .desc {
    max-width: 300px;
    margin-left: 80px;
    margin-top: -40px;
  }
  .team-members .member .img-wrapper {
    max-width: 260px;
    margin-left: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .team-members h3 {
    max-width: 35%;
    margin-left: 80px;
  }
  .team-members .member:not(.member--second) {
    margin-left: 50px;
  }
  .team-members .member .desc {
    max-width: 420px;
    margin-left: 80px;
    margin-top: -40px;
  }
  .team-members .member .img-wrapper {
    max-width: 320px;
    margin-left: 0;
  }
  .team-members .member--second {
    margin-right: 100px;
  }
  .team-members .member--second .desc {
    max-width: 350px;
  }
  .team-members .member--position {
    margin-right: 30px;
    margin-top: -200px;
  }
  .team-members .member--reverse {
    margin-top: -100px;
  }
}
@media screen and (min-width: 118.75em) {
  .team-members h3 {
    max-width: 350px;
    font-size: 82px;
    line-height: 86px;
  }
  .team-members h3:before {
    width: 45px;
    height: 25px;
    left: -85px;
    top: 15px;
  }
  .team-members h3:after {
    width: 25px;
    height: 45px;
    content: "";
    position: absolute;
    right: 10px;
    bottom: -60px;
    border-top: 7px solid #000000;
    border-left: 7px solid #000000;
  }
  .team-members .member {
    z-index: 2;
  }
  .team-members .member:not(.member--second) {
    margin-left: 200px;
  }
  .team-members .member .desc {
    max-width: 420px;
    margin-left: 80px;
    margin-top: -40px;
    padding: 40px 30px;
  }
  .team-members .member .desc h4 {
    font-size: 34px;
    margin-bottom: 15px;
  }
  .team-members .member .desc p {
    font-size: 18px;
  }
  .team-members .member--second {
    margin-right: 0;
    position: relative;
    z-index: 1;
  }
  .team-members .member--position {
    margin-top: -200px;
    position: relative;
    z-index: 0;
  }
  .team-members .member--position .desc {
    max-width: 350px;
    margin-top: -80px;
    margin-left: 200px;
  }
  .team-members .member--reverse {
    margin-top: -100px;
  }
  .team-members .member:nth-child(5) {
    margin-top: -300px;
  }
  .team-members .member:nth-child(5) .img-wrapper {
    margin-left: 50px;
  }
  .team-members .member:nth-child(5) .desc {
    width: 350px;
    margin-left: 0;
  }
  .team-members .member:last-child {
    margin-top: -200px;
  }
}

.info-company {
  position: relative;
  color: #ffffff;
  padding: 60px 10px;
}
.info-company .columns {
  position: relative;
}
.info-company:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #333333;
}
.info-company h2 {
  font-size: 48px;
  line-height: 52px;
  margin-bottom: 40px;
}
.info-company .button {
  width: 100%;
  font-size: 20px;
}
.info-company .content {
  margin-bottom: 50px;
}
.info-company .content > * {
  display: inline-block;
  vertical-align: bottom;
}
.info-company .content > img {
  width: 20%;
}
.info-company .content > p {
  width: 70%;
  margin-left: 8%;
  margin-bottom: 0;
}
@media screen and (min-width: 30em) {
  .info-company h2 {
    font-size: 62px;
    line-height: 66px;
  }
  .info-company .button {
    width: 60%;
    margin: 0 auto;
    display: block;
  }
  .info-company .content > img {
    width: auto;
  }
}
@media print, screen and (min-width: 47.5em) {
  .info-company:before {
    width: 90%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  }
  .info-company .columns {
    padding-left: 50px;
  }
  .info-company .button {
    width: auto;
    display: inline-block;
    padding: 20px 40px;
    margin-left: 15%;
  }
}
@media print, screen and (min-width: 64em) {
  .info-company {
    padding-top: 130px;
    padding-bottom: 100px;
  }
  .info-company h2 {
    font-size: 84px;
    margin-bottom: 60px;
  }
  .info-company .content {
    max-width: 60%;
    float: left;
  }
  .info-company .button {
    float: right;
    margin-left: auto;
    margin-right: 15%;
    margin-top: 100px;
  }
}
@media screen and (min-width: 118.75em) {
  .info-company:before {
    width: 75%;
  }
  .info-company h2 {
    font-size: 94px;
  }
  .info-company .button {
    font-size: 22px;
    padding: 30px 50px;
    margin-right: 10%;
    margin-top: 130px;
  }
}

.events:after {
  content: "";
  display: none;
  height: 4px;
  margin-top: 50px;
  width: 90%;
  margin-left: 5%;
  background: rgba(102, 102, 102, 0.2);
}
.events--no-brdr:after {
  display: none;
}
.events h4 {
  font-size: 48px;
  line-height: 52px;
  max-width: 58%;
  float: left;
}
.events .nav {
  display: inline-block;
  width: auto;
  vertical-align: bottom;
  margin-left: 30px;
  margin-top: 70px;
}
.events .button {
  font-size: 20px;
  width: 90%;
  margin-left: 5%;
}
.events .events-wrapper {
  clear: both;
  height: 300px;
  margin: 30px 0 50px;
}
.events .events-wrapper.-autoSize {
  height: auto;
  margin: 0;
}
.events .events-wrapper .event {
  width: 200px;
  height: 300px;
  background: #aa273e;
  padding: 24px;
  color: #ffffff;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  transform: translate(0, 0);
  transition: all 0.35s ease-in-out;
}
.events .events-wrapper .event.-autoSize {
  width: 100%;
  height: auto;
  margin: 0;
}
.events .events-wrapper .event.event-past {
  background: #666;
}
.events .events-wrapper .event .past-event-tag {
  background: #333;
  padding: 3px 8px;
  font-family: "avenir-lt-pro", "Avenir LT W01_45 Book1475508", "AvenirLTW01-45Book", "Avenir", "Avenir LT", "Helvetica", sans-serif;
  font-size: 12px;
  line-height: 16px;
  position: absolute;
  top: 24px;
  right: 24px;
  border-radius: 4px;
}
.events .events-wrapper .event h5 {
  font-family: "avenir-lt-pro", "Avenir LT W01_85 Heavy1475544", "AvenirLTW01-85Heavy", "Avenir", "Avenir LT", "Helvetica", sans-serif;
  font-weight: 800;
  font-size: 30px;
  margin: 8px 0 16px 0;
}
.events .events-wrapper .event h6 {
  font-family: "avenir-lt-pro", "Avenir LT W01_85 Heavy1475544", "AvenirLTW01-85Heavy", "Avenir", "Avenir LT", "Helvetica", sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 30px;
  max-height: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.events .events-wrapper .event p {
  margin-bottom: 0;
  font-family: "avenir-lt-pro", "Avenir LT W01_45 Book1475508", "AvenirLTW01-45Book", "Avenir", "Avenir LT", "Helvetica", sans-serif;
}
.events .events-wrapper .event p + p {
  margin-top: 8px;
}
.events .events-wrapper .event:nth-child(2) {
  transform: scale(0.95) translate(-22px, 0);
}
.events .events-wrapper .event:first-child {
  transform: scale(0.9) translate(-45px, 0);
}
.events .events-wrapper .event:hover {
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.6);
}
.events .events-wrapper .event:hover, .events .events-wrapper .event:hover:nth-child(2), .events .events-wrapper .event:hover:first-child {
  transform: scale(1.05) translate(0, -10px);
}
.events .events-wrapper--alt .event {
  position: relative;
  display: block;
  left: auto;
  right: auto;
  margin-bottom: 20px !important;
}
.events .events-wrapper--alt .event:nth-child(2) {
  transform: none;
}
.events .events-wrapper--alt .event:first-child {
  transform: none;
}
@media screen and (min-width: 30em) {
  .events {
    position: relative;
  }
  .events .events-wrapper {
    clear: none;
    float: left;
  }
  .events .events-wrapper .event {
    left: 40px;
    right: auto;
  }
  .events .events-wrapper--alt .event {
    left: auto;
  }
  .events h4, .events .button {
    margin-right: 20px;
  }
  .events h4 {
    float: right;
    max-width: 40%;
    margin-top: 60px;
  }
  .events .nav {
    position: absolute;
    right: 15px;
    top: 120px;
  }
  .events .button {
    margin-top: 80px;
    max-width: 40%;
    padding-left: 15px;
    padding-right: 15px;
    float: right;
    margin-left: 40%;
  }
}
@media print, screen and (min-width: 47.5em) {
  .events .events-wrapper .event {
    position: relative;
    float: left;
    left: 0;
    margin-right: 30px;
  }
  .events .events-wrapper .event, .events .events-wrapper .event:nth-child(2), .events .events-wrapper .event:first-child {
    transform: scale(1);
  }
  .events .nav {
    display: none;
  }
  .events h4, .events .button {
    margin-right: 20px;
  }
  .events h4 {
    font-size: 62px;
    line-height: 70px;
    max-width: 220px;
    margin-top: 40px;
  }
  .events .button {
    margin-left: auto;
    margin-top: 50px;
    width: auto;
    padding: 20px 40px;
  }
}
@media print, screen and (min-width: 64em) {
  .events:after {
    width: 96%;
    margin-left: 2%;
  }
  .events .events-wrapper .event {
    margin-right: 40px;
  }
}
@media screen and (min-width: 80em) {
  .events h4, .events .button {
    margin-right: 250px;
  }
}
@media screen and (min-width: 118.75em) {
  .events:after {
    width: 100%;
    margin-left: 0;
  }
  .events h4 {
    max-width: 300px;
    font-size: 82px;
    line-height: 86px;
    margin-top: 20px;
    margin-right: 30px;
  }
  .events .button {
    font-size: 22px;
    margin-top: 30px;
    padding: 30px 50px;
    margin-right: 60px;
  }
  .events .events-wrapper .event {
    width: 240px;
  }
}

.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;
  }
}

form [type=text], form [type=password], form [type=date], form [type=datetime], form [type=datetime-local], form [type=month], form [type=week], form [type=email], form [type=number], form [type=search], form [type=tel], form [type=time], form [type=url], form [type=color],
form textarea {
  padding-left: 24px;
  color: #000;
}
form textarea {
  padding-top: 25px;
}
form .select-wrapper,
form .address_country,
form #billing_country_field, form #billing_state_field, form #shipping_country_field, form #shipping_state_field, form #enduser_country_field, form #enduser_state_field {
  display: block;
  position: relative;
  margin-bottom: 1.5rem;
}
form .select-wrapper select,
form .address_country select,
form #billing_country_field select, form #billing_state_field select, form #shipping_country_field select, form #shipping_state_field select, form #enduser_country_field select, form #enduser_state_field select {
  font-size: 16px;
  height: 3rem;
  color: #000;
  background-position: right -0.5rem center;
  padding-left: 24px;
  margin-bottom: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-top: 8px;
  padding-bottom: 8px;
}
form .select-wrapper:after,
form .address_country:after,
form #billing_country_field:after, form #billing_state_field:after, form #shipping_country_field:after, form #shipping_state_field:after, form #enduser_country_field:after, form #enduser_state_field:after {
  content: "";
  position: absolute;
  height: 48px;
  top: 0;
  right: 3.8rem;
  width: 1px;
  background: rgba(102, 102, 102, 0.3);
}
form ul.gform_fields .select-wrapper {
  margin-bottom: 1.5rem;
}
form select.gfield_select {
  height: 48px;
}
form .file-wrapper {
  margin-bottom: 10px;
  position: relative;
}
form .file-wrapper input[type=file] {
  opacity: 0;
  display: none;
}
form .file-wrapper > p {
  padding: 11px 25px;
  text-align: left;
  font-size: 18px;
  margin-bottom: 10px;
  color: rgba(102, 102, 102, 0.6);
  border: 1px solid rgba(102, 102, 102, 0.3);
  border-radius: 24px;
}
form .file-wrapper > label {
  width: 100%;
  font-size: 18px;
}
@media print, screen and (min-width: 47.5em) {
  form [type=text], form [type=password], form [type=date], form [type=datetime], form [type=datetime-local], form [type=month], form [type=week], form [type=email], form [type=number], form [type=search], form [type=tel], form [type=time], form [type=url], form [type=color],
  form label {
    font-size: 16px;
  }
  form .file-wrapper {
    height: 54.5px;
  }
  form .file-wrapper > p {
    height: 100%;
  }
  form .file-wrapper > label {
    width: auto;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    padding: 15px 50px;
  }
}
@media print, screen and (min-width: 64em) {
  form [type=text], form [type=password], form [type=date], form [type=datetime], form [type=datetime-local], form [type=month], form [type=week], form [type=email], form [type=number], form [type=search], form [type=tel], form [type=time], form [type=url], form [type=color],
  form textarea {
    font-size: 16px;
    max-height: 300px;
    margin-left: 0px;
    margin-right: 0px;
  }
  form .file-wrapper {
    height: 80px;
  }
  form .file-wrapper > p {
    font-size: 16px;
    padding: 16px 25px;
  }
  form .file-wrapper > label {
    padding: 27px 80px;
    font-size: 16px;
  }
  form .gform_body .gfield .ginput_container.ginput_container_checkbox {
    margin-top: 16px;
    margin-left: 20px;
    margin-bottom: 16px;
  }
  form .gform_body .gfield .ginput_container.ginput_container_checkbox ul {
    /*column-count: 2;
    width: 78%;*/
  }
  form .gform_body .gfield .ginput_container.ginput_container_checkbox ul li input {
    margin-bottom: 20px;
  }
}

@supports (-moz-appearance: none) {
  @media print, screen and (min-width: 64em) {
    form .select-wrapper {
      height: 65px !important;
    }
  }
}
.show-labels .gform_body li label.gfield_label,
.show-labels .gform_body li label:not(.floating-label) {
  display: block;
  background: #fff;
  z-index: 10;
  position: relative;
  text-align: left;
  padding: 0 0 5px 30px;
}

.show-labels .gform_body ul.gfield_checkbox li input {
  display: inline-block;
  vertical-align: top;
  width: 20px;
  top: 9px;
  position: relative;
}

.show-labels .gform_body ul.gfield_checkbox li label:not(.floating-label) {
  background: transparent;
  display: inline-block;
  vertical-align: top;
  width: calc(100% - 25px);
  padding: 0 0 5px 0;
  margin: 0;
}

.gfield_checkbox {
  margin: 0 0 0 0px;
}

ul.gform_fields .select-wrapper:after {
  /*bottom: 20px;*/
  /*height: auto;*/
}
@media print, screen and (min-width: 47.5em) {
  ul.gform_fields .select-wrapper:after {
    height: 100%;
  }
}

@media print, screen and (min-width: 47.5em) {
  ul.gform_fields .field-full {
    width: calc(100% - 20px);
    display: block;
    margin-left: 10px;
    margin-right: 10px;
  }
}

ul.gform_fields .field-third,
.address_city,
.address_state,
.address_zip {
  width: 100%;
  position: relative;
  display: block;
}
@media print, screen and (min-width: 47.5em) {
  ul.gform_fields .field-third,
  .address_city,
  .address_state,
  .address_zip {
    width: calc(33.33% - 20px);
    vertical-align: top;
    display: inline-block;
    margin-left: 10px;
    margin-right: 10px;
  }
}

ul.gform_fields .field-half,
.address_line_1,
.address_line_2,
#input_6_6_3_container,
#input_6_6_4_container {
  width: 100%;
  display: block;
  position: relative;
}
@media print, screen and (min-width: 47.5em) {
  ul.gform_fields .field-half,
  .address_line_1,
  .address_line_2,
  #input_6_6_3_container,
  #input_6_6_4_container {
    width: calc(50% - 20px);
    display: inline-block;
    vertical-align: top;
    margin-left: 10px;
    margin-right: 10px;
  }
}

@media print, screen and (min-width: 47.5em) {
  ul.gform_fields .field-fifth {
    width: calc(20% - 20px);
    display: inline-block;
    margin-left: 10px;
    margin-right: 10px;
  }
}

@media print, screen and (min-width: 47.5em) {
  ul.gform_fields .field-four-fifth {
    width: calc(80% - 20px);
    display: inline-block;
    margin-left: 10px;
    margin-right: 10px;
  }
}

.gsection_title {
  margin: 25px 0;
}
@media print, screen and (min-width: 47.5em) {
  .gsection_title {
    margin: 50px 0;
  }
}

.gform_drop_instructions {
  display: block;
  padding: 19px;
  border: 2px dashed #242876;
  border-radius: 13px;
  margin: 0px;
  text-transform: capitalize;
  color: #696969;
}
@media print, screen and (min-width: 900px) {
  .gform_drop_instructions {
    padding: 75px 20px 45px 20px;
    border-radius: 24px;
  }
}

/* hover drag */
.gform_drop_instructions.drag-over {
  background-color: #EBECF3;
}

.gform_drop_instructions .cloud-icon {
  position: relative;
  width: 1px;
  height: 18px;
  display: inline-block;
}

.gform_drop_instructions .cloud-icon:after {
  content: "";
  background-image: url("../images/icons/icon_cloud.svg");
  background-repeat: no-repeat;
  background-position: top left;
  display: block;
  width: 50px;
  height: 50px;
  position: absolute;
  top: -15px;
  left: -50px;
}
@media print, screen and (min-width: 450px) {
  .gform_drop_instructions .cloud-icon:after {
    left: -75px;
  }
}

.gform_drop_instructions .allowed-types {
  font-size: 11px;
  color: #cdcdcd;
}

.ginput_container_fileupload .validation_message ul {
  margin: 0px;
}

.ginput_container_fileupload .validation_message ul li {
  background-color: #FFEFEF;
  padding: 5px 15px;
  border-radius: 7px;
  border: solid 1px #DADBE8;
  color: #A62B2B;
  margin: 35px 11% 10px 11%;
}

form .gfield .ginput_preview {
  display: flex;
  flex-wrap: wrap;
  margin: 35px 11% 10px 11%;
  background-color: #F7F7FB;
  padding: 15px;
  border-radius: 7px;
  border: solid 1px #DEDFEA;
  align-items: center;
  flex-direction: column;
}
@media print, screen and (min-width: 47.5em) {
  form .gfield .ginput_preview {
    flex-direction: row;
    padding: 5px 15px;
  }
}

form .gfield .ginput_preview:empty {
  display: none;
}

form .gfield .ginput_preview span {
  flex: 1;
}

form .gfield .ginput_preview span:nth-of-type(3) {
  flex: 4;
  text-align: left;
}

form .gfield .ginput_preview span:nth-of-type(4),
form .gfield .ginput_preview span:nth-of-type(5) {
  flex: 2;
}

.ginput_preview .file-icon {
  display: flex;
  justify-content: flex-start;
  flex-grow: 0 !important;
  flex-shrink: 0 !important;
  flex-basis: 40px !important;
  order: 1;
}

.ginput_preview .file-icon i {
  background-image: url("../images/icons/file-icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  height: 28px;
  width: 30px;
}

.ginput_preview .file-name {
  color: #626C88;
  order: 2;
}

.ginput_preview .file-size {
  color: #626C88;
  font-size: 12px;
  order: 3;
}

.ginput_preview .file-percent {
  color: #626C88;
  font-weight: 600;
  order: 4;
}

.ginput_preview .file-delete {
  text-align: right;
  order: 5;
  display: flex;
  justify-content: center;
}

.ginput_preview .file-delete i {
  background-image: url("../images/icons/upload-delete.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  height: 30px;
  width: 30px;
  cursor: pointer;
}

/* multiupload filed requiers specific id's to work */
/*#gform_browse_button_1_8,
#gform_browse_button_7_18{*/
.button.gform_button_select_files {
  color: #242876;
  font-size: 18px;
  padding: 0px;
  margin-top: 5px;
  margin-bottom: 0px;
  border: none;
  font-family: "Lato", sans-serif;
  text-decoration: underline;
  border-radius: 0px;
  display: inline-block;
  position: relative;
  top: -2px;
}

@-moz-document url-prefix() {
  /*#gform_browse_button_1_8,
  #gform_browse_button_7_18{*/
  .button.gform_button_select_files {
    top: 0px;
  }
}
/*#gform_browse_button_1_8:hover,
#gform_browse_button_7_18:hover{*/
.button.gform_button_select_files:hover {
  text-decoration: none;
}

.gfield_description {
  text-align: left;
  padding: 0 0 5px 0px;
}

/*
#gform_7 .gform_footer {
margin: 25px 0 0;

@include breakpoint(medium) {
margin: 50px 0 0;
}
}
*/
.form-container {
  text-align: center;
}

.slideDown-container {
  display: none;
}

.gfield_description.validation_message {
  color: #FF0000;
  padding: 5px 0 0 0;
}

.validation_error {
  color: #A62B2B;
  margin-bottom: 40px;
  background-color: #FFE4E4;
  border-radius: 12px;
  font-size: 16px;
}
.validation_error:focus {
  outline: none;
}

.validation_error img {
  margin-right: 20px;
}

@media (max-width: 440px) {
  .validation_error img {
    display: none;
  }
}
.gform_confirmation_message {
  padding: 25px 0;
  color: #2ede70;
}

.select-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
}
.select-wrapper select {
  font-size: 18px;
  height: 3rem;
  color: #000;
  background-position: right -0.5rem center;
  margin-bottom: 0;
  padding-left: 35px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.select-wrapper:after {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  right: 3.8rem;
  width: 1px;
  background: rgba(102, 102, 102, 0.3);
}

.box .select2-container .select2-choice {
  padding: 0.78125rem 25px;
  border-radius: 30px;
  font-size: 18px;
}

.box .select2-dropdown-open .select2-choice {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

#label_1_10_1 {
  width: calc(100% - 30px);
  padding-left: 10px;
  margin: 0;
}

#choice_1_10_1 {
  position: relative;
  float: left;
  width: 30px;
  margin: 6px 0 0;
}
#choice_1_10_1:focus {
  outline: 0;
}
#choice_1_10_1:before {
  content: "";
  display: block;
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid #aaa;
  border-radius: 2px;
  background: #fff;
  margin: 0;
  padding: 0;
  top: -2px;
  left: -2px;
}
#choice_1_10_1:checked:before {
  background-color: #26247b;
  border-color: #26247b;
}

/* Thank You */
.thanks-wrapper {
  margin: 50px 0;
  background: #222070;
  color: #fff;
  padding: 50px 20px;
}

.thanks-headline {
  display: block;
  font-size: 42px;
  font-weight: bold;
  text-transform: uppercase;
  margin: 25px 0;
  line-height: 1.1;
}

.thanks-description {
  font-size: 21px;
  margin: 0 0 25px;
  line-height: 1.25;
}

.gform_body li.display-label label.gfield_label {
  display: block;
  font-weight: bold;
  text-align: left;
}

.gform_validation_container {
  display: none !important;
}

.ginput_container_creditcard .gform_card_icon_container {
  display: none;
}

.ginput_container_creditcard select + label,
.ginput_container_creditcard input + label,
.ginput_container_creditcard .ginput_card_security_code_icon,
.ginput_container_creditcard .ginput_card_security_code_icon + label {
  display: none;
}

.ginput_container_creditcard select {
  font-size: 18px;
  height: 3rem;
  color: #000;
  background-position: right -0.5rem center;
  margin-bottom: 0;
  padding-left: 35px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.ginput_cardextras {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.ginput_cardextras .ginput_cardinfo_left,
.ginput_cardextras .ginput_cardinfo_right {
  width: 50%;
  margin: 0 0.9375rem;
}

.ginput_cardextras .ginput_cardinfo_left {
  width: 60%;
  margin-left: 0;
}

.ginput_cardextras .ginput_cardinfo_right {
  width: 40%;
  margin-right: 0;
}

.ginput_container_creditcard select {
  font-size: 20px;
  height: 80px;
  color: rgba(102, 102, 102, 0.7);
  background-position: right -0.5rem center;
  padding-left: 35px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.ginput_card_expiration_container {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.ginput_card_expiration_container .ginput_card_expiration {
  width: 100%;
  margin: 0 0.9375rem;
}

.ginput_card_expiration_container .ginput_card_expiration_month {
  margin-left: 0;
}

.ginput_card_expiration_container .ginput_card_expiration_year {
  margin-right: 0;
}

form .columns {
  padding-right: 0.45rem;
  padding-left: 0.45rem;
}
@media print, screen and (min-width: 47.5em) {
  form .columns {
    padding-right: 0.45rem;
    padding-left: 0.45rem;
  }
}

form ul.gform_fields {
  margin-right: -0.45rem;
  margin-left: -0.45rem;
}
@media print, screen and (min-width: 47.5em) {
  form ul.gform_fields {
    margin-right: -0.45rem;
    margin-left: -0.45rem;
  }
}

.gfield.gfield_error,
.woocommerce-field.gfield_error {
  position: relative;
}
.gfield.gfield_error input,
.gfield.gfield_error select,
.woocommerce-field.gfield_error input,
.woocommerce-field.gfield_error select {
  border-color: #FF0000;
  /*color: #FF0000;*/
}
.gfield.gfield_error .gfield_description.validation_message,
.woocommerce-field.gfield_error .gfield_description.validation_message {
  position: absolute;
  /*bottom: 25px;*/
  top: -10px;
  right: 40px;
  background-color: #fff;
  padding: 0;
  font-size: 14px;
  line-height: 1.5em;
}

.woocommerce-password-strength,
.woocommerce-password-hint {
  display: none !important;
}

.inline-list ul {
  display: flex;
  flex-wrap: wrap;
}
@media print, screen and (min-width: 64em) {
  .inline-list ul {
    margin-top: 20px;
    margin-left: 15px;
  }
  .inline-list ul li {
    margin-right: 80px !important;
  }
}

.floating-label {
  opacity: 0;
  display: block;
  padding-left: 7px;
  padding-right: 7px;
  position: absolute;
  background-color: #fff;
  left: 18px;
  font-size: 13px;
  color: #5c5c5c;
}

.floating-label + input::-moz-placeholder, .floating-label + textarea::-moz-placeholder, .floating-label + select::-moz-placeholder {
  color: transparent;
}

.floating-label + input::placeholder,
.floating-label + textarea::placeholder,
.floating-label + select::placeholder {
  color: transparent;
}

.floating-label .optional {
  display: none !important;
}

.gform_body li.gfield .ginput_container {
  position: relative;
}

.gfield_error .floating-label,
.woocommerce-invalid .floating-label {
  color: #FF0000;
}

form .ginput_container input:focus::-moz-placeholder, form .ginput_container textarea:focus::-moz-placeholder {
  color: transparent;
}

form .ginput_container input:focus::placeholder,
form .ginput_container textarea:focus::placeholder {
  color: transparent;
}

form.register #woo_reg_recaptcha {
  display: none;
}

/* non gform, its a woocommerce form */
form.register .woocommerce-field,
.product-additional-details form.cart .wcpa_form_item,
.product-software-download form.cart .wcpa_form_item,
.order-unlisted-products form.cart .wcpa_form_item,
.product-side-a-b form.cart .wcpa_form_item,
form.woocommerce-checkout .woocommerce-field,
form.login .woocommerce-field {
  position: relative;
}

.shipments-after .woocommerce-input-wrapper {
  position: relative;
}

form.register .woocommerce-field input:focus::-moz-placeholder, form.register .woocommerce-field textarea:focus::-moz-placeholder, .product-additional-details form.cart .wcpa_form_item input:focus::-moz-placeholder, .product-additional-details form.cart .wcpa_form_item textarea:focus::-moz-placeholder, .product-software-download form.cart .wcpa_form_item input:focus::-moz-placeholder, .product-software-download form.cart .wcpa_form_item textarea:focus::-moz-placeholder, .order-unlisted-products form.cart .wcpa_form_item input:focus::-moz-placeholder, .order-unlisted-products form.cart .wcpa_form_item textarea:focus::-moz-placeholder, .product-side-a-b form.cart .wcpa_form_item input:focus::-moz-placeholder, .product-side-a-b form.cart .wcpa_form_item textarea:focus::-moz-placeholder, form.woocommerce-checkout .woocommerce-field input:focus::-moz-placeholder, form.woocommerce-checkout .woocommerce-field textarea:focus::-moz-placeholder, form.login .woocommerce-field input:focus::-moz-placeholder, form.login .woocommerce-field textarea:focus::-moz-placeholder {
  color: transparent;
}

form.register .woocommerce-field input:focus::placeholder,
form.register .woocommerce-field textarea:focus::placeholder,
.product-additional-details form.cart .wcpa_form_item input:focus::placeholder,
.product-additional-details form.cart .wcpa_form_item textarea:focus::placeholder,
.product-software-download form.cart .wcpa_form_item input:focus::placeholder,
.product-software-download form.cart .wcpa_form_item textarea:focus::placeholder,
.order-unlisted-products form.cart .wcpa_form_item input:focus::placeholder,
.order-unlisted-products form.cart .wcpa_form_item textarea:focus::placeholder,
.product-side-a-b form.cart .wcpa_form_item input:focus::placeholder,
.product-side-a-b form.cart .wcpa_form_item textarea:focus::placeholder,
form.woocommerce-checkout .woocommerce-field input:focus::placeholder,
form.woocommerce-checkout .woocommerce-field textarea:focus::placeholder,
form.login .woocommerce-field input:focus::placeholder,
form.login .woocommerce-field textarea:focus::placeholder {
  color: transparent;
}

form.register .state_container[data-input="1"] .floating-label {
  margin-left: 8px;
}

.gform_body .gfield .ginput_container.ginput_container_checkbox {
  margin-top: 15px;
  margin-bottom: 15px;
}

.ginput_container.ginput_container_checkbox + .gfield_description.validation_message {
  display: none;
}

.gfield.gfield_error .ginput_container.ginput_container_checkbox {
  background-color: #FFE4E4;
  padding: 13px;
  border-radius: 12px;
}

.gfield.gfield_error .ginput_container.ginput_container_checkbox label {
  color: #A62B2B;
}

/** 
 * minor recaptcha layout improvements
**/
.ginput_container_reCaptcha-score {
  display: none;
}

.grecaptcha-badge[data-style=bottomright] {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.map-box {
  background: #ffffff;
  color: #000000;
  padding: 30px 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 1.3s ease-out;
  transform: translate(10%, 0);
  transition-delay: 0.5s;
  opacity: 0;
}
.map-box .status, .map-box .location {
  padding-bottom: 25px;
  margin-bottom: 25px;
}
.map-box .status > span, .map-box .location > span {
  font-weight: bold;
  max-width: 50%;
  text-align: right;
}
.map-box .event-by-distek {
  position: absolute;
  top: 0;
  right: 0;
  background: url("../images/event-by-distek.png") no-repeat top right;
  background-size: 134px auto;
  width: 134px;
  height: 134px;
}
.map-box .location {
  margin-bottom: 35px;
}
.map-box .status {
  border-bottom: 1px solid rgba(102, 102, 102, 0.5);
}
.map-box .map-wrapper {
  padding-bottom: 0;
  margin-bottom: 30px;
}
.map-box .map-wrapper img {
  width: 100%;
}
.map-box .button {
  display: inline-block;
  padding-left: 60px;
  padding-right: 60px;
  margin-bottom: 0;
}
.map-box .socials {
  margin-bottom: 25px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-left: 16px;
  padding-right: 16px;
}
.map-box .socials a {
  text-align: center;
  display: flex;
  margin: 0 10px;
  background: #1D1B6A;
  border-radius: 999px;
  width: 52px;
  height: 52px;
}
.map-box .socials a:first-child {
  margin: 0 10px 0 0;
}
.map-box .socials a:last-child {
  margin: 0 0 0 10px;
}
.map-box .socials a img, .map-box .socials a svg {
  vertical-align: top;
  width: 52px;
  height: 52px;
}
.map-box .socials a img path, .map-box .socials a svg path {
  transition: 0.3s all linear;
}
.map-box .socials a.icon-twitter {
  justify-content: center;
  align-items: center;
}
.map-box .socials a.icon-twitter svg {
  width: 26px;
  height: 26px;
}
.map-box .socials a.icon-linkedin {
  justify-content: center;
  align-items: center;
}
.map-box .socials a.icon-linkedin svg {
  width: 28px;
  height: 28px;
}
.map-box .socials a.icon-facebook {
  justify-content: center;
  align-items: end;
  padding-bottom: 3px;
}
.map-box .socials a.icon-facebook svg {
  width: 21px;
  height: 38px;
}
.map-box .socials a:hover.icon-facebook {
  background: #4267B2;
}
.map-box .socials a:hover.icon-twitter {
  background: #1DA1F2;
}
.map-box .socials a:hover.icon-linkedin {
  background: #0077b5;
}
.map-box.animated {
  transform: translate(0, 0);
  opacity: 1;
}

.map-column {
  margin-top: -100px;
}
.map-column-no-mg {
  margin-top: 0;
}
.map-column .main__wrapper {
  background: none;
}
@media print, screen and (min-width: 47.5em) {
  .map-column .map-box {
    padding: 30px 35px;
  }
  .map-column .map-box .map-wrapper {
    max-height: 145px;
    overflow: hidden;
  }
}
@media print, screen and (min-width: 64em) {
  .map-column {
    float: right;
  }
  .map-column .map-box {
    margin-top: -340px;
  }
  .map-column .map-box .button {
    width: 100%;
  }
}
@media screen and (min-width: 80em) {
  .map-column .main__wrapper {
    margin-left: 0 !important;
  }
  .map-column .map-box {
    max-width: 360px;
    padding: 35px 35px;
    float: right;
  }
}
.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;
  overflow: auto;
}
.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: 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: 15px 40px;
    margin-top: 0;
  }
}

.additional--info {
  margin-top: -50px;
  padding-top: 80px;
}
@media print, screen and (min-width: 47.5em) {
  .additional--info {
    background-position: center 0;
  }
}
@media print, screen and (min-width: 64em) {
  .additional--info {
    margin-top: -80px;
    padding-top: 100px;
  }
}
@media screen and (min-width: 80em) {
  .additional--info {
    padding-top: 120px;
  }
}
.additional--info .text-center p {
  text-align: center;
}
.additional--info .content {
  padding: 25px 15px;
}
.additional--info .content .button {
  float: none;
  display: inline-block;
  padding: 25px 55px;
  margin-top: 0px;
}
.additional--info .content p {
  max-width: none;
}
.additional--info .content form {
  margin-top: 30px;
  position: relative;
}
.additional--info .content form .gf-privacy-notice {
  padding-top: 10px;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}
@media print, screen and (min-width: 64em) {
  .additional--info .content form {
    padding: 0 20px 24px 20px;
  }
  .additional--info .content form .gf-privacy-notice {
    text-align: left;
    max-width: 300px;
    padding-top: 0;
    padding-bottom: 10px;
  }
}
.additional--info .content form .gform_fields > li {
  margin-bottom: 15px;
  /*
  &:last-child {
  	margin-bottom: 0;
  }*/
}
.additional--info .content form input {
  margin-bottom: 10px;
}
.additional--info .content form .button {
  width: 100%;
  padding-top: 14px;
  padding-bottom: 14px;
}
.additional--info .content form .gform_body,
.additional--info .content form .gform_footer {
  clear: both;
}
.additional--info .content form .button.on-white.secondary.large {
  background-color: #242876;
  color: #fff;
  border-color: #242876;
}
.additional--info .content form .button.on-white.secondary.large:hover {
  color: #242876;
  background-color: #fff;
  border-color: #242876;
}
@media print, screen and (min-width: 64em) {
  .additional--info .content {
    padding: 30px;
  }
  .additional--info .content form .gform_fields > li {
    margin-bottom: 15px;
    /*
    &:last-child {
    	margin-bottom: 0 !important;
    }*/
  }
  .additional--info .content form .button {
    position: absolute;
    right: 20px;
    bottom: 25px;
    height: 64px;
    margin: 0;
    width: auto;
    margin-top: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .additional--info .content .gform_validation_error form {
    /* the email field needs to adjust the error message on large res and above */
  }
  .additional--info .content .gform_validation_error form #field_5_5.gfield.gfield_error .gfield_description.validation_message {
    right: 40%;
  }
  .additional--info .content .gform_validation_error form .button {
    /*bottom: 33px;*/
  }
  .additional--info .content .gform_ajax_spinner {
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -5px;
  }
}
@media screen and (min-width: 80em) {
  .additional--info {
    background-size: 100% auto;
    max-height: 510px;
  }
}
@media screen and (min-width: 118.75em) {
  .additional--info {
    min-height: 0;
    padding-top: 0;
  }
  .additional--info .content .button {
    margin-top: 20px;
  }
}

.additional--quality {
  background-image: url("../images/waves/bg-quality-wave.jpg");
  background-position: center 0;
  padding-top: 125px;
  margin-top: -175px;
  margin-bottom: 50px;
}
.additional--quality.-support {
  background-image: url("../images/waves/support.jpg");
  background-size: auto 300px;
  padding-top: 0;
  margin-top: -50px;
}
.additional--quality.-support .content {
  margin-bottom: 25px;
}
@media screen and (min-width: 80em) {
  .additional--quality.-support .content {
    margin-bottom: 125px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .additional--quality.-support {
    background-size: auto 355px;
    padding-top: 50px;
  }
}
@media print, screen and (min-width: 64em) {
  .additional--quality.-support {
    margin-top: -25px;
    padding-top: 75px;
  }
}
@media screen and (min-width: 80em) {
  .additional--quality.-support {
    margin-top: 0;
    padding-top: 125px;
    background-size: auto;
  }
}
@media screen and (min-width: 118.75em) {
  .additional--quality.-support {
    margin-top: 0;
    padding-top: 0;
  }
}
@media screen and (min-width: 120.0625em) {
  .additional--quality.-support {
    background-image: url("../images/waves/support--wide.jpg");
  }
}
@media screen and (min-width: 80em) {
  .additional--quality.-support h3 {
    font-size: 5.125rem;
  }
}
.additional--quality .text-center p {
  text-align: center;
}
.additional--quality .content {
  padding: 25px 15px;
  margin: 10px auto 50px;
}
.additional--quality .content p {
  max-width: none;
}
.additional--quality .additionalQuality-box {
  color: #aa273e;
  text-align: center;
  padding: 35px 0 0;
  border-top: 1px solid #e6e6e6;
  margin: 35px 0 0;
}
.additional--quality .additionalQuality-box .medium-4 {
  padding-bottom: 20px;
}
@media print, screen and (min-width: 47.5em) {
  .additional--quality .additionalQuality-box .medium-4 {
    padding-bottom: 0;
  }
}
.additional--quality .additionalQuality-box .icon {
  width: 80px;
  height: 80px;
  display: inline-block;
  background: url("../images/icons/support-sprites@2x.png") no-repeat center center;
  background-size: auto 80px;
}
.additional--quality .additionalQuality-box .icon.no-bg {
  background: none;
}
.additional--quality .additionalQuality-box .icon--40-years {
  background-position: 0 0;
}
.additional--quality .additionalQuality-box .icon--member-center {
  background-position: -80px 0;
}
.additional--quality .additionalQuality-box .icon--industry-know-how {
  background-position: -160px 0;
}
.additional--quality .additionalQuality-box span {
  display: block;
  font-weight: bold;
}
@media print, screen and (min-width: 47.5em) {
  .additional--quality {
    margin-top: -200px;
    padding-top: 195px;
  }
}
@media print, screen and (min-width: 64em) {
  .additional--quality {
    margin-top: -250px;
    padding-top: 205px;
  }
  .additional--quality .content {
    margin-bottom: 125px;
  }
  .additional--quality .content {
    padding: 50px;
  }
}
@media screen and (min-width: 80em) {
  .additional--quality {
    max-height: 645px;
    background-size: 100% auto;
    padding-top: 192px;
  }
}
@media screen and (min-width: 118.75em) {
  .additional--quality {
    min-height: 0;
    margin-top: -300px;
    padding-top: 260px;
  }
}

.hero--wave {
  background-color: #26247b;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #ffffff;
  text-align: center;
  position: relative;
  padding-top: 90px;
  padding-bottom: 70px;
  margin-top: -85px;
  margin-bottom: 20px;
}
.hero--wave .extra-img {
  position: absolute;
  right: 70px;
  top: 220px;
  max-width: 90px;
}
@media print, screen and (min-width: 64em) {
  .hero--wave .extra-img {
    max-width: 127px;
  }
}
@media print, screen and (min-width: 64em) {
  .hero--wave.-tall {
    padding-top: 270px;
    padding-bottom: 300px;
  }
}
.hero--wave.-short {
  padding-top: 120px;
  padding-bottom: 150px;
}
.hero--wave h1 {
  font-size: 34px;
}
.hero--wave:after {
  content: "";
  width: 100%;
  left: 0;
  height: 50px;
  position: absolute;
  bottom: 0;
  background: url("../images/waves/regions-wave-white.svg") 20% 0 repeat-x;
  background-size: 200% 100%;
}
.hero--wave .columns > * {
  transition: all 1.3s ease-out;
  transform: translate(-10%, 0);
  transition-delay: 0.3s;
  opacity: 0;
}
.hero--wave.animated .columns > * {
  transform: translate(0, 0);
  opacity: 1;
}
.hero--wave .text-box {
  background: #ffffff;
  padding: 40px 40px 125px;
  right: -10%;
  position: relative;
  max-width: 95%;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  color: #333333;
}
.hero--wave .text-box p {
  color: #333333;
}
.hero--wave .text-box h2 {
  font-size: 34px;
  line-height: 38px;
  position: absolute;
  bottom: 30px;
  max-width: 200px;
  left: -30px;
}
.hero--wave .text-box > img {
  position: absolute;
  max-width: 70px;
  bottom: 45px;
  right: 30px;
}
@media screen and (min-width: 30em) {
  .hero--wave {
    padding-top: 130px;
    padding-bottom: 100px;
  }
  .hero--wave .text-box h2 {
    font-size: 48px;
    line-height: 52px;
    bottom: 10px;
    max-width: 250px;
  }
  .hero--wave .text-box > img {
    max-width: 92px;
    bottom: 30px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .hero--wave {
    padding-top: 150px;
    padding-bottom: 120px;
  }
  .hero--wave h1 {
    font-size: 62px;
  }
  .hero--wave .text-box {
    padding-bottom: 50px;
    max-width: 80%;
    right: -25%;
  }
  .hero--wave .text-box h2 {
    font-size: 62px;
    line-height: 68px;
    bottom: 40px;
    max-width: 350px;
    left: -170px;
  }
  .hero--wave .text-box > img {
    max-width: 92px;
    bottom: auto;
    top: 50px;
    right: auto;
  }
  .hero--wave .text-box > div {
    padding-left: 150px;
  }
}
@media print, screen and (min-width: 64em) {
  .hero--wave {
    padding-top: 250px;
    padding-bottom: 200px;
  }
  .hero--wave h1 {
    font-size: 82px;
  }
  .hero--wave:after {
    background-size: 150% 100%;
  }
  .hero--wave .text-box {
    max-width: 85%;
    float: right;
    right: -20px;
    padding-top: 60px;
  }
  .hero--wave .text-box h2 {
    font-size: 62px;
  }
  .hero--wave .text-box > img {
    max-width: 128px;
    left: 70px;
    top: 65px;
  }
  .hero--wave .text-box > div {
    padding-left: 200px;
  }
}
@media screen and (min-width: 80em) {
  .hero--wave {
    padding-top: 180px;
    padding-bottom: 150px;
  }
  .hero--wave .extra-img {
    top: 150px;
  }
  .hero--wave h1 {
    font-size: 120px;
  }
  .hero--wave:after {
    background-size: 100% 100%;
  }
  .hero--wave .text-box {
    background: none;
    box-shadow: none;
    position: relative;
    z-index: 1;
  }
  .hero--wave .text-box:before {
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    position: absolute;
    background: #ffffff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.002);
  }
}
@media screen and (min-width: 118.75em) {
  .hero--wave .extra-img {
    top: 220px;
  }
  .hero--wave .text-box {
    max-width: 80%;
  }
  .hero--wave .text-box h2 {
    font-size: 82px;
    line-height: 90px;
    max-width: 450px;
    left: -220px;
    text-shadow: 0 0 100px rgba(255, 255, 255, 0.9);
  }
  .hero--wave .text-box > img {
    max-width: 128px;
    left: 70px;
    top: 65px;
  }
  .hero--wave .text-box > div {
    padding-left: 200px;
  }
}

.hero--subpage {
  text-align: center;
  padding-top: 132px;
  padding-bottom: 200px;
}
.hero--subpage h1 {
  font-size: 42px;
  line-height: 52px;
}
.hero--subpage p {
  color: #ffffff;
  line-height: 24px;
  max-width: 85%;
  display: inline-block;
}
.hero--subpage .subtitle {
  font-size: 1.25rem;
}
@media print, screen and (min-width: 47.5em) {
  .hero--subpage .subtitle {
    font-size: 1.5rem;
  }
}
@media print, screen and (min-width: 64em) {
  .hero--subpage .subtitle {
    font-size: 2rem;
  }
}
@media print, screen and (min-width: 47.5em) {
  .hero--subpage {
    padding-top: 172px;
  }
  .hero--subpage h1 {
    font-size: 62px;
    margin-bottom: 20px;
  }
}
@media print, screen and (min-width: 64em) {
  .hero--subpage {
    padding-top: 172px;
  }
  .hero--subpage h1 {
    font-size: 82px;
  }
  .hero--subpage p {
    font-size: 18px;
  }
}
@media screen and (min-width: 80em) {
  .hero--subpage {
    padding-top: 172px;
  }
  .hero--subpage h1 {
    font-size: 90px;
    line-height: 80px;
  }
  .hero--subpage p {
    line-height: 28px;
  }
}
@media (min-width: 1440px) {
  .hero--subpage {
    padding-top: 170px;
  }
}
@media screen and (min-width: 118.75em) {
  .hero--subpage {
    padding-top: 170px;
  }
}

.main {
  color: #333333;
  position: relative;
}
.main hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 4px solid #aa273e;
  margin: 1em 0;
  padding: 0;
}
.main__wrapper {
  background: #ffffff;
  margin-top: -170px;
  margin-bottom: 50px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  padding: 30px 20px;
}
.main__wrapper .no-pad {
  margin: 0 -20px;
}
.main__wrapper .top-pad {
  padding-top: 30px;
}
.main__wrapper p {
  margin-bottom: 35px;
}
.main__wrapper h2 {
  font-size: 34px;
  line-height: 44px;
  font-family: "avenir-lt-pro", "Avenir LT W01_95 Black1475556", sans-serif;
  font-weight: 800;
  margin-bottom: 60px;
}
.main__wrapper h3 {
  font-size: 24px;
  line-height: 34px;
  color: #26247b;
}
.main__wrapper .heading {
  line-height: 26px;
  color: #000000;
  margin-bottom: 50px;
  font-weight: bold;
}
.main__wrapper .no-pad .img-wrapper {
  height: 300px;
  background: #f5f5f5 url("../images/universal/main-image.jpg") center center no-repeat;
  background-size: cover;
  margin-bottom: 30px;
}
.main__wrapper .box {
  border-top: 4px solid #aa273e;
  padding-top: 30px;
  margin-bottom: 30px;
}
.main__wrapper .box h4 {
  font-size: 24px;
  font-family: "avenir-lt-pro", "Avenir LT W01_95 Black1475556", sans-serif;
  font-weight: 800;
}
.main__wrapper .box ul {
  list-style-type: none;
  margin-left: 0;
}
.main__wrapper .box ul li {
  border-bottom: 1px solid rgba(102, 102, 102, 0.2);
  padding: 20px 0 20px 25px;
  background: url("../images/universal/main-arrow@x2.png") 0 26px no-repeat;
  background-size: 16px auto;
}
.main__wrapper .box ul li:last-child {
  border-bottom: none;
}
.main__wrapper .box ul li > img {
  width: 16px;
  display: inline-block;
  vertical-align: top;
  margin-top: 6px;
}
.main__wrapper .box ul li a {
  color: #333333;
}
.main__wrapper .box ul li a:hover {
  color: #aa273e;
}
.main__wrapper .box ul.no-icon li {
  padding: 20px 0;
  color: #26247b;
  background: none;
}
@media print, screen and (min-width: 47.5em) {
  .main__wrapper {
    margin: -170px 15px 50px;
  }
  .main__wrapper h2 {
    margin-bottom: 40px;
  }
  .main__wrapper .no-pad .img-wrapper {
    height: 540px;
  }
}
@media print, screen and (min-width: 64em) {
  .main__wrapper h2 {
    font-size: 54px;
    line-height: 64px;
  }
  .main__wrapper h3 {
    font-size: 34px;
    line-height: 40px;
  }
  .main__wrapper .box h4 {
    font-size: 34px;
    font-weight: bold;
    font-family: "avenir-lt-pro", "Avenir LT W01_95 Black1475556", sans-serif;
    font-weight: 800;
  }
}
@media screen and (min-width: 80em) {
  .main {
    font-size: 16px;
  }
  .main__wrapper {
    padding: 70px 40px;
  }
  .main__wrapper .no-pad {
    margin: 0 -40px;
  }
}
@media screen and (max-width: 1023px) {
  a.lhn_help_btn {
    display: none !important;
  }
}
.main__items p {
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
}
.main__items .item {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(102, 102, 102, 0.2);
}
.main__items .item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.main__items .item > div {
  margin-bottom: 10px;
}
.main__items .item > div span {
  color: #26247b;
  font-weight: bold;
}
@media print, screen and (min-width: 47.5em) {
  .main__items .item > div {
    display: inline-block;
    padding-right: 30px;
  }
}
@media screen and (min-width: 80em) {
  .main__items .item {
    background: url("../images/universal/main-arrow-blue.png") 98% 10px no-repeat;
  }
}
.media.media--universal {
  background-image: url("../images/product/bg-wave-gray.png");
  padding-top: 65px;
  margin-top: 0;
}
.media.media--universal.-purple {
  background-image: url("../images/product/bg-wave-blue.png");
}
.media.media--universal.extra-space-bottom {
  position: relative;
  background-position: center -250px;
}
@media print, screen and (min-width: 47.5em) {
  .media.media--universal.extra-space-bottom {
    background-position: center -250px;
  }
}
@media screen and (min-width: 80em) {
  .media.media--universal.extra-space-bottom {
    background-position: center -500px;
  }
}
@media screen and (min-width: 118.75em) {
  .media.media--universal.extra-space-bottom {
    background-position: center -125px;
  }
}
.media.media--universal.extra-space-bottom > .row {
  padding-bottom: 175px;
}
@media screen and (min-width: 30em) {
  .media.media--universal {
    background-position: -150px -70px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .media.media--universal {
    background-position: -200px -300px;
  }
}
@media print, screen and (min-width: 64em) {
  .media.media--universal {
    background-position: 0 -300px;
  }
}
@media screen and (min-width: 80em) {
  .media.media--universal {
    background-position: 0 -600px;
  }
}
@media screen and (min-width: 118.75em) {
  .media.media--universal {
    background-position: 0 -50px;
  }
}

.hero--carrers {
  background-image: url("../images/company/carrers/bg-hero.png");
}
.main__jobs .job {
  padding: 30px 20px 0;
  display: block;
  color: #000000;
  transition: background 0.25s ease-in-out;
}
.main__jobs .job:after {
  content: "";
  height: 1px;
  background: rgba(102, 102, 102, 0.2);
  width: 100%;
  display: block;
  margin: 0 auto;
}
.main__jobs .job p {
  line-height: 28px;
}
.main__jobs .job .button {
  font-size: 18px;
  margin-bottom: 30px;
}
.main__jobs .job__title {
  font-size: 16px;
  color: #000000;
  font-weight: 600;
  margin-bottom: 5px;
}
.main__jobs .job__info {
  font-size: 14px;
  margin-bottom: 30px;
  color: #666666;
}
.main__jobs .job:last-child {
  border-bottom: none;
}
.main__jobs .job:hover {
  background-color: rgba(102, 102, 102, 0.1);
}
.main__jobs .job:hover .job__title {
  color: #26247b;
}
@media print, screen and (min-width: 47.5em) {
  .main__jobs .job {
    padding: 40px 40px 0;
    position: relative;
  }
  .main__jobs .job .button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
  }
}
@media print, screen and (min-width: 64em) {
  .main__jobs .job__title {
    font-size: 18px;
  }
  .main__jobs .job__info {
    font-size: 16px;
  }
  .main__jobs .job .button {
    font-size: 22px;
  }
}
.main--carrers .main__wrapper {
  padding: 0;
  margin-bottom: 65px;
}
.work {
  position: relative;
  padding-top: 80px;
  text-align: center;
}
.work:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 50px;
  top: 0;
  background: transparent url("../images/company/carrers/bg-work-white.png") no-repeat;
  background-position: -200px 0;
  background-size: 760px 100%;
}
.work h3 {
  font-size: 34px;
  line-height: 42px;
  display: inline-block;
  margin-bottom: 60px;
}
.work .items {
  text-align: left;
  margin-bottom: 70px;
  color: #666666;
  line-height: 20px;
}
.work .items .item {
  display: table;
  margin-bottom: 20px;
}
.work .items .item > span {
  display: table-cell;
  vertical-align: middle;
}
.work .items .item > span:last-child {
  padding: 0 30px 0 40px;
}
.work .items .item .icon {
  background: url("../images/company/carrers/icons-work/icons-work-all.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  width: 50px;
  height: 55px;
}
.work .items .item--insurance .icon {
  background-position: -51px 0;
}
.work .items .item--certifications .icon {
  background-position: -100px 0;
}
.work .items .item--plan .icon {
  background-position: -145px 0;
}
.work .items .item--environment .icon {
  background-position: -190px 0;
}
.work .items .item--culture .icon {
  background-position: -248px 0;
}
.work .items .item--medical .icon {
  background-position: -302px 0;
}
.work .items .item--bonus .icon {
  background-position: -356px 0;
}
.work .items .item--opportunity .icon {
  background-position: -410px 0;
}
@media screen and (min-width: 30em) {
  .work:before {
    background-position: -250px 0;
    background-size: 1024px 100%;
  }
}
@media print, screen and (min-width: 47.5em) {
  .work {
    padding-top: 120px;
  }
  .work:before {
    height: 100px;
    background-position: -600px 0;
    background-size: 1880px auto;
  }
  .work h3 {
    font-size: 48px;
  }
  .work .items {
    overflow: auto;
  }
  .work .items .item {
    width: 40%;
    margin-left: 10%;
    float: left;
  }
  .work .items .item .icon {
    background-image: url("../images/company/carrers/icons-work/icons-work-all-medium.png");
    background-position: -3px -2px;
    width: 68px;
    height: 70px;
  }
  .work .items .item--insurance .icon {
    background-position: -73px 0;
  }
  .work .items .item--certifications .icon {
    background-position: -138px 0;
  }
  .work .items .item--plan .icon {
    background-position: -200px 0;
  }
  .work .items .item--environment .icon {
    background-position: -260px 0;
  }
  .work .items .item--culture .icon {
    background-position: -339px 0;
  }
  .work .items .item--medical .icon {
    background-position: -414px 0;
  }
  .work .items .item--bonus .icon {
    background-position: -489px 0;
  }
  .work .items .item--opportunity .icon {
    background-position: -557px 0;
  }
}
@media print, screen and (min-width: 64em) {
  .work {
    padding-top: 150px;
  }
  .work h3 {
    font-size: 62px;
  }
  .work .items {
    margin-bottom: 150px;
    overflow: hidden;
  }
  .work .items .item {
    width: 29%;
    margin-left: 4%;
    font-size: 18px;
    opacity: 0;
    transform: translate(20%, 0);
    transition: all 1s ease-in-out;
  }
  .work.animated .items .item {
    transform: translate(0, 0);
    opacity: 1;
  }
  .work.animated .items .item:nth-child(1) {
    transform: translate(0, 0);
    transition-delay: 0.25s;
    opacity: 1;
  }
  .work.animated .items .item:nth-child(2) {
    transform: translate(0, 0);
    transition-delay: 0.5s;
    opacity: 1;
  }
  .work.animated .items .item:nth-child(3) {
    transform: translate(0, 0);
    transition-delay: 0.75s;
    opacity: 1;
  }
  .work.animated .items .item:nth-child(4) {
    transform: translate(0, 0);
    transition-delay: 1s;
    opacity: 1;
  }
  .work.animated .items .item:nth-child(5) {
    transform: translate(0, 0);
    transition-delay: 1.25s;
    opacity: 1;
  }
  .work.animated .items .item:nth-child(6) {
    transform: translate(0, 0);
    transition-delay: 1.5s;
    opacity: 1;
  }
  .work.animated .items .item:nth-child(7) {
    transform: translate(0, 0);
    transition-delay: 1.75s;
    opacity: 1;
  }
  .work.animated .items .item:nth-child(8) {
    transform: translate(0, 0);
    transition-delay: 2s;
    opacity: 1;
  }
  .work.animated .items .item:nth-child(9) {
    transform: translate(0, 0);
    transition-delay: 2.25s;
    opacity: 1;
  }
}
@media screen and (min-width: 80em) {
  .work {
    padding-top: 200px;
  }
  .work:before {
    height: 100px;
    background-position: 0 0;
    background-size: 100% auto;
  }
  .work h3 {
    font-size: 82px;
    margin-bottom: 100px;
  }
}
@media screen and (min-width: 118.75em) {
  .work {
    padding-top: 250px;
  }
  .work:before {
    height: 150px;
  }
}

section.testimonials h3 {
  font-size: 34px;
  line-height: 42px;
  margin-bottom: 20px;
  text-align: center;
}
section.testimonials .slider-nav {
  padding: 0 10px;
  margin-top: -45px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
  float: left;
}
section.testimonials .slider-nav nav > a {
  color: #000000;
  display: block;
  border-bottom: 1px solid #c6c6c6;
  padding: 15px 0;
}
section.testimonials .slider-nav nav > a:last-child {
  border-bottom: none;
}
section.testimonials .slider-nav nav > a:hover, section.testimonials .slider-nav nav > a.active {
  color: #aa273e;
}
section.testimonials .slider-nav .arrows {
  position: relative;
  margin-bottom: 20px;
}
section.testimonials .slider-nav .arrows > * {
  display: inline-block;
  vertical-align: middle;
}
section.testimonials .slider-nav .arrows a {
  width: 35px;
  height: 30px;
  opacity: 0.2;
  color: #000000;
}
section.testimonials .slider-nav .arrows a svg {
  fill: #000000;
}
section.testimonials .slider-nav .arrows a.back {
  transform: rotate(180deg);
}
section.testimonials .slider-nav .arrows a.next {
  margin-right: 0;
  margin-left: 20px;
}
section.testimonials .slider-nav .arrows a:hover {
  opacity: 1;
}
section.testimonials .item > p {
  font-size: 20px;
  line-height: 28px;
  font-weight: 300;
  font-style: italic;
  color: #666666;
  padding-left: 10px;
  position: relative;
  opacity: 0;
  transform: translate(20%, 0);
  transition: all 1s ease-in-out;
}
section.testimonials .item > p:before {
  content: "“";
  font-size: 140px;
  line-height: 0;
  position: absolute;
  z-index: 0;
  top: -40px;
  left: 0;
  opacity: 0.1;
  transform: rotate(180deg);
}
@media print, screen and (min-width: 64em) {
  section.testimonials .item > p:before {
    font-size: 300px;
    top: -85px;
    left: -25px;
  }
}
section.testimonials .item .person {
  margin: 30px auto 40px 20px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translate(20%, 0);
  transition: all 1s ease-in-out;
}
section.testimonials .item .person > * {
  display: inline-block;
  transition: all 1s ease-in-out;
  opacity: 0;
  transform: translate(20%, 0);
}
section.testimonials .item .person .img-wrapper {
  max-width: 80px;
}
section.testimonials .item .person .desc {
  max-width: 200px;
  padding: 15px 15px 10px;
  background: #ffffff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  margin-top: -20px;
  margin-left: -20px;
}
section.testimonials .item .person .desc h4 {
  font-size: 20px;
  margin-bottom: 0;
}
section.testimonials .item .person .desc p {
  margin-bottom: 0;
  font-size: 12px;
}
section.testimonials .item .button {
  float: right;
  margin-bottom: 0;
}
section.testimonials .owl-item {
  padding: 50px 20px 5px;
}
section.testimonials.animated .owl-item.active .person, section.testimonials.animated .owl-item.active p {
  transform: translate(0, 0);
  opacity: 1;
}
section.testimonials.animated .owl-item.active .person > *:nth-child(1), section.testimonials.animated .owl-item.active p > *:nth-child(1) {
  transform: translate(0, 0);
  transition-delay: 0.25s;
  opacity: 1;
}
section.testimonials.animated .owl-item.active .person > *:nth-child(2), section.testimonials.animated .owl-item.active p > *:nth-child(2) {
  transform: translate(0, 0);
  transition-delay: 0.5s;
  opacity: 1;
}
@media print, screen and (min-width: 47.5em) {
  section.testimonials h3 {
    font-size: 48px;
  }
  section.testimonials .slider-nav {
    margin: -45px auto 60px;
    float: none;
    width: 115px;
  }
  section.testimonials .item > p {
    width: 58%;
    margin-left: 8%;
    display: inline-block;
    font-size: 24px;
    line-height: 32px;
  }
  section.testimonials .item .person {
    float: left;
    margin-top: 0;
    margin-left: 0;
  }
  section.testimonials .item .person .img-wrapper {
    max-width: 180px;
  }
  section.testimonials .item .person .desc {
    margin-left: -145px;
  }
}
@media print, screen and (min-width: 64em) {
  section.testimonials h3 {
    font-size: 62px;
    margin-bottom: 60px;
  }
  section.testimonials .item > p {
    width: 49%;
    margin-left: 0;
    font-size: 32px;
    line-height: 38px;
  }
  section.testimonials .item .person {
    max-width: 50%;
  }
  section.testimonials .item .person .img-wrapper {
    max-width: 320px;
  }
  section.testimonials .item .person .desc {
    max-width: none;
    margin-left: -40%;
    padding: 15px 40px 10px;
  }
  section.testimonials .item .person .desc p {
    font-size: 16px;
    margin-bottom: 10px;
  }
  section.testimonials .item .person .desc h4 {
    font-size: 34px;
  }
}
@media screen and (min-width: 80em) {
  section.testimonials .slider-nav {
    margin: -45px auto 120px;
  }
  section.testimonials h3 {
    font-size: 82px;
    margin-bottom: 30px;
  }
  section.testimonials .item {
    min-height: 500px;
  }
  section.testimonials .item > p {
    width: 60%;
    margin-left: 5%;
  }
  section.testimonials .item .person {
    max-width: 37%;
  }
  section.testimonials .item .person .desc {
    position: absolute;
    right: -40%;
    bottom: -80px;
    padding: 35px 70px 25px;
  }
  section.testimonials .item .button {
    position: absolute;
    bottom: 0;
    right: 50px;
  }
}
.hero--left {
  background-image: url("../images/company/carrers/bg-hero.png");
  padding-bottom: 50px;
  position: relative;
  z-index: 2;
}
.hero--left > .row {
  position: relative;
  z-index: 1;
}
.hero--left .map-column {
  margin-top: 0;
  margin-bottom: -50px;
}
.hero--left .map-column a {
  margin-bottom: 0;
}
@media print, screen and (min-width: 64em) {
  .hero--left .map-column {
    margin-bottom: 0;
  }
}
.hero--left .map-column .main__wrapper {
  margin-top: 0;
}
.hero--left .map-column .map-box {
  max-width: none;
  margin: 0;
  width: 100%;
}
@media print, screen and (min-width: 64em) {
  .hero--left .map-column .map-box {
    margin: 50px 0 0;
    max-width: 360px;
  }
}
.hero--left .articleSidebar-float {
  display: none;
}
@media screen and (min-width: 80em) {
  .hero--left .articleSidebar-float {
    display: block;
  }
}
.hero--left .articleSidebar {
  margin: 0;
  position: relative;
}
@media print, screen and (min-width: 64em) {
  .hero--left .articleSidebar {
    position: absolute;
    margin: 50px 0 0;
    top: 0;
    right: 15px;
  }
}
.hero--left, .hero--left h1 {
  text-align: left;
}
.hero--left a {
  color: #ffffff;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}
.hero--left .hero-link {
  margin-left: 4px;
}
.hero--left .hero-link a {
  position: relative;
}
.hero--left .hero-link a:before {
  content: "";
  display: block;
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  background: #fff;
  height: 1px;
  transition: 0.2s;
  opacity: 0;
}
.hero--left .hero-link a:hover:before {
  bottom: -2px;
  opacity: 1;
}
@media print, screen and (min-width: 47.5em) {
  .hero--left .hero-link {
    margin-left: 2px;
  }
}
.hero--left .hero-published {
  float: right;
  padding-right: 15px;
  margin-bottom: -24px;
}
.hero--left h1 {
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 60px;
}
.hero--left .map-box {
  background: #ffffff;
  color: #000000;
  padding: 30px 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.hero--left .map-box .status, .hero--left .map-box .location {
  padding-bottom: 25px;
  margin-bottom: 25px;
}
.hero--left .map-box .status > span, .hero--left .map-box .location > span {
  font-weight: bold;
  max-width: 50%;
  text-align: right;
}
.hero--left .map-box .location {
  margin-bottom: 35px;
}
.hero--left .map-box .status {
  border-bottom: 1px solid rgba(102, 102, 102, 0.5);
}
.hero--left .map-box .map {
  padding-bottom: 0;
  margin-bottom: 30px;
}
.hero--left .map-box .map img {
  width: 100%;
}
.hero--left .map-box .button {
  display: inline-block;
  padding-left: 60px;
  padding-right: 60px;
  margin-bottom: 0;
}
@media screen and (min-width: 30em) {
  .hero--left {
    padding-top: 120px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .hero--left {
    padding-bottom: 80px;
  }
  .hero--left .columns {
    padding: 0 30px;
  }
  .hero--left h1 {
    font-size: 42px;
    margin-bottom: 50px;
  }
  .hero--left .map-box {
    padding: 30px 35px;
    margin-bottom: -200px;
  }
  .hero--left .map-box .map {
    max-height: 145px;
    overflow: hidden;
  }
}
@media print, screen and (min-width: 64em) {
  .hero--left {
    padding: 90px 15px;
    min-height: 520px;
    margin-bottom: 50px;
  }
  .hero--left .hero-link {
    margin-top: 60px;
    margin-bottom: 30px;
    font-size: 18px;
  }
  .hero--left .hero-published {
    margin-top: 60px;
  }
  .hero--left h1 {
    font-size: 48px;
  }
  .hero--left .columns {
    position: relative;
    padding: 0 15px;
  }
  .hero--left .map-box {
    position: absolute;
    right: 15px;
    top: 0;
    max-width: 35%;
  }
  .hero--left .map-box .button {
    width: 100%;
  }
}
@media screen and (min-width: 80em) {
  .hero--left {
    padding: 80px 0;
    min-height: 0;
  }
  .hero--left h1 {
    font-size: 58px;
  }
  .hero--left .hero-link, .hero--left .hero-published {
    margin-top: 70px;
  }
  .hero--left .hero-published {
    margin-bottom: 0;
    padding-right: 7px;
  }
  .hero--left .map-box {
    width: 360px;
    padding: 35px 35px;
  }
}
.main--single {
  z-index: 100;
}
.main--single .main__wrapper {
  padding: 0;
  margin-top: 0;
  box-shadow: none;
}
@media print, screen and (min-width: 47.5em) {
  .main--single .main__wrapper > p {
    font-size: 18px;
  }
}
@media print, screen and (min-width: 64em) {
  .main--single .main__wrapper .box {
    min-height: 360px;
  }
}
@media screen and (min-width: 80em) {
  .main--single .main__wrapper {
    margin-left: 0;
    margin-right: 0;
  }
  .main--single .main__wrapper .box p {
    margin-bottom: 20px;
  }
  .main--single .main__wrapper .box .top-pad {
    padding-top: 20px;
  }
}
.work--form .file-wrapper {
  margin-bottom: 50px;
}
.work--form a {
  color: #26247b;
}
.work--form form {
  padding: 0 10px;
}
.work--form form button {
  margin-top: 30px;
  margin-bottom: 50px;
  width: 100%;
}
.work--form h3 {
  margin-bottom: 40px;
}
.work--form h3 + p {
  margin-bottom: 50px;
  max-width: 87%;
  display: inline-block;
}
@media print, screen and (min-width: 47.5em) {
  .work--form form button {
    margin-top: 30px;
    margin-bottom: 40px;
  }
}
@media print, screen and (min-width: 64em) {
  .work--form h3 {
    margin-bottom: 50px;
  }
  .work--form h3 + p {
    font-size: 22px;
    line-height: 34px;
    letter-spacing: -1px;
  }
}
@media screen and (min-width: 80em) {
  .work--form {
    margin-bottom: 100px;
  }
  .work--form h3 + p {
    margin-bottom: 84px;
  }
  .work--form form {
    padding: 0 25px;
  }
}
#gform_drag_drop_area_1_8 {
  margin-top: 10px;
  margin-bottom: 20px;
}

#input_1_9 {
  margin-top: 5px;
}

#gform_preview_1_8 {
  margin-bottom: 30px;
}

#gform_preview_1_8:empty {
  margin-bottom: 0px;
}

@media screen and (min-width: 80em) {
  .additional + .bar {
    margin-top: 205px;
  }
}
@media screen and (min-width: 118.75em) {
  .additional + .bar {
    margin-top: 255px;
  }
}
.additional--newsletter {
  background-image: url("../images/waves/newsletter.jpg");
  background-position: -100px 0;
  margin-top: -50px;
  padding-top: 80px;
}
@media print, screen and (min-width: 47.5em) {
  .additional--newsletter {
    background-position: center 0;
  }
}
@media print, screen and (min-width: 64em) {
  .additional--newsletter {
    margin-top: -80px;
    padding-top: 100px;
  }
}
@media screen and (min-width: 80em) {
  .additional--newsletter {
    padding-top: 120px;
  }
}
.additional--newsletter .text-center p {
  text-align: center;
}
.additional--newsletter .content {
  padding: 25px 15px;
}
.additional--newsletter .content .button {
  float: none;
  display: inline-block;
}
.additional--newsletter .content p {
  max-width: none;
}
.additional--newsletter .content form {
  margin-top: 30px;
  position: relative;
}
.additional--newsletter .content form .gform_fields > li {
  margin-bottom: 15px;
}
.additional--newsletter .content form .gform_fields > li:last-child {
  margin-bottom: 0;
}
.additional--newsletter .content form .gf-privacy-notice {
  text-align: center;
  padding-top: 10px;
  margin-top: 0;
  margin-bottom: 0;
}
.additional--newsletter .content form input {
  margin-bottom: 0;
}
.additional--newsletter .content form .button {
  width: 100%;
}
@media print, screen and (min-width: 64em) {
  .additional--newsletter .content {
    padding: 30px;
  }
  .additional--newsletter .content form .gf-privacy-notice {
    text-align: left;
    max-width: 300px;
    padding-top: 0;
    padding-bottom: 10px;
    padding-left: 0.45rem;
  }
  .additional--newsletter .content form .button {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 64px;
    margin: 0;
    width: auto;
  }
  .additional--newsletter .content .gform_validation_error form .button {
    bottom: 33px;
  }
}
@media screen and (min-width: 80em) {
  .additional--newsletter {
    background-size: 100% auto;
    max-height: 470px;
  }
}
@media screen and (min-width: 118.75em) {
  .additional--newsletter {
    min-height: 0;
    padding-top: 0;
  }
}

.main--awards {
  margin-top: -180px;
  margin-bottom: 80px;
}
.main--awards .award {
  background: #ffffff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
  padding: 30px 40px 20px;
  text-align: center;
}
.main--awards .award .year {
  font-size: 18px;
  margin-bottom: 15px;
  color: #666666;
}
.main--awards .award h4 {
  font-size: 28px;
}
@media print, screen and (min-width: 47.5em) {
  .main--awards .award {
    min-height: 430px;
    margin: 0 15px 40px;
  }
  .main--awards .award h4 {
    line-height: 34px;
  }
  .main--awards .award .img-wrapper img {
    max-height: 230px;
  }
}
@media print, screen and (min-width: 64em) {
  .main--awards .award {
    min-height: 450px;
    margin: 0 0 30px;
  }
  .main--awards .awards-wrapper > .columns .award {
    transition: all 1.3s ease-out;
    transform: translate(-10%, 0);
    transition-delay: 0.5s;
    opacity: 0;
  }
  .main--awards .awards-wrapper > .columns .award.animated {
    transform: translate(0, 0);
    opacity: 1;
  }
  .main--awards .awards-wrapper > .columns.img-wrapper {
    transform: translate(10%, 0);
  }
  .main--awards .awards-wrapper > .columns:nth-child(1) .award {
    transition-delay: 0.1428571429s;
  }
  .main--awards .awards-wrapper > .columns:nth-child(2) .award {
    transition-delay: 0.2857142857s;
  }
  .main--awards .awards-wrapper > .columns:nth-child(3) .award {
    transition-delay: 0.4285714286s;
  }
  .main--awards .awards-wrapper > .columns:nth-child(4) .award {
    transition-delay: 0.5714285714s;
  }
  .main--awards .awards-wrapper > .columns:nth-child(5) .award {
    transition-delay: 0.7142857143s;
  }
  .main--awards .awards-wrapper > .columns:nth-child(6) .award {
    transition-delay: 0.8571428571s;
  }
  .main--awards .awards-wrapper > .columns:nth-child(7) .award {
    transition-delay: 1s;
  }
  .main--awards .awards-wrapper > .columns:nth-child(8) .award {
    transition-delay: 1.1428571429s;
  }
}
@media screen and (min-width: 80em) {
  .main--awards .award {
    padding: 30px 20px 20px;
  }
}
.additional--references {
  padding-top: 0;
  margin-top: 0;
  background-image: none;
  text-align: center;
  margin-bottom: 40px;
}
.additional--references h3 {
  color: #000000;
  margin-top: 0;
  margin-bottom: 30px;
}
.additional--references p {
  color: #666666;
  margin-bottom: 20px;
}
.additional--references .button {
  width: 100%;
}
.additional--references + .form-container {
  padding-bottom: 50px;
}
@media print, screen and (min-width: 47.5em) {
  .additional--references h3 {
    margin-bottom: 20px;
  }
  .additional--references p {
    margin-bottom: 30px;
    max-width: 90%;
    display: inline-block;
  }
  .additional--references .button {
    width: auto;
    min-width: 290px;
  }
}
@media print, screen and (min-width: 64em) {
  .additional--references {
    margin-top: 50px;
  }
  .additional--references h3 {
    font-size: 82px;
  }
  .additional--references p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 40px;
  }
  .additional--references .button {
    padding: 25px 0;
    font-size: 22px;
  }
}
@media screen and (min-width: 118.75em) {
  .additional--references {
    min-height: 0;
  }
}

.hero--contact {
  background-image: url("../images/company/contact/bg-hero.png");
  padding-bottom: 100px;
}
.hero--contact h1 {
  margin-bottom: 50px;
}
@media print, screen and (min-width: 47.5em) {
  .hero--contact h1 {
    margin-bottom: 80px;
  }
}
@media print, screen and (min-width: 64em) {
  .hero--contact {
    padding-top: 150px;
    padding-bottom: 150px;
  }
}
@media screen and (min-width: 80em) {
  .hero--contact h1 {
    margin-bottom: 50px;
  }
}
.main--boxes {
  margin-top: -180px;
  margin-bottom: 60px;
  position: relative;
}
.main--boxes .box {
  background: #ffffff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
  padding: 30px 20px;
  text-align: center;
}
.main--boxes .box .button {
  margin-bottom: 0;
  font-size: 18px;
}
.main--boxes .box p {
  margin-bottom: 20px;
}
.main--boxes .box h4 {
  font-size: 24px;
}
.main--boxes .box ul {
  list-style-type: none;
  margin-left: 0;
  text-align: left;
}
.main--boxes .box ul li {
  border-bottom: 1px solid rgba(102, 102, 102, 0.2);
  padding: 20px 0;
}
.main--boxes .box ul li > span {
  display: block;
}
.main--boxes .box ul li a {
  color: #333333;
  font-weight: bold;
}
.main--boxes .box ul li a:hover {
  color: #aa273e;
}
.main--boxes .box ul li a.mail {
  color: #26247b;
}
.main--boxes .box ul li:last-child {
  border-bottom: none;
}
.main--boxes .boxes-wrapper > .columns .box {
  transition: all 1.3s ease-out;
  transform: translate(-10%, 0);
  transition-delay: 0.5s;
  opacity: 0;
}
.main--boxes .boxes-wrapper > .columns .box.animated {
  transform: translate(0, 0);
  opacity: 1;
}
.main--boxes .boxes-wrapper > .columns.img-wrapper {
  transform: translate(10%, 0);
}
.main--boxes .boxes-wrapper > .columns:nth-child(1) .box {
  transition-delay: 0.25s;
}
.main--boxes .boxes-wrapper > .columns:nth-child(2) .box {
  transition-delay: 0.5s;
}
.main--boxes .boxes-wrapper > .columns:nth-child(3) .box {
  transition-delay: 0.75s;
}
.main--boxes .boxes-wrapper > .columns:nth-child(4) .box {
  transition-delay: 1s;
}
.main--boxes .boxes-wrapper > .columns:nth-child(5) .box {
  transition-delay: 1.25s;
}
.main--boxes .boxes-wrapper > .columns:nth-child(6) .box {
  transition-delay: 1.5s;
}
.main--boxes .boxes-wrapper > .columns:nth-child(7) .box {
  transition-delay: 1.75s;
}
.main--boxes .boxes-wrapper > .columns:nth-child(8) .box {
  transition-delay: 2s;
}
@media print, screen and (min-width: 47.5em) {
  .main--boxes .xlarge-centered {
    padding: 0 30px;
  }
  .main--boxes .box {
    padding: 40px 30px 20px;
  }
  .main--boxes .box:not(.box--info) {
    min-height: 330px;
    margin-bottom: 0;
  }
  .main--boxes .box .button {
    min-width: 270px;
  }
  .main--boxes .box h4 {
    font-size: 28px;
    line-height: 26px;
    margin-bottom: 20px;
  }
  .main--boxes .box ul li {
    padding: 15px 0;
  }
  .main--boxes .box ul li > span {
    float: right;
  }
  .main--boxes .box--info {
    padding: 30px;
  }
  .main--boxes .box--address h4 {
    margin-bottom: 35px;
  }
  .main--boxes .box--address p {
    margin-bottom: 50px;
  }
}
@media print, screen and (min-width: 64em) {
  .main--boxes {
    margin-bottom: 100px;
  }
  .main--boxes .box--info {
    padding: 40px 70px;
  }
}
@media screen and (min-width: 80em) {
  .main--boxes .box {
    min-height: 330px;
  }
  .main--boxes .box--info {
    padding: 40px 20px;
  }
}
.map {
  height: 275px;
  background: #f5f5f5;
  background-size: cover;
  margin-bottom: -50px;
}
@media print, screen and (min-width: 47.5em) {
  .map {
    height: 430px;
  }
}
@media print, screen and (min-width: 64em) {
  .map {
    height: 640px;
    margin-bottom: -80px;
  }
}
@media screen and (min-width: 80em) {
  .map {
    height: 470px;
    margin-bottom: -55px;
  }
}
@media screen and (min-width: 118.75em) {
  .map {
    margin-bottom: -80px;
  }
}

.work--contact h3 {
  max-width: none;
  margin-bottom: 52px;
}
.work--contact p {
  line-height: 28px;
  margin-bottom: 30px;
}
.work--contact textarea {
  margin-bottom: 30px;
}
.work--contact .button {
  width: 100%;
  margin-bottom: 90px;
}
.work--contact .g-recaptcha, .work--contact .cf-turnstile {
  margin-bottom: 24px;
}
.work--contact #field_3_29 {
  margin: 25px 0 40px 0px;
}
.work--contact #field_3_29 .gsection_title {
  margin: 0;
}
.work--contact #field_3_40 .gfield_label {
  margin-bottom: 20px;
}
.work--contact #input_3_35 li {
  display: inline-block;
  width: 100%;
}
@media print, screen and (min-width: 47.5em) {
  .work--contact #input_3_35 li {
    width: 33.33%;
  }
  .work--contact #input_3_35 li:nth-child(3n+2) {
    padding-left: 20px;
  }
  .work--contact #input_3_35 li:nth-child(3n+3) {
    padding-left: 40px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .work--contact p {
    margin-bottom: 60px;
  }
  .work--contact #gform_fields_3.gform_fields {
    display: flex;
    flex-wrap: wrap;
  }
  .work--contact form .gf-privacy-notice {
    padding-left: 0.45rem;
  }
}
@media print, screen and (min-width: 64em) {
  .work--contact {
    /*
    #gform_fields_3 .ginput_container.ginput_container_checkbox{
    	margin-top: 30px;
    	margin-left: 20px;
    	margin-bottom: 27px;

    	input{
    		margin-bottom: 20px;
    	}
    }
    */
  }
  .work--contact p {
    display: block;
    max-width: 95%;
    margin: 0 auto 70px;
    font-size: 22px;
  }
  .work--contact #field_3_40 .gfield_label {
    font-size: 22px;
    margin-bottom: 18px;
    margin-top: 30px;
  }
  .work--contact form {
    padding: 0 84px;
  }
}
.sections {
  position: relative;
  padding-top: 90px;
}
.sections > .bg {
  height: 470px;
  position: absolute;
  z-index: 0;
  top: 0;
  width: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.sections > .bg:after {
  content: "";
  width: 100%;
  height: 90px;
  position: absolute;
  bottom: 0;
  background: url("../images/waves/regions-wave-white.svg") center center repeat-x;
  background-size: cover;
}
.sections > .row {
  position: relative;
}
.sections h3 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}
.sections h3 + p {
  line-height: 28px;
  text-align: center;
  display: block;
  margin-bottom: 40px;
}
.sections--regular {
  padding: 50px 0;
}
@media print, screen and (min-width: 47.5em) {
  .sections--regular {
    padding: 75px 0;
  }
}
@media screen and (min-width: 118.75em) {
  .sections--regular {
    padding: 100px 0;
  }
}
@media print, screen and (min-width: 47.5em) {
  .sections h3 {
    font-size: 48px;
    margin-bottom: 0;
  }
  .sections h3 + p {
    margin-bottom: 60px;
  }
}
@media print, screen and (min-width: 64em) {
  .sections h3 {
    font-size: 62px;
  }
  .sections h3 + p {
    max-width: 90%;
    display: block;
    margin: 0 auto 60px;
  }
}
.regions .bg {
  background-image: url("../images/company/contact/regions-bg.png");
}
.regions h3 {
  color: #ffffff;
}
.regions .content {
  background: #ffffff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}
.regions .content .header {
  background: #26247b;
}
.regions .content .header > a {
  padding: 40px 20px;
  display: block;
}
.regions .content .header > a:after {
  content: "";
  width: 16px;
  height: 16px;
  background: url("../images/company/contact/dropdown.png");
  float: right;
  margin-top: 5px;
}
.regions .content .header a {
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
}
.regions .content .header > .menu {
  max-height: 0;
  overflow: hidden;
  transition: all 0.25s ease-in-out;
}
.regions .content .header > .menu li {
  display: block;
  border-bottom: 1px solid rgba(245, 245, 245, 0.1);
}
.regions .content .header > .menu li a {
  display: block;
  padding: 20px;
}
.regions .content .header.active > .menu {
  max-height: 800px;
}
.regions .content .content-inner {
  padding: 0 20px;
  min-height: 200px;
}
.regions .content .content-inner > div {
  display: none;
}
.regions .content .content-inner > div.active {
  display: block;
}
.regions .content .content-inner .row .columns {
  line-height: 28px;
  padding-top: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(102, 102, 102, 0.1);
}
.regions .content .content-inner .row .columns h4 {
  margin-bottom: 0;
}
.regions .content .content-inner .row .columns div {
  color: #666666;
}
.regions .content .content-inner .row .columns span {
  display: block;
  font-size: 14px;
}
.regions .content .content-inner .row .columns span a {
  color: #26247b;
  font-weight: bold;
}
.regions .content .content-inner .row:last-child .columns:last-child {
  border-bottom: 0;
}
@media print, screen and (min-width: 47.5em) {
  .regions {
    font-size: 16px;
  }
  .regions h3 {
    margin-bottom: 60px;
  }
  .regions .content .header > a {
    padding: 40px 30px;
  }
  .regions .content .header > .menu li a {
    padding: 20px 30px;
  }
  .regions .content .content-inner {
    padding: 0 30px;
  }
  .regions .content .content-inner .row .columns h4 {
    font-size: 18px;
  }
  .regions .content .content-inner .row .columns div {
    margin-bottom: 20px;
  }
  .regions .content .content-inner .row .columns span {
    font-size: 16px;
    display: block;
    margin-right: 20px;
  }
  .regions .content .content-inner .row .columns strong {
    color: #2b2992;
  }
}
@media print, screen and (min-width: 64em) {
  .regions .content .header .menu {
    display: table;
    width: 100%;
    padding: 30px 30px;
  }
  .regions .content .header .menu li {
    display: table-cell;
    min-width: 70px;
    text-align: center;
    border-bottom: none;
  }
  .regions .content .header .menu li a {
    padding: 10px 0;
    display: inline-block;
    border-bottom: 4px solid transparent;
  }
  .regions .content .header .menu li a:hover, .regions .content .header .menu li a.active {
    border-color: #ffffff;
  }
  .regions .content .content-inner {
    padding: 40px;
  }
  .regions .content .content-inner .row:last-child .columns {
    border-bottom: 0;
  }
}
.accommodations .content .columns {
  margin-bottom: 40px;
}
.accommodations .content .columns .img-wrapper {
  height: 140px;
  margin-bottom: 30px;
  background-position: center center;
  background-size: cover;
}
.accommodations .content .columns h5 {
  margin-bottom: 30px;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 600;
}
.accommodations .content .columns div, .accommodations .content .columns span {
  border-bottom: 1px solid rgba(102, 102, 102, 0.1);
  padding-bottom: 15px;
  margin-bottom: 15px;
  display: block;
}
@media screen and (min-width: 80em) {
  .accommodations {
    padding-bottom: 90px;
  }
}
.hero--testimonials {
  background-image: url("../images/company/testimonials/bg-hero.png");
}
.testimonials-single p {
  font-size: 16px;
  line-height: 28px;
  color: #666666;
}
.testimonials-single .header p {
  text-align: center;
  margin-bottom: 30px;
}
.testimonials-single .header .person {
  width: 280px;
  margin: 0 auto 70px;
}
.testimonials-single .header .person > div {
  display: inline-block;
  vertical-align: top;
}
.testimonials-single .header .person .img-wrapper {
  width: 160px;
  height: 160px;
}
.testimonials-single .header .person .desc {
  padding-top: 10px;
  margin-left: 35px;
}
.testimonials-single .header .person .desc h4 {
  font-size: 24px;
  margin-bottom: 5px;
}
.testimonials-single .header .person.main-quote {
  text-align: center;
}
.testimonials-single .header .person.main-quote .img-wrapper {
  height: auto;
  margin: 0 0 10px;
}
.testimonials-single .header .person.main-quote .desc {
  margin: 0 auto;
  display: block;
}
.testimonials-single .header .person.main-quote .desc h4 {
  line-height: 1;
  margin: 0 auto;
}
.testimonials-single .item {
  background: #ffffff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  padding: 30px 20px 50px;
  margin-bottom: 80px;
  opacity: 0;
  transform: translate(-20%, 0);
  transition: all 1s ease-in-out;
}
.testimonials-single .item > p {
  font-size: 20px;
  line-height: 28px;
  font-weight: 300;
  font-style: italic;
  color: #666666;
  padding-left: 10px;
  position: relative;
}
.testimonials-single .item > p:before {
  content: "“";
  font-size: 350px;
  line-height: 0;
  position: absolute;
  z-index: 0;
  top: -45px;
  left: 30px;
  opacity: 0.1;
  transform: rotate(180deg);
}
.testimonials-single .item .person {
  z-index: 1;
  position: absolute;
  margin-left: 10px;
}
.testimonials-single .item .person > * {
  display: inline-block;
}
.testimonials-single .item .person .img-wrapper {
  width: 80px;
  height: 90px;
}
.testimonials-single .item .person .desc {
  vertical-align: top;
  padding: 15px 15px 10px;
  max-width: 250px;
}
.testimonials-single .item .person .desc h4 {
  font-size: 24px;
  margin-bottom: 0;
}
.testimonials-single .item .person .desc p {
  margin-bottom: 0;
}
.testimonials-single .item > * {
  transition: all 1s ease-in-out;
  opacity: 0;
  transform: translate(10%, 0);
}
.testimonials-single .items-wrapper .item.animated {
  transform: translate(0, 0);
  opacity: 1;
}
.testimonials-single .items-wrapper .item.animated > *:nth-child(1) {
  transform: translate(0, 0);
  transition-delay: 0.25s;
  opacity: 1;
}
@media print, screen and (min-width: 47.5em) {
  .testimonials-single .item {
    padding: 70px 40px 150px;
    margin-bottom: 120px;
  }
  .testimonials-single .item > p {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 50px;
  }
  .testimonials-single .item .person .img-wrapper {
    width: 180px;
    height: 180px;
  }
  .testimonials-single .item .person .desc {
    padding: 20px 30px;
  }
}
@media print, screen and (min-width: 64em) {
  .testimonials-single p {
    font-size: 18px;
    line-height: 28px;
  }
  .testimonials-single .item {
    margin: 0 5px 120px;
  }
}
.hero--training {
  background-image: url("../images/company/testimonials/bg-hero.png");
}
.single-training .hero--wave {
  z-index: 100;
}

.main--training .main__wrapper {
  padding: 0;
  margin-bottom: 65px;
}
.main--training .main__jobs .job p:not(.job__title) {
  line-height: 24px;
}
.main--training .main__jobs .job__title {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 28px;
}
.main--training .main__jobs .job .params {
  margin-bottom: 30px;
}
.main--training .main__jobs .job .params span {
  display: block;
  margin-bottom: 5px;
}
.main--training .main__jobs .job .params span strong {
  color: #26247b;
}
.main--training .main__jobs .job .button {
  max-width: 160px;
  display: block;
  margin: 0 auto 30px;
}
.main--training .main__jobs .jobs__footer {
  background: #26247b;
  padding: 20px;
}
.main--training .main__jobs .jobs__footer a {
  font-size: 18px;
  line-height: 24px;
  display: block;
  max-width: 540px;
  margin: 0 auto;
}
@media print, screen and (min-width: 47.5em) {
  .main--training .main__jobs {
    margin-bottom: 130px;
  }
  .main--training .main__jobs .job {
    vertical-align: top;
  }
  .main--training .main__jobs .job .wrapper {
    display: inline-block;
    max-width: 65%;
  }
  .main--training .main__jobs .job .button {
    position: relative;
    float: right;
    width: 160px;
    right: 0;
    top: 0;
    transform: translate(0, 0);
  }
  .main--training .main__jobs .job .params span {
    display: inline-block;
    margin-right: 40px;
  }
}
@media print, screen and (min-width: 64em) {
  .main--training .main__jobs .job .wrapper {
    max-width: 80%;
  }
  .main--training .main__jobs .job .params span {
    margin-right: 30px;
  }
}
@media screen and (min-width: 80em) {
  .main--training .main__jobs .jobs__footer a {
    font-size: 22px;
    max-width: 700px;
  }
}
.main--single-training .main__wrapper p {
  max-width: none;
}
.main--single-training .map-box.-training {
  padding: 35px 10px;
  margin-top: -550px;
  position: sticky;
  top: 80px;
}
.main--single-training .map-box.-training--not-sticky {
  position: relative;
}
.main--single-training .map-box.-training .month {
  font-size: 28px;
  font-family: "avenir-lt-pro", "Avenir LT W01_85 Heavy1475544", "Helvetica", sans-serif;
  font-weight: 700;
  border-bottom: 1px solid rgba(102, 102, 102, 0.6);
  padding-bottom: 20px;
}
.main--single-training .map-box.-training .month span {
  font-family: "avenir-lt-pro", "Avenir LT W01_95 Black1475556", "Helvetica", sans-serif;
  font-weight: 800;
  font-size: 78px;
  line-height: 84px;
}
.main--single-training .map-box.-training .month ~ div {
  border-bottom: 1px solid rgba(102, 102, 102, 0.6);
  padding: 25px 0;
}
.main--single-training .map-box.-training .month ~ div span {
  font-weight: bold;
  color: #26247b;
}
.main--single-training .map-box.-training .month ~ div span.orange {
  color: #e35e00;
}
.main--single-training .map-box.-training .month ~ div:last-child {
  border-bottom: none;
}
.main--single-training .map-box.-training .button {
  margin-bottom: 30px;
}
.main--single-training .map-box.-training .button[disabled] {
  color: #999;
  border-color: #999;
  cursor: not-allowed;
}
.main--single-training .map-box.-training .button[disabled]:hover {
  color: #999;
  border-color: #999;
  background: white;
}
@media print, screen and (min-width: 64em) {
  .main--single-training .map-box {
    padding: 35px;
  }
}
@media screen and (min-width: 80em) {
  .main--single-training .main__wrapper {
    margin-left: 50px;
    margin-right: 30px;
  }
  .main--single-training .main__wrapper .box {
    min-height: 400px;
  }
}
.work--form .all-seats-taken {
  border-radius: 30px;
  font-size: 200%;
  background: #eee;
  padding: 20px;
  color: #666;
}
.work--form h2.gsection_title {
  background: white;
  display: inline-block;
  position: relative;
}
.work--form .gf-privacy-notice {
  margin-left: 0.45rem;
  margin-top: -10px;
}
.work--form form .gform_button.button {
  margin-top: 60px;
}

#registration-form .storeCheckout-title {
  clear: both;
}
#registration-form .storeCheckout-title.payment-section-divider {
  margin: 0 0 -75px;
}
#registration-form .storeCheckout-title h2 {
  position: relative;
  z-index: 10;
  display: inline-block;
  padding: 0 45px;
  background-color: #fff;
}
#registration-form li.total {
  background: #F7F7F7;
  border-radius: 40px;
  padding: 40px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#registration-form li.total label.gfield_label {
  display: block;
  font-size: 24px;
  font-weight: bold;
}
@media (min-width: 992px) {
  #registration-form li.attendees_container.empty thead {
    display: none;
  }
  #registration-form li.attendees_container.empty table {
    border: 0;
    margin: 0;
    padding: 0;
  }
  #registration-form li.attendees_container thead th {
    background: transparent;
    text-align: left;
    width: 100%;
    padding: 0;
    padding-bottom: 8px;
  }
  #registration-form li.attendees_container thead th.gpnf-row-actions {
    text-align: right;
    min-width: 160px;
  }
  #registration-form li.attendees_container thead th.gpnf-row-actions::after {
    content: "Edit or delete";
    text-align: right;
  }
  #registration-form li.attendees_container thead th:nth-child(2), #registration-form li.attendees_container thead th:nth-child(3) {
    overflow: hidden;
    text-indent: -100px;
  }
  #registration-form li.attendees_container tbody tr {
    overflow: hidden;
    transform: scale(1);
  }
  #registration-form li.attendees_container tbody td {
    text-align: left;
    border: 0;
    color: #6C6C6C;
  }
  #registration-form li.attendees_container tbody td:first-child {
    display: block;
    float: left;
    padding-top: 30px;
    font-size: 18px;
    font-weight: bold;
    padding-left: 0;
  }
  #registration-form li.attendees_container tbody td:nth-child(2) {
    float: left;
    padding-top: 30px;
    font-size: 18px;
  }
  #registration-form li.attendees_container tbody td:nth-child(3) {
    float: left;
    font-size: 14px;
    clear: left;
    padding-top: 0;
    padding-left: 0;
  }
  #registration-form li.attendees_container tbody td:nth-child(3) a {
    color: #6C6C6C;
  }
  #registration-form li.attendees_container tbody td:nth-child(4) {
    float: right;
    width: 130px;
    display: block;
    text-align: right;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transform: translateY(calc(-50% + 7px));
  }
  #registration-form li.attendees_container tbody td li.edit,
  #registration-form li.attendees_container tbody td li.delete {
    padding-bottom: 4px;
    position: static;
  }
  #registration-form li.attendees_container tbody td li.edit a,
  #registration-form li.attendees_container tbody td li.delete a {
    color: transparent;
    width: 22px;
    height: 22px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: inline-block;
  }
  #registration-form li.attendees_container tbody td li.edit {
    background-image: url(../images/icon_edit.svg);
  }
  #registration-form li.attendees_container tbody td li.delete {
    background-image: url(../images/icon_delete.svg);
  }
  #registration-form li.attendees_container .gpnf-row-actions ul {
    position: relative;
  }
  #registration-form li.attendees_container .gpnf-row-actions .gfspinner {
    margin-left: -45px;
    top: 9px;
  }
}
#registration-form li.attendees_container .ginput_container {
  background: #F7F7F7;
  border-radius: 40px;
  padding: 40px;
}
@media (max-width: 768px) {
  #registration-form li.attendees_container .ginput_container {
    padding: 40px 10px;
  }
  #registration-form li.attendees_container .ginput_container .gpnf-nested-entries td {
    padding: 8px 8px 8px 30%;
  }
  #registration-form li.attendees_container .ginput_container .gpnf-nested-entries td:before {
    width: 30%;
    text-align: left;
  }
}
#registration-form li.attendees_container tr.gpnf-no-entries {
  border: 0;
  width: 100%;
  float: none;
  text-align: center;
}
#registration-form li.attendees_container tr.gpnf-no-entries td {
  border: 0;
  font-size: 24px;
  color: #949494;
  background: transparent;
  width: 100%;
  text-align: center;
  padding-left: 0 !important;
}
#registration-form li.attendees_container .gpnf-nested-entries {
  border: 0;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}
#registration-form li.attendees_container .gpnf-nested-entries-container button.gpnf-add-entry {
  background: #242876;
  border-radius: 37px;
  color: #fff;
  font-size: 16px;
  padding: 15px 28px;
  border: 0;
  margin: 10px 0;
  transition: 0.3s all;
}
#registration-form li.attendees_container .gpnf-nested-entries-container button.gpnf-add-entry:hover {
  background: #181C61;
  box-shadow: 0px 8px 16px rgba(36, 40, 118, 0.3);
}
#registration-form .gfield.gfield_error input,
#registration-form .gfield.gfield_error select {
  background-color: rgba(157, 51, 65, 0.1);
  border-color: #9d3341;
  color: #9D3341;
}
#registration-form .gfield.gfield_error input::-moz-placeholder, #registration-form .gfield.gfield_error select::-moz-placeholder {
  color: #9D3341 !important;
}
#registration-form .gfield.gfield_error input::placeholder,
#registration-form .gfield.gfield_error select::placeholder,
#registration-form .gfield.gfield_error label {
  color: #9D3341 !important;
}
#registration-form .gf_coupon_item {
  font-size: 20px;
  margin-top: 10px;
  display: block;
  color: #80BD50;
  position: relative;
  padding-right: 150px;
  padding-left: 40px;
  margin-left: -40px;
}
@media (max-width: 500px) {
  #registration-form .gf_coupon_item {
    padding-right: 0;
    padding-left: 0;
    margin-left: 0;
  }
}
#registration-form .gf_coupon_item::before {
  content: "";
  background-image: url(../images/success_coupon.svg);
  width: 30px;
  height: 30px;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  left: 0;
  background-size: contain;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 1px;
}
@media (max-width: 500px) {
  #registration-form .gf_coupon_item::before {
    display: none;
  }
}
#registration-form .gf_coupon_item .gf_coupon_name {
  font-weight: bold;
}
#registration-form .gform_wrapper .gfcoupon_container #gf_coupon_button[disabled] {
  color: #cacaca;
  border-color: transparent;
  background: #EFEFEF;
}
#registration-form .gform_button {
  background-color: #26247b;
  color: #ffffff;
  padding: 25px 1em;
  transition: 0.3s all;
}
#registration-form .gform_button:hover {
  background: #181C61;
  box-shadow: 0px 14px 32px rgba(36, 40, 118, 0.3);
}
#registration-form .gform_wrapper .gfcoupon_container {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  #registration-form .gform_wrapper .gfcoupon_container {
    flex-wrap: wrap;
  }
}
@media (max-width: 880px) {
  #registration-form .gform_wrapper .gfcoupon_container {
    margin-top: 50px;
  }
}
#registration-form .gform_wrapper .gfcoupon_container .gfield_description {
  padding: 0;
  font-size: 24px;
  color: #000;
  opacity: 0.5;
  margin-top: 20px;
}
@media (max-width: 880px) {
  #registration-form .gform_wrapper .gfcoupon_container .gfield_description {
    text-align: center;
    margin-top: 0px;
    order: -1;
    width: 100%;
    font-size: 22px;
    margin-bottom: 10px;
    position: absolute;
    top: -40px;
  }
}
#registration-form .gform_wrapper .gfcoupon_container .gf_coupon_invalid {
  padding-left: 20px;
}
#registration-form .gform_wrapper .gfcoupon_container .gf_coupon_invalid span {
  background-color: transparent;
}
#registration-form .gform_wrapper .gfcoupon_container .ginput_container {
  order: 2;
}
@media (max-width: 1200px) {
  #registration-form .gform_wrapper .gfcoupon_container .ginput_container {
    order: 0;
    width: 100%;
  }
}
#registration-form .gform_wrapper .gfcoupon_container input.gf_coupon_code {
  margin: 0;
  width: 340px;
}
@media (max-width: 1200px) {
  #registration-form .gform_wrapper .gfcoupon_container input.gf_coupon_code {
    width: 50%;
  }
}
@media (max-width: 880px) {
  #registration-form .gform_wrapper .gfcoupon_container input.gf_coupon_code {
    width: 100%;
  }
}
#registration-form .gform_wrapper .gfcoupon_container #gf_coupon_button {
  width: 300px;
  margin: 0;
  margin-left: 20px;
}
@media (max-width: 1200px) {
  #registration-form .gform_wrapper .gfcoupon_container #gf_coupon_button {
    width: calc(50% - 20px);
  }
}
@media (max-width: 880px) {
  #registration-form .gform_wrapper .gfcoupon_container #gf_coupon_button {
    width: 100%;
    margin-top: 10px;
  }
}
#registration-form .gform_wrapper .gfcoupon_container #gf_coupon_button:not([disabled]) {
  background-color: #26247b;
  color: #ffffff;
  transition: 0.3s all;
}
#registration-form .gform_wrapper .gfcoupon_container #gf_coupon_button:not([disabled]):hover {
  background: #181C61;
  box-shadow: 0px 14px 32px rgba(36, 40, 118, 0.3);
}
@media (min-width: 1201px) {
  #registration-form .gform_wrapper .gfcoupon_container label.gfield_label.visible {
    right: 368px;
    width: 300px;
  }
}
#registration-form .g-recaptcha {
  margin-bottom: 20px;
}

#registration-form .gform_wrapper #gf_coupon_info .gf_coupon_item .gf_coupon_name_container > a {
  position: absolute;
  right: 0;
  display: block;
  width: 180px;
  text-indent: 0;
  background: transparent;
  font-size: 16px;
  color: transparent;
  text-align: right;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  height: auto;
  margin-top: -1px;
}
@media (max-width: 500px) {
  #registration-form .gform_wrapper #gf_coupon_info .gf_coupon_item .gf_coupon_name_container > a {
    top: 100%;
    margin-top: 7px;
    text-align: left;
    right: auto;
    left: -11px;
  }
}
#registration-form .gform_wrapper #gf_coupon_info .gf_coupon_item .gf_coupon_name_container > a::after {
  color: #9c9c9c;
  content: "remove discount";
}

#registration-form li.gfield:not(.total):not(.gform_hidden):not(.attendees_container):not(.gsection),
.single-training .tingle-modal li.gfield,
.single-training .tingle-modal .ginput_complex span {
  position: relative;
  padding-top: 30px;
}
#registration-form li.gfield:not(.total):not(.gform_hidden):not(.attendees_container):not(.gsection) label,
.single-training .tingle-modal li.gfield label,
.single-training .tingle-modal .ginput_complex span label {
  display: block;
  text-align: left;
  padding-left: 25px;
  opacity: 0;
  transform: translateY(59px);
  font-size: 22px;
  color: #cacaca;
  position: absolute;
  top: -3px;
  visibility: hidden;
}
#registration-form li.gfield:not(.total):not(.gform_hidden):not(.attendees_container):not(.gsection) label.visible, #registration-form li.gfield:not(.total):not(.gform_hidden):not(.attendees_container):not(.gsection).gfield.gfield_error label:not(.gfield_label_before_complex),
.single-training .tingle-modal li.gfield label.visible,
.single-training .tingle-modal li.gfield.gfield.gfield_error label:not(.gfield_label_before_complex),
.single-training .tingle-modal .ginput_complex span label.visible,
.single-training .tingle-modal .ginput_complex span.gfield.gfield_error label:not(.gfield_label_before_complex) {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
  font-size: 18px;
  color: #0a0a0a;
  transition: 0.3s all;
}
@media (max-width: 768px) {
  #registration-form li.gfield:not(.total):not(.gform_hidden):not(.attendees_container):not(.gsection) label.visible, #registration-form li.gfield:not(.total):not(.gform_hidden):not(.attendees_container):not(.gsection).gfield.gfield_error label:not(.gfield_label_before_complex),
  .single-training .tingle-modal li.gfield label.visible,
  .single-training .tingle-modal li.gfield.gfield.gfield_error label:not(.gfield_label_before_complex),
  .single-training .tingle-modal .ginput_complex span label.visible,
  .single-training .tingle-modal .ginput_complex span.gfield.gfield_error label:not(.gfield_label_before_complex) {
    font-size: 17px;
    color: #808080;
    top: -1px;
  }
}

.ginput_container_creditcard span.ginput_full:not(.ginput_cardextras),
.ginput_container_creditcard span.ginput_full > span {
  display: block;
  padding-top: 30px;
  position: relative;
  margin: 0 0.45rem;
}
.ginput_container_creditcard .ginput_card_expiration_container .ginput_card_expiration {
  margin: 0 0.45rem;
}
.ginput_container_creditcard .ginput_card_expiration_container label {
  display: none;
}
.ginput_container_creditcard span.ginput_full > span:first-child {
  margin: 0;
}
@media (max-width: 768px) {
  .ginput_container_creditcard .ginput_cardextras {
    flex-wrap: wrap;
  }
  .ginput_container_creditcard .ginput_cardextras .ginput_cardinfo_left {
    width: 100%;
  }
  .ginput_container_creditcard .ginput_cardextras .ginput_cardinfo_right {
    width: 100%;
  }
  .ginput_container_creditcard select {
    height: 54.5px;
    font-size: 1.125rem;
    color: #cacaca;
    margin-bottom: 10px !important;
  }
}
.ginput_container_creditcard + .gfield_description.validation_message {
  position: static !important;
  text-align: center;
  font-size: 18px !important;
}

.single-training .tingle-modal {
  background: rgba(0, 0, 0, 0.4196078431);
}
.single-training .tingle-modal .gform_heading {
  margin-bottom: 10px;
}
.single-training .tingle-modal:before {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.single-training .tingle-modal .validation_error {
  padding-bottom: 0;
}
.single-training .tingle-modal .validation_error + .gform_body label:not(.gfield_label_before_complex) {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
  font-size: 18px;
  color: #0a0a0a;
  transition: 0.3s all;
}
.single-training .tingle-modal .gfield_description.validation_message {
  bottom: 4px;
}
.single-training .tingle-modal .gpnf-modal-header {
  background: transparent !important;
  color: #000;
  text-align: left;
  font-size: 31px;
  font-weight: bold;
  margin: 0 0 20px;
  position: relative;
  padding-left: 115px;
}
@media (max-width: 768px) {
  .single-training .tingle-modal .gpnf-modal-header {
    height: auto;
    line-height: 1.25;
    padding-left: 65px;
  }
}
.single-training .tingle-modal .gpnf-modal-header::before {
  content: "";
  background-image: url(../images/add-attendee.svg);
  width: 75px;
  height: 75px;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  left: 0;
  background-size: contain;
}
@media (max-width: 768px) {
  .single-training .tingle-modal .gpnf-modal-header::before {
    width: 45px;
  }
}
.single-training .tingle-modal .tingle-btn {
  background: #F6F6F6;
  border-radius: 40px;
  color: #000;
}
.single-training .tingle-modal .tingle-modal-box__footer {
  background: transparent;
  padding-top: 0;
  padding-bottom: 40px;
  display: flex;
}
.single-training .tingle-modal .tingle-modal-box__content {
  padding-bottom: 20px;
  padding-top: 30px;
}
@media (max-width: 768px) {
  .single-training .tingle-modal .tingle-modal-box__content {
    padding: 30px 20px 20px;
    padding-bottom: 0 !important;
  }
}
.single-training .tingle-modal .gpnf-btn-cancel {
  min-width: 180px;
}
.single-training .tingle-modal .gpnf-btn-submit {
  width: 100%;
  background: #242876;
  color: #fff;
  transition: 0.3s all;
}
.single-training .tingle-modal .gpnf-btn-submit:hover {
  background: #181C61;
  box-shadow: 0px 14px 32px rgba(36, 40, 118, 0.3);
}
.single-training .tingle-modal-box {
  max-width: 590px;
}
@media (max-width: 768px) {
  .single-training .tingle-modal-box {
    width: 90%;
    margin: 20px auto;
  }
}
.single-training .tingle-modal .gform_description {
  text-align: center;
  display: block;
  color: #000;
  margin-bottom: 0;
  font-size: 16px;
}
.single-training .tingle-modal .ginput_complex {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .single-training .tingle-modal .ginput_complex {
    flex-wrap: wrap;
  }
}
.single-training .tingle-modal .ginput_complex > span {
  width: 48%;
}
@media (max-width: 768px) {
  .single-training .tingle-modal .ginput_complex > span {
    width: 100%;
  }
}
.single-training .tingle-modal .ginput_complex + .gfield_description.validation_message {
  bottom: auto;
  position: static !important;
  width: 100%;
  text-align: center;
  margin: -14px 0 5px;
}
.single-training .tingle-modal input {
  font-size: 17px;
  height: 45px;
}
@media (max-width: 768px) {
  .single-training .tingle-modal input {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .single-training .tingle-modal {
    overflow: scroll;
    /* popup footer fix */
  }
  .single-training .tingle-modal .tingle-modal-box__footer.tingle-modal-box__footer--sticky {
    position: relative !important;
    width: 90% !important;
    background: #fff !important;
    margin: -20px auto 20px !important;
    padding-top: 20px !important;
    left: 0 !important;
  }
}
.single-training .tingle-modal li.gfield,
.single-training .tingle-modal .ginput_complex span {
  padding-top: 20px;
}
.single-training .tingle-modal li.gfield label, .single-training .tingle-modal li.gfield label.visible,
.single-training .tingle-modal .ginput_complex span label,
.single-training .tingle-modal .ginput_complex span label.visible {
  top: -10px;
  font-size: 16px;
}
.single-training .tingle-modal li.gfield.gfield label:not(.gfield_label_before_complex),
.single-training .tingle-modal .ginput_complex span.gfield label:not(.gfield_label_before_complex) {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
  font-size: 15px;
  color: #808080;
  top: -6px;
  transition: 0.3s all;
}
.single-training img#gf_coupon_spinner {
  position: absolute;
  margin-left: -35px;
  margin-top: 33px;
}
@media (max-width: 768px) {
  .single-training img#gf_coupon_spinner {
    margin-top: 20px;
  }
}
.single-training .gfspinner {
  animation: spin 2s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.hero--member {
  background-image: url("../images/member-center/bg-hero.jpg");
  padding-top: 80px;
  padding-bottom: 100px;
  margin-bottom: 0;
}
.hero--member h1 {
  font-size: 42px;
  line-height: 50px;
}
@media print, screen and (min-width: 47.5em) {
  .hero--member {
    padding-top: 120px;
    padding-bottom: 200px;
  }
  .hero--member h1 {
    font-size: 62px;
  }
}
@media screen and (min-width: 80em) {
  .hero--member {
    padding-top: 150px;
  }
  .hero--member h1 {
    font-size: 90px;
  }
}
.registration {
  background-color: #38a1f2;
  padding: 10px 20px;
  color: #fff;
}
.registration.failure {
  background-color: #e21616;
}
.registration.successful {
  background-color: #2ede70;
}

.group_table .label {
  padding: 0 10px;
}

.woocommerce-messageBox {
  margin: 0 0 16px 0;
  padding: 8px 16px;
  color: #fff;
}
.woocommerce-messageBox.woocommerce-error {
  background-color: #fee2e2;
  color: #991b1b;
  outline: none;
}
.woocommerce-messageBox.woocommerce-error strong {
  font-size: inherit;
}
.woocommerce-messageBox.woocommerce-info {
  background-color: #f1f5f9;
  color: #1e293b;
}
.woocommerce-messageBox.woocommerce-message {
  background-color: #dcfce7;
  color: #166534;
}
.woocommerce-messageBox .button {
  display: block;
  margin: 10px auto;
  max-width: 300px;
}
.woocommerce-messageBox ul {
  margin: 0;
  outline: none;
}
.woocommerce-messageBox li {
  position: relative;
  margin: 0;
  padding: 0 0 0 15px;
  list-style: none;
}
.woocommerce-messageBox li:before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 5px;
  height: 1px;
  content: "";
  background-color: #fff;
}

.page-id-208 .woocommerce {
  margin-top: 90px;
}
.page-id-208 .main--mc-login {
  margin-bottom: 0;
}
.page-id-208 .hero--member {
  margin-top: -85px;
}
.page-id-208 .main__wrapper {
  margin-top: -90px;
}
@media print, screen and (min-width: 64em) {
  .page-id-208 .main__wrapper {
    margin-top: -100px;
  }
}
.page-id-208.logged-in .woocommerce {
  margin-top: 0;
}

.member-center .select-wrapper select[name=product] {
  font-size: 22px;
}
@media print, screen and (min-width: 47.5em) {
  .member-center .box--inline {
    display: table;
    width: 100%;
    text-align: left;
  }
  .member-center .box--inline > * {
    display: table-cell;
    vertical-align: middle;
  }
  .member-center .box--inline h4 {
    margin-bottom: 0;
  }
  .member-center .box--inline .button {
    float: right;
  }
  .member-center .box--blue {
    margin-bottom: 0;
  }
  .member-center .box--table h4 {
    font-size: 28px;
  }
}
@media print, screen and (min-width: 64em) {
  .member-center .box--blue {
    margin-bottom: 30px;
  }
  .member-center .select-wrapper select {
    height: 3rem;
    font-size: 18px;
  }
}
.member-center .box {
  position: relative;
  overflow: auto;
  margin: 0 0 30px;
  padding: 30px 20px;
  background: #ffffff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
}
.member-center .box--blue {
  color: #ffffff;
  background: #26247b;
}
.member-center .box--table h4 {
  font-size: 24px;
}
.member-center .box--table {
  text-align: center;
}
.member-center .box--table table {
  width: 100%;
}
.member-center .box select {
  padding-left: 30px;
}
.member-center .box .button,
.member-center .box select {
  margin-bottom: 0;
}
.member-center .box .select-wrapper {
  margin-bottom: 0;
}
.member-center .box h4 {
  margin-bottom: 20px;
}
.member-center .box--address {
  padding: 32px;
}
.member-center .box--address .swiper-container {
  width: 100%;
}
.member-center .box--address .swiper-container .swiper-slide {
  width: auto;
}
@media print, screen and (min-width: 47.5em) {
  .member-center .box--address .swiper-container .swiper-slide {
    width: 100%;
  }
}
.member-center .box--address h4 {
  text-align: center;
  margin-bottom: 44px;
  font-size: 24px;
}
.member-center .box--address--table--row {
  display: flex;
  width: 100%;
  min-width: 640px;
  justify-content: stretch;
  align-items: center;
}
.member-center .box--address--table--row > div {
  padding-bottom: 44px;
}
.member-center .box--address--table--row > div:nth-child(1) {
  width: 28%;
  max-width: 28%;
  flex-grow: 1;
  padding-right: 24px;
  box-sizing: border-box;
}
.member-center .box--address--table--row > div:nth-child(2) {
  width: auto;
  flex-grow: 1;
  max-width: 50%;
  max-width: calc(72% - 48px - 48px - 84px);
}
.member-center .box--address--table--row > div:nth-child(3) {
  padding-left: 24px;
  width: 60px;
  min-width: 60px;
}
.member-center .box--address--table--row > div:nth-child(4) {
  padding-left: 24px;
  width: 24px;
  min-width: 24px;
}
.member-center .box--address--table--row > div:nth-child(5) {
  padding-left: 24px;
  width: 24px;
  min-width: 24px;
}
.member-center .box--address--table--row:hover .box--address--icon:not(.box--address--disabled) {
  opacity: 0.5;
}
.member-center .box--address--table .overflow-ellipsis {
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.member-center .box--address--addnew {
  color: #1779ba;
  font-family: "avenir-lt-pro", "Avenir LT W01_85 Heavy1475544", "AvenirLTW01-85Heavy", "Avenir", "Avenir LT", "Helvetica", sans-serif;
  font-weight: 900;
}
.member-center .box--address--icon {
  opacity: 0.3;
  transition: 0.3s all linear;
  height: 22px;
}
.member-center .box--address--icon:hover {
  opacity: 0.8 !important;
}
.member-center .box--address--disabled {
  opacity: 0.1;
}
.member-center .box--address--disabled:hover {
  opacity: 0.1 !important;
}
.member-center .box--address--default {
  color: #26247b;
  font-size: 14px;
  font-family: "Lato", "Helvetica", "sans-serif";
  font-weight: 900;
}

.storeCheckout .button,
.shipping-calculator-form .button,
.wc-proceed-to-checkout .button,
.storeProduct-price .button,
.woocomerce-FormRow .button {
  position: relative;
  display: block;
  margin: 0 0 0 auto;
  padding: 0.85em 1em;
  cursor: pointer;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  text-align: center;
  vertical-align: middle;
  color: #26247b;
  border: 4px solid #26247b;
  border-radius: 60px;
  background-color: #fff;
  font-family: "avenir-lt-pro", "Avenir LT W01_85 Heavy1475544", "Helvetica", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  -webkit-appearance: none;
}
@media print, screen and (min-width: 64em) {
  .storeCheckout .button,
  .shipping-calculator-form .button,
  .wc-proceed-to-checkout .button,
  .storeProduct-price .button,
  .woocomerce-FormRow .button {
    font-size: 20px;
  }
}
@media screen and (min-width: 80em) {
  .storeCheckout .button,
  .shipping-calculator-form .button,
  .wc-proceed-to-checkout .button,
  .storeProduct-price .button,
  .woocomerce-FormRow .button {
    padding: 1em 3em;
  }
}
.storeCheckout .button:hover,
.shipping-calculator-form .button:hover,
.wc-proceed-to-checkout .button:hover,
.storeProduct-price .button:hover,
.woocomerce-FormRow .button:hover {
  color: #ffffff;
  border-color: #ffffff;
  background-color: #26247b;
}

#place_order {
  position: relative;
  display: block;
  margin: 0 0 0 auto;
  padding: 0.85em 1em;
  cursor: pointer;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  text-align: center;
  vertical-align: middle;
  color: #26247b;
  border: 4px solid #26247b;
  border-radius: 60px;
  background-color: #fff;
  font-family: "avenir-lt-pro", "Avenir LT W01_85 Heavy1475544", "Helvetica", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  -webkit-appearance: none;
}
@media print, screen and (min-width: 64em) {
  #place_order {
    font-size: 20px;
  }
}
@media screen and (min-width: 80em) {
  #place_order {
    padding: 1em 3em;
  }
}
#place_order:hover {
  color: #ffffff;
  border-color: #ffffff;
  background-color: #26247b;
}

#shipping_method li {
  float: none;
  width: 100%;
  margin: 0;
  padding: 5px 0;
  line-height: 1;
  list-style: none;
  /*text-align: right;*/
}
@media print, screen and (min-width: 47.5em) {
  #shipping_method li {
    text-align: left;
  }
}
#shipping_method li input {
  width: 20px;
  margin: 0;
  display: inline-block;
  vertical-align: middle;
}
#shipping_method li input[type=radio] {
  margin-right: 10px;
}
#shipping_method li label {
  display: inline-block;
  margin: 0;
  vertical-align: middle;
  line-height: 1.25;
}
#shipping_method li .woocommerce-Price-amount {
  margin-left: 8px;
}

.cart_totals .shop_table {
  width: 100%;
}
.cart_totals .shop_table th, .cart_totals .shop_table td {
  border-bottom: 1px solid #ccc;
  padding: 15px 0;
  min-width: 130px;
}
@media print, screen and (min-width: 47.5em) {
  .cart_totals .shop_table th, .cart_totals .shop_table td {
    min-width: 150px;
  }
}
.cart_totals .shop_table tr:last-child th, .cart_totals .shop_table tr:last-child td {
  border-bottom: 0;
}
.cart_totals a {
  font-size: 14px;
}
.cart_totals .fee,
.cart_totals .cart-subtotal,
.cart_totals .shipping,
.cart_totals .cart-discount {
  font-size: 21px;
  vertical-align: top;
}
.cart_totals .woocommerce-shipping-methods {
  padding-top: 16px;
  float: right;
}

.top-bar .dropdown ul li.dropdown-simple, .top-bar .dropdown--xxlarge ul li.dropdown-simple {
  min-height: 0;
  padding: 0;
}
.top-bar .dropdown ul li.dropdown-simple a, .top-bar .dropdown--xxlarge ul li.dropdown-simple a {
  display: block;
  margin-right: 10px;
  padding: 1em;
}
@media screen and (min-width: 80em) {
  .top-bar .dropdown ul li.dropdown-simple a, .top-bar .dropdown--xxlarge ul li.dropdown-simple a {
    display: inline-block;
    padding: 1.5em 1em;
  }
}
.top-bar .dropdown ul li.dropdown-simple a .arrow, .top-bar .dropdown--xxlarge ul li.dropdown-simple a .arrow {
  margin-left: 10px;
  margin-top: 0;
}
@media screen and (min-width: 80em) {
  .top-bar .dropdown ul li.dropdown-simple a .arrow, .top-bar .dropdown--xxlarge ul li.dropdown-simple a .arrow {
    margin-top: 2px;
  }
}

.mcHide,
.mcHideHard {
  height: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
}

#search.search--fixed {
  position: fixed;
  z-index: 100;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10000;
}
@media screen and (max-width: 47.4375em) {
  #search.search--fixed h4 {
    display: none;
  }
}

.resetSearch {
  font-size: 13px;
  color: #ccc;
  font-weight: normal;
  cursor: pointer;
  display: block;
  margin-bottom: -15px;
  font-family: "Avenir LT W01_65 Medium1475532", sans-serif;
}
.resetSearch:hover {
  color: #aa273e;
}

#media-library .tabs {
  margin-top: 16px;
  margin-bottom: 24px;
}
#media-library .tabs .swiper-slide {
  width: auto;
}
#media-library .tabs .tab {
  display: inline-flex;
  height: 48px;
  padding-left: 24px;
  padding-right: 24px;
  text-align: center;
  align-content: center;
  justify-content: center;
  align-items: center;
  align-self: center;
  vertical-align: top;
  background: #F6F6F6;
  border: 1px solid #E4E4E4;
  color: #060606;
  font-size: 20px;
  line-height: 24px;
  font-family: "avenir-lt-pro", "Avenir LT W01_85 Heavy1475544", "AvenirLTW01-85Heavy", "Avenir", "Avenir LT", "Helvetica", sans-serif;
  border-radius: 16px;
  transition: 0.2s all linear;
  margin-right: 8px;
}
#media-library .tabs .tab svg {
  width: auto;
  height: auto;
  margin-right: 12px;
}
#media-library .tabs .tab svg path[fill] {
  transition: 0.3s fill linear;
}
#media-library .tabs .tab.tab-all:hover {
  border-color: #202020;
  background: #202020;
}
#media-library .tabs .tab.tab-all.active {
  border-color: #060606;
  background: #060606;
}
#media-library .tabs .tab.tab-all:hover, #media-library .tabs .tab.tab-all.active {
  color: white;
}
#media-library .tabs .tab.tab-all:hover svg path[fill], #media-library .tabs .tab.tab-all.active svg path[fill] {
  fill: white;
}
#media-library .tabs .tab.tab-logos {
  color: #aa273e;
}
#media-library .tabs .tab.tab-logos:hover {
  border-color: #d0344f;
  background: #d0344f;
}
#media-library .tabs .tab.tab-logos.active {
  border-color: #aa273e;
  background: #aa273e;
}
#media-library .tabs .tab.tab-logos:hover, #media-library .tabs .tab.tab-logos.active {
  color: white;
}
#media-library .tabs .tab.tab-logos:hover svg path[fill], #media-library .tabs .tab.tab-logos.active svg path[fill] {
  fill: white;
}
#media-library .tabs .tab.tab-images {
  color: #242876;
}
#media-library .tabs .tab.tab-images:hover {
  border-color: #30359d;
  background: #30359d;
}
#media-library .tabs .tab.tab-images.active {
  border-color: #242876;
  background: #242876;
}
#media-library .tabs .tab.tab-images:hover, #media-library .tabs .tab.tab-images.active {
  color: white;
}
#media-library .tabs .tab.tab-images:hover svg path[fill], #media-library .tabs .tab.tab-images.active svg path[fill] {
  fill: white;
}
#media-library .tabs .tab.tab-videos {
  color: #393AED;
}
#media-library .tabs .tab.tab-videos:hover {
  border-color: #6869f1;
  background: #6869f1;
}
#media-library .tabs .tab.tab-videos.active {
  border-color: #393AED;
  background: #393AED;
}
#media-library .tabs .tab.tab-videos:hover, #media-library .tabs .tab.tab-videos.active {
  color: white;
}
#media-library .tabs .tab.tab-videos:hover svg path[fill], #media-library .tabs .tab.tab-videos.active svg path[fill] {
  fill: white;
}
#media-library .tabs .tab.tab-documents {
  color: #3779B5;
}
#media-library .tabs .tab.tab-documents:hover {
  border-color: #5492cb;
  background: #5492cb;
}
#media-library .tabs .tab.tab-documents.active {
  border-color: #3779B5;
  background: #3779B5;
}
#media-library .tabs .tab.tab-documents:hover, #media-library .tabs .tab.tab-documents.active {
  color: white;
}
#media-library .tabs .tab.tab-documents:hover svg path[fill], #media-library .tabs .tab.tab-documents.active svg path[fill] {
  fill: white;
}
#media-library .hide {
  display: none !important;
}
#media-library .product-files {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (min-width: 30em) {
  #media-library .product-files {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media print, screen and (min-width: 47.5em) {
  #media-library .product-files {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media print, screen and (min-width: 64em) {
  #media-library .product-files {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 80em) {
  #media-library .product-files {
    grid-template-columns: repeat(3, 1fr);
  }
}
#media-library .product-files .product-file {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1), 0 0 0 1px #e4e4e4;
  transition: 0.3s all linear;
  padding-top: 0px;
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 68px;
  margin: 0;
  border-top: none;
  overflow: unset;
}
#media-library .product-files .product-file h2 {
  margin-top: 16px;
  margin-bottom: 8px;
  font-weight: 800;
  font-size: 20px;
  line-height: 24px;
  height: 48px;
  font-family: "avenir-lt-pro", "Avenir LT W01_85 Heavy1475544", "AvenirLTW01-85Heavy", "Avenir", "Avenir LT", "Helvetica", sans-serif;
  color: #aa273e;
  text-align: center;
}
#media-library .product-files .product-file p {
  color: #6E7174;
  font-style: normal;
  font-weight: normal;
  text-align: center;
  font-size: 14px;
  line-height: 20px;
}
#media-library .product-files .product-file:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #aa273e;
}
#media-library .product-files .product-file:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25), 0 0 0 1px #e4e4e4;
}
#media-library .product-files .product-file:hover .product-file__download {
  color: white;
  background: #aa273e;
}
#media-library .product-files .product-file:hover .product-file__download .product-file__download__title {
  color: white;
}
#media-library .product-files .product-file:hover .product-file__download .product-file__download__extension {
  color: #aa273e;
  background: white;
}
#media-library .product-files .product-file:hover .product-file__download svg path[fill] {
  fill: white;
}
#media-library .product-files .product-file:hover .product-file__download[data-type=image] {
  background: #242876;
}
#media-library .product-files .product-file:hover .product-file__download[data-type=image] .product-file__download__extension {
  color: #242876;
}
#media-library .product-files .product-file:hover .product-file__download[data-type=video] {
  background: #393AED;
}
#media-library .product-files .product-file:hover .product-file__download[data-type=video] .product-file__download__extension {
  color: #393AED;
}
#media-library .product-files .product-file:hover .product-file__download[data-type=document] {
  background: #3779B5;
}
#media-library .product-files .product-file:hover .product-file__download[data-type=document] .product-file__download__extension {
  color: #3779B5;
}
@media screen and (max-width: 63.9375em) {
  #media-library .product-files .product-file {
    padding-bottom: 80px;
  }
  #media-library .product-files .product-file h2 {
    font-size: 24px;
    line-height: 28px;
    height: 56px;
  }
  #media-library .product-files .product-file p {
    font-size: 16px;
    line-height: 20px;
  }
  #media-library .product-files .product-file .product-file__download {
    color: white;
    background: #aa273e;
    height: 48px;
  }
  #media-library .product-files .product-file .product-file__download .product-file__download__title {
    color: white;
  }
  #media-library .product-files .product-file .product-file__download .product-file__download__extension {
    color: #aa273e;
    background: white;
  }
  #media-library .product-files .product-file .product-file__download svg path[fill] {
    fill: white;
  }
  #media-library .product-files .product-file .product-file__download[data-type=image] {
    background: #242876;
  }
  #media-library .product-files .product-file .product-file__download[data-type=image] .product-file__download__extension {
    color: #242876;
  }
  #media-library .product-files .product-file .product-file__download[data-type=video] {
    background: #393AED;
  }
  #media-library .product-files .product-file .product-file__download[data-type=video] .product-file__download__extension {
    color: #393AED;
  }
  #media-library .product-files .product-file .product-file__download[data-type=document] {
    background: #3779B5;
  }
  #media-library .product-files .product-file .product-file__download[data-type=document] .product-file__download__extension {
    color: #3779B5;
  }
}
#media-library .product-files .product-file__preview {
  margin-left: -16px;
  margin-right: -16px;
  margin-top: 4px;
  position: relative;
  padding-bottom: 76.93%;
  overflow: hidden;
}
#media-library .product-files .product-file__preview__data {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
#media-library .product-files .product-file__preview__data iframe {
  width: 100% !important;
  height: 100% !important;
}
#media-library .product-files .product-file__preview__data svg {
  width: 104px;
  height: auto;
  opacity: 0.1;
}
#media-library .product-files .product-file__download {
  height: 36px;
  position: absolute;
  bottom: 32px;
  left: 16px;
  right: 16px;
  display: flex;
  font-family: "avenir-lt-pro", "Avenir LT W01_85 Heavy1475544", "AvenirLTW01-85Heavy", "Avenir", "Avenir LT", "Helvetica", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 15px;
  line-height: 20px;
  color: #949494;
  background: #F6F6F6;
  border-radius: 30px;
  padding: 8px 20px;
  align-content: center;
  align-items: center;
  transition: 0.3s all linear;
}
#media-library .product-files .product-file__download svg {
  width: auto;
  height: auto;
}
#media-library .product-files .product-file__download svg path[fill] {
  transition: 0.3s fill linear;
}
#media-library .product-files .product-file__download__title {
  flex-grow: 1;
  margin-left: 8px;
  transition: 0.3s all linear;
}
#media-library .product-files .product-file__download__extension {
  background: #949494;
  border-radius: 2px;
  justify-content: center;
  align-items: center;
  display: flex;
  padding: 2px 4px 1px;
  font-family: "avenir-lt-pro", "Avenir LT W01_85 Heavy1475544", "AvenirLTW01-85Heavy", "Avenir", "Avenir LT", "Helvetica", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 10px;
  line-height: 10px;
  text-transform: uppercase;
  color: white;
  height: 13px;
  transition: 0.3s all linear;
}
#media-library .product-files .product-file[data-type=image]:before {
  background: #242876;
}
#media-library .product-files .product-file[data-type=image] h2 {
  color: #242876;
}
#media-library .product-files .product-file[data-type=video]:before {
  background: #393AED;
}
#media-library .product-files .product-file[data-type=video] h2 {
  color: #393AED;
}
#media-library .product-files .product-file[data-type=document]:before {
  background: #3779B5;
}
#media-library .product-files .product-file[data-type=document] h2 {
  color: #3779B5;
}

.member-center .sidebar {
  position: absolute;
  top: 100px;
}
.member-center .sidebar .dropdown, .member-center .sidebar .top-bar .dropdown--xxlarge, .top-bar .member-center .sidebar .dropdown--xxlarge {
  position: absolute;
  right: 30px;
  top: 0;
  margin-bottom: 0;
}
.member-center .sidebar .user {
  padding: 0 15px;
  line-height: 16px;
  margin-bottom: 20px;
  position: relative;
}
.member-center .sidebar .user h3 {
  font-size: 16px;
  margin-bottom: 0;
}
.member-center .sidebar .user span {
  display: block;
  line-height: 22px;
}
.member-center .sidebar .user span span {
  font-size: 20px;
}
.member-center .sidebar .menu {
  max-height: 0;
  overflow: hidden;
  z-index: 2;
  position: absolute;
  right: 10px;
  width: 320px;
  margin-top: -10px;
  transition: max-height 0.25s ease-in-out;
}
.member-center .sidebar .menu:before {
  content: "";
  position: absolute;
  left: 80%;
  top: 0;
  z-index: 2;
  display: block;
  width: 0;
  height: 0;
  border: inset 10px;
  content: "";
  border-top-width: 0;
  border-bottom-style: solid;
  border-color: transparent transparent #26247b;
}
@media print, screen and (min-width: 47.5em) {
  .member-center .sidebar .menu:before {
    left: 41.2%;
  }
}
@media screen and (min-width: 80em) {
  .member-center .sidebar .menu:before {
    left: calc(50% - 5px);
  }
}
.member-center .sidebar .menu > ul {
  margin-top: 10px;
}
.member-center .sidebar .menu ul {
  background: #26247b;
  list-style-type: none;
  margin-left: 0;
}
.member-center .sidebar .menu ul a {
  color: #ffffff;
  display: block;
  font-size: 18px;
  padding: 20px 50px 0 40px;
}
.member-center .sidebar .menu ul a:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(245, 245, 245, 0.2);
  margin-top: 20px;
}
.member-center .sidebar .menu ul li.has-dropdown {
  position: relative;
}
.member-center .sidebar .menu ul li.has-dropdown > a:before {
  content: "";
  width: 27px;
  height: 21px;
  background: transparent url("../images/member-center/icon-arrow-right.png") 0 0 no-repeat;
  display: block;
  position: absolute;
  top: 25px;
  right: 50px;
  transition: transform 0.25s ease-in-out;
}
.member-center .sidebar .menu ul li.has-dropdown.active > a {
  background-color: transparent;
}
.member-center .sidebar .menu ul li.has-dropdown.active > a:before {
  transform: rotate(90deg);
}
.member-center .sidebar .menu ul li.has-dropdown.active > a:after {
  background-color: transparent;
}
.member-center .sidebar .menu ul li.has-dropdown.active ul {
  max-height: none;
}
.member-center .sidebar .menu ul ul {
  background: rgba(255, 255, 255, 0.1);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-in-out;
}
.member-center .sidebar .menu ul ul li:last-child a:after {
  background-color: transparent;
}
.member-center .sidebar .menu ul ul a {
  padding-left: 50px;
}
.member-center .sidebar .menu ul ul a:hover, .member-center .sidebar .menu ul ul a.active {
  background: rgba(38, 36, 123, 0.5);
}
.member-center .sidebar .menu.active {
  max-height: 1500px;
}
@media print, screen and (min-width: 47.5em) {
  .member-center .sidebar .user {
    padding: 20px 30px;
    font-size: 20px;
  }
  .member-center .sidebar .user > * {
    display: inline-block;
    vertical-align: top;
  }
  .member-center .sidebar .user h3 {
    font-size: 28px;
  }
  .member-center .sidebar .user > span {
    display: inline-block;
    margin-left: 40px;
    margin-top: 5px;
  }
  .member-center .sidebar .user > span span {
    font-size: 26px;
  }
  .member-center .sidebar .user .button {
    min-width: 210px;
    line-height: 25px;
  }
  .member-center .sidebar .user .button svg {
    width: 21px;
    margin-right: 20px;
    vertical-align: middle;
  }
  .member-center .sidebar .user .button:hover {
    background-color: transparent;
    color: #000000;
    border-color: #000000;
  }
  .member-center .sidebar .user .button:hover svg path[fill] {
    fill: #000000;
  }
  .member-center .sidebar .menu {
    max-width: 320px;
    right: 15px;
  }
}
@media print, screen and (min-width: 64em) {
  .member-center .sidebar .user > span {
    margin-top: 7px;
  }
}
@media screen and (min-width: 80em) {
  .member-center .sidebar {
    position: relative;
    top: 0;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
    width: 28%;
    left: 30px;
    padding-left: 0;
    padding-right: 0;
  }
  .member-center .sidebar .user h3 {
    margin-bottom: 30px;
  }
  .member-center .sidebar .user > span {
    display: block;
    margin-left: 0;
  }
  .member-center .sidebar .menu {
    max-height: none;
    max-width: none;
    margin-top: 0;
    right: 0;
    position: relative;
    width: 100%;
  }
}
@media screen and (max-width: 79.9375em) {
  .member-center .sidebar {
    position: relative;
    top: auto;
  }
  .member-center .sidebar .menu {
    max-height: 0;
    margin-left: auto;
  }
  .member-center .sidebar .menu > ul {
    margin-bottom: 20px;
  }
}

.member-center table {
  text-align: left;
}
.member-center table thead {
  background: #f2f2f2;
  color: rgba(51, 51, 51, 0.6);
  font-weight: normal;
}
.member-center table thead th {
  padding: 20px;
  min-width: 140px;
}
.member-center table tbody tr {
  border-bottom: 1px solid whitesmoke;
}
.member-center table tbody td {
  padding: 20px 10px;
}
@media print, screen and (min-width: 47.5em) {
  .member-center table {
    width: 100%;
  }
}
@media screen and (min-width: 80em) {
  .member-center table thead th {
    min-width: 100px;
  }
}
.main--mc-login .main__wrapper {
  margin-top: -80px;
}
.main--mc-login h3 {
  font-size: 34px;
  color: #000000;
  margin-bottom: 30px;
}
.main--mc-login .button {
  display: block;
  width: 100%;
}
.main--mc-login form {
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(102, 102, 102, 0.3);
  margin-bottom: 40px;
}
.main--mc-login form .medium-6:last-of-type {
  margin-bottom: 20px;
}
.main--mc-login form .rememberme {
  float: left;
  color: rgba(36, 40, 118, 0.5);
}
.main--mc-login form .reminder {
  display: block;
  text-align: center;
  text-decoration: underline;
  color: #26247b;
}
.main--mc-login form input:not(.floating-label-active), .main--mc-login form select:not(.floating-label-active) {
  clip-path: none !important;
}
.main--mc-login form input::-moz-placeholder, .main--mc-login form select::-moz-placeholder {
  color: transparent;
}
.main--mc-login form input::placeholder, .main--mc-login form select::placeholder {
  color: transparent;
}
.main--mc-login form .floating-label {
  background: transparent;
  font-size: 16px;
  line-height: 24px;
  z-index: 1;
  pointer-events: none;
}
.main--mc-login .g-recaptcha {
  margin-bottom: 20px;
}
@media print, screen and (min-width: 47.5em) {
  .main--mc-login {
    margin-top: 40px;
  }
  .main--mc-login .main__wrapper {
    padding: 55px;
    margin-top: -170px;
  }
  .main--mc-login h3 {
    font-size: 48px;
    margin-bottom: 45px;
  }
  .main--mc-login .button, .main--mc-login .reminder {
    display: inline-block;
    width: auto;
    min-width: 180px;
  }
  .main--mc-login form .button {
    float: right;
    margin-bottom: 0;
  }
  .main--mc-login form .rememberme {
    float: left;
    margin-top: 20px;
  }
  .main--mc-login form .reminder {
    float: left;
    margin-top: 20px;
  }
}
@media print, screen and (min-width: 64em) {
  .main--mc-login .large-6:first-child {
    border-right: 1px solid rgba(102, 102, 102, 0.3);
  }
  .main--mc-login form {
    margin-right: 30px;
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .main--mc-login form .rememberme {
    font-size: 20px;
    margin-top: 17px;
  }
  .main--mc-login form .reminder {
    font-size: 20px;
    margin-top: 17px;
  }
  .main--mc-login .register {
    margin-left: 30px;
  }
}
@media screen and (min-width: 80em) {
  .main--mc-login {
    margin-bottom: 50px;
  }
}
.hero--mc-login {
  background-image: url("../images/member-center/login/bg-hero.jpg");
}
.hero--mc-login p {
  max-width: 80%;
  margin: 0 auto 20px;
}
@media print, screen and (min-width: 64em) {
  .hero--mc-login {
    padding-top: 130px;
    padding-bottom: 150px;
  }
}
.hero--registration {
  padding-bottom: 200px;
}
.hero--registration p {
  padding-top: 30px;
}
@media print, screen and (min-width: 47.5em) {
  .hero--registration {
    padding-bottom: 120px;
  }
}

.main--mc-register {
  padding-left: 15px;
  padding-right: 15px;
}
.main--mc-register h3 {
  font-size: 24px;
}
.main--mc-register form {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.main--mc-register form .show-password-input {
  display: none;
}
.main--mc-register form input::-moz-placeholder, .main--mc-register form textarea::-moz-placeholder, .main--mc-register form select::-moz-placeholder {
  color: transparent;
}
.main--mc-register form input::placeholder,
.main--mc-register form textarea::placeholder,
.main--mc-register form select::placeholder {
  color: transparent;
}
.main--mc-register form .medium-6:last-of-type {
  margin-bottom: 0;
}
.main--mc-register form .checkboxes {
  margin-bottom: 1rem;
  padding-left: 0.45rem;
  padding-right: 0.45rem;
}
.main--mc-register form .checkboxes .checkboxes-with-label {
  float: none;
}
@media screen and (min-width: 80em) {
  .main--mc-register form .checkboxes {
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 80em) {
  .main--mc-register form .checkboxes .checkboxes-with-label + .checkboxes-with-label {
    justify-content: end;
  }
}
.main--mc-register form .wrapper {
  margin-bottom: 40px;
}
.main--mc-register form .wrapper.bdr {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(102, 102, 102, 0.3);
}
.main--mc-register form .info-text {
  font-size: 12px;
  color: #777;
  margin-top: 20px;
  text-align: center;
}
.main--mc-register form .info-text a {
  color: #aa273e;
  text-decoration: underline;
}
.main--mc-register form .button {
  width: 100%;
}
.main--mc-register .g-recaptcha {
  margin-bottom: 20px;
}
.main--mc-register .password-reveal {
  position: absolute;
  z-index: 2;
  right: 20px;
  top: 8px;
  width: 30px;
  height: 34px;
  opacity: 0.5;
  transition: 0.2s all ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.main--mc-register .password-reveal svg {
  width: 20px;
  height: 20px;
}
.main--mc-register .password-reveal svg:nth-child(2) {
  display: none;
}
.main--mc-register .password-reveal:hover {
  opacity: 1;
}
.main--mc-register .password-reveal.revealed svg:nth-child(1) {
  display: none;
}
.main--mc-register .password-reveal.revealed svg:nth-child(2) {
  display: inline-block;
}
@media print, screen and (min-width: 47.5em) {
  .main--mc-register h3 {
    font-size: 34px;
  }
  .main--mc-register form .wrapper {
    margin-bottom: 60px;
  }
  .main--mc-register form .wrapper.bdr {
    padding-bottom: 40px;
    margin-bottom: 70px;
  }
}
@media print, screen and (min-width: 64em) {
  .main--mc-register {
    padding-left: 0;
    padding-right: 0;
  }
  .main--mc-register .registration-form.woocommerce {
    padding-left: 20px;
    padding-right: 20px;
  }
  .main--mc-register h3 {
    font-size: 48px;
    line-height: 54px;
  }
}
@media screen and (min-width: 80em) {
  .main--mc-register .main__wrapper {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .main--mc-register h3 {
    font-size: 82px;
    line-height: 60px;
    margin-bottom: 65px;
  }
}
.work--support {
  text-align: left;
  margin-bottom: 40px;
}
.work--support p {
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 60px;
  max-width: 780px;
}
.work--support p.quote {
  font-size: 20px;
  line-height: 24px;
  font-weight: lighter;
  font-style: italic;
  position: relative;
}
.work--support p.quote:before {
  content: "“";
  font-size: 200px;
  line-height: 0;
  position: absolute;
  z-index: 0;
  top: -25px;
  left: 0px;
  opacity: 0.08;
  transform: rotate(180deg);
}
.work--support .text-box {
  background: #ffffff;
  padding: 90px 40px 70px;
  right: -10%;
  position: relative;
  max-width: 95%;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}
.work--support .text-box p {
  color: #333333;
}
.work--support .text-box h2 {
  font-size: 34px;
  line-height: 38px;
  position: absolute;
  top: 30px;
  left: -30px;
}
.work--support .person {
  position: absolute;
  z-index: 1;
  left: -30px;
  bottom: -40px;
  opacity: 0;
  transform: translate(20%, 0);
  transition: all 1s ease-in-out;
}
.work--support .person > * {
  display: inline-block;
  vertical-align: top;
  transition: all 1s ease-in-out;
  opacity: 0;
  transform: translate(20%, 0);
}
.work--support .person .img-wrapper {
  width: 80px;
  height: 90px;
  background-position: center center;
  background-size: cover;
}
.work--support .person .desc {
  padding: 20px 15px;
  background: #ffffff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  margin-left: -55px;
  margin-top: 70px;
}
.work--support .person .desc h4 {
  font-size: 18px;
  margin-bottom: 0;
}
.work--support .person .desc p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 16px;
}
.work--support .text-box.active .person {
  transform: translate(0, 0);
  opacity: 1;
}
.work--support .text-box.active .person > *:nth-child(1) {
  transform: translate(0, 0);
  transition-delay: 0.25s;
  opacity: 1;
}
.work--support .text-box.active .person > *:nth-child(2) {
  transform: translate(0, 0);
  transition-delay: 0.5s;
  opacity: 1;
}
@media print, screen and (min-width: 47.5em) {
  .work--support {
    margin-bottom: 190px;
  }
  .work--support .text-box {
    max-width: 75%;
    right: -25%;
    padding: 80px 35px 5px 145px;
  }
  .work--support .text-box h2 {
    font-size: 48px;
    top: 80px;
    left: -150px;
  }
  .work--support .person {
    left: -170px;
    bottom: -30px;
  }
  .work--support .person .img-wrapper {
    width: 240px;
    height: 270px;
  }
  .work--support .person .desc {
    padding: 30px;
    margin-top: 230px;
    margin-left: -220px;
  }
  .work--support .person .desc h4 {
    font-size: 24px;
  }
  .work--support .person .desc p {
    font-size: 18px;
  }
  .work--support p.quote {
    font-size: 24px;
    line-height: 32px;
  }
}
@media print, screen and (min-width: 64em) {
  .work--support {
    margin-top: 180px;
    margin-bottom: 270px;
  }
  .work--support .text-box {
    margin-top: -280px;
    padding-left: 230px;
    max-width: 80%;
    right: -20%;
  }
  .work--support .text-box p {
    font-size: 18px;
    line-height: 28px;
  }
  .work--support .text-box p.quote {
    font-size: 32px;
    line-height: 38px;
  }
  .work--support .text-box p.quote:before {
    font-size: 300px;
    top: -65px;
    left: -10px;
  }
  .work--support .text-box h2 {
    font-size: 62px;
  }
  .work--support .text-box .person {
    bottom: -110px;
  }
  .work--support .text-box .person .img-wrapper {
    width: 320px;
    height: 360px;
  }
  .work--support .text-box .person .desc {
    padding: 35px;
    margin-top: 280px;
  }
  .work--support .text-box .person .desc h4 {
    font-size: 34px;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 80em) {
  .work--support {
    margin-top: 260px;
  }
  .work--support p {
    margin-bottom: 40px;
  }
  .work--support p.quote {
    margin-bottom: 80px;
  }
  .work--support .text-box {
    margin-top: -360px;
    padding-left: 330px;
  }
  .work--support .text-box h2 {
    font-size: 82px;
  }
  .work--support .text-box .person {
    left: -60px;
  }
}
.additional--faq {
  text-align: center;
  min-height: 0;
  padding-top: 25px;
}
.additional--faq h3 {
  margin-top: 120px;
}
.additional--faq .button {
  display: inline-block;
  margin-bottom: 50px;
}
@media print, screen and (min-width: 47.5em) {
  .additional--faq h3 {
    margin-top: 100px;
  }
  .additional--faq .button {
    margin-bottom: 70px;
  }
}
@media print, screen and (min-width: 64em) {
  .additional--faq .button {
    font-size: 22px;
    padding: 25px 40px;
  }
}
@media screen and (min-width: 80em) {
  .additional--faq {
    background-size: 100% auto;
  }
}
.main--service .box .img-wrapper {
  margin-bottom: 25px;
}
.main--service .box .img-wrapper img {
  max-height: 80px;
}
.main--service .box h4 {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 20px;
}
.main--service .box .button {
  min-width: 210px;
}
@media print, screen and (min-width: 47.5em) {
  .main--service .box {
    text-align: left;
    display: table;
  }
  .main--service .box h4 {
    font-size: 24px;
    line-height: 29px;
  }
  .main--service .box > * {
    display: table-cell;
    vertical-align: middle;
  }
  .main--service .box .button-wrapper {
    vertical-align: top;
    width: 240px;
    text-align: right;
  }
  .main--service .box p {
    margin-bottom: 0;
  }
  .main--service .box .img-wrapper {
    width: 120px;
    text-align: center;
  }
  .main--service .box .img-wrapper img {
    max-height: none;
  }
  .main--service .box .content {
    padding-left: 20px;
  }
}
@media print, screen and (min-width: 64em) {
  .main--service .box {
    padding: 40px 20px;
    text-align: center;
    display: block;
  }
  .main--service .box .img-wrapper, .main--service .box .button-wrapper {
    width: auto;
    text-align: center;
  }
  .main--service .box .img-wrapper {
    margin-bottom: 30px;
  }
  .main--service .box .content {
    padding-left: 0;
  }
  .main--service .box .content h4 {
    height: 60px;
    overflow: hidden;
  }
  .main--service .box .content p {
    margin-bottom: 30px;
  }
  .main--service .box > * {
    display: block;
  }
  .main--service .box .button {
    padding: 25px 20px;
    min-width: 240px;
  }
}
@media screen and (min-width: 80em) {
  .main--service .box {
    padding: 65px 25px 80px;
  }
}
.main--faq .main__wrapper {
  padding: 0;
}
.main--faq .main__wrapper .accordion {
  margin-bottom: 30px;
}
.main--faq .main__wrapper .button-wrapper {
  padding: 0 15px;
  overflow: auto;
}
.main--faq .main__wrapper .button-wrapper .button {
  margin-bottom: 40px;
  display: block;
}
@media print, screen and (min-width: 47.5em) {
  .main--faq .main__wrapper .button-wrapper {
    text-align: center;
  }
  .main--faq .main__wrapper .button-wrapper .button {
    margin-bottom: 80px;
    display: inline-block;
    min-width: 280px;
  }
}
@media print, screen and (min-width: 64em) {
  .main--faq .main__wrapper {
    margin-bottom: 80px;
  }
  .main--faq .main__wrapper .button-wrapper .button {
    padding: 25px 40px;
  }
}
.accordion {
  list-style-type: none;
  margin-left: 0;
}
.accordion__item {
  padding: 0 20px;
  font-size: 18px;
  line-height: 28px;
}
.accordion__item:after {
  content: "";
  display: block;
  height: 1px;
  background-color: #f5f5f5;
}
.accordion__item:last-child:after {
  background-color: transparent;
}
.accordion__item a {
  color: #000000;
  display: block;
  padding: 25px 0;
}
.accordion__item p {
  margin-bottom: 0;
}
.accordion__item:hover {
  background-color: #f5f5f5;
}
.accordion__item > div {
  padding-top: 0;
  max-height: 0;
  overflow: hidden;
  color: #666666;
  transition: all 0.3s ease-in-out;
}
.accordion__item > div :after {
  content: "";
  display: block;
  clear: both;
}
.accordion__item--active a {
  color: #26247b;
}
.accordion__item--active > div {
  max-height: none;
  padding-bottom: 30px;
}
@media print, screen and (min-width: 47.5em) {
  .accordion__item {
    padding: 0 40px;
  }
}
@media screen and (min-width: 80em) {
  .accordion__item a {
    position: relative;
    padding-right: 100px;
  }
  .accordion__item a:after {
    right: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 0;
    height: 0;
    border: inset 10px;
    content: "";
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #26247b transparent transparent;
    transition: all 0.15s ease-in-out;
    transform-origin: 50% 0;
  }
  .accordion__item--active a:after {
    transform: rotate(180deg);
  }
}
.hero--faq {
  background-image: url("../images/service/faq/bg-hero.jpg");
}
.hero--support {
  background-image: url("../images/service/bg-hero.jpg");
}
.breadcrumbs {
  margin: 0 30px 50px;
  padding: 30px 0;
  background-color: #fff;
  border-bottom: 1px solid #e2e2e2;
  display: none;
}
@media print, screen and (min-width: 47.5em) {
  .breadcrumbs {
    display: block;
  }
}
.breadcrumbs-item {
  display: inline-block;
  list-style: none;
}
.breadcrumbs-item:first-child, .breadcrumbs-item:last-child {
  margin-right: 10px;
}
.breadcrumbs-item:first-child .link:after, .breadcrumbs-item:last-child .link:after {
  display: none;
}
.breadcrumbs-item .link {
  display: block;
  color: #b2b2b2;
  font-size: 1.125rem;
}
.breadcrumbs-item .link:after {
  display: inline-block;
  margin: 0 5px 0 10px;
  content: "/ ";
  color: #b2b2b2;
}
.breadcrumbs-item .link:hover {
  text-decoration: underline;
  color: #2b2992;
}
.breadcrumbs-item .link:hover:after {
  color: #b2b2b2;
}
.breadcrumbs-item .active {
  display: block;
  color: #2b2992;
}
.breadcrumbs-item .icon {
  position: relative;
  top: 4px;
  display: block;
  width: 22px;
  height: 21px;
  background: url("../images/icons/home.png") no-repeat center center;
  background-size: 22px auto;
}

.storeCart h2 {
  margin: 0 0 20px;
  color: #1a1a1a;
  font-size: 2.125rem;
}
@media print, screen and (min-width: 47.5em) {
  .storeCart h2 {
    margin: 0 0 30px;
    font-size: 3rem;
  }
}
@media print, screen and (min-width: 64em) {
  .storeCart h2 {
    margin: 0 0 50px;
    font-size: 3.375rem;
  }
}
.storeCart .shadow {
  padding: 50px 0;
}
.storeCart-item > div {
  display: inline-block;
}
.storeCart-summary {
  margin: 0 0 50px;
  padding: 0 0 25px;
  border-bottom: 1px solid #e6e6e6;
  font-family: "avenir-lt-pro", "Avenir LT W01_85 Heavy1475544", "Helvetica", sans-serif;
  font-weight: 700;
}
.storeCart-summary .woocommerce-shipping-destination {
  font-size: 1rem;
  margin-bottom: 2px;
}
.storeCart-coupon {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
}
@media print, screen and (min-width: 47.5em) {
  .storeCart-coupon {
    padding: 0 0 0 20px;
    width: 50%;
    float: left;
  }
}
.storeCart-coupon .label {
  position: absolute;
  z-index: 10;
  top: 10px;
  left: 20px;
  /*display: block;*/
  display: none;
  color: #858586;
  font-size: 0.625rem;
}
@media print, screen and (min-width: 47.5em) {
  .storeCart-coupon .label {
    left: 63px;
  }
}
.storeCart-coupon > .coupon {
  float: left;
  width: calc(100% - 50px);
  padding: 0.85em 1em;
  color: #aa273e;
  border-color: #aa273e;
  font-family: "Lato", sans-serif;
  font-weight: normal;
  height: 56px;
  border-radius: 28px;
}
@media print, screen and (min-width: 47.5em) {
  .storeCart-coupon > .coupon {
    height: 54px;
  }
}
@media print, screen and (min-width: 64em) {
  .storeCart-coupon > .coupon {
    width: calc(100% - 150px);
    height: 65px;
    border-radius: 33px;
  }
}
.storeCart-coupon > .button {
  float: left;
  width: 150px;
  margin-left: -100px;
  padding: 1em 1em;
  background-color: #fff;
  font-size: 1rem;
}
@media screen and (min-width: 30em) {
  .storeCart-coupon > .button {
    padding: 1em 1em;
    font-size: 1rem;
  }
}
@media print, screen and (min-width: 47.5em) {
  .storeCart-coupon > .button {
    padding: 0.55em 1em;
    font-size: 1.375rem;
  }
}
@media print, screen and (min-width: 64em) {
  .storeCart-coupon > .button {
    padding: 0.8em 1em;
    font-size: 1.375rem;
  }
}
.storeCart-totalPrice {
  width: 100%;
  margin: 25px 0 0;
  padding-right: 20px;
  text-align: right;
  color: #aa273e;
  font-size: 1.5rem;
  display: block;
}
@media print, screen and (min-width: 47.5em) {
  .storeCart-totalPrice {
    margin: 0;
    float: right;
    width: 50%;
    display: block;
  }
}
@media print, screen and (min-width: 64em) {
  .storeCart-totalPrice {
    padding-right: 40px;
    font-size: 2.125rem;
  }
}
.storeCart-totalPrice > span {
  display: inline-block;
  font-size: 2.25rem;
}
@media print, screen and (min-width: 64em) {
  .storeCart-totalPrice > span {
    font-size: 2.875rem;
  }
}
.storeCart-submit .button {
  width: 100%;
}

.storeCartTable {
  width: 100%;
  margin: 0 0 40px;
  border-spacing: 0;
  border-collapse: collapse;
}
.storeCartTable thead {
  background-color: #f2f2f2;
  display: none;
}
@media print, screen and (min-width: 47.5em) {
  .storeCartTable thead {
    display: table-header-group;
  }
}
.storeCartTable thead th {
  padding: 20px 0;
  text-align: center;
  color: #999;
  font-size: 1rem;
  font-weight: normal;
}
.storeCartTable thead th:first-child {
  padding-left: 40px;
  text-align: left;
}
.storeCartTable tbody td {
  text-align: center;
  vertical-align: middle;
  border-bottom: 0;
}
@media print, screen and (min-width: 47.5em) {
  .storeCartTable tbody td {
    border-bottom: 1px solid #e6e6e6;
  }
}
.storeCartTable tbody td:nth-child(1) {
  display: inline-block;
  width: 40%;
  margin: 0 0 20px;
}
@media print, screen and (min-width: 47.5em) {
  .storeCartTable tbody td:nth-child(1) {
    margin: 0;
    display: table-cell;
    width: 20%;
  }
}
.storeCartTable tbody td:nth-child(2) {
  display: inline-block;
  width: 60%;
  padding-left: 20px;
  text-align: left;
  margin: 0 0 20px;
}
@media print, screen and (min-width: 47.5em) {
  .storeCartTable tbody td:nth-child(2) {
    margin: 0;
    display: table-cell;
    width: 35%;
  }
}
.storeCartTable tbody td:nth-child(3) {
  display: inline-block;
  margin: 0 0 20px;
  width: 33%;
}
@media print, screen and (min-width: 47.5em) {
  .storeCartTable tbody td:nth-child(3) {
    margin: 0;
    display: table-cell;
    width: 15%;
  }
}
.storeCartTable tbody td:nth-child(4) {
  display: inline-block;
  width: 33%;
  margin: 0 0 20px;
}
@media print, screen and (min-width: 47.5em) {
  .storeCartTable tbody td:nth-child(4) {
    margin: 0;
    display: table-cell;
    width: 10%;
  }
}
.storeCartTable tbody td:nth-child(5) {
  display: inline-block;
  width: 33%;
  margin: 0 0 20px;
}
@media print, screen and (min-width: 47.5em) {
  .storeCartTable tbody td:nth-child(5) {
    margin: 0;
    display: table-cell;
    width: 10%;
  }
}
.storeCartTable tbody td:nth-child(6) {
  display: none;
  width: 50%;
  padding-right: 40px;
  text-align: right;
}
@media print, screen and (min-width: 47.5em) {
  .storeCartTable tbody td:nth-child(6) {
    display: table-cell;
    width: 10%;
  }
}
.storeCartTable tbody tr.has_meta td {
  border-bottom: none;
  padding-bottom: 0;
}
@media screen and (max-width: 47.4375em) {
  .storeCartTable tbody tr.meta td {
    display: block;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.storeCartTable tbody tr.meta .meta_wrap {
  border-top: 1px solid #e6e6e6;
  padding-top: 10px;
  margin-top: -20px;
}
.storeCartTable .product-quantity input.qty {
  margin-bottom: 0;
}
@media print, screen and (min-width: 64em) {
  .storeCartTable .product-quantity input.qty {
    margin: 10px 0;
  }
}
.storeCartTable-text {
  color: #26247b;
  font-size: 1.1875rem;
  font-weight: bold;
}
.storeCartTable-remove {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 30px;
  cursor: pointer;
  background: url("../images/icons/remove@2x.png");
  background-size: 24px auto;
}
.storeCartTable-counter {
  color: #26247b;
  border: 1px solid #ebebeb;
  border-radius: 24px;
  font-size: 1.1875rem;
  line-height: 60px;
}
.storeCartTable-counter > .count {
  padding: 0 20px;
}
.storeCartTable-counter > .decrease,
.storeCartTable-counter > .increase {
  cursor: pointer;
}
.storeCartTable .product-title-not-available-product {
  display: none;
}
.storeCartTable .cart_item .variation {
  margin-bottom: 10px;
}
.storeCartTable .cart_item .variation > dt, .storeCartTable .cart_item .variation > dd {
  width: 50%;
  float: left;
  margin-bottom: 0;
}
.storeCartTable .cart_item .variation dt {
  clear: both;
  font-size: 15px;
}
.storeCartTable .cart_item .variation dd {
  font-size: 15px;
}
.storeCartTable .cart_item .variation dd p {
  margin-bottom: 0;
}
.storeCartTable .cart_item .variation dt.variation-Itemnamepartnumber {
  display: none;
}
.storeCartTable .cart_item .variation dd.variation-Itemnamepartnumber {
  color: #26247b;
  font-weight: bold;
  font-size: inherit;
}

.wc-proceed-to-checkout {
  padding: 25px 0 0;
}

.cart-small_note {
  display: block;
  padding: 8px 0 0 25px;
  font-size: 14px;
  color: #666;
}

.tax-exempt-form {
  margin-left: 20px;
}
.tax-exempt-form .form-row input[type=checkbox] {
  margin: 0;
  vertical-align: middle;
}
.tax-exempt-form .form-row input[type=checkbox] + label {
  margin: 0;
  vertical-align: middle;
}
.tax-exempt-form .form-row input[type=file] {
  margin-bottom: 10px;
  font-size: 16px;
  border-bottom: 2px solid;
  padding-bottom: 7px;
}

body.admin-bar .page-header {
  margin-top: 32px;
}

body.woocommerce-cart .main__wrapper {
  box-shadow: none;
  padding: 30px 0px;
  margin-bottom: 25px;
}
@media print, screen and (min-width: 47.5em) {
  body.woocommerce-cart .main__wrapper {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    padding: 30px 20px;
    margin-bottom: 50px;
  }
}

.empty-cart-wrapper {
  margin: 50px auto 0;
}
@media print, screen and (min-width: 47.5em) {
  .empty-cart-wrapper {
    margin: 110px auto 0;
  }
}

.empty-cart-with-login-form {
  display: flex;
  align-items: center;
  padding: 0 30px;
  flex-wrap: wrap;
}
.empty-cart-with-login-form h3 {
  text-align: left;
  font-size: 35px;
  line-height: 48px;
}
.empty-cart-with-login-form > .columns {
  padding: 40px 0;
}
@media print, screen and (max-width: 64em) {
  .empty-cart-with-login-form > .columns {
    padding: 10px 0;
  }
}
.empty-cart-with-login-form > .columns:nth-child(2) {
  padding-left: 35px;
}
@media print, screen and (max-width: 64em) {
  .empty-cart-with-login-form > .columns:nth-child(2) {
    padding-left: 0;
  }
}
.empty-cart-with-login-form form {
  padding-bottom: 0px;
  border-bottom: none;
  margin-bottom: 0px;
}
@media print, screen and (min-width: 47.5em) {
  .empty-cart-with-login-form form {
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(102, 102, 102, 0.3);
    margin-bottom: 40px;
    margin-left: 30px;
  }
}
.empty-cart-with-login-form form [type=text],
.empty-cart-with-login-form form [type=password] {
  margin-bottom: 20px;
}
@media print, screen and (min-width: 47.5em) {
  .empty-cart-with-login-form form [type=text],
  .empty-cart-with-login-form form [type=password] {
    margin-bottom: 34px;
  }
}
.empty-cart-with-login-form form .button {
  width: 100%;
  font-size: 22px;
  margin-bottom: 1.5rem;
}
@media print, screen and (min-width: 47.5em) {
  .empty-cart-with-login-form form .button {
    font-size: 18px;
    margin-bottom: 1rem;
  }
}
.empty-cart-with-login-form form .rememberme {
  float: left;
  font-size: 16px;
  line-height: inherit;
  cursor: pointer;
}
.empty-cart-with-login-form form .rememberme input {
  margin-right: 4px;
  position: relative;
  margin-bottom: 0px;
  width: 1px;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.empty-cart-with-login-form form .rememberme input:checked::after {
  background-image: url("../images/icon-check.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.empty-cart-with-login-form form .rememberme input::after {
  content: "";
  display: block;
  position: absolute;
  left: -15px;
  bottom: -2px;
  width: 17px;
  height: 17px;
  background: #F3F3F3;
  border: 0.5px solid rgba(116, 118, 161, 0.5);
  box-sizing: border-box;
  border-radius: 2px;
}
.empty-cart-with-login-form form .reminder {
  color: rgba(36, 40, 118, 0.5);
  font-size: 16px;
  text-align: right;
  float: right;
}
.empty-cart-with-login-form form .wrapper .woocommerce-field:last-of-type {
  margin-bottom: 10px;
}
@media print, screen and (min-width: 47.5em) {
  .empty-cart-with-login-form form .wrapper .woocommerce-field:last-of-type {
    margin-bottom: 20px;
  }
}
.empty-cart-with-login-form form p.no-account-mobile {
  margin-top: 15px;
  margin-bottom: 0px;
  font-size: 13px;
}
.empty-cart-with-login-form .cart-empty img {
  width: 60px;
}
@media print, screen and (min-width: 47.5em) {
  .empty-cart-with-login-form .cart-empty img {
    width: 89px;
  }
}
.empty-cart-with-login-form .cart-empty h1 {
  font-weight: 900;
  color: #000;
  margin-top: 10px;
  font-size: 36px;
}
@media print, screen and (min-width: 47.5em) {
  .empty-cart-with-login-form .cart-empty h1 {
    font-size: 57px;
  }
}
.empty-cart-with-login-form .cart-empty p {
  font-size: 16px;
  line-height: 28px;
  max-width: 100%;
}
@media print, screen and (min-width: 47.5em) {
  .empty-cart-with-login-form .cart-empty p {
    font-size: 18px;
    max-width: 380px;
    margin: auto;
  }
}
.empty-cart-with-login-form .cart-empty + p {
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #585858;
  margin-top: 40px;
}
.empty-cart-with-login-form .cart-empty + p a {
  color: #26247b;
  text-decoration: underline;
}

.quote-header {
  padding: 0 15px;
  width: 100%;
}

.quote-disclaimer {
  display: none;
  font-size: 10px;
  padding: 10px 10px 5px 10px;
  line-height: 1.1;
  border-top: 1px solid #999;
}
.quote-disclaimer__quote {
  padding-bottom: 3px;
}

.cart-print-wrapper {
  border-collapse: collapse;
}
.cart-print-wrapper > thead > tr > td, .cart-print-wrapper > tbody > tr > td, .cart-print-wrapper > tfoot > tr > td {
  padding: 0;
}
.cart-print-wrapper .wc-proceed-to-print {
  text-align: center;
}
.cart-print-wrapper .print-cart {
  width: 75%;
  display: inline-block;
  padding-left: 20px;
  padding-right: 20px;
}

@media print {
  #lhnHelpOutCenter, #lhnHocButton {
    display: none !important;
  }
  body.woocommerce-cart {
    min-height: 0;
  }
  body.woocommerce-cart .header-space,
  body.woocommerce-cart .footer-space {
    height: 100px;
  }
  body.woocommerce-cart .medium-11 {
    width: 100%;
  }
  body.woocommerce-cart .shop_table thead th {
    border-bottom: 1px solid #e6e6e6;
  }
  body.woocommerce-cart .hero--wave {
    display: none;
  }
  body.woocommerce-cart .storeCart h2 {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  body.woocommerce-cart .storeCart .shadow {
    padding: 0;
  }
  body.woocommerce-cart .storeCart .storeCart-summary {
    margin-bottom: 0;
    border-bottom: none;
  }
  body.woocommerce-cart section.main {
    margin-top: 0px;
  }
  body.woocommerce-cart section.relatedProducts, body.woocommerce-cart section.whyDistek {
    display: none;
  }
  body.woocommerce-cart label.screen-reader-text, body.woocommerce-cart header.header {
    display: none;
  }
  body.woocommerce-cart .storeCart-coupon, body.woocommerce-cart .storeCart-submit {
    display: none;
  }
  body.woocommerce-cart .storeCart-totalPrice {
    width: 70%;
    padding-right: 0;
  }
  body.woocommerce-cart .storeCartTable .product-quantity input.qty {
    border: none;
    text-align: center;
  }
  body.woocommerce-cart a[href]:after {
    content: "";
  }
  body.woocommerce-cart .wc-proceed-to-checkout {
    display: none;
  }
  body.woocommerce-cart footer {
    padding: 0;
    display: none;
  }
  body.woocommerce-cart footer .socials {
    display: none;
  }
  body.woocommerce-cart .woocommerce-notices-wrapper {
    display: none;
  }
  body.woocommerce-cart .quote-header {
    position: fixed;
    top: 0;
    left: 0;
  }
  body.woocommerce-cart .quote-disclaimer {
    display: block;
    position: fixed;
    bottom: 0;
  }
}
.storeCheckout {
  margin-bottom: 80px;
  padding: 0 0 50px;
}
.storeCheckout-intro {
  padding: 50px 0 16px 0;
}
.storeCheckout-intro .universalTitle {
  margin-bottom: 0;
}
.storeCheckout-title {
  position: relative;
  margin: 32px 0 24px;
  text-align: center;
  color: #808080;
  font-family: "avenir-lt-pro", "Avenir LT W01_85 Heavy1475544", "Helvetica", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
}
@media print, screen and (min-width: 47.5em) {
  .storeCheckout-title {
    font-size: 2.125rem;
  }
}
.storeCheckout-title span {
  position: relative;
  z-index: 10;
  display: inline-block;
  padding: 0 45px;
  background-color: #fff;
}
.storeCheckout-title:before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  display: block;
  height: 1px;
  content: "";
  background-color: #e6e6e6;
}
.storeCheckout-shipments {
  margin-bottom: 50px;
  padding: 25px;
  border: 1px solid #ccc;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
@media print, screen and (min-width: 64em) {
  .storeCheckout-shipments {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 63.9375em) {
  .storeCheckout-shipments {
    padding: 0;
    border: none;
  }
}
.storeCheckout-shipments .medium-10 {
  margin-top: 12px;
}
.storeCheckout-shipments [type=checkbox] {
  margin-bottom: 0;
}
.storeCheckout-shipments .shipments-logo {
  width: auto;
  flex-grow: 0;
  margin-bottom: 20px;
  padding: 0 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media print, screen and (min-width: 64em) {
  .storeCheckout-shipments .shipments-logo {
    margin-bottom: 0;
  }
}
.storeCheckout-shipments .shipments-logo img {
  min-width: 72px;
  max-width: 100%;
  height: auto;
}
.storeCheckout-shipments .shipments-methods {
  flex-grow: 1;
}
.storeCheckout-shipments .shipments-methods > table {
  border-collapse: collapse;
}
.storeCheckout-shipments .shipments-methods .shipping-method-groups {
  background: #F6F6F6;
  padding: 30px 60px 20px 60px;
  border-radius: 20px;
  margin-bottom: 15px;
}
.storeCheckout-shipments .shipments-methods .shipping-method-groups .shipping-method-group {
  width: 50%;
  float: left;
  margin-bottom: 10px;
}
.storeCheckout-shipments .shipments-methods .shipping-method-groups .shipping-method-group a {
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  color: #000;
}
.storeCheckout-shipments .shipments-methods .shipping-method-groups .shipping-method-group a .check {
  display: inline-block;
  background: #FFFFFF;
  border: 1px solid #CACACA;
  box-sizing: border-box;
  border-radius: 10px;
  width: 38px;
  height: 38px;
  vertical-align: middle;
  margin-right: 15px;
  transition: 0.1s all linear;
  text-align: center;
}
.storeCheckout-shipments .shipments-methods .shipping-method-groups .shipping-method-group a .check img {
  width: 16px;
  margin-top: 12px;
}
.storeCheckout-shipments .shipments-methods .shipping-method-groups .shipping-method-group a:hover .check {
  background: #ccc;
}
.storeCheckout-shipments .shipments-methods .shipping-method-groups .shipping-method-group a.active .check {
  background: #242876;
  border-color: #242876;
}
@media screen and (max-width: 63.9375em) {
  .storeCheckout-shipments .shipments-methods .shipping-method-groups .shipping-method-group {
    width: auto;
    float: none;
  }
}
@media screen and (max-width: 26.1875em) {
  .storeCheckout-shipments .shipments-methods .shipping-method-groups .shipping-method-group a .check {
    margin-right: 10px;
    float: left;
  }
  .storeCheckout-shipments .shipments-methods .shipping-method-groups .shipping-method-group a .title {
    display: block;
  }
  .storeCheckout-shipments .shipments-methods .shipping-method-groups .shipping-method-group a:after {
    content: "";
    display: block;
    clear: both;
  }
}
@media screen and (max-width: 63.9375em) {
  .storeCheckout-shipments .shipments-methods .shipping-method-groups {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 26.1875em) {
  .storeCheckout-shipments .shipments-methods .shipping-method-groups {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.storeCheckout-shipments .shipments-methods .woocommerce-shipping-methods {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-left: 0 !important;
}
@media print, screen and (min-width: 47.5em) {
  .storeCheckout-shipments .shipments-methods .woocommerce-shipping-methods {
    flex-direction: row;
    justify-content: flex-start;
  }
}
@media print, screen and (min-width: 64em) {
  .storeCheckout-shipments .shipments-methods .woocommerce-shipping-methods {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
  }
}
.storeCheckout-shipments .shipments-methods .woocommerce-shipping-methods > li {
  padding: 0 !important;
  height: 64px;
  margin-bottom: 10px !important;
}
@media print, screen and (min-width: 47.5em) {
  .storeCheckout-shipments .shipments-methods .woocommerce-shipping-methods > li {
    padding: 0 5px !important;
    width: 50% !important;
  }
}
@media print, screen and (min-width: 64em) {
  .storeCheckout-shipments .shipments-methods .woocommerce-shipping-methods > li {
    padding: 0 15px !important;
    width: 100% !important;
    height: 120px;
    margin-bottom: 0;
  }
}
.storeCheckout-shipments .shipments-methods .woocommerce-shipping-methods > li input {
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  position: absolute !important;
}
.storeCheckout-shipments .shipments-methods .woocommerce-shipping-methods > li label {
  display: flex !important;
  width: 100%;
  text-align: center;
  height: 100%;
  border: 1px solid #aaa;
  border-radius: 5px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #aaa;
  padding: 12px;
  line-height: 1.5em !important;
}
.storeCheckout-shipments .shipments-methods .woocommerce-shipping-methods > li label .amount,
.storeCheckout-shipments .shipments-methods .woocommerce-shipping-methods > li label .ups-account-number {
  font-size: 16px;
}
.storeCheckout-shipments .shipments-methods .woocommerce-shipping-methods > li label:hover,
.storeCheckout-shipments .shipments-methods .woocommerce-shipping-methods > li input:checked + label {
  border-width: 3px;
  border-color: #2B2992;
  color: #2B2992;
}
.storeCheckout-shipments .shipments-methods #shipping_method.distributor {
  flex-wrap: wrap;
  justify-content: left;
  margin: 0 -7px !important;
}
.storeCheckout-shipments .shipments-methods #shipping_method.distributor > li {
  min-width: 50%;
  width: 50% !important;
  flex-shrink: 1;
  padding: 0 7px !important;
  margin-bottom: 14px !important;
  justify-content: flex-start;
  flex-direction: row;
}
.storeCheckout-shipments .shipments-methods #shipping_method.distributor > li[data-distributors="1"] {
  width: 50%;
}
@media print, screen and (min-width: 47.5em) {
  .storeCheckout-shipments .shipments-methods #shipping_method.distributor > li[data-distributors="1"] {
    margin-left: 0;
  }
}
.storeCheckout-shipments .shipments-methods #shipping_method.distributor > li[data-distributors="1"] label {
  justify-content: flex-start;
  flex-direction: row;
  align-items: baseline;
  padding: 22px 22px 22px 151px;
  font-weight: 900;
  font-size: 24px;
  line-height: 29px;
  color: black;
  text-transform: uppercase;
}
.storeCheckout-shipments .shipments-methods #shipping_method.distributor > li[data-distributors="1"] label[data-method=shipping-method-customer_dhl_account] {
  background: url("../../assets/images/icons/dhl.svg") no-repeat 22px 22px;
  background-size: 107px 107px;
}
@media screen and (max-width: 26.1875em) {
  .storeCheckout-shipments .shipments-methods #shipping_method.distributor > li[data-distributors="1"] label[data-method=shipping-method-customer_dhl_account] {
    background-size: 80px;
    padding-left: 122px;
    font-size: 18px;
  }
}
.storeCheckout-shipments .shipments-methods #shipping_method.distributor > li[data-distributors="1"] label[data-method=shipping-method-customer_fedex_account] {
  background: url("../../assets/images/icons/fedex.svg") no-repeat 22px 22px;
  background-size: 107px 107px;
}
@media screen and (max-width: 26.1875em) {
  .storeCheckout-shipments .shipments-methods #shipping_method.distributor > li[data-distributors="1"] label[data-method=shipping-method-customer_fedex_account] {
    background-size: 80px;
    padding-left: 122px;
    font-size: 18px;
  }
}
.storeCheckout-shipments .shipments-methods #shipping_method.distributor > li[data-distributors="1"] label[data-method=shipping-method-freight_forwarder] {
  background: url("../../assets/images/icons/freight.svg") no-repeat 22px 22px;
  background-size: 107px 107px;
}
@media screen and (max-width: 26.1875em) {
  .storeCheckout-shipments .shipments-methods #shipping_method.distributor > li[data-distributors="1"] label[data-method=shipping-method-freight_forwarder] {
    background-size: 80px;
    padding-left: 122px;
    font-size: 18px;
  }
}
.storeCheckout-shipments .shipments-methods #shipping_method.distributor > li[data-distributors="1"] label:hover {
  padding: 20px 22px 22px 149px;
  background-position: 20px 20px;
}
.storeCheckout-shipments .shipments-methods #shipping_method.distributor > li[data-distributors="1"] label.active {
  padding: 20px 22px 22px 149px;
  background-position: 20px 18px;
}
@media screen and (max-width: 26.1875em) {
  .storeCheckout-shipments .shipments-methods #shipping_method.distributor > li[data-distributors="1"] label.active {
    background-size: 80px;
    padding-left: 122px;
    font-size: 18px;
  }
}
@media screen and (max-width: 63.9375em) {
  .storeCheckout-shipments .shipments-methods #shipping_method.distributor > li[data-distributors="1"] label {
    text-align: left;
  }
}
.storeCheckout-shipments .shipments-methods #shipping_method.distributor > li.break-line {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  height: 1px;
}
.storeCheckout-shipments .shipments-methods #shipping_method.distributor > li[data-method=shipping-method-ship_prepay_and_add] {
  width: 100% !important;
}
.storeCheckout-shipments .shipments-methods #shipping_method.distributor > li[data-method=shipping-method-ship_prepay_and_add] label {
  border: none;
  padding-top: 30px;
  padding-bottom: 10px;
  height: auto;
  color: inherit;
  cursor: default;
}
.storeCheckout-shipments .shipments-methods #shipping_method.distributor > li[data-method=shipping-method-freight_forwarder] {
  height: 315px;
  margin-top: -165px;
}
@media print, screen and (min-width: 47.5em) {
  .storeCheckout-shipments .shipments-methods #shipping_method.distributor > li {
    height: 150px;
  }
  .storeCheckout-shipments .shipments-methods #shipping_method.distributor > li[data-method=shipping-method-freight_forwarder] {
    height: 315px;
  }
}
@media screen and (max-width: 63.9375em) {
  .storeCheckout-shipments .shipments-methods #shipping_method.distributor > li {
    width: 100% !important;
    height: auto;
  }
  .storeCheckout-shipments .shipments-methods #shipping_method.distributor > li[data-method=shipping-method-freight_forwarder], .storeCheckout-shipments .shipments-methods #shipping_method.distributor > li[data-method=shipping-method-customer_dhl_account], .storeCheckout-shipments .shipments-methods #shipping_method.distributor > li[data-method=shipping-method-customer_fedex_account] {
    margin-top: 0;
    height: 150px;
  }
}
@media screen and (max-width: 26.1875em) {
  .storeCheckout-shipments .shipments-methods #shipping_method.distributor > li[data-method=shipping-method-freight_forwarder], .storeCheckout-shipments .shipments-methods #shipping_method.distributor > li[data-method=shipping-method-customer_dhl_account], .storeCheckout-shipments .shipments-methods #shipping_method.distributor > li[data-method=shipping-method-customer_fedex_account] {
    height: 123px;
  }
}
.storeCheckout-shipments .shipments-after {
  width: 100%;
  flex-grow: 1;
  margin-top: 20px;
}
.storeCheckout-shipments .shipments-after .form-row label {
  margin-bottom: 10px;
  padding-left: 25px;
}
.storeCheckout-shipments .shipments-after .form-row:last-child {
  margin-bottom: 0 !important;
}
.storeCheckout-shipments .shipments-after .form-row:last-child input {
  margin-bottom: 0 !important;
}
.storeCheckout .checkout--addresses {
  margin-left: 0.625rem;
  margin-right: 0.625rem;
  margin-bottom: 0;
}
@media print, screen and (min-width: 47.5em) {
  .storeCheckout .checkout--addresses {
    margin-left: 0.9375rem;
    margin-right: 0.9375rem;
  }
}
.storeCheckout .checkout--address {
  font-size: 18px;
  font-family: "avenir-lt-pro", "Avenir LT W01_45 Book1475508", "AvenirLTW01-45Book", "Avenir", "Avenir LT", "Helvetica", sans-serif;
  line-height: 150%;
}
.storeCheckout .checkout--address strong {
  font-family: "avenir-lt-pro", "Avenir LT W01_65 Medium1475532", "AvenirLTW01-65Medium", "Avenir", "Avenir LT", "Helvetica", sans-serif;
}
@media print, screen and (min-width: 47.5em) {
  .storeCheckout .checkout--address > *:first-child {
    margin-bottom: 16px;
  }
}
.storeCheckout .checkout--address > *:last-child {
  margin-top: 16px;
  margin-bottom: 16px;
}
.storeCheckout .checkout--address--default {
  float: right;
  color: #26247b;
  font-size: 16px;
  font-family: "Lato", "Helvetica", "sans-serif";
  font-weight: 900;
}
.storeCheckout .checkout .address-switch-button {
  margin-top: 24px;
  font-family: "avenir-lt-pro", "Avenir LT W01_65 Medium1475532", "AvenirLTW01-65Medium", "Avenir", "Avenir LT", "Helvetica", sans-serif;
  font-weight: 700;
}
.storeCheckout .woocommerce-additional-fields .form-row, .storeCheckout .woocommerce-shipping-fields .form-row, .storeCheckout .woocommerce-billing-fields .form-row, .storeCheckout .woocommerce-enduser-fields .form-row, .storeCheckout .woocommerce-checkout-review-order .form-row {
  position: relative;
}
.storeCheckout .woocommerce-additional-fields .form-row .input-label, .storeCheckout .woocommerce-shipping-fields .form-row .input-label, .storeCheckout .woocommerce-billing-fields .form-row .input-label, .storeCheckout .woocommerce-enduser-fields .form-row .input-label, .storeCheckout .woocommerce-checkout-review-order .form-row .input-label {
  display: block;
  position: absolute;
  left: 18px;
  top: 16px;
  background: white;
  padding: 0px 7px;
  line-height: 17px;
  color: rgba(0, 0, 0, 0.5);
  font-size: 16px;
  transition: 0.2s all ease-in-out;
  transform-origin: left center;
  pointer-events: none;
}
.storeCheckout .woocommerce-additional-fields .form-row .required .input-label, .storeCheckout .woocommerce-shipping-fields .form-row .required .input-label, .storeCheckout .woocommerce-billing-fields .form-row .required .input-label, .storeCheckout .woocommerce-enduser-fields .form-row .required .input-label, .storeCheckout .woocommerce-checkout-review-order .form-row .required .input-label {
  display: none;
}
.storeCheckout .woocommerce-additional-fields .form-row input::-moz-placeholder, .storeCheckout .woocommerce-additional-fields .form-row textarea::-moz-placeholder, .storeCheckout .woocommerce-shipping-fields .form-row input::-moz-placeholder, .storeCheckout .woocommerce-shipping-fields .form-row textarea::-moz-placeholder, .storeCheckout .woocommerce-billing-fields .form-row input::-moz-placeholder, .storeCheckout .woocommerce-billing-fields .form-row textarea::-moz-placeholder, .storeCheckout .woocommerce-enduser-fields .form-row input::-moz-placeholder, .storeCheckout .woocommerce-enduser-fields .form-row textarea::-moz-placeholder, .storeCheckout .woocommerce-checkout-review-order .form-row input::-moz-placeholder, .storeCheckout .woocommerce-checkout-review-order .form-row textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0);
}
.storeCheckout .woocommerce-additional-fields .form-row input::placeholder, .storeCheckout .woocommerce-additional-fields .form-row textarea::placeholder, .storeCheckout .woocommerce-shipping-fields .form-row input::placeholder, .storeCheckout .woocommerce-shipping-fields .form-row textarea::placeholder, .storeCheckout .woocommerce-billing-fields .form-row input::placeholder, .storeCheckout .woocommerce-billing-fields .form-row textarea::placeholder, .storeCheckout .woocommerce-enduser-fields .form-row input::placeholder, .storeCheckout .woocommerce-enduser-fields .form-row textarea::placeholder, .storeCheckout .woocommerce-checkout-review-order .form-row input::placeholder, .storeCheckout .woocommerce-checkout-review-order .form-row textarea::placeholder {
  color: rgba(0, 0, 0, 0);
}
.storeCheckout .woocommerce-additional-fields .form-row input:not(:-moz-placeholder-shown) + .input-label, .storeCheckout .woocommerce-additional-fields .form-row input:not(:-moz-placeholder-shown) + * + .input-label, .storeCheckout .woocommerce-shipping-fields .form-row input:not(:-moz-placeholder-shown) + .input-label, .storeCheckout .woocommerce-shipping-fields .form-row input:not(:-moz-placeholder-shown) + * + .input-label, .storeCheckout .woocommerce-billing-fields .form-row input:not(:-moz-placeholder-shown) + .input-label, .storeCheckout .woocommerce-billing-fields .form-row input:not(:-moz-placeholder-shown) + * + .input-label, .storeCheckout .woocommerce-enduser-fields .form-row input:not(:-moz-placeholder-shown) + .input-label, .storeCheckout .woocommerce-enduser-fields .form-row input:not(:-moz-placeholder-shown) + * + .input-label, .storeCheckout .woocommerce-checkout-review-order .form-row input:not(:-moz-placeholder-shown) + .input-label, .storeCheckout .woocommerce-checkout-review-order .form-row input:not(:-moz-placeholder-shown) + * + .input-label {
  top: -7px;
  transform: scale(0.875);
}
.storeCheckout .woocommerce-additional-fields .form-row input:not(:placeholder-shown) + .input-label, .storeCheckout .woocommerce-additional-fields .form-row input:not(:placeholder-shown) + * + .input-label, .storeCheckout .woocommerce-additional-fields .form-row input:focus + .input-label, .storeCheckout .woocommerce-additional-fields .form-row input:focus + * + .input-label, .storeCheckout .woocommerce-additional-fields .form-row select + .input-label, .storeCheckout .woocommerce-additional-fields .form-row select + * + .input-label, .storeCheckout .woocommerce-shipping-fields .form-row input:not(:placeholder-shown) + .input-label, .storeCheckout .woocommerce-shipping-fields .form-row input:not(:placeholder-shown) + * + .input-label, .storeCheckout .woocommerce-shipping-fields .form-row input:focus + .input-label, .storeCheckout .woocommerce-shipping-fields .form-row input:focus + * + .input-label, .storeCheckout .woocommerce-shipping-fields .form-row select + .input-label, .storeCheckout .woocommerce-shipping-fields .form-row select + * + .input-label, .storeCheckout .woocommerce-billing-fields .form-row input:not(:placeholder-shown) + .input-label, .storeCheckout .woocommerce-billing-fields .form-row input:not(:placeholder-shown) + * + .input-label, .storeCheckout .woocommerce-billing-fields .form-row input:focus + .input-label, .storeCheckout .woocommerce-billing-fields .form-row input:focus + * + .input-label, .storeCheckout .woocommerce-billing-fields .form-row select + .input-label, .storeCheckout .woocommerce-billing-fields .form-row select + * + .input-label, .storeCheckout .woocommerce-enduser-fields .form-row input:not(:placeholder-shown) + .input-label, .storeCheckout .woocommerce-enduser-fields .form-row input:not(:placeholder-shown) + * + .input-label, .storeCheckout .woocommerce-enduser-fields .form-row input:focus + .input-label, .storeCheckout .woocommerce-enduser-fields .form-row input:focus + * + .input-label, .storeCheckout .woocommerce-enduser-fields .form-row select + .input-label, .storeCheckout .woocommerce-enduser-fields .form-row select + * + .input-label, .storeCheckout .woocommerce-checkout-review-order .form-row input:not(:placeholder-shown) + .input-label, .storeCheckout .woocommerce-checkout-review-order .form-row input:not(:placeholder-shown) + * + .input-label, .storeCheckout .woocommerce-checkout-review-order .form-row input:focus + .input-label, .storeCheckout .woocommerce-checkout-review-order .form-row input:focus + * + .input-label, .storeCheckout .woocommerce-checkout-review-order .form-row select + .input-label, .storeCheckout .woocommerce-checkout-review-order .form-row select + * + .input-label {
  top: -7px;
  transform: scale(0.875);
}
.storeCheckout .woocommerce-additional-fields .form-row textarea:not(:-moz-placeholder-shown) + .input-label, .storeCheckout .woocommerce-shipping-fields .form-row textarea:not(:-moz-placeholder-shown) + .input-label, .storeCheckout .woocommerce-billing-fields .form-row textarea:not(:-moz-placeholder-shown) + .input-label, .storeCheckout .woocommerce-enduser-fields .form-row textarea:not(:-moz-placeholder-shown) + .input-label, .storeCheckout .woocommerce-checkout-review-order .form-row textarea:not(:-moz-placeholder-shown) + .input-label {
  top: -7px;
  transform: scale(0.875);
}
.storeCheckout .woocommerce-additional-fields .form-row textarea:not(:placeholder-shown) + .input-label, .storeCheckout .woocommerce-additional-fields .form-row textarea:focus + .input-label, .storeCheckout .woocommerce-additional-fields .form-row textarea:not(:empty) + .input-label, .storeCheckout .woocommerce-shipping-fields .form-row textarea:not(:placeholder-shown) + .input-label, .storeCheckout .woocommerce-shipping-fields .form-row textarea:focus + .input-label, .storeCheckout .woocommerce-shipping-fields .form-row textarea:not(:empty) + .input-label, .storeCheckout .woocommerce-billing-fields .form-row textarea:not(:placeholder-shown) + .input-label, .storeCheckout .woocommerce-billing-fields .form-row textarea:focus + .input-label, .storeCheckout .woocommerce-billing-fields .form-row textarea:not(:empty) + .input-label, .storeCheckout .woocommerce-enduser-fields .form-row textarea:not(:placeholder-shown) + .input-label, .storeCheckout .woocommerce-enduser-fields .form-row textarea:focus + .input-label, .storeCheckout .woocommerce-enduser-fields .form-row textarea:not(:empty) + .input-label, .storeCheckout .woocommerce-checkout-review-order .form-row textarea:not(:placeholder-shown) + .input-label, .storeCheckout .woocommerce-checkout-review-order .form-row textarea:focus + .input-label, .storeCheckout .woocommerce-checkout-review-order .form-row textarea:not(:empty) + .input-label {
  top: -7px;
  transform: scale(0.875);
}
.storeCheckout #ship-to-different-address {
  display: none;
}
.storeCheckout #ship-to-different-address, .storeCheckout #enduser-different-address {
  padding: 30px;
  background: #F6F6F6;
  border-radius: 20px;
  margin-bottom: 20px;
}
.storeCheckout #ship-to-different-address label, .storeCheckout #enduser-different-address label {
  font-family: "Lato", "Helvetica", "sans-serif";
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 22px;
  cursor: pointer;
}
.storeCheckout #ship-to-different-address input, .storeCheckout #enduser-different-address input {
  visibility: hidden;
  margin: 0;
  position: absolute;
}
.storeCheckout #ship-to-different-address .check, .storeCheckout #enduser-different-address .check {
  display: inline-block;
  background: #FFFFFF url("../../assets/images/icons/check.svg") no-repeat center center;
  border: 1px solid #CACACA;
  box-sizing: border-box;
  border-radius: 10px;
  width: 38px;
  height: 38px;
  vertical-align: middle;
  margin-right: 10px;
  transition: 0.1s all linear;
}
.storeCheckout #ship-to-different-address .check:before, .storeCheckout #enduser-different-address .check:before {
  display: none;
}
@media screen and (max-width: 26.1875em) {
  .storeCheckout #ship-to-different-address .check, .storeCheckout #enduser-different-address .check {
    float: left;
  }
}
.storeCheckout #ship-to-different-address label:hover > .check, .storeCheckout #enduser-different-address label:hover > .check {
  background-color: #ccc;
}
.storeCheckout #ship-to-different-address input:checked + .check, .storeCheckout #enduser-different-address input:checked + .check {
  background: #26247b url("../../assets/images/icons/check.svg") no-repeat center center;
  border-color: #26247b;
}
@media screen and (max-width: 63.9375em) {
  .storeCheckout #enduser-different-address #enduser-different-address-checkbox {
    margin-bottom: 10px;
  }
}
.storeCheckout .enduser-notice {
  background: #F8F8F8;
  padding: 30px;
  color: #EA3F3F;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 23px;
  text-align: center;
  border-radius: 8px;
  margin-top: -20px;
  margin-bottom: 45px;
}
.storeCheckout .enduser-notice strong {
  text-decoration-line: underline;
  font-weight: bold;
}
.storeCheckout .enduser-notice img {
  margin-bottom: 10px;
}
.storeCheckout .woocommerce-invalid-required-field input[type=text], .storeCheckout .woocommerce-invalid-required-field input[type=email], .storeCheckout .woocommerce-invalid-required-field input[type=tel], .storeCheckout .woocommerce-invalid-required-field select, .storeCheckout .woocommerce-invalid-required-field textarea {
  border-color: #e21616;
}
.storeCheckout-payments {
  margin: 0 0 50px;
  padding: 0 0 50px;
  border-bottom: 1px solid #ccc;
}
.storeCheckout-cards {
  margin-bottom: 40px;
  text-align: center;
}
.storeCheckout-card {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 35px;
  margin: 0 10px 20px;
  background-repeat: no-repeat;
  background-position: center center;
}
@media print, screen and (min-width: 64em) {
  .storeCheckout-card {
    width: 70px;
    height: 50px;
    margin: 0 25px 0;
  }
}
.storeCheckout-card:before, .storeCheckout-card:after {
  position: absolute;
  display: block;
  content: "";
  cursor: pointer;
  transition: opacity 0.25s;
  opacity: 0;
}
.storeCheckout-card:before {
  top: -8px;
  right: -11px;
  bottom: -8px;
  left: -11px;
  border-radius: 10px;
  background-color: #26247b;
}
@media print, screen and (min-width: 64em) {
  .storeCheckout-card:before {
    top: -12px;
    right: -15px;
    bottom: -12px;
    left: -15px;
  }
}
.storeCheckout-card:after {
  top: -4px;
  right: -7px;
  bottom: -4px;
  left: -7px;
  border-radius: 7px;
  background-color: #fff;
}
@media print, screen and (min-width: 64em) {
  .storeCheckout-card:after {
    top: -8px;
    right: -11px;
    bottom: -8px;
    left: -11px;
  }
}
.storeCheckout-card img {
  position: relative;
  z-index: 200;
  cursor: pointer;
}
.storeCheckout-card:hover, .storeCheckout-card.active {
  border-color: #26247b;
}
.storeCheckout-card:hover:before, .storeCheckout-card:hover:after, .storeCheckout-card.active:before, .storeCheckout-card.active:after {
  opacity: 1;
}
.storeCheckout .button {
  width: 100%;
}

#sagepaymentsusaapi-cc-form input {
  padding-bottom: 18px !important;
  padding-left: 25px !important;
  padding-right: 12.5px !important;
  padding-top: 18px !important;
}

.storeFeatured {
  position: relative;
  top: -175px;
}
.storeFeatured + .main--store {
  margin-top: -175px;
}
.storeFeatured-item {
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
@media print, screen and (min-width: 64em) {
  .storeFeatured-item {
    max-width: 950px;
  }
}
@media screen and (min-width: 80em) {
  .storeFeatured-item {
    max-width: 950px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 118.75em) {
  .storeFeatured-item {
    max-width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
}
.storeFeatured .owl-stage {
  padding-top: 50px;
  padding-bottom: 50px;
}
.storeFeatured .owl-dots .owl-dot span {
  background-color: #d4d3e5;
}
.storeFeatured .owl-dots .owl-dot.active span {
  background-color: #26247b;
}
.storeFeatured-info {
  padding: 30px 20px;
  text-align: center;
}
@media print, screen and (min-width: 47.5em) {
  .storeFeatured-info {
    padding: 40px 20px 0 0;
    text-align: left;
  }
}
@media print, screen and (min-width: 64em) {
  .storeFeatured-info {
    padding: 50px 40px 0 0;
  }
}
@media screen and (min-width: 118.75em) {
  .storeFeatured-info {
    padding: 70px 70px 0 0;
  }
}
.storeFeatured-info h2 {
  color: #1a1a1a;
  line-height: 1.1;
  font-size: 1.5rem;
}
@media print, screen and (min-width: 47.5em) {
  .storeFeatured-info h2 {
    font-size: 2.125rem;
  }
}
@media print, screen and (min-width: 64em) {
  .storeFeatured-info h2 {
    font-size: 2.625rem;
  }
}
@media screen and (min-width: 118.75em) {
  .storeFeatured-info h2 {
    font-size: 3.375rem;
  }
}
.storeFeatured-info p {
  color: #333333;
  font-size: 1rem;
  margin-bottom: 1.5em;
}
@media screen and (min-width: 118.75em) {
  .storeFeatured-info p {
    font-size: 1.125rem;
  }
}
.storeFeatured-info .button {
  font-size: 1.0625rem;
}
@media screen and (min-width: 118.75em) {
  .storeFeatured-info .button {
    font-size: 1.375rem;
  }
}

html.nooverflow, body.nooverflow {
  overflow: hidden;
  min-height: 100%;
  max-height: 100%;
}

#store .hero--wave,
#store-category .hero--wave {
  margin-top: 80px;
}
@media print, screen and (min-width: 64em) {
  #store .hero--wave,
  #store-category .hero--wave {
    margin-top: -80px;
  }
}

.main--store {
  margin-top: -75px;
}

.storeSidebar {
  z-index: 2;
  top: 55px;
  right: 0;
  left: 0;
  float: none;
  padding: 0;
  margin-top: 50px;
  background: #fff;
}
@media print, screen and (min-width: 64em) {
  .storeSidebar {
    position: relative;
    z-index: auto;
    top: auto;
    float: left;
    width: 260px;
    padding-right: 0;
    padding-left: 0;
    padding-top: 25px;
    margin-top: 0;
    background: transparent;
  }
}
.storeSidebar-container {
  position: absolute;
  z-index: -1;
  left: -9999px;
  padding-top: 20px;
  transition: transform 0.25s, opacity 0.25s;
  transform: translateY(-20px);
  opacity: 0;
  background-color: #fff;
}
@media print, screen and (min-width: 64em) {
  .storeSidebar-container {
    position: relative;
    z-index: 1;
    right: auto;
    left: auto;
    background-color: transparent;
    display: block;
    opacity: 1;
  }
}
.storeSidebar-container:before {
  display: block;
  width: 0;
  height: 0;
  margin: -15px auto 0;
  content: "";
  border-right: 15px solid transparent;
  border-bottom: 15px solid #aa273e;
  border-left: 15px solid transparent;
}
@media print, screen and (min-width: 64em) {
  .storeSidebar-container:before {
    display: none;
  }
}
.storeSidebar-container.init {
  z-index: 100;
  right: 0;
  left: 0;
  transform: translateY(0);
  opacity: 1;
}
.storeSidebar-box {
  padding: 30px 20px;
}
.storeSidebar-box.-tags {
  background-color: #aa273e;
}
.storeSidebar-box.-tags .storeSidebar-title {
  color: #601420;
}
.storeSidebar-box.-categories {
  background-color: #2b2992;
}
.storeSidebar-box.-categories .storeSidebar-title {
  color: #13123c;
}
.storeSidebar-box.-categories .storeSidebar-title img {
  float: right;
  max-height: 20px;
  margin-top: 3px;
}
.storeSidebar-box.-account {
  background-color: #e6e6e6;
}
.storeSidebar-box.-account .storeSidebar-list > li {
  border-bottom-color: #dbdbdb;
}
.storeSidebar-box.-account .storeSidebar-list > li > a {
  color: #75787b;
}
.storeSidebar-list {
  margin: 0;
  padding: 0;
}
.storeSidebar-list > li {
  margin: 0 -20px;
  padding: 0 20px;
  list-style: none;
}
.storeSidebar-list > li:last-child {
  border: 0;
}
.storeSidebar-list > li.has-children.active {
  background-color: #17174e;
}
.storeSidebar-list > li.subcategory {
  overflow: hidden;
  max-height: 0;
  transition: 0.3s;
  background-color: #17174e;
}
.storeSidebar-list > li.subcategory a {
  margin-left: 20px;
  font-weight: normal;
}
.storeSidebar-list > li.subcategory.active {
  max-height: 200px;
}
.storeSidebar-list > li > a {
  display: block;
  padding: 15px 0;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.1;
}
.storeSidebar-list > li > a span {
  display: inline-block;
  float: right;
  margin-left: 5px;
  color: #67669b;
}
.storeSidebar-list > li > a em {
  position: absolute;
  right: 10px;
  display: inline-block;
  float: right;
  margin-top: -12px;
  margin-left: 5px;
  padding: 10px;
  vertical-align: middle;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  font-style: normal;
  line-height: 1.1;
}
.storeSidebar-list > li > a img {
  float: right;
  max-height: 15px;
  margin-top: 2px;
}
.storeSidebar-list > li > a:hover {
  padding: 15px 0 15px 10px;
}
.storeSidebar-title {
  display: block;
  margin-bottom: 10px;
  color: #c0c0c1;
  font-family: "avenir-lt-pro", "Avenir LT W01_85 Heavy1475544", "Helvetica", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
}
@media print, screen and (min-width: 64em) {
  .storeSidebar-title {
    font-size: 1.25rem;
  }
}

.storeContent {
  padding-top: 20px;
}
@media print, screen and (min-width: 64em) {
  .storeContent {
    padding-top: 55px;
    width: calc(100% - 260px - 20px);
    float: right;
  }
}
@media screen and (max-width: 63.9375em) {
  .storeContent {
    position: relative;
    z-index: 2;
  }
}
.storeContent-title {
  margin: 0 0 30px;
  text-align: left;
  color: #000000;
  font-size: 1.5rem;
}
.storeContent-title::before, .storeContent-title::after {
  display: table;
  content: " ";
}
.storeContent-title::after {
  clear: both;
}
@media print, screen and (min-width: 47.5em) {
  .storeContent-title {
    font-size: 2.125rem;
  }
}
.storeContent-title .button {
  width: 170px;
  height: 60px;
  padding: 15px 0;
}
.storeContent-subtitle {
  margin-top: -16px;
  margin-bottom: 24px;
  font-size: 20px;
  line-height: 22.5px;
  font-weight: 500;
  font-family: "avenir-lt-pro", "Avenir LT W01_65 Medium1475532", "AvenirLTW01-65Medium", "Avenir", "Avenir LT", "Helvetica", sans-serif;
  color: #6E7174;
}
.storeContent-subtitle strong {
  font-family: "avenir-lt-pro", "Avenir LT W01_95 Black1475556", "AvenirLTW01-95Black", "Avenir", "Avenir LT", "Helvetica", sans-serif;
  font-weight: 900;
  color: #000;
}
.storeContent-results {
  margin: 0 0 50px;
}
@media screen and (max-width: 63.9375em) {
  .storeContent-results {
    margin-top: 40px;
  }
}
.storeContent-list {
  padding: 0;
  font-size: 0;
}
@media print, screen and (min-width: 64em) {
  .storeContent-list > li {
    border-right: 1px solid #d9d9d9;
    border-bottom: 1px solid #d9d9d9;
  }
}
.storeContent-item {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  width: 100%;
  list-style: none;
  vertical-align: top;
  border: 0;
  background-color: #fff;
  border-bottom: 1px solid #e6e6e6;
  border-left: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
  padding: 25px;
}
.storeContent-item .cart {
  position: absolute;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0);
  padding: 0 0 25px;
  transition: 0.15s;
}
@media print, screen and (min-width: 47.5em) {
  .storeContent-item {
    width: 50%;
  }
  .storeContent-item:first-child:last-child {
    width: 100%;
  }
}
@media screen and (min-width: 80em) {
  .storeContent-item {
    width: 33.33%;
    padding: 50px 25px;
  }
}
.storeContent-item:hover .cart {
  background: rgb(255, 255, 255);
}
.storeContent-item:hover .button.primary {
  opacity: 1;
  transform: translateY(0);
  height: 60px;
  padding: 15px 0;
  border-width: 4px;
}
.storeContent-item .button.primary {
  width: 170px;
  height: 60px;
  overflow: hidden;
  margin-top: 25px;
  padding: 15px 0;
  border-width: 4px;
  transition: transform 0.3s, opacity 0.3s;
}
@media print, screen and (min-width: 64em) {
  .storeContent-item .button.primary {
    opacity: 0;
    padding: 0;
    border-width: 0;
    transform: translateY(20px);
  }
}
.storeContent-item.order-online {
  border-left: none !important;
  border-right: none !important;
  border-bottom: none !important;
}
.storeContent-item.order-online:first-child {
  width: 100%;
}
.storeContent-item.order-online:first-child img {
  width: 100%;
  max-width: 200px;
}
.storeContent-item.order-online:first-child .button {
  padding-top: 20px;
  padding-bottom: 20px;
  max-width: 675px;
  width: 100%;
  border-width: 7px;
  border-radius: 63px;
  font-weight: 500;
  font-size: 22px;
  line-height: 43px;
}
.storeContent-item.order-online img {
  margin-bottom: 10px;
}
.storeContent-item.order-online .valign-middle {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.storeContent-item.order-online .valign-middle .valign-middle-box {
  width: 100%;
}
.storeContent-item.order-online .button {
  font-weight: 500;
  font-size: 11.2981px;
  line-height: 14px;
  display: block;
  text-align: center;
  margin: 0 auto;
  max-width: 220px;
  border-width: 2.3819px;
  margin-top: 8px;
  padding-top: 5px;
  padding-bottom: 5px;
}
@media print, screen and (min-width: 47.5em) {
  .storeContent-item.order-online {
    padding: 80px 25px;
  }
}
@media print, screen and (min-width: 64em) {
  .storeContent-item.order-online {
    padding: 120px 25px;
  }
}
.storeContent-item .badge {
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  display: block;
  width: 100px;
  height: 100px;
  padding: 0;
  border-radius: 0;
  background: url("../images/badges/store@2x.png") center center no-repeat;
  background-size: 100px auto;
}
.storeContent-item .badge > span {
  position: relative;
  top: 50%;
  right: 0;
  left: 0;
  display: block;
  margin-top: -15px;
  margin-right: -15px;
  padding: 0;
  transform: rotate(45deg) translateY(-50%);
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.25em;
}
@media screen and (min-width: 47.5em) and (max-width: 79.9375em) {
  .storeContent-item:nth-child(2n+2) {
    border-left: 0;
    border-right: 1px solid #e6e6e6;
  }
}
@media screen and (min-width: 80em) {
  .storeContent-item:nth-child(3n+2) {
    border-left: 0;
    border-right: 1px solid #e6e6e6;
  }
}
@media screen and (min-width: 80em) {
  .storeContent-item:nth-child(3n+3) {
    border-left: 0;
    border-right: 1px solid #e6e6e6;
  }
}
.storeContent-item:hover {
  z-index: 100;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
}
.storeContent .image {
  display: block;
  margin: 0 auto 20px;
}
.storeContent .name {
  display: block;
  text-align: center;
  color: #2b2992;
  font-family: "avenir-lt-pro", "Avenir LT W01_65 Medium1475532", "AvenirLTW01-65Medium", "Avenir", "Avenir LT", "Helvetica", sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.1;
}
.storeContent .moreinfo {
  padding: 15px 0;
  text-align: center;
  color: #6e7174;
  font-size: 0.9375rem;
}

.storeContent .button.view-all, .storeProduct-info .button.view-all {
  width: 170px;
  height: 60px;
  padding: 15px 0;
}

.storeProduct-info .storeProduct-badges {
  margin-bottom: 10px;
  margin-right: -15px;
}
.storeProduct-info .storeProduct-badges img {
  max-height: 32px;
  margin-right: 15px;
}

.storeContent-item .storeProduct-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  white-space: nowrap;
  z-index: 2;
}
.storeContent-item .storeProduct-badges img {
  max-height: 30px;
  margin-right: 5px;
}

.woocommerce-orders-table .button {
  font-size: 14px !important;
  padding: 0.6em 1.1em !important;
  border-width: 0.2em !important;
}

.sku-highlight {
  font-family: "avenir-lt-pro", "Avenir LT W01_95 Black1475556", "AvenirLTW01-95Black", "Avenir", "Avenir LT", "Helvetica", sans-serif;
  font-weight: 900;
  color: #A9273E;
}

.storeProduct {
  position: relative;
  padding: 0 0 75px;
  margin: 25px 0 0;
  margin-bottom: 0;
  position: relative;
}
.storeProduct-badge {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 134px;
  height: 134px;
  background: url("../images/badges/store@2x.png") center center no-repeat;
  background-size: 134px auto;
}
.storeProduct-badge.-featuredProduct {
  right: calc(0.9375rem + 5px);
}
@media screen and (min-width: 118.75em) {
  .storeProduct-badge.-featuredProduct {
    right: calc(0.9375rem + 15px);
  }
}
.storeProduct-badge > span {
  display: block;
  padding: 15px 15px 0 0;
  text-align: right;
  text-transform: uppercase;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.25em;
  transform: rotate(45deg) translateY(-50%);
  top: 50%;
  left: 0;
  right: 0;
  margin-top: -30px;
  margin-right: -5px;
  position: relative;
}
.storeProduct-photos {
  padding: 0 25px;
  margin: 0 0 25px;
}
@media print, screen and (min-width: 64em) {
  .storeProduct-photos {
    padding: 0 0 0 30px;
    margin: 0;
  }
}
.storeProduct-photos > .thumbnails {
  float: left;
  width: 25%;
  display: none;
}
@media print, screen and (min-width: 47.5em) {
  .storeProduct-photos > .thumbnails {
    display: block;
  }
}
.storeProduct-photos > .thumbnails span {
  display: block;
  margin: 0 0 20px;
  cursor: pointer;
  border: 1px solid #e6e6e6;
}
.storeProduct-photos > .thumbnails span img {
  width: 100%;
}
.storeProduct-photos > .mainPhoto {
  float: left;
  width: 100%;
}
@media print, screen and (min-width: 47.5em) {
  .storeProduct-photos > .mainPhoto {
    width: 75%;
  }
}
.storeProduct-photos > .mainPhoto img {
  width: 100%;
}
.storeProduct-info {
  padding: 0 25px;
}
@media print, screen and (min-width: 64em) {
  .storeProduct-info {
    padding: 0 30px 0 0;
  }
}
.storeProduct-desc {
  margin-bottom: 50px;
  color: #333;
  font-size: 1.125rem;
}
.storeProduct-desc ul {
  margin: 0;
  padding: 0;
}
.storeProduct-desc li {
  padding: 8px 0 8px 35px;
  list-style: none;
  border-bottom: 1px solid #e6e6e6;
  background: url("../images/universal/arrow-secondary@2x.png") left 14px no-repeat;
  background-size: 22px auto;
}
.storeProduct-price {
  color: #26247b;
  font-family: "avenir-lt-pro", "Avenir LT W01_85 Heavy1475544", "Helvetica", sans-serif;
  font-weight: 700;
  font-size: 2.125rem;
}
.storeProduct-price del .woocommerce-Price-amount {
  color: #aa273e;
  text-decoration: line-through;
  font-size: 1.5rem;
}
.storeProduct-price span {
  display: inline-block;
  line-height: 65px;
}
.storeProduct-price > .button {
  position: relative;
  float: right;
  margin-top: 4px;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}
.storeProduct-name {
  margin: 0 0 30px;
  padding: 0 0 0.5em;
  color: #1a1a1a;
  border-bottom: 4px solid #26247b;
  font-size: 1.5rem;
  line-height: 1.15em;
}
@media print, screen and (min-width: 47.5em) {
  .storeProduct-name {
    font-size: 2.125rem;
  }
}
@media screen and (min-width: 80em) {
  .storeProduct-name {
    font-size: 3.375rem;
  }
}
.storeProduct-pricing-not-available {
  font-size: 15px;
  text-align: right;
}
.storeProduct .cartloader {
  text-align: center;
  width: 140px;
}
.storeProduct .cartloader img {
  margin: 0 0 0 auto;
}
@media print, screen and (min-width: 47.5em) {
  .storeProduct .cartloader {
    width: 154px;
  }
}
@media screen and (min-width: 80em) {
  .storeProduct .cartloader {
    width: 232px;
  }
}
.storeProduct .images {
  margin-bottom: 2em;
  padding-left: 25px;
  padding-right: 25px;
}
@media print, screen and (min-width: 47.5em) {
  .storeProduct .images {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.storeProduct .images img {
  height: auto;
  box-shadow: none;
}
.storeProduct .images .flex-viewport {
  margin-bottom: 20px;
}
.storeProduct .images.woocommerce-product-gallery {
  position: relative;
}
.storeProduct .images .woocommerce-product-gallery__image {
  text-align: center;
  width: 100%;
}
.storeProduct .images .woocommerce-product-gallery__wrapper {
  transition: all cubic-bezier(0.795, -0.035, 0, 1) 0.5s;
  margin: 0;
  padding: 0;
}
.storeProduct .images .woocommerce-product-gallery__wrapper .zoomImg {
  background-color: #fff;
  opacity: 0;
}
.storeProduct .images .woocommerce-product-gallery__image--placeholder {
  border: 1px solid #f2f2f2;
}
.storeProduct .images .woocommerce-product-gallery__image:nth-child(n+2) {
  width: 25%;
  display: inline-block;
}
.storeProduct .images .woocommerce-product-gallery__trigger {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  font-size: 2em;
  z-index: 9;
  width: 36px;
  height: 36px;
  background: #fff;
  text-indent: -9999px;
  border-radius: 100%;
  box-sizing: content-box;
}
.storeProduct .images .woocommerce-product-gallery__trigger::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border: 2px solid #000;
  border-radius: 100%;
  position: absolute;
  top: 9px;
  left: 9px;
  box-sizing: content-box;
}
.storeProduct .images .woocommerce-product-gallery__trigger::after {
  content: "";
  display: block;
  width: 2px;
  height: 8px;
  background: #000;
  border-radius: 6px;
  position: absolute;
  top: 19px;
  left: 22px;
  transform: rotate(-45deg);
  box-sizing: content-box;
}
.storeProduct .images .flex-control-thumbs {
  overflow: hidden;
  zoom: 1;
  margin: 0 -8px 0 -8px;
  padding: 0;
}
.storeProduct .images .flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
  list-style: none;
  text-align: center;
  padding: 0 8px 16px 8px;
}
.storeProduct .images .flex-control-thumbs li img {
  cursor: pointer;
  opacity: 0.5;
  margin: 0;
}
.storeProduct .images .flex-control-thumbs li img.flex-active, .storeProduct .images .flex-control-thumbs li img:hover {
  opacity: 1;
}
.storeProduct .woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n+1) {
  clear: left;
}
.storeProduct .woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n+1) {
  clear: left;
}
.storeProduct .woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n+1) {
  clear: left;
}

.pswp__bg {
  background: rgba(0, 0, 0, 0.9);
}

.pswp__caption__center {
  text-align: center;
}

.woocommerce-variation-price {
  display: none;
}

.common-popup {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9999;
  display: none;
}
.common-popup .valign-middle {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow-y: auto;
}
.common-popup .valign-middle .valign-middle-box {
  width: 100%;
  max-height: 100%;
  max-width: 720px;
  margin-left: 3%;
  margin-right: 3%;
  overflow-y: hidden;
  position: relative;
  display: flex;
}
@media print, screen and (min-width: 47.5em) {
  .common-popup .valign-middle .valign-middle-box {
    margin-left: 0px;
    margin-right: 0px;
    max-height: 90%;
  }
}
@media screen and (min-width: 80em) {
  .common-popup .valign-middle .valign-middle-box {
    max-width: 850px;
  }
}
.common-popup .box-inner {
  background: white;
  padding: 15px;
  padding-top: 26px;
  mix-blend-mode: normal;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.25);
  position: relative;
  text-align: left;
  color: #000;
  max-height: 100%;
  width: 100%;
  overflow-y: auto;
}
@media print, screen and (min-width: 47.5em) {
  .common-popup .box-inner {
    padding: 35px;
    padding-top: 26px;
    height: inherit;
  }
}
.common-popup .box-inner .close {
  position: absolute;
  top: 24px;
  left: 24px;
}
.common-popup .box-inner .close.right {
  left: auto;
  right: 24px;
}
.common-popup .box-inner h4 {
  text-align: center;
  font-style: normal;
  font-weight: 800;
  font-size: 34px;
  line-height: 100%;
  font-family: "avenir-lt-pro", "Avenir LT W01_65 Medium1475532", "AvenirLTW01-65Medium", "Avenir", "Avenir LT", "Helvetica", sans-serif;
  margin: 30px 20px 35px 20px;
}
@media print, screen and (min-width: 47.5em) {
  .common-popup .box-inner h4 {
    font-size: 40px;
  }
}
.common-popup .box-inner h4:after {
  content: "";
  display: block;
  clear: both;
}
.common-popup .box-inner p {
  font-family: "Lato", "Helvetica", "sans-serif";
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 157%;
  color: #000;
}
.common-popup .box-inner p:not(.form-row) {
  margin-bottom: 8px;
  text-align: center;
}
@media screen and (min-width: 30em) {
  .common-popup .box-inner p {
    font-size: 22px;
  }
}
.common-popup .box-inner p a {
  font: inherit;
}
.common-popup .cartloader {
  text-align: center;
  padding: 14px 0 13px 0;
}
.common-popup .cartloader img {
  margin: 0 auto;
}

.order-unlisted-products {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9999;
  display: none;
}
.order-unlisted-products .valign-middle {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.order-unlisted-products .valign-middle .valign-middle-box {
  width: 100%;
  max-width: 670px;
  margin-left: 3%;
  margin-right: 3%;
}
@media print, screen and (min-width: 47.5em) {
  .order-unlisted-products .valign-middle .valign-middle-box {
    margin-left: 0px;
    margin-right: 0px;
  }
}
@media screen and (min-width: 80em) {
  .order-unlisted-products .valign-middle .valign-middle-box {
    max-width: 850px;
  }
}
.order-unlisted-products .box-inner {
  background: white;
  padding: 15px;
  padding-top: 50px;
  mix-blend-mode: normal;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: scroll;
  height: 600px;
}
@media (orientation: landscape) {
  .order-unlisted-products .box-inner {
    height: 300px;
  }
}
@media screen and (min-width: 30em) {
  .order-unlisted-products .box-inner {
    padding: 25px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .order-unlisted-products .box-inner {
    padding: 35px;
    padding-top: 26px;
    overflow: hidden;
    height: inherit;
  }
}
.order-unlisted-products .box-inner .close {
  position: absolute;
  top: 25px;
  right: 40px;
}
.order-unlisted-products .box-inner .box {
  text-align: center;
}
.order-unlisted-products .box-inner .box img {
  margin-bottom: 10px;
}
.order-unlisted-products .box-inner h4 {
  font-style: normal;
  font-weight: 900;
  font-size: 34px;
  line-height: 38px;
  font-family: "avenir-lt-pro", "Avenir LT W01_85 Heavy1475544", "AvenirLTW01-85Heavy", "Avenir", "Avenir LT", "Helvetica", sans-serif;
  margin-top: 10px;
  text-align: center;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 30px;
}
@media screen and (min-width: 30em) {
  .order-unlisted-products .box-inner h4 {
    font-size: 43px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .order-unlisted-products .box-inner h4 {
    margin-bottom: 0px;
    height: 50px;
    font-size: 26px;
    margin-top: 20px;
    margin-bottom: 8px;
  }
}
.order-unlisted-products .box-inner h4:after {
  content: "";
  display: block;
  clear: both;
}
.order-unlisted-products .box-inner h4 img {
  display: block;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 10px;
  width: 85px;
  height: 85px;
}
@media print, screen and (min-width: 47.5em) {
  .order-unlisted-products .box-inner h4 img {
    position: relative;
    top: -5px;
    display: inline-block;
    width: 55px;
    height: 55px;
    margin: auto;
  }
}
.order-unlisted-products .box-inner p {
  margin-top: 10px;
  text-align: center;
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 26px;
}
@media screen and (min-width: 30em) {
  .order-unlisted-products .box-inner p {
    font-size: 22px;
    line-height: 32px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .order-unlisted-products .box-inner p {
    font-size: 14px;
    width: 580px;
    margin: 0 auto;
    margin-top: 10px;
    line-height: 28px;
  }
}
.order-unlisted-products .box-inner .flex-row {
  width: auto;
}
.order-unlisted-products .box-inner form {
  margin-top: 50px;
}
@media print, screen and (min-width: 47.5em) {
  .order-unlisted-products .box-inner form {
    margin-top: 22px;
  }
}
.order-unlisted-products .box-inner form label:not(.floating-label) {
  display: none;
}
.order-unlisted-products .box-inner form input::-moz-placeholder, .order-unlisted-products .box-inner form textarea::-moz-placeholder {
  color: #000;
}
.order-unlisted-products .box-inner form input::placeholder,
.order-unlisted-products .box-inner form textarea::placeholder {
  color: #000;
}
.order-unlisted-products .box-inner form input[type=number]:hover,
.order-unlisted-products .box-inner form input[type=number]:focus {
  border: 1px solid #aaa;
}
.order-unlisted-products .box-inner form input[type=number]::-webkit-inner-spin-button,
.order-unlisted-products .box-inner form input[type=number]::-webkit-outer-spin-button {
  opacity: 1;
}
.order-unlisted-products .box-inner form .wcpa_form_outer {
  margin: 0;
}
.order-unlisted-products .box-inner form .wcpa_form_outer .wcpa_section_body {
  display: flex;
  flex-wrap: wrap;
}
@media print, screen and (min-width: 47.5em) {
  .order-unlisted-products .box-inner form .wcpa_form_outer {
    width: 442px;
    margin: 0 auto;
  }
}
.order-unlisted-products .box-inner form .wcpa_form_outer .wcpa_field_wrap {
  margin-left: 0;
  margin-bottom: 0;
  padding-left: 0;
}
.order-unlisted-products .box-inner form .wcpa_form_outer .wcpa_row {
  flex-basis: 100%;
  position: relative;
  margin-top: 0;
  margin-bottom: 0;
}
.order-unlisted-products .box-inner form .wcpa_form_outer .wcpa_row .wcpa_field_bottom {
  display: none;
}
.order-unlisted-products .box-inner form .wcpa_form_outer .wcpa_row .floating-label {
  pointer-events: none;
}
.order-unlisted-products .box-inner form .wcpa_form_outer .wcpa_row_index_0 {
  flex-basis: 100%;
}
@media print, screen and (min-width: 47.5em) {
  .order-unlisted-products .box-inner form .wcpa_form_outer .wcpa_row_index_0 {
    flex-basis: 70%;
    padding-right: 20px;
  }
}
.order-unlisted-products .box-inner form .wcpa_form_outer .quantity {
  flex-basis: 100%;
}
@media print, screen and (min-width: 47.5em) {
  .order-unlisted-products .box-inner form .wcpa_form_outer .quantity {
    flex-basis: 30%;
  }
}
.order-unlisted-products .box-inner form .wcpa_form_outer input[type=text],
.order-unlisted-products .box-inner form .wcpa_form_outer input[type=number] {
  width: 100%;
  box-sizing: border-box;
  font-size: 18px;
  line-height: 18px;
  padding-left: 16px;
  height: 48px;
  border-radius: 40px;
  margin-bottom: 30px;
  border-color: #aaaaaa;
  color: #000;
}
.order-unlisted-products .box-inner form .wcpa_form_outer input[type=text]:focus::-moz-placeholder, .order-unlisted-products .box-inner form .wcpa_form_outer input[type=number]:focus::-moz-placeholder {
  color: rgba(255, 255, 255, 0);
}
.order-unlisted-products .box-inner form .wcpa_form_outer input[type=text]:focus::placeholder,
.order-unlisted-products .box-inner form .wcpa_form_outer input[type=number]:focus::placeholder {
  color: rgba(255, 255, 255, 0);
}
@media print, screen and (min-width: 47.5em) {
  .order-unlisted-products .box-inner form .wcpa_form_outer input[type=text],
  .order-unlisted-products .box-inner form .wcpa_form_outer input[type=number] {
    height: 40px;
    font-size: 16px;
    padding-left: 16px;
    margin-bottom: 20px;
  }
}
.order-unlisted-products .box-inner form .wcpa_form_outer textarea {
  font-size: 18px;
  height: 100px;
  padding: 14px 16px;
  margin-bottom: 30px;
  border-radius: 25px;
  border-color: #aaaaaa;
  color: #000;
}
.order-unlisted-products .box-inner form .wcpa_form_outer textarea:focus::-moz-placeholder {
  color: rgba(255, 255, 255, 0);
}
.order-unlisted-products .box-inner form .wcpa_form_outer textarea:focus::placeholder {
  color: rgba(255, 255, 255, 0);
}
@media print, screen and (min-width: 47.5em) {
  .order-unlisted-products .box-inner form .wcpa_form_outer textarea {
    height: 56px;
    font-size: 16px;
    padding: 14px 16px;
    margin-bottom: 20px;
    border-radius: 19px;
  }
}
.order-unlisted-products .box-inner form .button {
  margin-top: 10px;
  font-family: "avenir-lt-pro", "Avenir LT W01_65 Medium1475532", "AvenirLTW01-65Medium", "Avenir", "Avenir LT", "Helvetica", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 24px;
  line-height: 22px;
  border-width: 4px;
  border-radius: 37px;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 30px;
}
@media print, screen and (min-width: 47.5em) {
  .order-unlisted-products .box-inner form .button {
    margin-bottom: 16px;
    width: 442px;
    margin: 0 auto;
    display: block;
    font-size: 16px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.order-unlisted-products .cartloader {
  text-align: center;
  padding: 14px 0 13px 0;
}
.order-unlisted-products .cartloader img {
  margin: 0 auto;
}

.product-additional-details {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9999;
  display: none;
  font-size: 18px;
}
.product-additional-details .valign-middle {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow-y: auto;
}
.product-additional-details .valign-middle .valign-middle-box {
  width: 100%;
  max-width: 600px;
  margin-left: 3%;
  margin-right: 3%;
}
@media print, screen and (min-width: 47.5em) {
  .product-additional-details .valign-middle .valign-middle-box {
    margin-left: 0px;
    margin-right: 0px;
  }
}
@media screen and (min-width: 80em) {
  .product-additional-details .valign-middle .valign-middle-box {
    max-width: 850px;
  }
}
.product-additional-details .box-inner {
  background: white;
  padding: 15px;
  padding-top: 26px;
  mix-blend-mode: normal;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: scroll;
  height: 600px;
}
@media (orientation: landscape) {
  .product-additional-details .box-inner {
    height: 300px;
  }
}
@media screen and (min-width: 30em) {
  .product-additional-details .box-inner {
    padding: 28px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .product-additional-details .box-inner {
    padding: 35px;
    padding-top: 26px;
    overflow: hidden;
    height: inherit;
  }
}
.product-additional-details .box-inner .close {
  position: absolute;
  top: 10px;
  right: 20px;
}
@media screen and (min-width: 30em) {
  .product-additional-details .box-inner .close {
    top: 15px;
    right: 20px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .product-additional-details .box-inner .close {
    top: 25px;
    right: 40px;
  }
}
.product-additional-details .box-inner .close img {
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 30em) {
  .product-additional-details .box-inner .close img {
    width: 15px;
    height: 15px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .product-additional-details .box-inner .close img {
    width: 30px;
    height: 30px;
  }
}
.product-additional-details .box-inner .box {
  text-align: center;
}
.product-additional-details .box-inner .box img {
  margin-bottom: 10px;
}
.product-additional-details .box-inner h4 {
  text-align: center;
  font-style: normal;
  font-weight: 800;
  font-size: 34px;
  line-height: 100%;
  font-family: "avenir-lt-pro", "Avenir LT W01_65 Medium1475532", "AvenirLTW01-65Medium", "Avenir", "Avenir LT", "Helvetica", sans-serif;
  margin-top: 10px;
  margin-left: 20px;
  margin-right: 20px;
}
@media screen and (min-width: 30em) {
  .product-additional-details .box-inner h4 {
    font-size: 43px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .product-additional-details .box-inner h4 {
    margin-bottom: 0px;
    height: 50px;
    font-size: 31px;
  }
}
.product-additional-details .box-inner h4:after {
  content: "";
  display: block;
  clear: both;
}
.product-additional-details .box-inner h4 img {
  position: relative;
  top: -16px;
  display: none;
}
@media print, screen and (min-width: 47.5em) {
  .product-additional-details .box-inner h4 img {
    display: inline-block;
  }
}
.product-additional-details .box-inner .dashline {
  text-align: center;
  margin-bottom: 20px;
}
.product-additional-details .box-inner p {
  margin-bottom: 2px;
  text-align: center;
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 28px;
  color: #000;
}
@media screen and (min-width: 30em) {
  .product-additional-details .box-inner p {
    font-size: 20px;
  }
}
.product-additional-details .box-inner form {
  margin-top: 22px;
}
.product-additional-details .box-inner form label:not(.floating-label) {
  display: none;
}
.product-additional-details .box-inner form input::-moz-placeholder, .product-additional-details .box-inner form textarea::-moz-placeholder {
  color: #000;
}
.product-additional-details .box-inner form input::placeholder,
.product-additional-details .box-inner form textarea::placeholder {
  color: #000;
}
.product-additional-details .box-inner form .wcpa_form_outer {
  margin: 0;
}
@media screen and (min-width: 80em) {
  .product-additional-details .box-inner form .wcpa_form_outer {
    width: 540px;
    margin: 0 auto;
  }
}
.product-additional-details .box-inner form .wcpa_form_outer .wcpa_section_body {
  display: flex;
  flex-wrap: wrap;
}
.product-additional-details .box-inner form .wcpa_form_outer .wcpa_row {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
@media print, screen and (min-width: 47.5em) {
  .product-additional-details .box-inner form .wcpa_form_outer .wcpa_row:nth-of-type(2) {
    width: 32%;
    margin-right: 1.5%;
  }
  .product-additional-details .box-inner form .wcpa_form_outer .wcpa_row:nth-of-type(3) {
    width: 32%;
    margin-right: 1.5%;
  }
  .product-additional-details .box-inner form .wcpa_form_outer .wcpa_row:nth-of-type(4) {
    width: 33%;
    margin-right: 0;
  }
  .product-additional-details .box-inner form .wcpa_form_outer .wcpa_row:nth-of-type(5) {
    width: 49%;
    margin-right: 2%;
  }
  .product-additional-details .box-inner form .wcpa_form_outer .wcpa_row:nth-of-type(6) {
    width: 49%;
  }
}
.product-additional-details .box-inner form .wcpa_form_outer .wcpa_field_wrap {
  flex-basis: 100%;
  margin: 0;
  padding: 0px;
  position: relative;
}
@media print, screen and (min-width: 47.5em) {
  .product-additional-details .box-inner form .wcpa_form_outer .wcpa_field_wrap {
    padding: 0px 5px;
  }
}
.product-additional-details .box-inner form .wcpa_form_outer .wcpa_field_wrap .floating-label {
  pointer-events: none;
  padding-bottom: 2px;
  padding-right: 10px;
}
@media print, screen and (min-width: 47.5em) {
  .product-additional-details .box-inner form .wcpa_form_outer .wcpa_field_wrap .floating-label {
    padding-bottom: 0;
  }
}
.product-additional-details .box-inner form .wcpa_form_outer .wcpa_field_wrap input[type=text], .product-additional-details .box-inner form .wcpa_form_outer .wcpa_field_wrap select {
  width: 100%;
  box-sizing: border-box;
  font-size: 18px;
  line-height: 18px;
  padding-left: 16px;
  height: 48px;
  border-radius: 40px;
  margin-bottom: 30px;
  border-color: #aaaaaa;
  color: #000;
}
.product-additional-details .box-inner form .wcpa_form_outer .wcpa_field_wrap input[type=text]:focus::-moz-placeholder, .product-additional-details .box-inner form .wcpa_form_outer .wcpa_field_wrap select:focus::-moz-placeholder {
  color: rgba(255, 255, 255, 0);
}
.product-additional-details .box-inner form .wcpa_form_outer .wcpa_field_wrap input[type=text]:focus::placeholder, .product-additional-details .box-inner form .wcpa_form_outer .wcpa_field_wrap select:focus::placeholder {
  color: rgba(255, 255, 255, 0);
}
@media print, screen and (min-width: 47.5em) {
  .product-additional-details .box-inner form .wcpa_form_outer .wcpa_field_wrap input[type=text], .product-additional-details .box-inner form .wcpa_form_outer .wcpa_field_wrap select {
    height: 40px;
    font-size: 16px;
    padding-left: 16px;
    margin-bottom: 20px;
  }
}
.product-additional-details .box-inner form .wcpa_form_outer .wcpa_field_wrap textarea {
  font-size: 18px;
  height: 100px;
  padding: 14px 16px;
  margin-bottom: 30px;
  border-radius: 25px;
  border-color: #aaaaaa;
  color: #000;
}
.product-additional-details .box-inner form .wcpa_form_outer .wcpa_field_wrap textarea:focus::-moz-placeholder {
  color: rgba(255, 255, 255, 0);
}
.product-additional-details .box-inner form .wcpa_form_outer .wcpa_field_wrap textarea:focus::placeholder {
  color: rgba(255, 255, 255, 0);
}
@media print, screen and (min-width: 47.5em) {
  .product-additional-details .box-inner form .wcpa_form_outer .wcpa_field_wrap textarea {
    height: 60px;
    font-size: 16px;
    padding: 14px 16px;
    margin-bottom: 20px;
    border-radius: 19px;
  }
}
.product-additional-details .box-inner form .wcpa_form_outer .wcpa_type_select .select {
  position: relative;
  margin-bottom: 30px;
}
@media print, screen and (min-width: 47.5em) {
  .product-additional-details .box-inner form .wcpa_form_outer .wcpa_type_select .select {
    margin-bottom: 20px;
  }
}
.product-additional-details .box-inner form .wcpa_form_outer .wcpa_type_select .select::after {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  right: 3.5rem;
  width: 1px;
  background: rgba(102, 102, 102, 0.3);
}
@media print, screen and (min-width: 47.5em) {
  .product-additional-details .box-inner form .wcpa_form_outer .wcpa_type_select .select::after {
    right: 2.2rem;
  }
}
.product-additional-details .box-inner form .wcpa_form_outer .wcpa_type_select .select .select_arrow {
  top: 27px;
  right: 25px;
}
@media screen and (min-width: 30em) {
  .product-additional-details .box-inner form .wcpa_form_outer .wcpa_type_select .select .select_arrow {
    top: 37px;
    right: 25px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .product-additional-details .box-inner form .wcpa_form_outer .wcpa_type_select .select .select_arrow {
    top: 15px;
    right: 15px;
  }
}
.product-additional-details .box-inner form .wcpa_form_outer .wcpa_type_select select {
  background-repeat: no-repeat;
  background-size: 9px 6px;
  background-origin: content-box;
}
.product-additional-details .box-inner form .wcpa_form_outer .wcpa_type_checkbox-group {
  flex-basis: 100%;
  margin-bottom: 25px;
  background: #F6F6F6;
  border-radius: 20px;
  padding: 15px 10px;
}
@media print, screen and (min-width: 47.5em) {
  .product-additional-details .box-inner form .wcpa_form_outer .wcpa_type_checkbox-group {
    flex-basis: 98%;
    margin: 0 auto;
    margin-bottom: 28px;
    padding: 20px;
  }
}
.product-additional-details .box-inner form .wcpa_form_outer .wcpa_type_checkbox-group > label {
  display: none;
}
.product-additional-details .box-inner form .wcpa_form_outer .wcpa_type_checkbox-group:nth-child(odd) {
  padding-left: 20px;
}
.product-additional-details .box-inner form .wcpa_form_outer .wcpa_type_checkbox-group .wcpa_checkbox label {
  display: block;
  font-size: 14px;
  font-weight: bold;
  line-height: 30px;
  margin-bottom: 0;
  margin-right: 0px;
  padding-right: 0px;
  color: #000;
}
@media screen and (min-width: 30em) {
  .product-additional-details .box-inner form .wcpa_form_outer .wcpa_type_checkbox-group .wcpa_checkbox label {
    font-size: 18px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .product-additional-details .box-inner form .wcpa_form_outer .wcpa_type_checkbox-group .wcpa_checkbox label {
    line-height: 22px;
  }
}
.product-additional-details .box-inner form .wcpa_form_outer .wcpa_type_checkbox-group .wcpa_checkbox label > span {
  vertical-align: middle;
}
.product-additional-details .box-inner form .wcpa_form_outer .wcpa_type_checkbox-group .wcpa_checkbox label .wcpa_checkbox_custom {
  display: inline-block;
  background: #FFFFFF url("../../assets/images/icons/check.svg") no-repeat center center;
  border: 1px solid #CACACA;
  box-sizing: border-box;
  border-radius: 6px;
  width: 30px;
  height: 30px;
  vertical-align: middle;
  margin-right: 10px;
  transition: 0.1s all linear;
  --wcpaCheckHeight: 30px;
  --wcpaCheckWidth: 30px;
}
.product-additional-details .box-inner form .wcpa_form_outer .wcpa_type_checkbox-group .wcpa_checkbox label .wcpa_checkbox_custom::after {
  display: none;
}
@media screen and (min-width: 30em) {
  .product-additional-details .box-inner form .wcpa_form_outer .wcpa_type_checkbox-group .wcpa_checkbox label .wcpa_checkbox_custom {
    margin-right: 15px;
  }
}
.product-additional-details .box-inner form .wcpa_form_outer .wcpa_type_checkbox-group .wcpa_checkbox label .wcpa_checkbox_custom:before {
  display: none;
}
.product-additional-details .box-inner form .wcpa_form_outer .wcpa_type_checkbox-group .wcpa_checkbox input + label {
  display: block !important;
}
.product-additional-details .box-inner form .wcpa_form_outer .wcpa_type_checkbox-group .wcpa_checkbox input:checked + .wcpa_checkbox_custom {
  background: #26247b url("../../assets/images/icons/check.svg") no-repeat center center;
}
.product-additional-details .box-inner form .wcpa_form_outer .wcpa_field_price {
  margin-left: 0;
}
.product-additional-details .box-inner form .quantity {
  display: none;
}
.product-additional-details .box-inner form .button {
  margin-top: 10px;
  font-family: "avenir-lt-pro", "Avenir LT W01_65 Medium1475532", "AvenirLTW01-65Medium", "Avenir", "Avenir LT", "Helvetica", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 24px;
  line-height: 22px;
  border-width: 4px;
  border-radius: 37px;
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
  width: 100%;
  margin-bottom: 30px;
}
@media print, screen and (min-width: 47.5em) {
  .product-additional-details .box-inner form .button {
    margin-bottom: 16px;
    width: 530px;
    margin: 0 auto;
    display: block;
    font-size: 16px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.product-additional-details .cartloader {
  text-align: center;
  padding: 14px 0 13px 0;
}
.product-additional-details .cartloader img {
  margin: 0 auto;
}

.product-software-download {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9999;
  display: none;
  font-size: 18px;
}
.product-software-download .valign-middle {
  display: flex;
  align-items: top;
  justify-content: center;
  height: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}
.product-software-download .valign-middle .valign-middle-box {
  width: 100%;
  max-height: 100%;
  overflow-y: auto;
  max-width: 600px;
  margin-left: 3%;
  margin-right: 3%;
}
@media print, screen and (min-width: 47.5em) {
  .product-software-download .valign-middle .valign-middle-box {
    margin-left: 0px;
    margin-right: 0px;
  }
}
@media screen and (min-width: 80em) {
  .product-software-download .valign-middle .valign-middle-box {
    max-width: 850px;
  }
}
.product-software-download .box-inner {
  background: white;
  padding: 15px;
  padding-top: 26px;
  mix-blend-mode: normal;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.25);
  position: relative;
  width: 100%;
}
@media screen and (min-width: 30em) {
  .product-software-download .box-inner {
    padding: 28px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .product-software-download .box-inner {
    padding: 35px;
    padding-top: 26px;
  }
}
.product-software-download .box-inner .close {
  position: absolute;
  top: 10px;
  right: 20px;
}
@media screen and (min-width: 30em) {
  .product-software-download .box-inner .close {
    top: 15px;
    right: 20px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .product-software-download .box-inner .close {
    top: 25px;
    right: 40px;
  }
}
.product-software-download .box-inner .close img {
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 30em) {
  .product-software-download .box-inner .close img {
    width: 25px;
    height: 25px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .product-software-download .box-inner .close img {
    width: 30px;
    height: 30px;
  }
}
.product-software-download .box-inner .box {
  text-align: center;
}
.product-software-download .box-inner .box img {
  margin-bottom: 10px;
}
.product-software-download .box-inner h4 {
  text-align: center;
  font-style: normal;
  font-weight: 800;
  font-size: 34px;
  line-height: 100%;
  font-family: "avenir-lt-pro", "Avenir LT W01_65 Medium1475532", "AvenirLTW01-65Medium", "Avenir", "Avenir LT", "Helvetica", sans-serif;
  margin-top: 10px;
  margin-left: 20px;
  margin-right: 20px;
}
@media screen and (min-width: 30em) {
  .product-software-download .box-inner h4 {
    font-size: 43px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .product-software-download .box-inner h4 {
    margin-bottom: 0px;
    height: 50px;
    font-size: 31px;
  }
}
.product-software-download .box-inner h4:after {
  content: "";
  display: block;
  clear: both;
}
.product-software-download .box-inner h4 img {
  position: relative;
  top: -16px;
  display: none;
}
@media print, screen and (min-width: 47.5em) {
  .product-software-download .box-inner h4 img {
    display: inline-block;
  }
}
.product-software-download .box-inner .dashline {
  text-align: center;
  margin-bottom: 20px;
}
.product-software-download .box-inner p {
  margin-bottom: 2px;
  text-align: center;
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  color: #000;
}
@media screen and (min-width: 30em) {
  .product-software-download .box-inner p {
    font-size: 20px;
  }
}
.product-software-download .box-inner form {
  margin-top: 22px;
}
.product-software-download .box-inner form label:not(.floating-label) {
  display: none;
}
.product-software-download .box-inner form input::-moz-placeholder, .product-software-download .box-inner form textarea::-moz-placeholder {
  color: #000;
}
.product-software-download .box-inner form input::placeholder,
.product-software-download .box-inner form textarea::placeholder {
  color: #000;
}
.product-software-download .box-inner form .wcpa_form_outer {
  margin: 0;
}
@media screen and (min-width: 80em) {
  .product-software-download .box-inner form .wcpa_form_outer {
    width: 530px;
    margin: 0 auto;
  }
}
.product-software-download .box-inner form .wcpa_form_outer .wcpa_section_body {
  display: flex;
  flex-wrap: wrap;
}
.product-software-download .box-inner form .wcpa_form_outer .wcpa_row {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
@media print, screen and (min-width: 47.5em) {
  .product-software-download .box-inner form .wcpa_form_outer .wcpa_row:nth-of-type(3n+4) {
    width: 33.3333%;
    padding-right: 7px;
  }
  .product-software-download .box-inner form .wcpa_form_outer .wcpa_row:nth-of-type(3n+5) {
    width: 33.3333%;
    padding-left: 3px;
    padding-right: 4px;
  }
  .product-software-download .box-inner form .wcpa_form_outer .wcpa_row:nth-of-type(3n+6) {
    width: 33.3333%;
    padding-left: 7px;
    padding-right: 0;
  }
}
.product-software-download .box-inner form .wcpa_form_outer .wcpa_field_wrap {
  flex-basis: 100%;
  margin: 0;
  padding: 0px;
}
.product-software-download .box-inner form .wcpa_form_outer .wcpa_field_wrap #product_licences {
  padding: 5px 15px 5px 15px;
  margin-bottom: 5px;
}
.product-software-download .box-inner form .wcpa_form_outer .wcpa_field_wrap .wcpa_priceouter {
  display: none;
}
.product-software-download .box-inner form .wcpa_form_outer .wcpa_field_wrap input[type=text], .product-software-download .box-inner form .wcpa_form_outer .wcpa_field_wrap input[type=number], .product-software-download .box-inner form .wcpa_form_outer .wcpa_field_wrap select {
  width: 100%;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 18px;
  padding-left: 27px;
  height: 60px;
  border-radius: 40px;
  margin-bottom: 16px;
  border-color: #aaaaaa;
  color: #000;
}
.product-software-download .box-inner form .wcpa_form_outer .wcpa_field_wrap input[type=text]:not(.floating-label-active):focus::-moz-placeholder, .product-software-download .box-inner form .wcpa_form_outer .wcpa_field_wrap input[type=number]:not(.floating-label-active):focus::-moz-placeholder, .product-software-download .box-inner form .wcpa_form_outer .wcpa_field_wrap select:not(.floating-label-active):focus::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.product-software-download .box-inner form .wcpa_form_outer .wcpa_field_wrap input[type=text]:not(.floating-label-active):focus::placeholder, .product-software-download .box-inner form .wcpa_form_outer .wcpa_field_wrap input[type=number]:not(.floating-label-active):focus::placeholder, .product-software-download .box-inner form .wcpa_form_outer .wcpa_field_wrap select:not(.floating-label-active):focus::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.product-software-download .box-inner form .wcpa_form_outer .wcpa_field_wrap input[type=text].floating-label-active:focus::-moz-placeholder, .product-software-download .box-inner form .wcpa_form_outer .wcpa_field_wrap input[type=number].floating-label-active:focus::-moz-placeholder, .product-software-download .box-inner form .wcpa_form_outer .wcpa_field_wrap select.floating-label-active:focus::-moz-placeholder {
  color: rgba(255, 255, 255, 0);
}
.product-software-download .box-inner form .wcpa_form_outer .wcpa_field_wrap input[type=text].floating-label-active:focus::placeholder, .product-software-download .box-inner form .wcpa_form_outer .wcpa_field_wrap input[type=number].floating-label-active:focus::placeholder, .product-software-download .box-inner form .wcpa_form_outer .wcpa_field_wrap select.floating-label-active:focus::placeholder {
  color: rgba(255, 255, 255, 0);
}
@media print, screen and (min-width: 47.5em) {
  .product-software-download .box-inner form .wcpa_form_outer .wcpa_field_wrap input[type=text], .product-software-download .box-inner form .wcpa_form_outer .wcpa_field_wrap input[type=number], .product-software-download .box-inner form .wcpa_form_outer .wcpa_field_wrap select {
    height: 40px;
    font-size: 16px;
    padding-left: 16px;
    margin-bottom: 20px;
  }
}
.product-software-download .box-inner form .wcpa_form_outer .wcpa_field_wrap textarea {
  font-size: 20px;
  height: 100px;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 43px;
  border-color: #aaaaaa;
  color: #000;
}
.product-software-download .box-inner form .wcpa_form_outer .wcpa_field_wrap textarea:focus::-moz-placeholder {
  color: rgba(255, 255, 255, 0);
}
.product-software-download .box-inner form .wcpa_form_outer .wcpa_field_wrap textarea:focus::placeholder {
  color: rgba(255, 255, 255, 0);
}
@media screen and (min-width: 30em) {
  .product-software-download .box-inner form .wcpa_form_outer .wcpa_field_wrap textarea {
    font-size: 25px;
    height: 120px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .product-software-download .box-inner form .wcpa_form_outer .wcpa_field_wrap textarea {
    height: 60px;
    font-size: 16px;
    padding: 14px 16px;
    margin-bottom: 20px;
    border-radius: 19px;
  }
}
.product-software-download .box-inner form .wcpa_form_outer .product-software-download__slider {
  font-size: 18px;
  line-height: 28px;
  color: #000;
  display: flex;
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 22px;
  justify-content: stretch;
  align-items: center;
}
.product-software-download .box-inner form .wcpa_form_outer .product-software-download__slider__drag {
  position: relative;
  min-width: 170px;
  max-width: 180px;
  height: 24px;
  margin: 0 16px;
  flex-grow: 15;
}
.product-software-download .box-inner form .wcpa_form_outer .product-software-download__slider__drag:after {
  position: absolute;
  z-index: 10;
  content: "";
  display: block;
  top: 42%;
  left: 0;
  right: 0;
  border-radius: 2px;
  height: 4px;
  background: #292F8D;
}
.product-software-download .box-inner form .wcpa_form_outer .product-software-download__slider__drag__handler {
  display: block;
  position: relative;
  z-index: 20;
  background: white;
  border: 4px solid #292F8D;
  width: 24px;
  height: 24px;
  border-radius: 20px;
  cursor: pointer;
  touch-action: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.product-software-download .box-inner form .wcpa_form_outer .product-software-download__slider__total {
  flex-grow: 1;
  font-size: 20px;
  font-weight: bold;
  line-height: 28px;
  text-align: right;
}
.product-software-download .box-inner form .wcpa_form_outer .product-software-download__slider__total em {
  font-weight: normal;
  margin-left: 8px;
}
@media screen and (max-width: 47.4375em) {
  .product-software-download .box-inner form .wcpa_form_outer .product-software-download__slider {
    flex-wrap: wrap;
  }
  .product-software-download .box-inner form .wcpa_form_outer .product-software-download__slider__title {
    order: 1;
    flex-basis: 50%;
  }
  .product-software-download .box-inner form .wcpa_form_outer .product-software-download__slider__total {
    order: 2;
    flex-basis: 50%;
  }
  .product-software-download .box-inner form .wcpa_form_outer .product-software-download__slider__drag {
    order: 3;
    width: 100%;
    height: 30px;
    max-width: 100%;
    margin-top: 16px;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .product-software-download .box-inner form .wcpa_form_outer .product-software-download__slider__drag__handler {
    height: 30px;
    width: 30px;
  }
}
.product-software-download .box-inner form .wcpa_form_outer .wcpa_type_select.offscreen {
  transform: translateY(-9999px);
  height: 0;
  overflow: hidden;
}
.product-software-download .box-inner form .wcpa_form_outer .wcpa_type_select .select {
  position: relative;
  margin-bottom: 30px;
}
@media print, screen and (min-width: 47.5em) {
  .product-software-download .box-inner form .wcpa_form_outer .wcpa_type_select .select {
    margin-bottom: 20px;
  }
}
.product-software-download .box-inner form .wcpa_form_outer .wcpa_type_select .select::after {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  right: 3.5rem;
  width: 1px;
  background: rgba(102, 102, 102, 0.3);
}
@media print, screen and (min-width: 47.5em) {
  .product-software-download .box-inner form .wcpa_form_outer .wcpa_type_select .select::after {
    right: 2.2rem;
  }
}
.product-software-download .box-inner form .wcpa_form_outer .wcpa_type_select .select .select_arrow {
  top: 27px;
  right: 25px;
}
@media screen and (min-width: 30em) {
  .product-software-download .box-inner form .wcpa_form_outer .wcpa_type_select .select .select_arrow {
    top: 37px;
    right: 25px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .product-software-download .box-inner form .wcpa_form_outer .wcpa_type_select .select .select_arrow {
    top: 15px;
    right: 15px;
  }
}
.product-software-download .box-inner form .wcpa_form_outer .wcpa_type_select select {
  background-repeat: no-repeat;
  background-size: 9px 6px;
  background-origin: content-box;
  margin-bottom: 0px;
}
.product-software-download .box-inner form .wcpa_form_outer .wcpa_type_checkbox-group {
  flex-basis: 100%;
  margin-bottom: 25px;
  background: #F6F6F6;
  border-radius: 20px;
  padding: 18px 20px;
}
@media screen and (max-width: 29.9375em) {
  .product-software-download .box-inner form .wcpa_form_outer .wcpa_type_checkbox-group {
    padding: 14px 16px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .product-software-download .box-inner form .wcpa_form_outer .wcpa_type_checkbox-group {
    flex-basis: 100%;
    margin: 0 auto;
    margin-bottom: 28px;
  }
}
.product-software-download .box-inner form .wcpa_form_outer .wcpa_type_checkbox-group > label {
  display: none;
}
.product-software-download .box-inner form .wcpa_form_outer .wcpa_type_checkbox-group:nth-child(odd) {
  padding-left: 20px;
}
.product-software-download .box-inner form .wcpa_form_outer .wcpa_type_checkbox-group .wcpa_checkbox label {
  display: block;
  font-size: 18px;
  font-weight: bold;
  line-height: 22px;
  margin-bottom: 0;
  margin-right: 0px;
  padding-right: 0px;
  color: #000;
}
.product-software-download .box-inner form .wcpa_form_outer .wcpa_type_checkbox-group .wcpa_checkbox label > span {
  vertical-align: middle;
}
.product-software-download .box-inner form .wcpa_form_outer .wcpa_type_checkbox-group .wcpa_checkbox label .wcpa_checkbox_custom {
  display: inline-block;
  background: #FFFFFF url("../../assets/images/icons/check.svg") no-repeat center center;
  border: 1px solid #CACACA;
  box-sizing: border-box;
  border-radius: 6px;
  width: 30px;
  height: 30px;
  vertical-align: middle;
  margin-right: 10px;
  transition: 0.1s all linear;
  --wcpaCheckHeight: 30px;
  --wcpaCheckWidth: 30px;
}
.product-software-download .box-inner form .wcpa_form_outer .wcpa_type_checkbox-group .wcpa_checkbox label .wcpa_checkbox_custom::after {
  display: none;
}
@media screen and (min-width: 30em) {
  .product-software-download .box-inner form .wcpa_form_outer .wcpa_type_checkbox-group .wcpa_checkbox label .wcpa_checkbox_custom {
    margin-right: 20px;
  }
}
.product-software-download .box-inner form .wcpa_form_outer .wcpa_type_checkbox-group .wcpa_checkbox label .wcpa_checkbox_custom:before {
  display: none;
}
@media screen and (max-width: 29.9375em) {
  .product-software-download .box-inner form .wcpa_form_outer .wcpa_type_checkbox-group .wcpa_checkbox label {
    font-size: 15px;
  }
}
.product-software-download .box-inner form .wcpa_form_outer .wcpa_type_checkbox-group .wcpa_checkbox input + label {
  display: flex !important;
  align-items: center;
}
.product-software-download .box-inner form .wcpa_form_outer .wcpa_type_checkbox-group .wcpa_checkbox input:checked + .wcpa_checkbox_custom {
  background: #26247b url("../../assets/images/icons/check.svg") no-repeat center center;
}
.product-software-download .box-inner form .quantity {
  display: none;
}
.product-software-download .box-inner form .wcpa_field_bottom {
  display: none;
  margin-top: 24px;
  margin-bottom: 12px;
}
.product-software-download .box-inner form .wcpa_field_bottom .wcpa_field_price {
  text-align: center;
  color: #333333;
  margin-left: 0;
}
.product-software-download .box-inner form .wcpa_price_summary {
  display: none;
}
.product-software-download .box-inner form .button {
  margin-top: 10px;
  font-family: "avenir-lt-pro", "Avenir LT W01_85 Heavy1475544", "AvenirLTW01-85Heavy", "Avenir", "Avenir LT", "Helvetica", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 16px;
  line-height: 22px;
  border-width: 4px;
  border-radius: 37px;
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
  width: 100%;
  margin-bottom: 30px;
}
@media print, screen and (min-width: 47.5em) {
  .product-software-download .box-inner form .button {
    margin-bottom: 16px;
    width: 530px;
    margin: 0 auto;
    display: block;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.product-software-download .box-inner form .validation-error {
  text-align: center;
  background: #fde4e4;
  color: #f63939;
  padding: 10px 0 10px 0;
  margin-top: 10px;
  font-weight: bold;
  font-size: 16px;
  border-radius: 3px;
}
.product-software-download .cartloader {
  text-align: center;
  padding: 14px 0 13px 0;
}
.product-software-download .cartloader img {
  margin: 0 auto;
}

.product-side-a-b {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9999;
  display: none;
  font-size: 18px;
}
.product-side-a-b .valign-middle {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow-y: auto;
}
.product-side-a-b .valign-middle .valign-middle-box {
  width: 100%;
  max-width: 600px;
  margin-left: 3%;
  margin-right: 3%;
}
@media print, screen and (min-width: 47.5em) {
  .product-side-a-b .valign-middle .valign-middle-box {
    margin-left: 0px;
    margin-right: 0px;
  }
}
@media screen and (min-width: 80em) {
  .product-side-a-b .valign-middle .valign-middle-box {
    max-width: 850px;
  }
}
.product-side-a-b .box-inner {
  background: white;
  padding: 15px;
  padding-top: 26px;
  mix-blend-mode: normal;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: scroll;
  height: 600px;
}
@media (orientation: landscape) {
  .product-side-a-b .box-inner {
    height: 300px;
  }
}
@media screen and (min-width: 30em) {
  .product-side-a-b .box-inner {
    padding: 28px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .product-side-a-b .box-inner {
    padding: 35px;
    padding-top: 26px;
    overflow: hidden;
    height: inherit;
  }
}
.product-side-a-b .box-inner .close {
  position: absolute;
  top: 10px;
  right: 20px;
}
@media screen and (min-width: 30em) {
  .product-side-a-b .box-inner .close {
    top: 15px;
    right: 20px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .product-side-a-b .box-inner .close {
    top: 25px;
    right: 40px;
  }
}
.product-side-a-b .box-inner .close img {
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 30em) {
  .product-side-a-b .box-inner .close img {
    width: 15px;
    height: 15px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .product-side-a-b .box-inner .close img {
    width: 30px;
    height: 30px;
  }
}
.product-side-a-b .box-inner .box {
  text-align: center;
}
.product-side-a-b .box-inner .box img {
  margin-bottom: 10px;
}
.product-side-a-b .box-inner h4 {
  text-align: center;
  font-style: normal;
  font-weight: 800;
  font-size: 34px;
  line-height: 100%;
  font-family: "avenir-lt-pro", "Avenir LT W01_65 Medium1475532", "AvenirLTW01-65Medium", "Avenir", "Avenir LT", "Helvetica", sans-serif;
  margin-top: 10px;
  margin-left: 20px;
  margin-right: 20px;
}
@media screen and (min-width: 30em) {
  .product-side-a-b .box-inner h4 {
    font-size: 43px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .product-side-a-b .box-inner h4 {
    margin-bottom: 0px;
    height: 50px;
    font-size: 31px;
  }
}
.product-side-a-b .box-inner h4:after {
  content: "";
  display: block;
  clear: both;
}
.product-side-a-b .box-inner h4 img {
  position: relative;
  top: -16px;
  display: none;
}
@media print, screen and (min-width: 47.5em) {
  .product-side-a-b .box-inner h4 img {
    display: inline-block;
  }
}
.product-side-a-b .box-inner .dashline {
  text-align: center;
  margin-bottom: 20px;
}
.product-side-a-b .box-inner p {
  margin-bottom: 2px;
  text-align: center;
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 28px;
  color: #000;
}
@media screen and (min-width: 30em) {
  .product-side-a-b .box-inner p {
    font-size: 20px;
  }
}
.product-side-a-b .box-inner form {
  margin-top: 22px;
}
.product-side-a-b .box-inner form label:not(.floating-label):first-of-type {
  display: none;
}
.product-side-a-b .box-inner form input::-moz-placeholder, .product-side-a-b .box-inner form textarea::-moz-placeholder {
  color: #000;
}
.product-side-a-b .box-inner form input::placeholder,
.product-side-a-b .box-inner form textarea::placeholder {
  color: #000;
}
.product-side-a-b .box-inner form .wcpa_form_outer {
  margin: 0;
}
@media screen and (min-width: 80em) {
  .product-side-a-b .box-inner form .wcpa_form_outer {
    width: 530px;
    margin: 0 auto;
  }
}
.product-side-a-b .box-inner form .wcpa_form_outer .wcpa_section_body {
  display: flex;
  flex-wrap: wrap;
}
.product-side-a-b .box-inner form .wcpa_form_outer .wcpa_row {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.product-side-a-b .box-inner form .wcpa_form_outer .wcpa_field_wrap {
  flex-basis: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}
.product-side-a-b .box-inner form .wcpa_form_outer .wcpa_field_wrap #product_licences {
  padding: 5px 15px 5px 15px;
  margin-bottom: 5px;
}
.product-side-a-b .box-inner form .wcpa_form_outer .wcpa_field_wrap .wcpa_priceouter {
  display: block;
  margin-bottom: 24px;
}
.product-side-a-b .box-inner form .wcpa_form_outer .wcpa_field_wrap .wcpa_priceouter .wcpa_price {
  text-align: center;
}
.product-side-a-b .box-inner form .wcpa_form_outer .wcpa_field_wrap .floating-label {
  pointer-events: none;
}
.product-side-a-b .box-inner form .wcpa_form_outer .wcpa_field_wrap input[type=text], .product-side-a-b .box-inner form .wcpa_form_outer .wcpa_field_wrap input[type=number], .product-side-a-b .box-inner form .wcpa_form_outer .wcpa_field_wrap select {
  width: 100%;
  box-sizing: border-box;
  font-size: 18px;
  line-height: 18px;
  padding-left: 16px;
  height: 48px;
  border-radius: 40px;
  margin-bottom: 30px;
  border-color: #aaaaaa;
  color: #000;
}
.product-side-a-b .box-inner form .wcpa_form_outer .wcpa_field_wrap input[type=text]::-moz-placeholder, .product-side-a-b .box-inner form .wcpa_form_outer .wcpa_field_wrap input[type=number]::-moz-placeholder, .product-side-a-b .box-inner form .wcpa_form_outer .wcpa_field_wrap select::-moz-placeholder {
  color: rgba(255, 255, 255, 0);
}
.product-side-a-b .box-inner form .wcpa_form_outer .wcpa_field_wrap input[type=text]::placeholder, .product-side-a-b .box-inner form .wcpa_form_outer .wcpa_field_wrap input[type=number]::placeholder, .product-side-a-b .box-inner form .wcpa_form_outer .wcpa_field_wrap select::placeholder {
  color: rgba(255, 255, 255, 0);
}
@media print, screen and (min-width: 47.5em) {
  .product-side-a-b .box-inner form .wcpa_form_outer .wcpa_field_wrap input[type=text], .product-side-a-b .box-inner form .wcpa_form_outer .wcpa_field_wrap input[type=number], .product-side-a-b .box-inner form .wcpa_form_outer .wcpa_field_wrap select {
    height: 40px;
    font-size: 16px;
    padding-left: 16px;
    margin-bottom: 20px;
  }
}
.product-side-a-b .box-inner form .wcpa_form_outer .wcpa_field_wrap textarea {
  font-size: 20px;
  height: 100px;
  padding: 14px 16px;
  margin-bottom: 30px;
  border-radius: 25px;
  border-color: #aaaaaa;
  color: #000;
}
.product-side-a-b .box-inner form .wcpa_form_outer .wcpa_field_wrap textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0);
}
.product-side-a-b .box-inner form .wcpa_form_outer .wcpa_field_wrap textarea::placeholder {
  color: rgba(255, 255, 255, 0);
}
@media print, screen and (min-width: 47.5em) {
  .product-side-a-b .box-inner form .wcpa_form_outer .wcpa_field_wrap textarea {
    height: 60px;
    font-size: 16px;
    padding: 14px 16px;
    margin-bottom: 20px;
    border-radius: 19px;
  }
}
.product-side-a-b .box-inner form .wcpa_form_outer .wcpa_type_radio-group {
  margin-bottom: 2rem;
}
.product-side-a-b .box-inner form .wcpa_form_outer .wcpa_type_radio-group .wcpa_group_field {
  display: flex;
  justify-content: space-between;
}
.product-side-a-b .box-inner form .wcpa_form_outer .wcpa_type_radio-group .wcpa_option_price {
  display: none;
}
.product-side-a-b .box-inner form .wcpa_form_outer .wcpa_type_radio-group label:not(.floating-label):not(.wcpa_field_label) {
  display: flex;
  gap: 4px;
  font-size: 1.125rem;
}
.product-side-a-b .box-inner form .wcpa_form_outer .wcpa_field_bottom {
  display: block;
  margin-top: 24px;
  margin-bottom: 12px;
}
.product-side-a-b .box-inner form .wcpa_form_outer .wcpa_field_bottom .wcpa_field_price {
  text-align: center;
  color: #333333;
  margin-left: 0;
}
.product-side-a-b .box-inner form .quantity {
  display: none;
}
.product-side-a-b .box-inner form .wcpa_price_summary {
  display: none;
}
.product-side-a-b .box-inner form .button {
  margin-top: 10px;
  font-family: "avenir-lt-pro", "Avenir LT W01_65 Medium1475532", "AvenirLTW01-65Medium", "Avenir", "Avenir LT", "Helvetica", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 24px;
  line-height: 22px;
  border-width: 4px;
  border-radius: 37px;
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
  width: 100%;
  margin-bottom: 30px;
}
@media print, screen and (min-width: 47.5em) {
  .product-side-a-b .box-inner form .button {
    margin-bottom: 16px;
    width: 530px;
    margin: 0 auto;
    display: block;
    font-size: 16px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.product-side-a-b .cartloader {
  text-align: center;
  padding: 14px 0 13px 0;
}
.product-side-a-b .cartloader img {
  margin: 0 auto;
}

.product-tubing-length {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9999;
  display: none;
  font-size: 18px;
}
.product-tubing-length .valign-middle {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow-y: auto;
}
.product-tubing-length .valign-middle .valign-middle-box {
  width: 100%;
  max-width: 600px;
  margin-left: 3%;
  margin-right: 3%;
}
@media print, screen and (min-width: 47.5em) {
  .product-tubing-length .valign-middle .valign-middle-box {
    margin-left: 0px;
    margin-right: 0px;
  }
}
@media screen and (min-width: 80em) {
  .product-tubing-length .valign-middle .valign-middle-box {
    max-width: 850px;
  }
}
.product-tubing-length .box-inner {
  background: white;
  padding: 15px;
  padding-top: 26px;
  mix-blend-mode: normal;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: scroll;
  height: 600px;
}
@media (orientation: landscape) {
  .product-tubing-length .box-inner {
    height: 300px;
  }
}
@media screen and (min-width: 30em) {
  .product-tubing-length .box-inner {
    padding: 28px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .product-tubing-length .box-inner {
    padding: 35px;
    padding-top: 26px;
    overflow: hidden;
    height: inherit;
  }
}
.product-tubing-length .box-inner .close {
  position: absolute;
  top: 10px;
  right: 20px;
}
@media screen and (min-width: 30em) {
  .product-tubing-length .box-inner .close {
    top: 15px;
    right: 20px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .product-tubing-length .box-inner .close {
    top: 25px;
    right: 40px;
  }
}
.product-tubing-length .box-inner .close img {
  width: 20px;
  height: 20px;
}
@media screen and (min-width: 30em) {
  .product-tubing-length .box-inner .close img {
    width: 15px;
    height: 15px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .product-tubing-length .box-inner .close img {
    width: 30px;
    height: 30px;
  }
}
.product-tubing-length .box-inner .box {
  text-align: center;
}
.product-tubing-length .box-inner .box img {
  margin-bottom: 10px;
}
.product-tubing-length .box-inner h4 {
  text-align: center;
  font-style: normal;
  font-weight: 800;
  font-size: 34px;
  line-height: 100%;
  font-family: "avenir-lt-pro", "Avenir LT W01_65 Medium1475532", "AvenirLTW01-65Medium", "Avenir", "Avenir LT", "Helvetica", sans-serif;
  margin-top: 10px;
  margin-left: 20px;
  margin-right: 20px;
}
@media screen and (min-width: 30em) {
  .product-tubing-length .box-inner h4 {
    font-size: 43px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .product-tubing-length .box-inner h4 {
    margin-bottom: 0px;
    height: 50px;
    font-size: 31px;
  }
}
.product-tubing-length .box-inner h4:after {
  content: "";
  display: block;
  clear: both;
}
.product-tubing-length .box-inner h4 img {
  position: relative;
  top: -16px;
  display: none;
}
@media print, screen and (min-width: 47.5em) {
  .product-tubing-length .box-inner h4 img {
    display: inline-block;
  }
}
.product-tubing-length .box-inner .dashline {
  text-align: center;
  margin-bottom: 20px;
}
.product-tubing-length .box-inner p {
  margin-bottom: 2px;
  text-align: center;
  font-family: Lato;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 28px;
  color: #000;
}
@media screen and (min-width: 30em) {
  .product-tubing-length .box-inner p {
    font-size: 20px;
  }
}
.product-tubing-length .box-inner form {
  margin-top: 22px;
}
.product-tubing-length .box-inner form label:not(.floating-label):first-of-type {
  display: none;
}
.product-tubing-length .box-inner form input::-moz-placeholder, .product-tubing-length .box-inner form textarea::-moz-placeholder {
  color: #000;
}
.product-tubing-length .box-inner form input::placeholder,
.product-tubing-length .box-inner form textarea::placeholder {
  color: #000;
}
.product-tubing-length .box-inner form .wcpa_form_outer {
  margin: 0;
}
@media screen and (min-width: 80em) {
  .product-tubing-length .box-inner form .wcpa_form_outer {
    width: 530px;
    margin: 0 auto;
  }
}
.product-tubing-length .box-inner form .wcpa_form_outer .wcpa_row {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.product-tubing-length .box-inner form .wcpa_form_outer .wcpa_field_wrap {
  flex-basis: 100%;
  margin: 0;
  padding: 0px;
}
.product-tubing-length .box-inner form .wcpa_form_outer .wcpa_field_wrap #product_licences {
  padding: 5px 15px 5px 15px;
  margin-bottom: 5px;
}
.product-tubing-length .box-inner form .wcpa_form_outer .wcpa_field_wrap .wcpa_field_bottom {
  display: block;
  margin-top: 24px;
  margin-bottom: 24px;
}
.product-tubing-length .box-inner form .wcpa_form_outer .wcpa_field_wrap .wcpa_field_bottom .wcpa_field_price {
  text-align: center;
  color: #333333;
  margin-left: 0;
}
.product-tubing-length .box-inner form .wcpa_form_outer .wcpa_field_wrap input[type=text], .product-tubing-length .box-inner form .wcpa_form_outer .wcpa_field_wrap input[type=number], .product-tubing-length .box-inner form .wcpa_form_outer .wcpa_field_wrap select {
  width: 100%;
  box-sizing: border-box;
  font-size: 20px;
  line-height: 18px;
  padding-left: 27px;
  padding-right: 16px;
  height: 48px;
  border-radius: 40px;
  margin-bottom: 30px;
  border-color: #aaaaaa;
  color: #000;
}
@media print, screen and (min-width: 47.5em) {
  .product-tubing-length .box-inner form .wcpa_form_outer .wcpa_field_wrap input[type=text], .product-tubing-length .box-inner form .wcpa_form_outer .wcpa_field_wrap input[type=number], .product-tubing-length .box-inner form .wcpa_form_outer .wcpa_field_wrap select {
    height: 40px;
    font-size: 16px;
    padding-left: 16px;
    margin-bottom: 20px;
  }
}
.product-tubing-length .box-inner form .quantity {
  display: none;
}
.product-tubing-length .box-inner form .wcpa_price_summary {
  display: none;
}
.product-tubing-length .box-inner form .button {
  margin-top: 10px;
  font-family: "avenir-lt-pro", "Avenir LT W01_65 Medium1475532", "AvenirLTW01-65Medium", "Avenir", "Avenir LT", "Helvetica", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 24px;
  line-height: 22px;
  border-width: 4px;
  border-radius: 37px;
  padding-top: 15px;
  padding-bottom: 15px;
  text-align: center;
  width: 100%;
  margin-bottom: 30px;
}
@media print, screen and (min-width: 47.5em) {
  .product-tubing-length .box-inner form .button {
    margin-bottom: 16px;
    width: 530px;
    margin: 0 auto;
    display: block;
    font-size: 16px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.product-tubing-length .cartloader {
  text-align: center;
  padding: 14px 0 13px 0;
}
.product-tubing-length .cartloader img {
  margin: 0 auto;
}

.shipping-options-popup .box-inner {
  padding-bottom: 96px;
}
.shipping-options-popup .box-inner:nth-child(1n+2) {
  padding-bottom: 30px;
}
.shipping-options-popup .box-inner p {
  font-size: 18px;
}
.shipping-options-popup .shipping-addresses__box {
  margin-top: 32px;
  background: #FFFFFF;
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.25);
  padding: 18px 22px 22px 22px;
  font-family: "Lato", "Helvetica", "sans-serif";
  font-size: 16px;
  line-height: 22px;
  border: 2px solid transparent;
  transition: 0.2s all ease-in-out;
}
@media print, screen and (min-width: 47.5em) {
  .shipping-options-popup .shipping-addresses__box {
    display: flex;
  }
}
.shipping-options-popup .shipping-addresses__box .button {
  font-size: 22px;
  line-height: 26.4px;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  border-width: 3px;
  margin-bottom: 0;
}
.shipping-options-popup .shipping-addresses__box__default__mobile {
  float: right;
  font-size: 14px;
  font-weight: 900;
  color: #26247b;
  text-align: right;
}
@media print, screen and (min-width: 47.5em) {
  .shipping-options-popup .shipping-addresses__box__default__mobile {
    display: none;
  }
}
.shipping-options-popup .shipping-addresses__box__default {
  font-size: 14px;
  font-weight: 900;
  color: #26247b;
  flex-grow: 1;
  text-align: right;
  display: none;
}
@media print, screen and (min-width: 47.5em) {
  .shipping-options-popup .shipping-addresses__box__default {
    display: block;
  }
}
.shipping-options-popup .shipping-addresses__box__icons {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.shipping-options-popup .shipping-addresses__box__plus {
  font-family: "avenir-lt-pro", "Avenir LT W01_65 Medium1475532", "AvenirLTW01-65Medium", "Avenir", "Avenir LT", "Helvetica", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 43px;
}
.shipping-options-popup .shipping-addresses__box__addnew {
  line-height: 19px;
}
.shipping-options-popup .shipping-addresses__box__check {
  align-self: center;
  text-align: center;
  display: none;
}
@media print, screen and (min-width: 47.5em) {
  .shipping-options-popup .shipping-addresses__box__check {
    display: block;
  }
}
.shipping-options-popup .shipping-addresses__box__check svg {
  display: none;
  width: auto;
  height: 18px;
}
.shipping-options-popup .shipping-addresses__box__check svg path[fill] {
  fill: #26247b;
}
.shipping-options-popup .shipping-addresses__box__check__mobile {
  align-self: center;
  text-align: center;
  margin-top: 24px;
}
.shipping-options-popup .shipping-addresses__box__check__mobile svg {
  display: none;
  width: auto;
  height: 18px;
}
.shipping-options-popup .shipping-addresses__box__check__mobile svg path[fill] {
  fill: #26247b;
}
@media print, screen and (min-width: 47.5em) {
  .shipping-options-popup .shipping-addresses__box__check__mobile {
    display: none;
  }
}
.shipping-options-popup .shipping-addresses__box__lines {
  flex-grow: 1;
}
.shipping-options-popup .shipping-addresses__box__lines > * + * {
  margin-top: 16px;
}
.shipping-options-popup .shipping-addresses__box:hover {
  border: 2px solid #26247b;
}
.shipping-options-popup .shipping-addresses__box:hover .button {
  color: white;
  background: #26247b;
}
.shipping-options-popup .shipping-addresses__box[data-id=new] {
  padding: 10px 34px 20px 34px;
  cursor: pointer;
}
.shipping-options-popup .shipping-addresses__box[data-id=new] > div {
  width: 100%;
  flex-grow: 1;
}
.shipping-options-popup .shipping-addresses__box[data-id=new]:hover {
  background: #26247b;
  color: white;
}
.shipping-options-popup .shipping-addresses__box[data-selected="0"] {
  cursor: pointer;
}
.shipping-options-popup .shipping-addresses__box[data-selected="1"] {
  border: 2px solid #26247b;
}
.shipping-options-popup .shipping-addresses__box[data-selected="1"] .shipping-addresses__box__check svg, .shipping-options-popup .shipping-addresses__box[data-selected="1"] .shipping-addresses__box__check__mobile svg {
  display: inline-block;
}
.shipping-options-popup .shipping-addresses__box[data-selected="1"] .shipping-addresses__box__check .button, .shipping-options-popup .shipping-addresses__box[data-selected="1"] .shipping-addresses__box__check__mobile .button {
  display: none;
}
.shipping-options-popup .shipping-addresses__submit {
  display: flex;
  position: absolute;
  bottom: 10px;
  left: 20px;
  right: 20px;
  padding: 20px 15px;
}
.shipping-options-popup .shipping-addresses__submit > .button {
  flex-grow: 1;
  font-size: 18px;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  margin-bottom: 0;
  display: inline-flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}
.shipping-options-popup .shipping-addresses__submit > .button:nth-child(1) {
  width: 40%;
  margin-right: 32px;
  color: #26247b;
  border-color: #26247b;
  border-width: 3px;
  background: #F7F7F7;
}
.shipping-options-popup .shipping-addresses__submit > .button:nth-child(1):hover, .shipping-options-popup .shipping-addresses__submit > .button:nth-child(1):focus {
  background: #000;
  border-color: #000;
  color: #ffffff;
}
.shipping-options-popup .shipping-addresses__submit > .button:nth-child(2) {
  width: 60%;
  background: #26247b;
  border: none;
  color: #ffffff;
}
.shipping-options-popup .shipping-addresses__submit > .button:nth-child(2):hover, .shipping-options-popup .shipping-addresses__submit > .button:nth-child(2):focus {
  background: #000;
  color: #ffffff;
}
.shipping-options-popup .box--memberCenter {
  margin: 0;
  padding: 40px 0 0 0;
  box-shadow: none;
  text-align: left;
}
.shipping-options-popup .wrap-woocommerce-account-forms h3 {
  display: none;
}
.shipping-options-popup .wrap-woocommerce-account-forms .woocommerce-error {
  font-size: 18px;
  font-weight: normal;
  font-family: "Lato", "Helvetica", "sans-serif";
}
.shipping-options-popup .wrap-woocommerce-account-forms .woocommerce-address-fields {
  margin-top: 24px;
}
@media print, screen and (min-width: 64em) {
  .shipping-options-popup .wrap-woocommerce-account-forms .woocommerce-address-fields {
    margin-top: 48px;
  }
}
.shipping-options-popup .wrap-woocommerce-account-forms .woocommerce-address-fields > p:last-child {
  display: flex;
  margin-top: 60px;
}
.shipping-options-popup .wrap-woocommerce-account-forms .woocommerce-address-fields > p:last-child button {
  flex-grow: 1;
  font-size: 18px;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  border: none;
}
.shipping-options-popup .wrap-woocommerce-account-forms .woocommerce-address-fields > p:last-child button:nth-child(1) {
  width: 40%;
  margin-right: 32px;
  color: #000;
  background: #F7F7F7;
  font-family: "avenir-lt-pro", "Avenir LT W01_65 Medium1475532", "AvenirLTW01-65Medium", "Avenir", "Avenir LT", "Helvetica", sans-serif;
}
.shipping-options-popup .wrap-woocommerce-account-forms .woocommerce-address-fields > p:last-child button:nth-child(1):hover, .shipping-options-popup .wrap-woocommerce-account-forms .woocommerce-address-fields > p:last-child button:nth-child(1):focus {
  background: #000;
  color: #ffffff;
}
.shipping-options-popup .wrap-woocommerce-account-forms .woocommerce-address-fields > p:last-child button:nth-child(2) {
  width: 60%;
  background: #26247b;
  color: #ffffff;
}
.shipping-options-popup .wrap-woocommerce-account-forms .woocommerce-address-fields > p:last-child button:nth-child(2):hover, .shipping-options-popup .wrap-woocommerce-account-forms .woocommerce-address-fields > p:last-child button:nth-child(2):focus {
  background: #000;
  color: #ffffff;
}
.shipping-options-popup .wrap-woocommerce-account-forms form .form-row {
  margin-bottom: 25px;
}
.shipping-options-popup .wrap-woocommerce-account-forms form .form-row label:not(.floating-label) {
  display: none;
}
.shipping-options-popup .wrap-woocommerce-account-forms form .form-row input::-moz-placeholder {
  color: transparent;
}
.shipping-options-popup .wrap-woocommerce-account-forms form .form-row input::placeholder {
  color: transparent;
}
.shipping-options-popup .wrap-woocommerce-account-forms form span span {
  display: block;
  line-height: 180%;
}

.popup-added-to-cart {
  position: fixed;
  z-index: 999;
  top: 20%;
  right: -320px;
  background: white;
  width: 292px;
  padding: 32px 24px 24px 24px;
  box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.25);
  border-radius: 16px 0px 0px 16px;
  font-size: 20px;
  font-family: "avenir-lt-pro", "Avenir LT W01_45 Book1475508", "AvenirLTW01-45Book", "Avenir", "Avenir LT", "Helvetica", sans-serif;
  line-height: 28px;
  color: #666;
  transition: 0.5s all ease-in-out;
}
.popup-added-to-cart.open {
  right: 0;
}
.popup-added-to-cart.open .popup-added-to-cart__title__line.animated:after {
  animation: width-full 3s linear forwards;
}
.popup-added-to-cart.open .popup-added-to-cart__title__line.paused:after {
  animation-play-state: paused;
}
.popup-added-to-cart__title {
  color: #333333;
  font-family: "avenir-lt-pro", "Avenir LT W01_85 Heavy1475544", "AvenirLTW01-85Heavy", "Avenir", "Avenir LT", "Helvetica", sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 32px;
  height: 18px;
  margin-right: -24px;
  display: flex;
}
.popup-added-to-cart__title__text {
  background: white;
  display: inline-block;
  padding-right: 12px;
}
.popup-added-to-cart__title__line {
  height: 2px;
  background: #C4C4C4;
  flex-grow: 1;
  margin-top: 17px;
}
.popup-added-to-cart__title__line:after {
  content: "";
  background: #aa273e;
  display: block;
  height: 2px;
  float: left;
  width: 0;
}
.popup-added-to-cart__content {
  margin-top: 37px;
  font-family: "Lato", "Helvetica", "sans-serif";
}
.popup-added-to-cart__content strong {
  font-weight: 900;
  color: #26247b;
}
.popup-added-to-cart__buttons {
  display: flex;
  margin-top: 20px;
  justify-content: center;
}
.popup-added-to-cart__buttons a {
  padding: 2px;
  margin-bottom: 0;
  border-width: 1px;
  font-family: "Lato", "Helvetica", "sans-serif";
  font-weight: 900;
  font-size: 18px;
  line-height: 28px;
  width: 80%;
}
.popup-added-to-cart__buttons a:first-child {
  background: #26247b;
  color: white !important;
  margin-right: 8px;
}
.popup-added-to-cart__buttons a:first-child:hover {
  background: #333333 !important;
  border-color: #333333 !important;
}
.popup-added-to-cart__buttons a:last-child {
  margin-left: 8px;
}
.popup-added-to-cart__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 16px;
  height: 16px;
  cursor: pointer;
  background: url("data:image/svg+xml;utf8,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.35355 2.64645C3.15829 2.45118 2.84171 2.45118 2.64645 2.64645C2.45118 2.84171 2.45118 3.15829 2.64645 3.35355L3.35355 2.64645ZM12.6464 13.3536C12.8417 13.5488 13.1583 13.5488 13.3536 13.3536C13.5488 13.1583 13.5488 12.8417 13.3536 12.6464L12.6464 13.3536ZM2.64645 3.35355L12.6464 13.3536L13.3536 12.6464L3.35355 2.64645L2.64645 3.35355Z' fill='%23333333'/%3E%3Cpath d='M13.3536 3.35355C13.5488 3.15829 13.5488 2.84171 13.3536 2.64645C13.1583 2.45118 12.8417 2.45118 12.6464 2.64645L13.3536 3.35355ZM2.64645 12.6464C2.45118 12.8417 2.45118 13.1583 2.64645 13.3536C2.84171 13.5488 3.15829 13.5488 3.35355 13.3536L2.64645 12.6464ZM12.6464 2.64645L2.64645 12.6464L3.35355 13.3536L13.3536 3.35355L12.6464 2.64645Z' fill='%23333333'/%3E%3C/svg%3E%0A");
  transition: 0.3s all linear;
}
.popup-added-to-cart__close:hover {
  background: url("data:image/svg+xml;utf8,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.35355 2.64645C3.15829 2.45118 2.84171 2.45118 2.64645 2.64645C2.45118 2.84171 2.45118 3.15829 2.64645 3.35355L3.35355 2.64645ZM12.6464 13.3536C12.8417 13.5488 13.1583 13.5488 13.3536 13.3536C13.5488 13.1583 13.5488 12.8417 13.3536 12.6464L12.6464 13.3536ZM2.64645 3.35355L12.6464 13.3536L13.3536 12.6464L3.35355 2.64645L2.64645 3.35355Z' fill='%2326247b'/%3E%3Cpath d='M13.3536 3.35355C13.5488 3.15829 13.5488 2.84171 13.3536 2.64645C13.1583 2.45118 12.8417 2.45118 12.6464 2.64645L13.3536 3.35355ZM2.64645 12.6464C2.45118 12.8417 2.45118 13.1583 2.64645 13.3536C2.84171 13.5488 3.15829 13.5488 3.35355 13.3536L2.64645 12.6464ZM12.6464 2.64645L2.64645 12.6464L3.35355 13.3536L13.3536 3.35355L12.6464 2.64645Z' fill='%2326247b'/%3E%3C/svg%3E%0A");
}

@keyframes width-full {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.main--productList {
  margin-bottom: 70px;
}
.main--productList > .row {
  padding-bottom: 40px;
}
.main--productList + .parts {
  padding-top: 0;
}

.productList-categories-column {
  position: relative;
  padding: 26px 25px 0;
  min-height: 80px;
  background-color: #fff;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
  margin-top: 80px;
}
@media print, screen and (min-width: 47.5em) {
  .productList-categories-column {
    padding: 40px 30px 0;
    min-height: 120px;
    margin-top: 50px;
  }
}
@media screen and (min-width: 80em) {
  .productList-categories-column {
    padding: 50px 30px 0;
    margin-top: 0;
  }
}
.productList-categories-column .universalTitle {
  text-align: left;
  margin: 0 !important;
}
.productList-categories-column ul {
  margin: 0 0 20px;
  padding: 30px 20px 20px;
  box-sizing: border-box;
  background-color: #ffffff;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
  opacity: 0;
  z-index: -1;
  width: 100%;
  left: 0;
  position: absolute;
  top: 80px;
  right: 0;
  transform: translateY(-20px);
  transition: 0.25s;
}
.productList-categories-column ul:before {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #ffffff;
  top: -45px;
  position: relative;
  margin: 0 auto;
}
@media print, screen and (min-width: 47.5em) {
  .productList-categories-column ul:before {
    top: -55px;
  }
}
@media print, screen and (min-width: 64em) {
  .productList-categories-column ul:before {
    display: none;
  }
}
.productList-categories-column ul.init {
  opacity: 1;
  transform: translateY(0);
  z-index: 100;
}
@media print, screen and (min-width: 47.5em) {
  .productList-categories-column ul {
    left: auto;
    padding: 40px 20px 20px;
    right: -10px;
    width: 340px;
    top: 120px;
  }
}
@media screen and (min-width: 80em) {
  .productList-categories-column ul {
    width: auto;
    position: relative;
    top: auto;
    right: auto;
    opacity: 1;
    z-index: 1;
    transform: none;
    box-shadow: none;
  }
}
.productList-categories-column li {
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid #e6e6e6;
}
.productList-categories-column li:first-child a {
  padding: 0 0 13px;
}
.productList-categories-column li:last-child {
  border: 0;
}
.productList-categories-column li > a {
  display: block;
  padding: 13px 0;
  color: #1a1a1a;
  font-size: 20px;
}
.productList-categories-column li > a:hover {
  color: #aa273e;
}

.productList-list-column {
  margin-top: 0;
}
@media screen and (min-width: 80em) {
  .productList-list-column {
    margin-top: 100px;
  }
}
.productList-list-column h2 {
  font-size: 1.5rem;
}
@media print, screen and (min-width: 64em) {
  .productList-list-column h2 {
    font-size: 2.25rem;
  }
}
.productList-list-column h2 a {
  color: #2b2992;
}
.productList-list-column h2 a:hover {
  text-decoration: underline;
}
.productList-list-column ul {
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 30em) {
  .productList-list-column ul {
    padding: 0 0 0 40px;
  }
}
.productList-list-column ul li {
  margin: 0;
  padding: 60px 0 35px;
  list-style: none;
  border-bottom: 1px solid #e6e6e6;
}
@media screen and (min-width: 30em) {
  .productList-list-column ul li {
    padding: 60px 0 50px;
  }
}
.productList-list-column ul li:last-child {
  border: 0;
}
.productList-list-column ul li p {
  font-size: 1rem;
}
@media print, screen and (min-width: 64em) {
  .productList-list-column ul li p {
    font-size: 1.125rem;
  }
}
.productList-list-column ul li .button {
  font-size: 1.125rem;
  width: 100%;
}
@media screen and (min-width: 30em) {
  .productList-list-column ul li .button {
    width: auto;
  }
}
@media print, screen and (min-width: 64em) {
  .productList-list-column ul li .button {
    font-size: 1.375rem;
  }
}
.productList-list-column ul li img {
  display: block;
  margin: 0 0 20px;
}
@media screen and (min-width: 30em) {
  .productList-list-column ul li img {
    float: right;
    margin-left: 20px;
    max-width: 160px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .productList-list-column ul li img {
    max-width: none;
  }
}

.productCategory-list .column:last-child:not(:first-child), .productCategory-list .columns:last-child:not(:first-child) {
  float: left;
}
.productCategory-list .large-3 .card img {
  width: 100%;
}
.productCategory-list .card {
  padding: 0;
  text-align: center;
}
.productCategory-list .card:hover .card-title {
  color: #aa273e;
}
.productCategory-list .card .card-title {
  font-size: 1.375rem;
}
@media screen and (min-width: 80em) {
  .productCategory-list .card .card-title {
    font-size: 1.75rem;
  }
}
.productCategory-list .card .valgin {
  position: relative;
  height: 130px;
  margin: 0;
  padding: 0;
}
@media print, screen and (min-width: 64em) {
  .productCategory-list .card .valgin {
    height: 165px;
  }
}
.productCategory-list .card .valgin span {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  padding: 0 15%;
  text-align: left;
  transform: translateY(-50%);
}
@media print, screen and (min-width: 47.5em) {
  .productCategory-list .card .valgin span {
    text-align: center;
    left: -12.5%;
  }
}
@media print, screen and (min-width: 64em) {
  .productCategory-list .card .valgin span {
    left: 0;
  }
}
.productCategory-list .large-6 .card {
  min-height: 165px;
}
@media print, screen and (min-width: 64em) {
  .productCategory-list .large-6 .card {
    min-height: 200px;
  }
}
.productCategory-list .large-6 .card-title {
  font-size: 1.25rem;
  text-align: left;
}
@media print, screen and (min-width: 47.5em) {
  .productCategory-list .large-6 .card-title {
    font-size: 1.375rem;
  }
}
@media screen and (min-width: 80em) {
  .productCategory-list .large-6 .card-title {
    font-size: 1.75rem;
  }
}
.productCategory-list .large-6 .card .image-box {
  position: relative;
  width: 40%;
  overflow: hidden;
  max-width: 260px;
  float: left;
}
.productCategory-list .large-6 .card .image-box img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: none;
  height: inherit;
}
@media screen and (min-width: 80em) {
  .productCategory-list .large-6 .card .image-box img {
    max-width: 100%;
  }
}
.productCategory-list .large-6 .card .valgin {
  float: right;
  width: 60%;
  height: 165px;
}
@media print, screen and (min-width: 64em) {
  .productCategory-list .large-6 .card .valgin {
    height: 200px;
  }
}

.whyDistek {
  width: 100%;
  min-height: 400px;
  padding: 160px 0 100px;
  background: url("../images/waves/why-distek.jpg") no-repeat center top;
}
.whyDistek .universalTitle {
  margin-bottom: 10px;
}
.whyDistek-box {
  padding: 45px 0 60px;
  color: #aa273e;
  background-color: #fff;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
}
.whyDistek-item {
  text-align: center;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 47.5em) {
  .whyDistek-item {
    margin: 0;
  }
}
.whyDistek-item > .icon {
  display: inline-block;
}
.whyDistek-item > .label {
  display: inline-block;
  width: 150px;
  text-align: left;
  padding-left: 25px;
}
@media print, screen and (min-width: 47.5em) {
  .whyDistek-item > .label {
    text-align: center;
    width: auto;
    padding: 0;
    display: block;
  }
}

.form-box {
  position: relative;
  text-align: center;
}
.form-box#lets-meet > .row {
  padding-left: 15px;
  padding-right: 15px;
}
@media print, screen and (min-width: 47.5em) {
  .form-box#lets-meet > .row {
    padding-left: 0;
    padding-right: 0;
  }
}
@media print, screen and (min-width: 64em) {
  .form-box .universalTitle + p {
    font-size: 18px;
    line-height: 28px;
  }
}
@media screen and (min-width: 80em) {
  .form-box {
    margin-bottom: 100px;
  }
}
@media print, screen and (min-width: 64em) {
  .form-box.-pull {
    margin-top: -150px;
  }
}
@media screen and (min-width: 30em) {
  .form-box--wave:before {
    background-position: -250px 0;
    background-size: 1024px 100%;
  }
}
@media print, screen and (min-width: 47.5em) {
  .form-box--wave:before {
    height: 100px;
    background-position: -600px 0;
    background-size: 1880px auto;
  }
}
@media screen and (min-width: 80em) {
  .form-box--wave {
    padding-top: 200px;
  }
  .form-box--wave:before {
    height: 100px;
    background-position: 0 0;
    background-size: 100% auto;
  }
}
@media screen and (min-width: 118.75em) {
  .form-box--wave:before {
    height: 150px;
  }
}
.form-box--wave:before {
  position: relative;
  top: 0;
  display: block;
  width: 100%;
  height: 50px;
  content: "";
  background: transparent url("../images/company/carrers/bg-work-white.png") no-repeat;
  background-position: center 0;
  background-size: 100% auto;
}
@media print, screen and (min-width: 64em) {
  .form-box--wave:before {
    position: absolute;
    background-size: 100% 50px;
  }
}
.form-box a {
  color: #2b2992;
}
.form-box .universalTitle {
  margin-bottom: 40px;
}
.form-box .universalTitle + p {
  display: inline-block;
  max-width: 80%;
  margin-bottom: 50px;
}
.form-box form .button {
  width: 100%;
  margin-top: 0px;
  margin-bottom: 50px;
}

.relatedProducts {
  padding: 80px 0 60px;
  text-align: center;
  margin: 0 0 60px;
  font-size: 0;
}
.relatedProducts--store {
  border: 0;
  margin: 0 0 100px;
}
.relatedProducts--store .relatedProducts-item {
  border-bottom: 1px solid #e6e6e6;
  border-left: 1px solid #e6e6e6;
}
.relatedProducts--store .relatedProducts-item:first-child {
  border-left: 0;
}
.relatedProducts-item {
  display: inline-block;
  box-sizing: border-box;
  width: 50%;
  padding: 20px 0.625rem;
  text-align: center;
}
.relatedProducts-item:nth-child(n+2) {
  display: none;
}
.relatedProducts-item:nth-child(2) {
  display: inline-block;
}
@media print, screen and (min-width: 64em) {
  .relatedProducts-item {
    width: 33.33%;
  }
  .relatedProducts-item:nth-child(3) {
    display: inline-block;
  }
}
@media screen and (min-width: 80em) {
  .relatedProducts-item {
    display: inline-block;
    width: 25%;
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
  .relatedProducts-item:nth-child(4) {
    display: inline-block;
  }
}
@media screen and (min-width: 118.75em) {
  .relatedProducts-item {
    width: 20%;
  }
  .relatedProducts-item:nth-child(5) {
    display: inline-block;
  }
}
.relatedProducts-image {
  margin-bottom: 15px;
}
.relatedProducts-name {
  color: #2b2992;
  font-size: 1.25rem;
}
.relatedProducts-name a {
  color: #2b2992;
}
.relatedProducts-name a:hover {
  color: #aa273e;
}
@media print, screen and (min-width: 47.5em) {
  .relatedProducts-name {
    font-size: 2.25rem;
  }
}
.relatedProducts-desc {
  font-size: 1rem;
}
@media print, screen and (min-width: 47.5em) {
  .relatedProducts-desc {
    font-size: 1.125rem;
  }
}

.relatedArticle {
  padding: 80px 0 100px;
  border-bottom: 1px solid #e6e6e6;
}
.relatedArticle .card {
  margin: 0 0 60px;
}

.main--single-event {
  min-height: 250px;
}

.map-box.-event {
  padding: 35px 20px;
}
.map-box.-event .month {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(102, 102, 102, 0.6);
  font-family: "avenir-lt-pro", "Avenir LT W01_85 Heavy1475544", "Helvetica", sans-serif;
  font-weight: 700;
  font-size: 28px;
}
.map-box.-event .month span {
  font-family: "avenir-lt-pro", "Avenir LT W01_95 Black1475556", "Helvetica", sans-serif;
  font-weight: 800;
  font-size: 60px;
  line-height: 84px;
}
@media print, screen and (min-width: 47.5em) {
  .map-box.-event .month span {
    font-size: 78px;
  }
}
.map-box.-event .twomonth {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(102, 102, 102, 0.6);
  font-family: "avenir-lt-pro", "Avenir LT W01_65 Medium1475532", "AvenirLTW01-65Medium", "Avenir", "Avenir LT", "Helvetica", sans-serif, "Helvetica", sans-serif;
  font-size: 24px;
  line-height: 32px;
}
@media print, screen and (min-width: 47.5em) {
  .map-box.-event .twomonth {
    font-size: 28px;
    line-height: 36px;
  }
}
.map-box.-event .twomonth span {
  font-family: "avenir-lt-pro", "Avenir LT W01_95 Black1475556", "AvenirLTW01-95Black", "Avenir", "Avenir LT", "Helvetica", sans-serif, "Helvetica", sans-serif;
  font-size: 32px;
  line-height: 36px;
  letter-spacing: -2px;
}
@media print, screen and (min-width: 47.5em) {
  .map-box.-event .twomonth span {
    font-size: 40px;
    line-height: 40px;
  }
}
.map-box.-event .month ~ div, .map-box.-event .twomonth ~ div {
  padding: 25px 0;
  border-bottom: 1px solid rgba(102, 102, 102, 0.6);
}
.map-box.-event .month ~ div span, .map-box.-event .twomonth ~ div span {
  color: #1a1a1a;
  font-weight: bold;
}
.map-box.-event .month ~ div span a, .map-box.-event .twomonth ~ div span a {
  color: #2b2992;
}
.map-box.-event .month ~ div span a:hover, .map-box.-event .twomonth ~ div span a:hover {
  text-decoration: underline;
}
.map-box.-event .month ~ div:last-child, .map-box.-event .twomonth ~ div:last-child {
  border-bottom: none;
}
.map-box.-event .button {
  margin-bottom: 30px;
}

.-mapColumnPush {
  padding-top: 0;
}
@media print, screen and (min-width: 47.5em) {
  .-mapColumnPush {
    padding-top: 145px;
  }
}
@media print, screen and (min-width: 64em) {
  .-mapColumnPush {
    padding-top: 0;
  }
}

.article img {
  margin-bottom: 35px;
}
@media print, screen and (min-width: 64em) {
  .article img {
    max-width: 690px;
  }
}
@media print, screen and (min-width: 64em) {
  .article img {
    max-width: 100%;
  }
}
@media screen and (min-width: 80em) {
  .article img {
    max-width: none;
  }
}
.article p + ul {
  margin-top: -15px;
}
.article ul {
  -webkit-margin-before: 0em;
  -webkit-margin-after: 1rem;
  -webkit-padding-start: 0em;
}
.article .alignleft, .article img.alignleft {
  display: block;
  float: right;
  margin: 0 0 20px 20px;
}
.article .alignright, .article img.alignright {
  display: block;
  float: left;
  margin: 0 20px 20px 0;
}
.article .aligncenter, .article img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.article .wp-caption {
  margin: 0 0 20px;
}
.article .wp-caption.alignright {
  margin-right: 20px;
}
.article .wp-caption.alignleft {
  margin-left: 20px;
}
.article .wp-caption.aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.article .wp-caption img {
  margin: 0;
}
.article .wp-caption .wp-caption-text {
  padding: 3px 0 0;
  font-size: 15px;
  text-align: center;
}
.main--blog {
  margin-top: -120px;
}

.blog-categories {
  padding: 0 0 80px;
}
@media print, screen and (min-width: 64em) {
  .blog-categories {
    padding: 0 0 140px;
  }
}
.blog-categories ul {
  margin: 0;
  padding: 0;
  font-size: 0;
}
.blog-categories li {
  display: inline-block;
  width: 100%;
  margin: 0;
  padding: 20px 0;
  list-style: none;
  border-bottom: 1px solid #e6e6e6;
  font-size: 1.125rem;
}
@media print, screen and (min-width: 47.5em) {
  .blog-categories li {
    width: 45.5%;
    margin: 0 6% 0 0;
  }
}
@media screen and (min-width: 80em) {
  .blog-categories li {
    width: 28.83%;
  }
}
.blog-categories li:nth-child(2n) {
  margin: 0;
}
@media screen and (min-width: 80em) {
  .blog-categories li:nth-child(2n) {
    margin: 0 6% 0 0;
  }
}
@media screen and (min-width: 80em) {
  .blog-categories li:nth-child(3n) {
    margin: 0;
  }
}
.blog-categories li a {
  display: block;
  color: #333;
}
.blog-categories li a:hover {
  text-decoration: underline;
  color: #2b2992;
}
.blog-categories h3 {
  text-align: center;
  color: #000000;
}
@media print, screen and (min-width: 64em) {
  .blog-categories h3 {
    margin-bottom: 80px;
    font-size: 3.875rem;
  }
}

/* Sidebar */
.articleSidebar {
  float: none;
  max-width: none;
  margin-top: 0;
  width: 100%;
  padding: 50px 30px;
  color: #000000;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: none !important;
}
@media print, screen and (min-width: 64em) {
  .articleSidebar {
    max-width: 390px;
    position: sticky;
    top: 100px;
  }
}
@media screen and (min-width: 80em) {
  .articleSidebar {
    float: right;
    margin-right: 30px;
    position: sticky;
    top: 100px;
  }
}
@media (max-width: 767px) {
  .articleSidebar {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.articleSidebar .socials {
  display: flex;
}
.articleSidebar .socials a {
  margin: 0 10px;
  display: flex;
  background: #1D1B6A;
  border-radius: 999px;
  width: 52px;
  height: 52px;
}
.articleSidebar .socials a:first-child {
  margin: 0 10px 0 0;
}
.articleSidebar .socials a:last-child {
  margin: 0 0 0 10px;
}
.articleSidebar .socials a img, .articleSidebar .socials a svg {
  vertical-align: top;
  width: 52px;
  height: 52px;
}
.articleSidebar .socials a img path, .articleSidebar .socials a svg path {
  transition: 0.3s all linear;
}
.articleSidebar .socials a.icon-twitter {
  justify-content: center;
  align-items: center;
}
.articleSidebar .socials a.icon-twitter svg {
  width: 26px;
  height: 26px;
}
.articleSidebar .socials a.icon-linkedin {
  justify-content: center;
  align-items: center;
}
.articleSidebar .socials a.icon-linkedin svg {
  width: 28px;
  height: 28px;
}
.articleSidebar .socials a.icon-facebook {
  justify-content: center;
  align-items: end;
  padding-bottom: 3px;
}
.articleSidebar .socials a.icon-facebook svg {
  width: 21px;
  height: 38px;
}
.articleSidebar .socials a:hover.icon-facebook {
  background: #4267B2;
}
.articleSidebar .socials a:hover.icon-twitter {
  background: #1DA1F2;
}
.articleSidebar .socials a:hover.icon-linkedin {
  background: #0077b5;
}

.articleSidebar-title {
  margin-bottom: 1em;
  color: #1a1a1a;
  font-size: 28px;
  font-weight: bold;
  line-height: 1em;
}

.articleSidebar-photo {
  margin: 5px 10px 0 0;
  border-radius: 50%;
  width: 94px;
  height: 94px;
  overflow: hidden;
  display: inline-block;
}
.articleSidebar-photo img {
  max-width: 96px !important;
  width: 96px;
  height: 96px;
}

.articleSidebar-author,
.articleSidebar-bio {
  float: right;
  clear: right;
  width: calc(100% - 109px);
}

.articleSidebar-author {
  margin-bottom: 0.25em;
  font-size: 1.375rem;
}

.articleSidebar-bio {
  font-size: 1rem;
}

.hero--distekniques {
  background-image: url("../images/bg-1920-distekniques.jpg");
}
.hero--error404 {
  background-image: url("../images/bg-1920-error404.jpg");
}
.hero--event {
  background-image: url("../images/bg-1920-event.jpg");
  z-index: 150;
}
.hero--news {
  background-image: url("../images/bg-1920-news.jpg");
}
.hero--productCategory {
  background-image: url("../images/bg-1920-product_category.jpg");
}
.hero--store {
  background-image: url("../images/bg-1920-store.jpg");
}

#store-confirmation .text-center h2 {
  color: #1a1a1a;
  font-size: 2.125rem;
}
@media print, screen and (min-width: 47.5em) {
  #store-confirmation .text-center h2 {
    font-size: 3rem;
  }
}
@media print, screen and (min-width: 64em) {
  #store-confirmation .text-center h2 {
    font-size: 3.375rem;
  }
}
#store-confirmation .text-center p {
  font-size: 1rem;
}
@media print, screen and (min-width: 64em) {
  #store-confirmation .text-center p {
    font-size: 1.125rem;
  }
}

.store-pagination {
  margin: 0 0 50px;
}
.store-pagination::before, .store-pagination::after {
  display: table;
  content: " ";
}
.store-pagination::after {
  clear: both;
}
.store-pagination .button {
  width: 170px;
  height: 60px;
  padding: 15px 0;
}
.store-pagination__prev, .store-pagination__next {
  display: none;
}
.store-pagination__list {
  float: left;
  width: calc(100% - 170px);
  margin: 0;
  margin: 0;
  padding: 0;
  padding: 0;
}
.store-pagination__item {
  display: inline-block;
  list-style: none;
  vertical-align: middle;
}
.store-pagination__item .page-numbers {
  display: block;
  width: 60px;
  height: 60px;
  margin: 0 5px;
  text-align: center;
  color: #000;
  border: 3px solid #fff;
  border-radius: 50%;
  font-size: 18px;
  font-weight: bold;
  line-height: 54px;
}
.store-pagination__item .page-numbers.current, .store-pagination__item .page-numbers:hover {
  color: #aa273e;
  border: 3px solid #aa273e;
}

.hero--wave.-store {
  padding-top: 200px;
  padding-bottom: 50px;
}
@media print, screen and (min-width: 64em) {
  .hero--wave.-store {
    padding-top: 120px;
  }
}

.cart_item .product-thumbnail img {
  max-height: 150px;
  width: auto;
}

@media print, screen and (min-width: 47.5em) {
  .page-id-210 .main__wrapper {
    margin-top: -100px;
  }
}
.storeSearch-box {
  position: relative;
  max-width: 1140px;
  margin: 0 20px;
}
@media screen and (min-width: 80em) {
  .storeSearch-box {
    max-width: 1140px;
    margin: 0 auto;
  }
}
.storeSearch-box [type=search],
.storeSearch-box [type=search]:hover {
  box-shadow: none;
}
.storeSearch-box [type=search] {
  height: 3.5rem;
  border-radius: 1.75rem;
}
@media print, screen and (min-width: 64em) {
  .storeSearch-box [type=search] {
    height: 4rem;
    border-radius: 2rem;
  }
}
.storeSearch-box [type=submit] {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: 0.3s;
  border: 3px solid #aa273e;
  border-radius: 50%;
  outline: none;
  background: url("../images/search-store.svg") no-repeat center center;
  background-size: 28px auto;
}
@media print, screen and (min-width: 64em) {
  .storeSearch-box [type=submit] {
    top: 2px;
    right: 2px;
    width: 60px;
    height: 60px;
    border-width: 4px;
  }
}

.pagination-box {
  text-align: center;
  font-size: 0;
}
.pagination-box > .prev-link,
.pagination-box > .next-link,
.pagination-box > .next,
.pagination-box > .prev {
  display: inline-block;
  width: 80px;
  height: 80px;
  vertical-align: top;
  background-color: #f0f0f2;
}
.pagination-box > .prev-link > .arrow,
.pagination-box > .next-link > .arrow,
.pagination-box > .next > .arrow,
.pagination-box > .prev > .arrow {
  width: 26px;
  transition: 0.25s;
  fill: #969697;
}
.pagination-box > .prev-link:hover > .arrow,
.pagination-box > .next-link:hover > .arrow,
.pagination-box > .next:hover > .arrow,
.pagination-box > .prev:hover > .arrow {
  margin-left: 5px;
  fill: #2b2992;
}
.pagination-box > .prev-link,
.pagination-box .prev {
  margin-right: 2px;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
}
.pagination-box > .prev-link > .arrow,
.pagination-box .prev > .arrow {
  transform: rotate(180deg);
}
.pagination-box > .prev-link:hover > .arrow,
.pagination-box .prev:hover > .arrow {
  margin-right: 5px;
  margin-left: 0;
}
.pagination-box > .next-link,
.pagination-box .next {
  margin-left: 2px;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
}

.pagination-list {
  display: none;
  width: calc(100% - 164px);
  height: 80px;
  margin: 0;
  padding: 0;
  vertical-align: top;
  background-color: #f0f0f2;
}
@media print, screen and (min-width: 47.5em) {
  .pagination-list {
    display: inline-block;
  }
}

.pagination-item {
  display: inline-block;
  font-size: 18px;
  line-height: 80px;
}
@media print, screen and (min-width: 47.5em) {
  .pagination-item:nth-child(n+5) {
    display: none;
  }
}
@media print, screen and (min-width: 64em) {
  .pagination-item:nth-child(n+5) {
    display: inline-block;
  }
}
.pagination-item > .holder {
  display: block;
  margin: 0 25px;
  color: #808080;
  line-height: 80px;
}
.pagination-item > .link,
.pagination-item .page-numbers {
  display: block;
  box-sizing: border-box;
  height: 80px;
  margin: 0 25px;
  padding: 0 10px;
  transition: 0.25s;
  color: #808080;
  border-bottom: 4px solid #f0f0f2;
  line-height: 80px;
}
.pagination-item > .link:hover, .pagination-item > .link.active,
.pagination-item .page-numbers:hover,
.pagination-item .page-numbers.active {
  color: #2b2992;
  border-bottom-color: #2b2992;
}

.main--store .pagination-box {
  margin-top: 50px;
}

.card {
  margin-bottom: 30px;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #fff;
}
@media print, screen and (min-width: 47.5em) {
  .card {
    padding-bottom: 40px;
    padding-top: 40px;
  }
}
.card .matchHeight {
  margin-bottom: 40px;
}
.card .card-category,
.card .card-title {
  display: block;
  margin-bottom: 1em;
  padding: 0 20px;
}
@media print, screen and (min-width: 47.5em) {
  .card .card-category,
  .card .card-title {
    padding: 0 40px;
  }
}
.card .card-desc {
  margin-top: -1em;
  padding: 0 20px;
}
@media print, screen and (min-width: 47.5em) {
  .card .card-desc {
    padding: 0 40px;
  }
}
.card .card-category,
.card .card-desc {
  color: #666666;
}
.card .card-title {
  color: #1a1a1a;
  font-size: 1.75rem;
  line-height: 1.25;
}
.card .card-image {
  width: 100%;
}
@media screen and (min-width: 80em) {
  .card .card-image {
    width: auto;
  }
}
.card .card-more {
  position: relative;
  display: block;
  margin: 0 0 0 20px;
  padding: 0 0 20px;
  font-size: 1.125rem;
}
@media print, screen and (min-width: 47.5em) {
  .card .card-more {
    margin: 0 0 0 80px;
    padding: 0 0 40px;
  }
}
.card:hover > .card-title {
  color: #2b2992;
}
.card.-featured {
  padding: 0;
  color: #1a1a1a;
}
.card.-featured .matchHeight {
  margin-bottom: 0;
}
.card.-featured .card-category {
  margin: 40px 0 1em;
}
.card.-featured .card-desc {
  font-size: 1.125rem;
}
.card.-featured .card-more {
  margin: 0 0 20px 20px;
  padding: 0;
  color: #2b2992;
}
@media print, screen and (min-width: 47.5em) {
  .card.-featured .card-more {
    margin: 0 0 40px 40px;
  }
}
.card.-featured .card-more .arrow {
  position: relative;
  top: 6px;
  width: 30px;
  height: 23px;
  margin-left: 15px;
  transition: 0.3s;
  fill: #2b2992;
}
.card.-featured .card-more:hover .arrow {
  margin-left: 30px;
}
.card.-featured > .card-image {
  position: relative;
  float: left;
}

.featuredImageBox {
  position: relative;
  overflow: hidden;
}
.featuredImageBox .image {
  position: relative;
  max-width: 760px;
  max-height: 450px;
}
@media print, screen and (min-width: 47.5em) {
  .featuredImageBox .image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    max-width: none;
    height: inherit;
  }
}
@media screen and (min-width: 80em) {
  .featuredImageBox .image {
    max-width: 100%;
  }
}

/**
  * 3-column cards on News & Events
  */
.card-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.card-normal {
  padding: 24px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media print, screen and (min-width: 47.5em) {
  .card-normal {
    width: calc((100% - 30px) / 2);
  }
}
@media print, screen and (min-width: 64em) {
  .card-normal {
    width: calc((100% - 60px) / 3);
  }
}
.card-normal.in-slidedown {
  transition: none;
}
.card-normal.finished-slidedown {
  display: flex !important;
}
.card-normal__top {
  flex-grow: 1;
}
.card-normal__category {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #666;
  margin-bottom: 8px;
}
.card-normal__title {
  display: block;
  font-weight: 900;
  font-size: 22px;
  line-height: 30px;
  color: #1A1A1A;
  margin-bottom: 22px;
}
.card-normal__image {
  display: block;
  position: relative;
  height: 0;
  width: 100%;
  padding-bottom: 57.142857%;
}
.card-normal__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.card-normal:nth-child(n+4) {
  display: none;
}

#newsContainer .card-title {
  box-sizing: border-box;
  padding-bottom: 1em;
  margin-bottom: 0;
}
#newsContainer .column:nth-child(n+4), #newsContainer .columns:nth-child(n+4) {
  display: none;
}

#eventsContainer .column:nth-child(n+4), #eventsContainer .columns:nth-child(n+4) {
  display: none;
}

#newsContainer .column:last-child:not(:first-child), #newsContainer .columns:last-child:not(:first-child),
#eventsContainer .column:last-child:not(:first-child),
#eventsContainer .columns:last-child:not(:first-child) {
  float: left;
}

.universalTitle {
  display: block;
  margin: 0 0 50px;
  text-align: center;
  color: #1a1a1a;
  font-family: "avenir-lt-pro", "Avenir LT W01_85 Heavy1475544", "Helvetica", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
}
@media print, screen and (min-width: 47.5em) {
  .universalTitle {
    font-size: 2.125rem;
  }
}
@media screen and (min-width: 80em) {
  .universalTitle {
    font-size: 3.875rem;
  }
}
.universalTitle.-white {
  color: #fff;
}
.universalTitle.-medium {
  margin: 0 0 50px;
  font-size: 1.375rem;
}
@media print, screen and (min-width: 47.5em) {
  .universalTitle.-medium {
    font-size: 2rem;
  }
}
@media screen and (min-width: 80em) {
  .universalTitle.-medium {
    font-size: 3rem;
  }
}
.universalTitle.-large {
  font-size: 2.125rem;
}
@media print, screen and (min-width: 47.5em) {
  .universalTitle.-large {
    font-size: 3rem;
  }
}
@media print, screen and (min-width: 64em) {
  .universalTitle.-large {
    font-size: 5.125rem;
  }
}
.universalTitle.-xlarge {
  margin: 0 0 50px;
  font-size: 2.625rem;
}
@media print, screen and (min-width: 47.5em) {
  .universalTitle.-xlarge {
    font-size: 3.875rem;
  }
}
@media print, screen and (min-width: 64em) {
  .universalTitle.-xlarge {
    font-size: 5.125rem;
  }
}
@media screen and (min-width: 80em) {
  .universalTitle.-xlarge {
    font-size: 7.5rem;
  }
}

.zoom {
  transform: scale(1);
}
.zoom:hover {
  z-index: 100;
  transform: scale(1.05);
}
@media print, screen and (min-width: 64em) {
  .zoom:hover {
    transform: scale(1.1);
  }
}

.hl {
  width: 100%;
  height: 1px;
  margin: 25px 0;
  background-color: #e6e6e6;
}

.bar {
  position: relative;
  height: 4px;
  width: 100%;
  background-color: #e6e6e6;
  margin-bottom: 40px;
  display: none;
}
@media screen and (min-width: 80em) {
  .bar {
    display: block;
  }
}

.barnarrow {
  position: relative;
  height: 1px;
  width: 100%;
  background-color: #e6e6e6;
  margin-top: 40px;
  display: none;
}
@media screen and (min-width: 80em) {
  .barnarrow {
    display: block;
  }
}

.spaceAbove {
  margin-top: 20px;
}
.spaceAbove.-extra {
  margin-top: 50px;
}
.spaceAbove.-superExtra {
  margin-top: 100px;
}

.spaceBelow {
  margin-bottom: 20px;
}
.spaceBelow.-extra {
  margin-bottom: 50px;
}

.fullWidth {
  width: 100%;
  max-width: initial;
  margin-right: auto;
  margin-left: auto;
}

.wave-breaker {
  position: relative;
  height: 100px;
  margin: 25px 0;
  background: transparent url("../images/waves/purple.svg") no-repeat;
}
@media screen and (min-width: 118.75em) {
  .wave-breaker {
    background: transparent url("../images/waves/purple-no-aspect.svg") no-repeat;
    background-size: cover;
  }
}
@media screen and (min-width: 120.0625em) {
  .wave-breaker {
    background-size: 100% 100%;
  }
}

.shadow {
  display: block;
  outline: none;
  background: #fff;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.4);
}

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

.column-padding-right {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 64em) {
  .column-padding-right {
    padding-right: 0.9375rem;
    padding-left: 0;
  }
}

.column-padding-left {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
}
@media print, screen and (min-width: 64em) {
  .column-padding-left {
    padding-right: 0;
    padding-left: 0.9375rem;
  }
}

.dropdownTrigger {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  padding: 15px 0;
  text-align: center;
}
.dropdownTrigger.init .dropdownTrigger-button {
  background-color: #26247b;
}
.dropdownTrigger.init .dropdownTrigger-button .label {
  color: #ffffff;
}
.dropdownTrigger.init .dropdownTrigger-button .arrow {
  fill: #ffffff;
}
.dropdownTrigger.-block {
  position: relative;
  margin: 0 auto;
  background: #fff;
  width: auto;
}
@media print, screen and (min-width: 64em) {
  .dropdownTrigger.-block {
    display: none;
  }
}
.dropdownTrigger.-block.init .dropdownTrigger-button {
  background-color: #26247b;
}
.dropdownTrigger.-block.init .dropdownTrigger-button .label {
  color: #ffffff;
}
.dropdownTrigger.-block.init .dropdownTrigger-button .arrow {
  fill: #ffffff;
}
.dropdownTrigger.-block .dropdownTrigger-button {
  width: 210px;
  height: auto;
  padding: 0 40px;
  margin: 0 auto;
  position: relative;
}
.dropdownTrigger.-block .dropdownTrigger-button .arrow-box {
  position: relative;
  top: 5px;
  left: auto;
  width: 25px;
}
.dropdownTrigger.-block .dropdownTrigger-button .label {
  display: inline-block;
}
@media print, screen and (min-width: 47.5em) {
  .dropdownTrigger {
    width: 320px;
    padding: 27px 0;
    background-color: #f2f2f2;
  }
}
@media screen and (min-width: 80em) {
  .dropdownTrigger {
    display: none;
  }
}
.dropdownTrigger-button {
  display: inline-block;
  box-sizing: border-box;
  width: 50px;
  height: 50px;
  cursor: pointer;
  transition: 0.25s;
  text-align: center;
  border: 2px solid #26247b;
  border-radius: 24px;
  line-height: 60px;
  position: relative;
}
@media print, screen and (min-width: 47.5em) {
  .dropdownTrigger-button {
    width: 210px;
    height: auto;
    padding: 0 40px;
  }
}
.dropdownTrigger-button > span {
  vertical-align: middle;
}
.dropdownTrigger-button .arrow-box {
  position: absolute;
  top: 0;
  left: 8px;
  display: inline-block;
  width: 20px;
}
@media print, screen and (min-width: 47.5em) {
  .dropdownTrigger-button .arrow-box {
    position: relative;
    top: 5px;
    left: auto;
    width: 25px;
  }
}
.dropdownTrigger-button .label {
  display: inline-block;
  display: none;
  width: 70px;
  margin-left: 10px;
  transition: 0.25s;
  text-transform: uppercase;
  color: #26247b;
  font-weight: bold;
}
@media print, screen and (min-width: 47.5em) {
  .dropdownTrigger-button .label {
    display: inline-block;
  }
}
.dropdownTrigger-button .arrow {
  width: 30px;
  height: 24px;
  transition: 0.25s;
  transform: rotate(90deg);
  fill: #26247b;
}
.dropdownTrigger-button:hover {
  background-color: #26247b;
}
.dropdownTrigger-button:hover .label {
  color: #ffffff;
}
.dropdownTrigger-button:hover .arrow {
  fill: #ffffff;
}

.storeContent-item.inview:nth-child(3n+1) .image {
  transition-delay: 0;
}
.storeContent-item.inview:nth-child(3n+1) .name {
  transition-delay: 0.25s;
}
.storeContent-item.inview:nth-child(3n+2) .image {
  transition-delay: 0.25s;
}
.storeContent-item.inview:nth-child(3n+2) .name {
  transition-delay: 0.5s;
}
.storeContent-item.inview:nth-child(3n+3) .image {
  transition-delay: 0.5s;
}
.storeContent-item.inview:nth-child(3n+3) .name {
  transition-delay: 0.75s;
}
.storeContent-item.inview .image {
  transform: translateY(-20px);
  opacity: 0;
  transition-duration: 0.5s;
}
.storeContent-item.inview .name {
  transform: translateY(-20px);
  opacity: 0;
  transition-duration: 0.5s;
}
.storeContent-item.inview.init .image,
.storeContent-item.inview.init .name {
  opacity: 1;
  transform: translateY(0);
}

.card.inview .card-category,
.card.inview .card-title,
.card.inview .card-desc,
.card.inview .card-more {
  opacity: 0;
  transform: translateX(-20px);
  transition-duration: 0.75s;
}
.card.inview .card-title {
  transition-delay: 0.25s;
}
.card.inview .card-desc {
  transition-delay: 0.5s;
}
.card.inview.init .card-category,
.card.inview.init .card-title,
.card.inview.init .card-desc,
.card.inview.init .card-more {
  opacity: 1;
  transform: translateX(0);
}

.relatedProducts-item.inview .relatedProducts-image,
.relatedProducts-item.inview .relatedProducts-name,
.relatedProducts-item.inview .relatedProducts-desc,
.relatedProducts-item.inview .btn {
  opacity: 0;
  transform: translateY(-20px);
  transition-duration: 0.75s;
}
.relatedProducts-item.inview:nth-child(1) .relatedProducts-image {
  transition-delay: 0.25s;
}
.relatedProducts-item.inview:nth-child(1) .relatedProducts-name {
  transition-delay: 0.5s;
}
.relatedProducts-item.inview:nth-child(1) .relatedProducts-desc {
  transition-delay: 0.75s;
}
.relatedProducts-item.inview:nth-child(1) .btn {
  transition-delay: 1s;
}
.relatedProducts-item.inview:nth-child(2) .relatedProducts-image {
  transition-delay: 0.75s;
}
.relatedProducts-item.inview:nth-child(2) .relatedProducts-name {
  transition-delay: 1s;
}
.relatedProducts-item.inview:nth-child(2) .relatedProducts-desc {
  transition-delay: 1.25s;
}
.relatedProducts-item.inview:nth-child(2) .btn {
  transition-delay: 1.5s;
}
.relatedProducts-item.inview:nth-child(3) .relatedProducts-image {
  transition-delay: 1.25s;
}
.relatedProducts-item.inview:nth-child(3) .relatedProducts-name {
  transition-delay: 1.5s;
}
.relatedProducts-item.inview:nth-child(3) .relatedProducts-desc {
  transition-delay: 1.75s;
}
.relatedProducts-item.inview:nth-child(3) .btn {
  transition-delay: 2s;
}
.relatedProducts-item.inview:nth-child(4) .relatedProducts-image {
  transition-delay: 1.75s;
}
.relatedProducts-item.inview:nth-child(4) .relatedProducts-name {
  transition-delay: 2s;
}
.relatedProducts-item.inview:nth-child(4) .relatedProducts-desc {
  transition-delay: 2.25s;
}
.relatedProducts-item.inview:nth-child(4) .btn {
  transition-delay: 2.5s;
}
.relatedProducts-item.inview:nth-child(5) .relatedProducts-image {
  transition-delay: 2.25s;
}
.relatedProducts-item.inview:nth-child(5) .relatedProducts-name {
  transition-delay: 2.5s;
}
.relatedProducts-item.inview:nth-child(5) .relatedProducts-desc {
  transition-delay: 2.75s;
}
.relatedProducts-item.inview:nth-child(5) .btn {
  transition-delay: 3s;
}
.relatedProducts-item.inview.init .relatedProducts-image,
.relatedProducts-item.inview.init .relatedProducts-name,
.relatedProducts-item.inview.init .relatedProducts-desc,
.relatedProducts-item.inview.init .btn {
  opacity: 1;
  transform: translateY(0);
}

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

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

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

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

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

.grid-1-2-3 {
  display: grid;
  grid-template-columns: 1fr;
}
@media print, screen and (min-width: 64em) {
  .grid-1-2-3 {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 80em) {
  .grid-1-2-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.grid-1-2-3 > .column, .grid-1-2-3 > .columns {
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
}

.modal-overlay {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  transition: 0.25s;
  opacity: 0;
  background: rgba(255, 255, 255, 0.8);
}
.modal-overlay.init {
  visibility: visible;
  opacity: 1;
}

.modal-wrapper {
  position: fixed;
  z-index: 1500;
  top: 0;
  display: table;
  visibility: hidden;
  width: 100%;
  height: 100%;
  text-align: center;
  opacity: 0;
  transition: 0.5s;
}
.modal-wrapper.init {
  visibility: visible;
  opacity: 1;
}
.modal-wrapper.init .modal-content {
  top: 0;
}

.modal-container {
  display: table-cell;
  vertical-align: middle;
}

.modal-content {
  position: relative;
  box-sizing: border-box;
  max-width: 780px;
  margin: 0 auto;
  padding: 50px 25px;
  top: 50px;
  background-color: #fff;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.1);
  transition: top 0.5s;
}
.modal-content .contactForm {
  margin: 0;
}

.modal-title,
.modal-subtitle {
  display: block;
  margin: 0 0 0.5em;
  text-align: center;
}

.modal-title {
  margin: 0 0 10px;
  text-transform: uppercase;
  color: #000;
  font-size: 72px;
  font-weight: 700;
  line-height: 72px;
}

.modal-subtitle {
  margin: 0 0 20px;
  color: #444;
  font-size: 18px;
}

.modal-close {
  position: absolute;
  top: 5px;
  right: 5px;
  display: inline-block;
  overflow: hidden;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.modal-close:hover::before, .modal-close:hover::after {
  background: #aa273e;
}
.modal-close::before, .modal-close::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  margin-top: -1px;
  content: "";
  background: #000;
}
.modal-close::before {
  transform: rotate(45deg);
}
.modal-close::after {
  transform: rotate(-45deg);
}

.main--browser .browsers .browser {
  display: table;
  width: 100%;
  margin-bottom: 25px;
}
.main--browser .browsers .browser > * {
  display: table-cell;
}
.main--browser .browsers .browser .img-wrapper {
  width: 70px;
}
.main--browser .browsers .browser h4 {
  font-size: 20px;
  padding-left: 20px;
}
.main--browser .browsers .browser:last-child {
  margin-bottom: 0;
}
.main--browser .browsers .button {
  display: none;
}
@media print, screen and (min-width: 47.5em) {
  .main--browser .main__wrapper {
    padding: 50px;
  }
  .main--browser .browsers {
    text-align: center;
  }
  .main--browser .browsers .browser {
    display: inline-block;
    vertical-align: top;
    width: 190px;
    text-align: center;
  }
  .main--browser .browsers .browser > * {
    display: block;
  }
  .main--browser .browsers .browser .img-wrapper {
    width: auto;
    margin-bottom: 30px;
    max-height: 140px;
  }
  .main--browser .browsers .browser h4 {
    padding-left: 0;
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 30px;
    height: 72px;
    overflow: hidden;
  }
  .main--browser .browsers .button {
    display: inline-block;
  }
}
@media print, screen and (min-width: 64em) {
  .main--browser .main__wrapper {
    padding: 90px 20px;
  }
  .main--browser .browsers {
    overflow: auto;
  }
  .main--browser .browsers .browser {
    width: 20%;
    float: left;
  }
  .main--browser .browsers .browser h4 {
    max-width: 90%;
    display: inline-block;
  }
}
.mc-account .button {
  width: 100%;
  max-width: 270px;
}
.mc-account .box--table table {
  margin-bottom: 30px;
}
.mc-account .box--address p {
  margin-bottom: 20px;
}
.wrap-woocommerce-account-forms form h3 {
  margin-bottom: 30px;
}
.wrap-woocommerce-account-forms form .form-row {
  position: relative;
}
.wrap-woocommerce-account-forms form .form-row label {
  display: inline-block;
  padding-left: 7px;
  padding-right: 7px;
  position: absolute;
  background-color: #fff;
  left: 19px;
  top: -13px;
  font-size: 14px;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  /*
  width: 200px;
  overflow: hidden;
  white-space: nowrap;

  @include breakpoint(medium) {
  	width: auto;
  	overflow: auto;
  }
  */
}
.wrap-woocommerce-account-forms form .form-row input,
.wrap-woocommerce-account-forms form .form-row textarea {
  margin-bottom: 0px;
}
.wrap-woocommerce-account-forms form .form-row input::-moz-placeholder, .wrap-woocommerce-account-forms form .form-row textarea::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.wrap-woocommerce-account-forms form .form-row input::placeholder,
.wrap-woocommerce-account-forms form .form-row textarea::placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.wrap-woocommerce-account-forms form .form-row#billing_fieldset_title_field .optional {
  display: none;
}
.wrap-woocommerce-account-forms form .form-row#is_default_field label {
  color: #000000;
  font-size: 22px;
  display: flex;
  position: static;
}
.wrap-woocommerce-account-forms form .form-row#is_default_field input[type=checkbox] {
  width: 36px;
  height: 36px;
}
.wrap-woocommerce-account-forms form .form-row#is_default_field .optional {
  display: none;
}
.wrap-woocommerce-account-forms form span span {
  font-size: 11px;
  color: #ccc;
}
.wrap-woocommerce-account-forms form span span.required {
  display: inline-block;
}
.wrap-woocommerce-account-forms form span span:not(.required) {
  margin-left: 40px;
  font-style: italic;
  text-transform: uppercase;
}

@media screen and (min-width: 80em) {
  .hero--single {
    background-size: 190%;
    background-position: 30% 50%;
  }
}
html.landing {
  min-height: 100%;
  position: relative;
  height: 100%;
}
html.landing body {
  min-height: 100%;
}

body.video-lp-template-default {
  min-height: 100%;
}
@media screen and (max-width: 47.4375em) {
  body.video-lp-template-default.admin-bar .wrap--landing {
    padding-top: 14px;
  }
}

.wrap--landing {
  position: absolute;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}

.header--landing {
  height: 79px;
  width: 100%;
  position: relative;
  z-index: 1000;
}
.header--landing > svg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 79px;
  z-index: 0;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.3));
}
.header--landing > .columns {
  z-index: 10;
  position: relative;
}
@media print, screen and (min-width: 64em) {
  .header--landing {
    height: 93px;
    padding-left: 40px;
    padding-right: 40px;
  }
  .header--landing > svg {
    height: 93px;
  }
}
.header--landing__back {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  margin-top: 23px;
}
.header--landing__back a {
  display: inline-flex;
  align-items: center;
  color: white;
  font-family: "avenir-lt-pro", "Avenir LT W01_45 Book1475508", "AvenirLTW01-45Book", "Avenir", "Avenir LT", "Helvetica", sans-serif;
}
.header--landing__back a > svg {
  width: auto;
  margin-right: 12px;
}
@media screen and (max-width: 47.4375em) {
  .header--landing__back {
    display: none;
  }
}
@media print, screen and (min-width: 64em) {
  .header--landing__back {
    margin-top: 28px;
  }
}
.header--landing__getintouch {
  text-align: right;
  font-size: 18px;
  line-height: 25px;
  margin-top: 13px;
}
@media print, screen and (min-width: 64em) {
  .header--landing__getintouch {
    margin-top: 19px;
  }
}
.header--landing__getintouch a {
  display: inline-flex;
  align-items: center;
  color: white;
  font-family: "avenir-lt-pro", "Avenir LT W01_45 Book1475508", "AvenirLTW01-45Book", "Avenir", "Avenir LT", "Helvetica", sans-serif;
}
@media screen and (max-width: 29.9375em) {
  .header--landing__getintouch a svg {
    margin-right: 0;
  }
  .header--landing__getintouch a span {
    display: none;
  }
}
@media print, screen and (min-width: 64em) {
  .header--landing__getintouch a {
    font-size: 20px;
    line-height: 27px;
  }
}
.header--landing__getintouch svg {
  width: auto;
  margin-right: 8px;
}
.header--landing__logo .logo {
  max-width: 98px;
  height: auto;
  margin: 20px auto 0 auto;
}
@media screen and (max-width: 47.4375em) {
  .header--landing__logo .logo {
    margin-left: 0;
  }
}
@media print, screen and (min-width: 47.5em) {
  .header--landing__logo .logo {
    min-width: 120px;
    margin-top: 17px;
  }
}
@media print, screen and (min-width: 64em) {
  .header--landing__logo .logo {
    display: block;
    min-width: 163px;
    margin-top: 23px;
  }
}

.hero--landing {
  margin-top: -96px;
  margin-bottom: 80px;
  padding-top: 126px;
  position: relative;
}
.hero--landing > .row {
  position: relative;
  z-index: 20;
}
.hero--landing__wave {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #26247c url("../images/video-lp-background-768.jpg") no-repeat center top;
  background-size: cover;
}
@media print, screen and (min-width: 64em) {
  .hero--landing__wave {
    background-image: url("../images/video-lp-background.jpg");
  }
}
.hero--landing__wave svg {
  position: absolute;
  z-index: 20;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 54px;
}
@media print, screen and (min-width: 64em) {
  .hero--landing__wave svg {
    height: 120px;
  }
}
@media screen and (min-width: 26.25em) {
  .hero--landing {
    margin-bottom: 100px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .hero--landing {
    padding-top: 144px;
    margin-bottom: 200px;
  }
}
@media print, screen and (min-width: 64em) {
  .hero--landing {
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 184px;
    padding-bottom: 48px;
    margin-bottom: 0;
  }
}
.hero--landing__text {
  color: white;
}
.hero--landing__text h1 {
  font-family: "avenir-lt-pro", "Avenir LT W01_85 Heavy1475544", "AvenirLTW01-85Heavy", "Avenir", "Avenir LT", "Helvetica", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 32px;
  line-height: 110%;
  margin-bottom: 16px;
}
.hero--landing__text .button {
  margin-top: 32px;
  margin-bottom: 0;
  padding: 8px 54px;
  font-size: 20px;
  line-height: 27px;
}
@media print, screen and (min-width: 47.5em) {
  .hero--landing__text .button {
    font-size: 22px;
    line-height: 27px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .hero--landing__text {
    padding-left: 65px;
    padding-right: 65px;
  }
  .hero--landing__text h1 {
    font-size: 48px;
    line-height: 110%;
  }
}
@media print, screen and (min-width: 64em) {
  .hero--landing__text {
    padding-left: 0;
    padding-right: 0;
  }
}
.hero--landing__video {
  margin-top: 40px;
  margin-bottom: -80px;
}
@media screen and (min-width: 26.25em) {
  .hero--landing__video {
    margin-bottom: -100px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .hero--landing__video {
    padding-left: 24px;
    padding-right: 24px;
    margin-top: 56px;
    margin-bottom: -200px;
  }
}
@media print, screen and (min-width: 64em) {
  .hero--landing__video {
    padding-left: 0;
    padding-right: 0;
    margin-top: 0;
    margin-bottom: 0;
  }
}
.hero--landing__video__container {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}
.hero--landing__video__container iframe,
.hero--landing__video__container object,
.hero--landing__video__container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.spacer-landing {
  flex-grow: 1;
}

footer.footer-landing {
  padding-left: 0;
  padding-right: 0;
  padding-top: 48px;
}
@media print, screen and (min-width: 64em) {
  footer.footer-landing {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media screen and (max-width: 47.4375em) {
  .footer-landing__terms {
    display: block;
  }
}
@media print, screen and (min-width: 47.5em) {
  .footer-landing__handcraft {
    text-align: right;
  }
}

body.evaluation-lp-template-default {
  background: white;
}

.hero--evaluationlp {
  position: relative;
  display: flex;
  flex-grow: 1;
  flex-wrap: wrap;
}
@media screen and (min-width: 80em) {
  .hero--evaluationlp {
    flex-wrap: nowrap;
  }
}
.hero--evaluationlp__left {
  width: 100%;
  background: #26247b url("../images/waves/wave-evaluation-lp.jpg") no-repeat center bottom;
  background-size: cover;
  margin-top: -93px;
  padding-top: 117px;
  padding-bottom: 136px;
  display: flex;
  justify-content: flex-end;
  color: white;
}
@media print, screen and (min-width: 47.5em) {
  .hero--evaluationlp__left {
    padding-top: 141px;
  }
}
@media screen and (min-width: 80em) {
  .hero--evaluationlp__left {
    width: 50%;
    background: #26247b url("../images/waves/wave-evaluation-lp-vertical.jpg") no-repeat right top;
    background-size: cover;
    padding-bottom: 48px;
  }
}
.hero--evaluationlp__left__inner {
  padding-left: 10px;
  padding-right: 10px;
}
@media print, screen and (min-width: 47.5em) {
  .hero--evaluationlp__left__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (min-width: 80em) {
  .hero--evaluationlp__left__inner {
    max-width: 640px;
  }
}
.hero--evaluationlp__left__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media print, screen and (min-width: 47.5em) {
  .hero--evaluationlp__left__content {
    gap: 32px;
  }
}
@media screen and (min-width: 80em) {
  .hero--evaluationlp__left__content {
    max-width: 81.968%;
    position: sticky;
    padding-bottom: 112px;
    top: 48px;
  }
}
.hero--evaluationlp__right {
  width: 100%;
  padding-bottom: 48px;
  padding-left: 10px;
  padding-right: 10px;
}
@media print, screen and (min-width: 47.5em) {
  .hero--evaluationlp__right {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (min-width: 80em) {
  .hero--evaluationlp__right {
    margin-top: -93px;
    padding-top: 141px;
    padding-bottom: 104px;
    width: 50%;
    max-width: 640px;
  }
}
.hero--evaluationlp__text {
  font-size: 18px;
  line-height: 160%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero--evaluationlp__text > * {
  margin-top: 0;
  margin-bottom: 0;
}
.hero--evaluationlp__text h1 {
  font-family: "avenir-lt-pro", "Avenir LT W01_85 Heavy1475544", "AvenirLTW01-85Heavy", "Avenir", "Avenir LT", "Helvetica", sans-serif;
  font-size: 32px;
  line-height: 110%;
  margin-bottom: 0;
}
@media print, screen and (min-width: 47.5em) {
  .hero--evaluationlp__text h1 {
    font-size: 40px;
  }
}
.hero--evaluationlp__form {
  --gform-theme-form-row-gap: 24px;
}
.hero--evaluationlp__form .form-thankyou {
  height: 300px;
}
@media screen and (min-width: 80em) {
  .hero--evaluationlp__form .form-thankyou {
    height: 750px;
  }
}
.hero--evaluationlp__form h2, .hero--evaluationlp__form h3 {
  font-size: 48px;
  line-height: 66px;
  text-align: center;
  margin: 0;
}
@media print, screen and (min-width: 47.5em) {
  .hero--evaluationlp__form h2, .hero--evaluationlp__form h3 {
    font-size: 64px;
    line-height: 87px;
    text-align: left;
  }
}
.hero--evaluationlp__form form .select-wrapper:after, .hero--evaluationlp__form form .address_country:after {
  right: 3em;
}
.hero--evaluationlp__form form .select-wrapper select, .hero--evaluationlp__form form .address_country select {
  padding-right: 30px;
}
.hero--evaluationlp__form .gform_fields {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media print, screen and (min-width: 47.5em) {
  .hero--evaluationlp__form .gform_fields {
    grid-column-gap: 16px;
  }
}
.hero--evaluationlp__form .gform_fields select {
  font-size: 16px;
  padding-left: 24px;
}
.hero--evaluationlp__form .gform_fields .gfield {
  position: relative;
  width: 100%;
}
@media print, screen and (min-width: 47.5em) {
  .hero--evaluationlp__form .gform_fields .gfield--width-half {
    width: calc(50% - 8px);
  }
}
.hero--evaluationlp__form .gform_fields .gfield input, .hero--evaluationlp__form .gform_fields .gfield select, .hero--evaluationlp__form .gform_fields .gfield textarea, .hero--evaluationlp__form .gform_fields .gfield .select-wrapper, .hero--evaluationlp__form .gform_fields .gfield.select-wrapper {
  margin-bottom: 0;
}
.hero--evaluationlp__form .gform_fields .gfield_label {
  display: none;
}
.hero--evaluationlp__form .gform_fields .gfield--type-recaptcha_score {
  clear: both;
  width: 0px !important;
  position: absolute;
}
.hero--evaluationlp__form .gform_fields .gfield--type-recaptcha_score .gfield_label {
  display: none;
}
.hero--evaluationlp__form .gform_fields .address_line_1, .hero--evaluationlp__form .gform_fields .address_line_2, .hero--evaluationlp__form .gform_fields .ginput_left, .hero--evaluationlp__form .gform_fields .ginput_right {
  width: calc(100% - 14.4px);
  margin-left: 7.2px;
  margin-right: 7.2px;
}
@media print, screen and (min-width: 47.5em) {
  .hero--evaluationlp__form .gform_fields .ginput_container_address {
    display: flex;
    flex-wrap: wrap;
  }
}
.hero--evaluationlp__form .gform_fields .ginput_container.ginput_container_checkbox {
  margin: 0 !important;
}
@media print, screen and (min-width: 47.5em) {
  .hero--evaluationlp__form .gform_fields .address_line_1, .hero--evaluationlp__form .gform_fields .ginput_left {
    width: calc(50% - 14.4px);
  }
}
@media print, screen and (min-width: 47.5em) {
  .hero--evaluationlp__form .gform_fields .address_line_2, .hero--evaluationlp__form .gform_fields .ginput_right {
    width: calc(50% - 14.4px);
  }
}
.hero--evaluationlp__form .partial_entry_warning {
  display: none;
}
.hero--evaluationlp__form .gform_heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
.hero--evaluationlp__form .gform_description {
  font-size: 14px;
  line-height: 160%;
  color: #949494;
  margin-bottom: 0;
  text-align: center;
}
@media print, screen and (min-width: 47.5em) {
  .hero--evaluationlp__form .gform_description {
    text-align: left;
  }
}
.hero--evaluationlp__form .gform-loader, .hero--evaluationlp__form .gform_ajax_spinner {
  position: absolute;
  top: 14px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  padding: 7px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 100px;
}
.hero--evaluationlp__form .gform_validation_errors:focus {
  outline: none;
}
.hero--evaluationlp__form .validation_error {
  margin-top: 24px;
}
@media screen and (min-width: 80em) {
  .hero--evaluationlp__form .validation_error {
    margin-top: 0;
  }
}
.hero--evaluationlp__form .validation_error:focus-visible {
  outline: none;
}
.hero--evaluationlp__form .gform_submission_error {
  padding: 14px;
  color: #A62B2B;
  background-color: #FFE4E4;
  border-radius: 12px;
  font-size: 17px;
  line-height: 1.2;
  margin-bottom: 40px;
  font-weight: normal !important;
  font-family: "avenir-lt-pro", "Avenir LT W01_45 Book1475508", "AvenirLTW01-45Book", "Avenir", "Avenir LT", "Helvetica", sans-serif;
}
.hero--evaluationlp__form .gform_required_legend {
  display: none;
}
.hero--evaluationlp__form .floating-label {
  pointer-events: none;
}
.hero--evaluationlp__form .gsection_title {
  margin: 0;
  padding: 0;
  content: "";
  font-size: 0;
  line-height: 0;
  text-indent: -9999px;
  border-bottom: 1px solid #F1F1F1;
}
.hero--evaluationlp__form .gform_footer {
  position: relative;
  margin-bottom: 48px;
}
@media screen and (min-width: 80em) {
  .hero--evaluationlp__form .gform_footer {
    margin-bottom: 56px;
  }
}
.hero--evaluationlp__form .gform_footer input[type=submit] {
  padding: 15px 56px;
  background: white;
  transition: 0.3s all linear;
}
@media screen and (min-width: 30em) {
  .hero--evaluationlp__form .gform_footer input[type=submit] {
    padding: 13px 56px;
  }
}
.hero--evaluationlp__form .gform_footer input[type=submit]:hover {
  color: white;
  background: #26247b;
  border-color: #26247b;
}
@media print, screen and (min-width: 47.5em) {
  .hero--evaluationlp__form .gform_footer .gf-privacy-notice {
    width: 100%;
    text-align: center;
  }
}
.hero--evaluationlp__media__container {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 100%;
  height: 0px;
}
.hero--evaluationlp__media__container iframe,
.hero--evaluationlp__media__container object,
.hero--evaluationlp__media__container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero--evaluationlp__media__image > img {
  display: block;
}

footer.footer--evaluationlp {
  padding: 0;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  font-size: 16px;
  line-height: 28px;
}
@media print, screen and (min-width: 47.5em) {
  footer.footer--evaluationlp {
    flex-direction: row;
    align-items: center;
    width: 100%;
  }
}
@media screen and (min-width: 80em) {
  footer.footer--evaluationlp {
    display: none;
  }
}

.footer--evaluationlp__copyright {
  color: #666;
}
@media print, screen and (min-width: 47.5em) {
  .footer--evaluationlp__copyright {
    text-align: left;
    flex-grow: 1;
  }
}
@media print, screen and (min-width: 47.5em) {
  .footer--evaluationlp__handcraft {
    text-align: right;
    flex-grow: 1;
  }
}
@media screen and (min-width: 80em) {
  .footer--evaluationlp__handcraft {
    text-align: left;
    flex-grow: 1;
  }
}

.hero--evaluationlp--footer {
  display: none;
  flex-grow: 0;
}
@media screen and (min-width: 80em) {
  .hero--evaluationlp--footer {
    display: block;
  }
}
.hero--evaluationlp--footer .footer--evaluationlp {
  display: flex;
  position: absolute;
  left: 0;
  height: 0;
  width: 100%;
  margin-top: -88px;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 30px;
}
.hero--evaluationlp--footer .footer--evaluationlp__copyright {
  width: 50%;
  display: flex;
  justify-content: flex-end;
  color: #9D9BFF;
}
.hero--evaluationlp--footer .footer--evaluationlp__copyright__inner {
  width: 100%;
  max-width: 640px;
  padding-left: 30px;
  padding-right: 150px;
}
.hero--evaluationlp--footer .footer--evaluationlp__copyright a {
  color: white;
}
.hero--evaluationlp--footer .footer--evaluationlp__copyright a:hover {
  text-decoration: underline;
}
.hero--evaluationlp--footer .footer--evaluationlp__handcraft {
  width: 50%;
  padding-right: 15px;
}
.hero--evaluationlp--footer .footer--evaluationlp__handcraft__inner {
  width: 100%;
  max-width: 640px;
}

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;
}

.media-secondary {
  background: transparent url("../images/product/bg-wave-blue.png") no-repeat;
  background-size: auto 100%;
  background-position: -500px -70px;
  padding-top: 15%;
  margin-top: 0;
}
@media screen and (min-width: 30em) {
  .media-secondary .title {
    margin-left: 20px;
  }
}
@media print, screen and (min-width: 47.5em) {
  .media-secondary {
    background-position: -200px -300px;
    background-size: 1280px auto;
    margin-top: 100px;
    padding-top: 50px;
  }
}
@media print, screen and (min-width: 64em) {
  .media-secondary {
    background-position: 0 -300px;
    background-size: 1280px auto;
    margin-top: 100px;
    padding-top: 50px;
  }
}
@media screen and (min-width: 80em) {
  .media-secondary {
    background-position: 0 -600px;
    background-size: 1900px auto;
  }
}
@media screen and (min-width: 118.75em) {
  .media-secondary {
    background-position: 0 105%;
    background-size: 100% auto;
  }
}

.hero--validation {
  background-image: url("../images/service/bg-validation.jpg");
  padding-bottom: 0;
  background-color: transparent;
  padding-bottom: 25px;
}
.hero--validation .text-box {
  color: #333333;
  text-align: left;
  position: relative;
  z-index: 9;
  opacity: 1;
  transform: translate(0, 0);
}
.hero--validation .columns > p {
  margin-bottom: 50px;
}
.hero--validation h1 {
  line-height: 1.2;
}
@media print, screen and (min-width: 64em) {
  .hero--validation {
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 80em) {
  .hero--validation {
    padding-bottom: 75px;
  }
}
@media screen and (min-width: 118.75em) {
  .hero--validation {
    padding-bottom: 100px;
  }
}

.work--validation h3 {
  margin-bottom: 40px;
}
.work--validation h3 + p {
  margin-bottom: 50px;
  max-width: 80%;
  display: inline-block;
}
.work--validation form {
  padding: 10px;
}
.work--validation form h4 {
  font-size: 22px;
  font-weight: bold;
  color: rgba(102, 102, 102, 0.5);
  padding: 30px 0;
  position: relative;
}
.work--validation form h4 span {
  background-color: #ffffff;
  position: relative;
  z-index: 1;
}
.work--validation form h4:after {
  opacity: 0;
  content: "";
  position: absolute;
  height: 1px;
  background-color: rgba(102, 102, 102, 0.3);
  width: 100%;
  top: 44px;
  left: 0;
}
.work--validation .checkbox-wrapper {
  text-align: left;
  position: relative;
}
.work--validation .checkbox-wrapper > * {
  display: inline-block;
}
.work--validation .checkbox-wrapper > input {
  position: absolute;
  opacity: 0;
}
.work--validation .checkbox-wrapper > input:checked + label {
  color: #26247b;
}
.work--validation .checkbox-wrapper > input:checked + label > span {
  background-position: 0 -22px;
}
.work--validation .checkbox-wrapper label {
  color: #666666;
  padding-left: 20px;
  line-height: 1.4;
  margin-bottom: 20px;
  max-width: 70%;
}
.work--validation .checkbox-wrapper label > span {
  position: absolute;
  width: 20px;
  height: 20px;
  top: 4px;
  left: 0;
  background: #ffffff url("../images/service/checkbox-image.jpg") 0 0 no-repeat;
}
@media print, screen and (min-width: 64em) {
  .work--validation form {
    padding: 0;
  }
  .work--validation form h4 span {
    padding: 0 30px;
  }
  .work--validation form h4:after {
    opacity: 1;
  }
  .work--validation form textarea {
    max-height: 220px;
  }
  .work--validation form #field_7_19 h2 {
    margin-top: 0px;
    padding-top: 55px;
  }
  .work--validation form #field_7_20 .ginput_container.ginput_container_checkbox ul {
    -moz-column-count: 2;
    column-count: 2;
    width: 78%;
  }
  .work--validation .checkbox-wrapper label {
    min-height: 50px;
  }
  .work--validation h3 {
    margin-bottom: 50px;
  }
  .work--validation h3 + p {
    font-size: 22px;
    line-height: 28px;
    max-width: 94%;
    margin-bottom: 70px;
  }
}
@media print, screen and (min-width: 64em) and (min-width: 47.5em) {
  .work--validation .gsection_title {
    padding-top: 70px;
    padding-bottom: 40px;
  }
}
@media print, screen and (min-width: 64em) {
  .work--validation #field_7_19 .gsection_title {
    margin-bottom: 0px;
  }
}
@media screen and (min-width: 80em) {
  .work--validation form {
    padding: 0 75px;
  }
}
.sections.table {
  margin-bottom: 0;
  padding-bottom: 1.5em;
  overflow-x: auto;
}
.sections.table table {
  width: 100%;
  min-width: 800px;
  text-align: center;
  border: 0;
  border-collapse: collapse;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}
.sections.table table thead {
  background-color: #26247b;
  color: #ffffff;
}
.sections.table table thead tr td {
  padding-top: 60px;
  padding-bottom: 60px;
}
.sections.table table tr td {
  padding: 10px 15px;
}
.sections.table table tr td:first-child {
  text-align: left;
}
.sections.table table tr td:first-child > span {
  padding-left: 10px;
}
.sections.table table tr:nth-child(even) {
  background-color: #f5f5f5;
}
.sections.table-text {
  padding-top: 20px;
  padding-bottom: 30px;
  margin-bottom: 20px;
  font-size: 16px;
  color: #666666;
}
.sections.table-text p {
  margin-bottom: 5px;
  line-height: 28px;
}

.contentValidation-text {
  max-width: 1280px;
  margin: 25px auto 0;
  width: calc(100% - 10px);
  background-color: #fff;
}
.contentValidation-text ul {
  margin: 0 0 1em 25px;
}

.table-wrapper tr td {
  transform: translateX(50px) translateY(25px);
  transition: 0.3s;
  opacity: 0;
}
.table-wrapper tr td:nth-child(1) {
  transition-delay: 0;
}
.table-wrapper tr td:nth-child(2) {
  transition-delay: 0.1s;
}
.table-wrapper tr td:nth-child(3) {
  transition-delay: 0.2s;
}
.table-wrapper tr td:nth-child(4) {
  transition-delay: 0.3s;
}
.table-wrapper tr td:nth-child(5) {
  transition-delay: 0.4s;
}
.table-wrapper tr td:nth-child(6) {
  transition-delay: 0.5s;
}
.table-wrapper tr td:nth-child(7) {
  transition-delay: 0.6s;
}
.table-wrapper tr td:nth-child(8) {
  transition-delay: 0.7s;
}
.table-wrapper tr td.init {
  transform: translateX(0) translateY(0);
  opacity: 1;
}

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;
}
