/*!
 * Datepicker v1.0.4
 * https://fengyuanchen.github.io/datepicker
 *
 * Copyright 2014-present Chen Fengyuan
 * Released under the MIT license
 *
 * Date: 2019-01-06T02:42:32.803Z
 */
.datepicker-container {
  background-color: #fff;
  direction: ltr;
  font-size: 12px;
  left: 0;
  line-height: 30px;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 210px;
  z-index: -1; }

.datepicker-container::before,
.datepicker-container::after {
  border: 5px solid transparent;
  content: " ";
  display: block;
  height: 0;
  position: absolute;
  width: 0; }

.datepicker-dropdown {
  border: 1px solid #ccc;
  box-shadow: 0 3px 6px #ccc;
  box-sizing: content-box;
  position: absolute;
  z-index: 1; }

.datepicker-inline {
  position: static; }

.datepicker-top-left,
.datepicker-top-right {
  border-top-color: #39f; }

.datepicker-top-left::before,
.datepicker-top-left::after,
.datepicker-top-right::before,
.datepicker-top-right::after {
  border-top: 0;
  left: 10px;
  top: -5px; }

.datepicker-top-left::before,
.datepicker-top-right::before {
  border-bottom-color: #39f; }

.datepicker-top-left::after,
.datepicker-top-right::after {
  border-bottom-color: #fff;
  top: -4px; }

.datepicker-bottom-left,
.datepicker-bottom-right {
  border-bottom-color: #39f; }

.datepicker-bottom-left::before,
.datepicker-bottom-left::after,
.datepicker-bottom-right::before,
.datepicker-bottom-right::after {
  border-bottom: 0;
  bottom: -5px;
  left: 10px; }

.datepicker-bottom-left::before,
.datepicker-bottom-right::before {
  border-top-color: #39f; }

.datepicker-bottom-left::after,
.datepicker-bottom-right::after {
  border-top-color: #fff;
  bottom: -4px; }

.datepicker-top-right::before,
.datepicker-top-right::after,
.datepicker-bottom-right::before,
.datepicker-bottom-right::after {
  left: auto;
  right: 10px; }

.datepicker-panel > ul {
  margin: 0;
  padding: 0;
  width: 102%; }

.datepicker-panel > ul::before,
.datepicker-panel > ul::after {
  content: " ";
  display: table; }

.datepicker-panel > ul::after {
  clear: both; }

.datepicker-panel > ul > li {
  background-color: #fff;
  cursor: pointer;
  float: left;
  height: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 30px; }

.datepicker-panel > ul > li:hover {
  background-color: #e5f2ff; }

.datepicker-panel > ul > li.muted,
.datepicker-panel > ul > li.muted:hover {
  color: #999; }

.datepicker-panel > ul > li.highlighted {
  background-color: #e5f2ff; }

.datepicker-panel > ul > li.highlighted:hover {
  background-color: #cce5ff; }

.datepicker-panel > ul > li.picked,
.datepicker-panel > ul > li.picked:hover {
  color: #39f; }

.datepicker-panel > ul > li.disabled,
.datepicker-panel > ul > li.disabled:hover {
  background-color: #fff;
  color: #ccc;
  cursor: default; }

.datepicker-panel > ul > li.disabled.highlighted,
.datepicker-panel > ul > li.disabled:hover.highlighted {
  background-color: #e5f2ff; }

.datepicker-panel > ul > li[data-view="years prev"],
.datepicker-panel > ul > li[data-view="year prev"],
.datepicker-panel > ul > li[data-view="month prev"],
.datepicker-panel > ul > li[data-view="years next"],
.datepicker-panel > ul > li[data-view="year next"],
.datepicker-panel > ul > li[data-view="month next"],
.datepicker-panel > ul > li[data-view="next"] {
  font-size: 18px; }

.datepicker-panel > ul > li[data-view="years current"],
.datepicker-panel > ul > li[data-view="year current"],
.datepicker-panel > ul > li[data-view="month current"] {
  width: 150px; }

.datepicker-panel > ul[data-view="years"] > li,
.datepicker-panel > ul[data-view="months"] > li {
  height: 52.5px;
  line-height: 52.5px;
  width: 52.5px; }

.datepicker-panel > ul[data-view="week"] > li,
.datepicker-panel > ul[data-view="week"] > li:hover {
  background-color: #fff;
  cursor: default; }

.datepicker-hide {
  display: none; }
@charset "UTF-8";
/**
 * Featherlight – ultra slim jQuery lightbox
 * Version 1.7.13 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2018, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
html.with-featherlight {
  /* disable global scrolling when featherlights are visible */
  overflow: hidden; }

.featherlight {
  display: none;
  /* dimensions: spanning the background from edge to edge */
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2147483647;
  /* z-index needs to be >= elements on the site. */
  /* position: centering content */
  text-align: center;
  /* insures that the ::before pseudo element doesn't force wrap with fixed width content; */
  white-space: nowrap;
  /* styling */
  cursor: pointer;
  background: #333;
  /* IE8 "hack" for nested featherlights */
  background: transparent; }

/* support for nested featherlights. Does not work in IE8 (use JS to fix) */
.featherlight:last-of-type {
  background: rgba(0, 0, 0, 0.8); }

.featherlight:before {
  /* position: trick to center content vertically */
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.featherlight .featherlight-content {
  /* make content container for positioned elements (close button) */
  position: relative;
  /* position: centering vertical and horizontal */
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  /* dimensions: cut off images */
  overflow: auto;
  padding: 25px 25px 0;
  border-bottom: 25px solid transparent;
  /* dimensions: handling large content */
  margin-left: 5%;
  margin-right: 5%;
  max-height: 95%;
  /* styling */
  background: #fff;
  cursor: auto;
  /* reset white-space wrapping */
  white-space: normal; }

/* contains the content */
.featherlight .featherlight-inner {
  /* make sure its visible */
  display: block; }

/* don't show these though */
.featherlight script.featherlight-inner,
.featherlight link.featherlight-inner,
.featherlight style.featherlight-inner {
  display: none; }

.featherlight .featherlight-close-icon {
  /* position: centering vertical and horizontal */
  position: absolute;
  z-index: 9999;
  top: 0;
  right: 0;
  /* dimensions: 25px x 25px */
  line-height: 25px;
  width: 25px;
  /* styling */
  cursor: pointer;
  text-align: center;
  font-family: Arial, sans-serif;
  background: #fff;
  /* Set the background in case it overlaps the content */
  background: rgba(255, 255, 255, 0.3);
  color: #000;
  border: none;
  padding: 0; }

/* See http://stackoverflow.com/questions/16077341/how-to-reset-all-default-styles-of-the-html5-button-element */
.featherlight .featherlight-close-icon::-moz-focus-inner {
  border: 0;
  padding: 0; }

.featherlight .featherlight-image {
  /* styling */
  width: 100%; }

.featherlight-iframe .featherlight-content {
  /* removed the border for image croping since iframe is edge to edge */
  border-bottom: 0;
  padding: 0;
  -webkit-overflow-scrolling: touch; }

.featherlight iframe {
  /* styling */
  border: none; }

.featherlight * {
  /* See https://github.com/noelboss/featherlight/issues/42 */
  box-sizing: border-box; }

/* handling phones and small screens */
@media only screen and (max-width: 1024px) {
  .featherlight .featherlight-content {
    /* dimensions: maximize lightbox with for small screens */
    margin-left: 0;
    margin-right: 0;
    max-height: 98%;
    padding: 10px 10px 0;
    border-bottom: 10px solid transparent; } }

/* hide non featherlight items when printing */
@media print {
  html.with-featherlight > * > :not(.featherlight) {
    display: none; } }
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0; }

.slick-list:focus {
  outline: none; }

.slick-list.dragging {
  cursor: pointer;
  cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }

.slick-track:before,
.slick-track:after {
  display: table;
  content: ''; }

.slick-track:after {
  clear: both; }

.slick-loading .slick-track {
  visibility: hidden; }

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px; }

[dir='rtl'] .slick-slide {
  float: right; }

.slick-slide img {
  display: block; }

.slick-slide.slick-loading img {
  display: none; }

.slick-slide.dragging img {
  pointer-events: none; }

.slick-initialized .slick-slide {
  display: block; }

.slick-loading .slick-slide {
  visibility: hidden; }

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }
/* required styles */
.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
  position: absolute;
  left: 0;
  top: 0; }

.leaflet-container {
  overflow: hidden; }

.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  -webkit-user-drag: none; }

/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
  image-rendering: -webkit-optimize-contrast; }

/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
  width: 1600px;
  height: 1600px;
  -webkit-transform-origin: 0 0; }

.leaflet-marker-icon,
.leaflet-marker-shadow {
  display: block; }

/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg,
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer {
  max-width: none !important;
  max-height: none !important; }

.leaflet-container.leaflet-touch-zoom {
  -ms-touch-action: pan-x pan-y;
  touch-action: pan-x pan-y; }

.leaflet-container.leaflet-touch-drag {
  -ms-touch-action: pinch-zoom;
  /* Fallback for FF which doesn't support pinch-zoom */
  touch-action: none;
  touch-action: pinch-zoom; }

.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
  -ms-touch-action: none;
  touch-action: none; }

.leaflet-container {
  -webkit-tap-highlight-color: transparent; }

.leaflet-container a {
  -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4); }

.leaflet-tile {
  -webkit-filter: inherit;
          filter: inherit;
  visibility: hidden; }

.leaflet-tile-loaded {
  visibility: inherit; }

.leaflet-zoom-box {
  width: 0;
  height: 0;
  box-sizing: border-box;
  z-index: 800; }

/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
  -moz-user-select: none; }

.leaflet-pane {
  z-index: 400; }

.leaflet-tile-pane {
  z-index: 200; }

.leaflet-overlay-pane {
  z-index: 400; }

.leaflet-shadow-pane {
  z-index: 500; }

.leaflet-marker-pane {
  z-index: 600; }

.leaflet-tooltip-pane {
  z-index: 650; }

.leaflet-popup-pane {
  z-index: 700; }

.leaflet-map-pane canvas {
  z-index: 100; }

.leaflet-map-pane svg {
  z-index: 200; }

.leaflet-vml-shape {
  width: 1px;
  height: 1px; }

.lvml {
  behavior: url(#default#VML);
  display: inline-block;
  position: absolute; }

/* control positioning */
.leaflet-control {
  position: relative;
  z-index: 800;
  pointer-events: visiblePainted;
  /* IE 9-10 doesn't have auto */
  pointer-events: auto; }

.leaflet-top,
.leaflet-bottom {
  position: absolute;
  z-index: 1000;
  pointer-events: none; }

.leaflet-top {
  top: 0; }

.leaflet-right {
  right: 0; }

.leaflet-bottom {
  bottom: 0; }

.leaflet-left {
  left: 0; }

.leaflet-control {
  float: left;
  clear: both; }

.leaflet-right .leaflet-control {
  float: right; }

.leaflet-top .leaflet-control {
  margin-top: 10px; }

.leaflet-bottom .leaflet-control {
  margin-bottom: 10px; }

.leaflet-left .leaflet-control {
  margin-left: 10px; }

.leaflet-right .leaflet-control {
  margin-right: 10px; }

/* zoom and fade animations */
.leaflet-fade-anim .leaflet-tile {
  will-change: opacity; }

.leaflet-fade-anim .leaflet-popup {
  opacity: 0;
  transition: opacity 0.2s linear; }

.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
  opacity: 1; }

.leaflet-zoom-animated {
  -ms-transform-origin: 0 0;
  transform-origin: 0 0; }

.leaflet-zoom-anim .leaflet-zoom-animated {
  will-change: transform; }

.leaflet-zoom-anim .leaflet-zoom-animated {
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1); }

.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
  transition: none; }

.leaflet-zoom-anim .leaflet-zoom-hide {
  visibility: hidden; }

/* cursors */
.leaflet-interactive {
  cursor: pointer; }

.leaflet-grab {
  cursor: -webkit-grab;
  cursor: -moz-grab; }

.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
  cursor: crosshair; }

.leaflet-popup-pane,
.leaflet-control {
  cursor: auto; }

.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing; }

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
  pointer-events: none; }

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive {
  pointer-events: visiblePainted;
  /* IE 9-10 doesn't have auto */
  pointer-events: auto; }

/* visual tweaks */
.leaflet-container {
  background: #ddd;
  outline: 0; }

.leaflet-container a {
  color: #0078A8; }

.leaflet-container a.leaflet-active {
  outline: 2px solid orange; }

.leaflet-zoom-box {
  border: 2px dotted #38f;
  background: rgba(255, 255, 255, 0.5); }

/* general typography */
.leaflet-container {
  font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif; }

/* general toolbar styles */
.leaflet-bar {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
  border-radius: 4px; }

.leaflet-bar a,
.leaflet-bar a:hover {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  width: 26px;
  height: 26px;
  line-height: 26px;
  display: block;
  text-align: center;
  text-decoration: none;
  color: black; }

.leaflet-bar a,
.leaflet-control-layers-toggle {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: block; }

.leaflet-bar a:hover {
  background-color: #f4f4f4; }

.leaflet-bar a:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px; }

.leaflet-bar a:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom: none; }

.leaflet-bar a.leaflet-disabled {
  cursor: default;
  background-color: #f4f4f4;
  color: #bbb; }

.leaflet-touch .leaflet-bar a {
  width: 30px;
  height: 30px;
  line-height: 30px; }

.leaflet-touch .leaflet-bar a:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px; }

.leaflet-touch .leaflet-bar a:last-child {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px; }

/* zoom control */
.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
  font: bold 18px 'Lucida Console', Monaco, monospace;
  text-indent: 1px; }

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out {
  font-size: 22px; }

/* layers control */
.leaflet-control-layers {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
  background: #fff;
  border-radius: 5px; }

.leaflet-control-layers-toggle {
  background-image: url('vhs-assets-css-93703edb73d71b11d575d0c4c1cf79dc.png');
  width: 36px;
  height: 36px; }

.leaflet-retina .leaflet-control-layers-toggle {
  background-image: url('vhs-assets-css-b16b136bdfc320ed24202b598a4e75e6.png');
  background-size: 26px 26px; }

.leaflet-touch .leaflet-control-layers-toggle {
  width: 44px;
  height: 44px; }

.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
  display: none; }

.leaflet-control-layers-expanded .leaflet-control-layers-list {
  display: block;
  position: relative; }

.leaflet-control-layers-expanded {
  padding: 6px 10px 6px 6px;
  color: #333;
  background: #fff; }

.leaflet-control-layers-scrollbar {
  overflow-y: scroll;
  overflow-x: hidden;
  padding-right: 5px; }

.leaflet-control-layers-selector {
  margin-top: 2px;
  position: relative;
  top: 1px; }

.leaflet-control-layers label {
  display: block; }

.leaflet-control-layers-separator {
  height: 0;
  border-top: 1px solid #ddd;
  margin: 5px -10px 5px -6px; }

/* Default icon URLs */
.leaflet-default-icon-path {
  background-image: url('vhs-assets-css-a7111c4e2b86e2e6bd9366a2e829a412.png'); }

/* attribution and scale controls */
.leaflet-container .leaflet-control-attribution {
  background: #fff;
  background: rgba(255, 255, 255, 0.7);
  margin: 0; }

.leaflet-control-attribution,
.leaflet-control-scale-line {
  padding: 0 5px;
  color: #333; }

.leaflet-control-attribution a {
  text-decoration: none; }

.leaflet-control-attribution a:hover {
  text-decoration: underline; }

.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
  font-size: 11px; }

.leaflet-left .leaflet-control-scale {
  margin-left: 5px; }

.leaflet-bottom .leaflet-control-scale {
  margin-bottom: 5px; }

.leaflet-control-scale-line {
  border: 2px solid #777;
  border-top: none;
  line-height: 1.1;
  padding: 2px 5px 1px;
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  background: #fff;
  background: rgba(255, 255, 255, 0.5); }

.leaflet-control-scale-line:not(:first-child) {
  border-top: 2px solid #777;
  border-bottom: none;
  margin-top: -2px; }

.leaflet-control-scale-line:not(:first-child):not(:last-child) {
  border-bottom: 2px solid #777; }

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  box-shadow: none; }

.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  border: 2px solid rgba(0, 0, 0, 0.2);
  background-clip: padding-box; }

/* popup */
.leaflet-popup {
  position: absolute;
  text-align: center;
  margin-bottom: 20px; }

.leaflet-popup-content-wrapper {
  padding: 1px;
  text-align: left;
  border-radius: 12px; }

.leaflet-popup-content {
  margin: 13px 19px;
  line-height: 1.4; }

.leaflet-popup-content p {
  margin: 18px 0; }

.leaflet-popup-tip-container {
  width: 40px;
  height: 20px;
  position: absolute;
  left: 50%;
  margin-left: -20px;
  overflow: hidden;
  pointer-events: none; }

.leaflet-popup-tip {
  width: 17px;
  height: 17px;
  padding: 1px;
  margin: -10px auto 0;
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: white;
  color: #333;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4); }

.leaflet-container a.leaflet-popup-close-button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 4px 4px 0 0;
  border: none;
  text-align: center;
  width: 18px;
  height: 14px;
  font: 16px/14px Tahoma, Verdana, sans-serif;
  color: #c3c3c3;
  text-decoration: none;
  font-weight: bold;
  background: transparent; }

.leaflet-container a.leaflet-popup-close-button:hover {
  color: #999; }

.leaflet-popup-scrolled {
  overflow: auto;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd; }

.leaflet-oldie .leaflet-popup-content-wrapper {
  zoom: 1; }

.leaflet-oldie .leaflet-popup-tip {
  width: 24px;
  margin: 0 auto;
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
  filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678); }

.leaflet-oldie .leaflet-popup-tip-container {
  margin-top: -1px; }

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
  border: 1px solid #999; }

/* div icon */
.leaflet-div-icon {
  background: #fff;
  border: 1px solid #666; }

/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
  position: absolute;
  padding: 6px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
  color: #222;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4); }

.leaflet-tooltip.leaflet-clickable {
  cursor: pointer;
  pointer-events: auto; }

.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  position: absolute;
  pointer-events: none;
  border: 6px solid transparent;
  background: transparent;
  content: ""; }

/* Directions */
.leaflet-tooltip-bottom {
  margin-top: 6px; }

.leaflet-tooltip-top {
  margin-top: -6px; }

.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
  left: 50%;
  margin-left: -6px; }

.leaflet-tooltip-top:before {
  bottom: 0;
  margin-bottom: -12px;
  border-top-color: #fff; }

.leaflet-tooltip-bottom:before {
  top: 0;
  margin-top: -12px;
  margin-left: -6px;
  border-bottom-color: #fff; }

.leaflet-tooltip-left {
  margin-left: -6px; }

.leaflet-tooltip-right {
  margin-left: 6px; }

.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  top: 50%;
  margin-top: -6px; }

.leaflet-tooltip-left:before {
  right: 0;
  margin-right: -12px;
  border-left-color: #fff; }

.leaflet-tooltip-right:before {
  left: 0;
  margin-left: -12px;
  border-right-color: #fff; }
@charset "UTF-8";
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

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

/**
 * 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
   ========================================================================== */
/**
 * 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 */ }

/**
 * 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 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent; }

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

/**
 * 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 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
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none; }

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

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  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; }

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
 * 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 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline; }

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

/**
 * 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 in Chrome and Safari on macOS.
 */
[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 */ }

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

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

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none; }

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

/*==========================================================================
  mixins
  ==========================================================================*/
/*==========================================================================
  basic animation keyframes
  ==========================================================================*/
@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(20%); }
  100% {
    opacity: 1;
    transform: none; } }

@keyframes fade-in-right {
  0% {
    opacity: 0;
    transform: translateX(-20%); }
  100% {
    opacity: 1;
    transform: none; } }

@keyframes fade-in-down {
  0% {
    opacity: 0;
    transform: translateY(-20%); }
  100% {
    opacity: 1;
    transform: none; } }

@keyframes fade-in-left {
  0% {
    opacity: 0;
    transform: translateX(20%); }
  100% {
    opacity: 1;
    transform: none; } }

@keyframes fade-in-backward {
  0% {
    opacity: 0;
    transform: scale(1.2); }
  100% {
    opacity: 1;
    transform: none; } }

@keyframes fade-in-forward {
  0% {
    opacity: 0;
    transform: scale(0.8); }
  100% {
    opacity: 1;
    transform: none; } }

@keyframes fade-out {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*==========================================================================
  typography + basic html styles
  ==========================================================================*/
html {
  font-size: 16px; }

body {
  position: relative;
  font-family: "Futura", Helvetica, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  color: #2B2B2B;
  background: #FFF; }
  body:before {
    content: "lg";
    display: none; }
  @media (max-width: 1023px) {
    body:before {
      content: "md"; } }
  @media (max-width: 639px) {
    body:before {
      content: "sm"; } }

h1, h2, h3, h4, h5, h6 {
  font-family: "Futura", Helvetica, sans-serif;
  font-size: 2.0em;
  font-weight: normal;
  line-height: 1.28; }

h1, .h1 {
  font-size: 2.4em; }

h2, .h2 {
  font-size: 2.0em; }

h3, .h3 {
  font-size: 1.6em; }

h4, .h4 {
  font-size: 1.2em; }

h5, h6, .h5 {
  font-size: 1.0em; }

img {
  max-width: 100%;
  height: auto;
  /* Nur Internet Explorer */ }
  @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    img {
      width: 100%; } }

blockquote {
  margin: 0; }

h1, h2, h3, h4, h5, h6,
header,
p,
hr,
ul, ol,
blockquote {
  margin: 0 0 1.25rem; }
  h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child,
  header:last-child,
  p:last-child,
  hr:last-child,
  ul:last-child, ol:last-child,
  blockquote:last-child {
    margin-bottom: 0; }

b, strong {
  font-weight: bold; }

hr {
  height: 2px;
  border: none;
  background: #d5d5d5; }

a {
  color: #888;
  cursor: pointer; }
  a.selected, a:hover {
    color: #2B2B2B;
    text-decoration: underline; }

table.table {
  width: 100%; }
  table.table td, table.table th {
    padding: 0.3125rem 0.625rem; }
  table.table thead {
    border-bottom: 2px #e6e6e6 solid; }
    table.table thead th {
      text-align: left; }
  table.table tbody tr:nth-child(2n) {
    background: #f2f2f2; }
  table.table tbody tr:hover {
    background: #e6e6e6; }
  table.table tfoot {
    border-top: 2px #e6e6e6 solid; }

.ce-gallery iframe {
  max-width: 100%; }

.site__content ul:not([class]) li {
  background: url('vhs-assets-css-6c87f719d6d5fc1c91ff1bba682da298.png') no-repeat left 0.6em;
  /* <-- change `left` & `top` too for extra control */
  padding: 0 0 0 1.5em;
  margin: 0; }

/*==========================================================================
  mixins
  ==========================================================================*/
/*==========================================================================
  basic helper classes
  ==========================================================================*/
.hidden,
[hidden] {
  display: none !important; }

.hide {
  display: none; }

.invisible {
  visibility: hidden; }

@media (max-width: 1023px) {
  .lg-screen-only {
    display: none !important; } }

@media (min-width: 1024px) {
  .lg-screen-hidden {
    display: none !important; } }

@media (min-width: 1024px) {
  .md-screen-only {
    display: none !important; } }

@media (max-width: 639px) {
  .md-screen-only {
    display: none !important; } }

@media (min-width: 640px) {
  .sm-screen-only {
    display: none !important; } }

@media (max-width: 639px) {
  .sm-screen-hidden {
    display: none !important; } }

@media (max-width: 639px) {
  .sm-screen-no-padding {
    padding: 0 !important; } }

@media screen {
  .print-only {
    display: none !important; } }

@media print {
  .print-hidden {
    display: none !important; } }

.screen-reader-only,
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  clip: rect(0 0 0 0);
  overflow: hidden;
  border: none; }

.clear,
.group:after,
.clear-after:after {
  clear: both; }

.group:before,
.group:after,
.clear-after:after {
  display: table;
  content: ""; }

.fl-left,
.push-left {
  float: left; }

.fl-right,
.push-right {
  float: right; }

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

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

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

.paragraph {
  margin-bottom: 1.25rem; }

.gap {
  margin: 1.25rem 0; }

.inner-gap {
  padding: 1.25rem 0; }

.block {
  display: block !important; }

.main-font {
  font-family: "Futura", Helvetica, sans-serif !important; }

.title-font {
  font-family: "Futura", Helvetica, sans-serif !important; }

.test {
  outline: 2px #2B2B2B dotted; }

/*==========================================================================
  mixins
  ==========================================================================*/
/*==========================================================================
  grid system
  ==========================================================================*/
.grid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-direction: row;
      flex-direction: row; }
  .grid:not(.grid--no-gap) {
    margin-left: -1rem;
    margin-right: -1rem; }
    .grid:not(.grid--no-gap) > .grid__col {
      padding: 0 1rem; }
  .grid.grid--no-wrap {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap; }
  .grid.grid--v-gap {
    margin-top: -2rem; }
    .grid.grid--v-gap > .grid__col {
      margin-top: 2rem !important; }
  .no-flexbox .grid {
    display: block; }
    .no-flexbox .grid:before, .no-flexbox .grid:after {
      display: table;
      content: "";
      clear: both; }
    .no-flexbox .grid:not(.grid--wrap) .grid__col {
      clear: none; }
  .grid__col {
    width: 100%;
    vertical-align: top;
    min-height: 1px;
    box-sizing: border-box; }
    .no-flexbox .grid__col {
      display: block;
      float: left; }
    .grid__col--1 {
      max-width: 8.33333%;
      -ms-flex: 0 0 8.33333%;
          flex: 0 0 8.33333%; }
      .no-flexbox .grid__col--1 {
        width: 8.33333%;
        max-width: none; }
        .no-flexbox .grid__col--1:nth-child(12n + 13) {
          clear: both; }
    .grid__col--2 {
      max-width: 16.66667%;
      -ms-flex: 0 0 16.66667%;
          flex: 0 0 16.66667%; }
      .no-flexbox .grid__col--2 {
        width: 16.66667%;
        max-width: none; }
        .no-flexbox .grid__col--2:nth-child(6n + 7) {
          clear: both; }
    .grid__col--3 {
      max-width: 25%;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%; }
      .no-flexbox .grid__col--3 {
        width: 25%;
        max-width: none; }
        .no-flexbox .grid__col--3:nth-child(4n + 5) {
          clear: both; }
    .grid__col--4 {
      max-width: 33.33333%;
      -ms-flex: 0 0 33.33333%;
          flex: 0 0 33.33333%; }
      .no-flexbox .grid__col--4 {
        width: 33.33333%;
        max-width: none; }
        .no-flexbox .grid__col--4:nth-child(3n + 4) {
          clear: both; }
    .grid__col--5 {
      max-width: 41.66667%;
      -ms-flex: 0 0 41.66667%;
          flex: 0 0 41.66667%; }
      .no-flexbox .grid__col--5 {
        width: 41.66667%;
        max-width: none; }
        .no-flexbox .grid__col--5:nth-child(2n + 3) {
          clear: both; }
    .grid__col--6 {
      max-width: 50%;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%; }
      .no-flexbox .grid__col--6 {
        width: 50%;
        max-width: none; }
        .no-flexbox .grid__col--6:nth-child(2n + 3) {
          clear: both; }
    .grid__col--7 {
      max-width: 58.33333%;
      -ms-flex: 0 0 58.33333%;
          flex: 0 0 58.33333%; }
      .no-flexbox .grid__col--7 {
        width: 58.33333%;
        max-width: none; }
        .no-flexbox .grid__col--7:nth-child(1n + 2) {
          clear: both; }
    .grid__col--8 {
      max-width: 66.66667%;
      -ms-flex: 0 0 66.66667%;
          flex: 0 0 66.66667%; }
      .no-flexbox .grid__col--8 {
        width: 66.66667%;
        max-width: none; }
        .no-flexbox .grid__col--8:nth-child(1n + 2) {
          clear: both; }
    .grid__col--9 {
      max-width: 75%;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%; }
      .no-flexbox .grid__col--9 {
        width: 75%;
        max-width: none; }
        .no-flexbox .grid__col--9:nth-child(1n + 2) {
          clear: both; }
    .grid__col--10 {
      max-width: 83.33333%;
      -ms-flex: 0 0 83.33333%;
          flex: 0 0 83.33333%; }
      .no-flexbox .grid__col--10 {
        width: 83.33333%;
        max-width: none; }
        .no-flexbox .grid__col--10:nth-child(1n + 2) {
          clear: both; }
    .grid__col--11 {
      max-width: 91.66667%;
      -ms-flex: 0 0 91.66667%;
          flex: 0 0 91.66667%; }
      .no-flexbox .grid__col--11 {
        width: 91.66667%;
        max-width: none; }
        .no-flexbox .grid__col--11:nth-child(1n + 2) {
          clear: both; }
    .grid__col--12 {
      max-width: 100%;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%; }
      .no-flexbox .grid__col--12 {
        width: 100%;
        max-width: none; }
        .no-flexbox .grid__col--12:nth-child(1n + 2) {
          clear: both; }
    @media (max-width: 1599px) {
      .grid__col--lg-1 {
        max-width: 8.33333%;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%; }
        .no-flexbox .grid__col--lg-1 {
          width: 8.33333%;
          max-width: none; }
          .no-flexbox .grid__col--lg-1:nth-child(12n + 13) {
            clear: both; }
      .grid__col--lg-2 {
        max-width: 16.66667%;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%; }
        .no-flexbox .grid__col--lg-2 {
          width: 16.66667%;
          max-width: none; }
          .no-flexbox .grid__col--lg-2:nth-child(6n + 7) {
            clear: both; }
      .grid__col--lg-3 {
        max-width: 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%; }
        .no-flexbox .grid__col--lg-3 {
          width: 25%;
          max-width: none; }
          .no-flexbox .grid__col--lg-3:nth-child(4n + 5) {
            clear: both; }
      .grid__col--lg-4 {
        max-width: 33.33333%;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%; }
        .no-flexbox .grid__col--lg-4 {
          width: 33.33333%;
          max-width: none; }
          .no-flexbox .grid__col--lg-4:nth-child(3n + 4) {
            clear: both; }
      .grid__col--lg-5 {
        max-width: 41.66667%;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%; }
        .no-flexbox .grid__col--lg-5 {
          width: 41.66667%;
          max-width: none; }
          .no-flexbox .grid__col--lg-5:nth-child(2n + 3) {
            clear: both; }
      .grid__col--lg-6 {
        max-width: 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%; }
        .no-flexbox .grid__col--lg-6 {
          width: 50%;
          max-width: none; }
          .no-flexbox .grid__col--lg-6:nth-child(2n + 3) {
            clear: both; }
      .grid__col--lg-7 {
        max-width: 58.33333%;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%; }
        .no-flexbox .grid__col--lg-7 {
          width: 58.33333%;
          max-width: none; }
          .no-flexbox .grid__col--lg-7:nth-child(1n + 2) {
            clear: both; }
      .grid__col--lg-8 {
        max-width: 66.66667%;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%; }
        .no-flexbox .grid__col--lg-8 {
          width: 66.66667%;
          max-width: none; }
          .no-flexbox .grid__col--lg-8:nth-child(1n + 2) {
            clear: both; }
      .grid__col--lg-9 {
        max-width: 75%;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%; }
        .no-flexbox .grid__col--lg-9 {
          width: 75%;
          max-width: none; }
          .no-flexbox .grid__col--lg-9:nth-child(1n + 2) {
            clear: both; }
      .grid__col--lg-10 {
        max-width: 83.33333%;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%; }
        .no-flexbox .grid__col--lg-10 {
          width: 83.33333%;
          max-width: none; }
          .no-flexbox .grid__col--lg-10:nth-child(1n + 2) {
            clear: both; }
      .grid__col--lg-11 {
        max-width: 91.66667%;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%; }
        .no-flexbox .grid__col--lg-11 {
          width: 91.66667%;
          max-width: none; }
          .no-flexbox .grid__col--lg-11:nth-child(1n + 2) {
            clear: both; }
      .grid__col--lg-12 {
        max-width: 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%; }
        .no-flexbox .grid__col--lg-12 {
          width: 100%;
          max-width: none; }
          .no-flexbox .grid__col--lg-12:nth-child(1n + 2) {
            clear: both; } }
    @media (max-width: 1023px) {
      .grid__col--md-1 {
        max-width: 8.33333%;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%; }
        .no-flexbox .grid__col--md-1 {
          width: 8.33333%;
          max-width: none; }
          .no-flexbox .grid__col--md-1:nth-child(12n + 13) {
            clear: both; }
      .grid__col--md-2 {
        max-width: 16.66667%;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%; }
        .no-flexbox .grid__col--md-2 {
          width: 16.66667%;
          max-width: none; }
          .no-flexbox .grid__col--md-2:nth-child(6n + 7) {
            clear: both; }
      .grid__col--md-3 {
        max-width: 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%; }
        .no-flexbox .grid__col--md-3 {
          width: 25%;
          max-width: none; }
          .no-flexbox .grid__col--md-3:nth-child(4n + 5) {
            clear: both; }
      .grid__col--md-4 {
        max-width: 33.33333%;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%; }
        .no-flexbox .grid__col--md-4 {
          width: 33.33333%;
          max-width: none; }
          .no-flexbox .grid__col--md-4:nth-child(3n + 4) {
            clear: both; }
      .grid__col--md-5 {
        max-width: 41.66667%;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%; }
        .no-flexbox .grid__col--md-5 {
          width: 41.66667%;
          max-width: none; }
          .no-flexbox .grid__col--md-5:nth-child(2n + 3) {
            clear: both; }
      .grid__col--md-6 {
        max-width: 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%; }
        .no-flexbox .grid__col--md-6 {
          width: 50%;
          max-width: none; }
          .no-flexbox .grid__col--md-6:nth-child(2n + 3) {
            clear: both; }
      .grid__col--md-7 {
        max-width: 58.33333%;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%; }
        .no-flexbox .grid__col--md-7 {
          width: 58.33333%;
          max-width: none; }
          .no-flexbox .grid__col--md-7:nth-child(1n + 2) {
            clear: both; }
      .grid__col--md-8 {
        max-width: 66.66667%;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%; }
        .no-flexbox .grid__col--md-8 {
          width: 66.66667%;
          max-width: none; }
          .no-flexbox .grid__col--md-8:nth-child(1n + 2) {
            clear: both; }
      .grid__col--md-9 {
        max-width: 75%;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%; }
        .no-flexbox .grid__col--md-9 {
          width: 75%;
          max-width: none; }
          .no-flexbox .grid__col--md-9:nth-child(1n + 2) {
            clear: both; }
      .grid__col--md-10 {
        max-width: 83.33333%;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%; }
        .no-flexbox .grid__col--md-10 {
          width: 83.33333%;
          max-width: none; }
          .no-flexbox .grid__col--md-10:nth-child(1n + 2) {
            clear: both; }
      .grid__col--md-11 {
        max-width: 91.66667%;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%; }
        .no-flexbox .grid__col--md-11 {
          width: 91.66667%;
          max-width: none; }
          .no-flexbox .grid__col--md-11:nth-child(1n + 2) {
            clear: both; }
      .grid__col--md-12 {
        max-width: 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%; }
        .no-flexbox .grid__col--md-12 {
          width: 100%;
          max-width: none; }
          .no-flexbox .grid__col--md-12:nth-child(1n + 2) {
            clear: both; } }
    @media (max-width: 639px) {
      .grid__col--sm-1 {
        max-width: 8.33333%;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%; }
        .no-flexbox .grid__col--sm-1 {
          width: 8.33333%;
          max-width: none; }
          .no-flexbox .grid__col--sm-1:nth-child(12n + 13) {
            clear: both; }
      .grid__col--sm-2 {
        max-width: 16.66667%;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%; }
        .no-flexbox .grid__col--sm-2 {
          width: 16.66667%;
          max-width: none; }
          .no-flexbox .grid__col--sm-2:nth-child(6n + 7) {
            clear: both; }
      .grid__col--sm-3 {
        max-width: 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%; }
        .no-flexbox .grid__col--sm-3 {
          width: 25%;
          max-width: none; }
          .no-flexbox .grid__col--sm-3:nth-child(4n + 5) {
            clear: both; }
      .grid__col--sm-4 {
        max-width: 33.33333%;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%; }
        .no-flexbox .grid__col--sm-4 {
          width: 33.33333%;
          max-width: none; }
          .no-flexbox .grid__col--sm-4:nth-child(3n + 4) {
            clear: both; }
      .grid__col--sm-5 {
        max-width: 41.66667%;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%; }
        .no-flexbox .grid__col--sm-5 {
          width: 41.66667%;
          max-width: none; }
          .no-flexbox .grid__col--sm-5:nth-child(2n + 3) {
            clear: both; }
      .grid__col--sm-6 {
        max-width: 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%; }
        .no-flexbox .grid__col--sm-6 {
          width: 50%;
          max-width: none; }
          .no-flexbox .grid__col--sm-6:nth-child(2n + 3) {
            clear: both; }
      .grid__col--sm-7 {
        max-width: 58.33333%;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%; }
        .no-flexbox .grid__col--sm-7 {
          width: 58.33333%;
          max-width: none; }
          .no-flexbox .grid__col--sm-7:nth-child(1n + 2) {
            clear: both; }
      .grid__col--sm-8 {
        max-width: 66.66667%;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%; }
        .no-flexbox .grid__col--sm-8 {
          width: 66.66667%;
          max-width: none; }
          .no-flexbox .grid__col--sm-8:nth-child(1n + 2) {
            clear: both; }
      .grid__col--sm-9 {
        max-width: 75%;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%; }
        .no-flexbox .grid__col--sm-9 {
          width: 75%;
          max-width: none; }
          .no-flexbox .grid__col--sm-9:nth-child(1n + 2) {
            clear: both; }
      .grid__col--sm-10 {
        max-width: 83.33333%;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%; }
        .no-flexbox .grid__col--sm-10 {
          width: 83.33333%;
          max-width: none; }
          .no-flexbox .grid__col--sm-10:nth-child(1n + 2) {
            clear: both; }
      .grid__col--sm-11 {
        max-width: 91.66667%;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%; }
        .no-flexbox .grid__col--sm-11 {
          width: 91.66667%;
          max-width: none; }
          .no-flexbox .grid__col--sm-11:nth-child(1n + 2) {
            clear: both; }
      .grid__col--sm-12 {
        max-width: 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%; }
        .no-flexbox .grid__col--sm-12 {
          width: 100%;
          max-width: none; }
          .no-flexbox .grid__col--sm-12:nth-child(1n + 2) {
            clear: both; } }
  .grid--flip {
    -ms-flex-direction: row-reverse;
        flex-direction: row-reverse; }
    @media (max-width: 639px) {
      .grid--flip {
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse; } }
    .no-flexbox .grid--flip > .grid__col {
      float: right; }
  .grid--debug .grid__col > * {
    background: rgba(43, 43, 43, 0.15); }
  @media (max-width: 960px) {
    .grid--responsive {
      -ms-flex-wrap: wrap !important;
          flex-wrap: wrap !important; }
      .grid--responsive > .grid__col:not([class*="--sm-"]) {
        display: block;
        width: 100%;
        max-width: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        margin: 1.25rem 0 0; }
        .grid--responsive > .grid__col:not([class*="--sm-"]):first-child {
          margin-top: 0; } }
  @media (max-width: 639px) {
    .grid--sm-responsive {
      -ms-flex-wrap: wrap !important;
          flex-wrap: wrap !important; }
      .grid--sm-responsive > .grid__col:not([class*="--sm-"]) {
        display: block;
        width: 100%;
        max-width: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        margin: 1.25rem 0 0; }
        .grid--sm-responsive > .grid__col:not([class*="--sm-"]):first-child {
          margin-top: 0; } }
  @media (max-width: 1023px) {
    .grid--md-responsive {
      -ms-flex-wrap: wrap !important;
          flex-wrap: wrap !important; }
      .grid--md-responsive > .grid__col:not([class*="--sm-"]) {
        display: block;
        width: 100%;
        max-width: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        margin: 1.25rem 0 0; }
        .grid--md-responsive > .grid__col:not([class*="--sm-"]):first-child {
          margin-top: 0; } }
  @media (max-width: 1599px) {
    .grid--lg-responsive {
      -ms-flex-wrap: wrap !important;
          flex-wrap: wrap !important; }
      .grid--lg-responsive > .grid__col:not([class*="--sm-"]) {
        display: block;
        width: 100%;
        max-width: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        margin: 1.25rem 0 0; }
        .grid--lg-responsive > .grid__col:not([class*="--sm-"]):first-child {
          margin-top: 0; } }

/*==========================================================================
  basic components
  ==========================================================================*/
.btn {
  display: inline-block;
  padding: 0.297rem 0.66rem 0.33rem;
  color: #FFF;
  background: #888;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  outline: 0; }
  .btn:hover, .btn:focus {
    color: #FFF;
    background: #2B2B2B;
    text-decoration: none; }

@font-face {
  font-family: "Futura";
  src: url('vhs-assets-css-f1616387f7b712d55d1f6747ac2efd55.eot');
  src: local("\263A"), url('vhs-assets-css-e1a5ee706d777b775032f133f44f0c3e.eot?#iefix') format("embedded-opentype"), url('vhs-assets-css-e46dc2750624193730bdc2fdc45b07dc.ttf') format("truetype"), url('vhs-assets-css-9a97079d263f3796a9f7582d9ee6e093.woff') format("woff");
  font-weight: 300;
  font-style: normal;
  font-variant: normal; }

@font-face {
  font-family: "Futura";
  src: url('vhs-assets-css-1677a17554d0573dbbb50bb1df9f0c72.eot');
  src: local("\263A"), url('vhs-assets-css-d8b67160ddf26f1b6965b9a637f08245.eot?#iefix') format("embedded-opentype"), url('vhs-assets-css-9122321c5da973d829f4c8f1527f0765.ttf') format("truetype"), url('vhs-assets-css-2dbdb2a90d3483e06d3277f4f12679e5.woff') format("woff");
  font-weight: 300;
  font-style: italic;
  font-variant: normal; }

@font-face {
  font-family: "Futura";
  src: url('vhs-assets-css-dd7930038b5232036847a6a9c258e6f3.eot');
  src: local("\263A"), url('vhs-assets-css-bc42e0496b095cbfce76415b9333bf16.eot?#iefix') format("embedded-opentype"), url('vhs-assets-css-bdf02bfa97aff4e8eb4f3babda432fec.ttf') format("truetype"), url('vhs-assets-css-45c1af3be3e2f52c772cbce5c443ba27.woff') format("woff");
  font-weight: normal;
  font-style: normal;
  font-variant: normal; }

@font-face {
  font-family: "Futura";
  src: url('vhs-assets-css-b399b956ebc19fa60e84a24d2737d39d.eot');
  src: local("\263A"), url('vhs-assets-css-2d1b4531d76ac33ec6927b17f4d8a67f.eot?#iefix') format("embedded-opentype"), url('vhs-assets-css-44fd36cdd74cad0c20b8668747773c39.ttf') format("truetype"), url('vhs-assets-css-16d198e95a5ffff959730e1c22fce22f.woff') format("woff");
  font-weight: normal;
  font-style: italic;
  font-variant: normal; }

@font-face {
  font-family: "Futura";
  src: url('vhs-assets-css-2b6e4a3114dc01994af17d462f0514ee.eot');
  src: local("\263A"), url('vhs-assets-css-b0723ae4ae34c17a84a436d51e3df406.eot?#iefix') format("embedded-opentype"), url('vhs-assets-css-ee80698c91d8eb49cf0314dcd7095aeb.ttf') format("truetype"), url('vhs-assets-css-4885956237351c3c116ce81ad838ef2f.woff') format("woff");
  font-weight: bold;
  font-style: normal;
  font-variant: normal; }

@font-face {
  font-family: "Futura";
  src: url('vhs-assets-css-14df1469f93d97c1be92bfdf29197996.eot');
  src: local("\263A"), url('vhs-assets-css-7da3e6a5b83b56ec76bec5cce4a141f1.eot?#iefix') format("embedded-opentype"), url('vhs-assets-css-381ff5704ffcd8af07c67944dbb296b1.ttf') format("truetype"), url('vhs-assets-css-f33984ec2ec82c5c443691f07eaa09e8.woff') format("woff");
  font-weight: bold;
  font-style: italic;
  font-variant: normal; }

@font-face {
  font-family: "Static";
  src: url('vhs-assets-css-7c2c038f359d60838117cde5792083eb.eot');
  src: local("\263A"), url('vhs-assets-css-fab38f26174f2e260b71c0f25a69066e.eot?#iefix') format("embedded-opentype"), url('vhs-assets-css-b67226d8b1ed809bf9e08b342a697a0f.ttf') format("truetype"), url('vhs-assets-css-9e3346f9f3e73d70654d230993cb7744.woff') format("woff");
  font-weight: normal;
  font-style: italic;
  font-variant: normal; }

@font-face {
  font-family: "Static";
  src: url('vhs-assets-css-3cc854156ad96c9d351157dd2b335607.eot');
  src: local("\263A"), url('vhs-assets-css-c7cd9eb6cabd2c4a854ca89ccffcab62.eot?#iefix') format("embedded-opentype"), url('vhs-assets-css-8670d21a87ab01ae6a826241b53cbaaf.ttf') format("truetype"), url('vhs-assets-css-e13ee2ae8df46c1ba6384b19d64da94a.woff') format("woff");
  font-weight: bold;
  font-style: italic;
  font-variant: normal; }

body {
  padding: 0;
  margin: 0;
  letter-spacing: .05em;
  line-height: 1.5; }

h1 {
  font-size: 2.8125em; }

h2 {
  font-size: 2.1875em; }

h3 {
  font-size: 1.5625em; }

h4 {
  font-size: 1em; }

hr {
  height: 1px;
  margin-bottom: 3.75rem; }

a {
  outline-color: #9AC1CA; }
  a:hover {
    color: #2B2B2B; }

@media all and (-ms-high-contrast: none) {
  img[src$="svg"] {
    height: 100%;
    max-height: 100%; } }

object {
  max-width: 100%;
  height: auto; }

.site__content ul:not([class]) {
  padding-left: 0;
  list-style: none; }
  .site__content ul:not([class]) li {
    /*&:before {
        position: relative;
        display: inline-block;
        content: "";
        top: -.33em;
        width: 1em;
        height: 2px;
        margin-right: .5em;
        background: $text-color;
      }*/ }
    .site__content ul:not([class]) li + li {
      margin-top: 0.625rem; }

table {
  border-collapse: collapse;
  width: 100%; }
  table tr th, table tr td {
    text-align: left;
    font-family: "Static", Helvetica, sans-serif;
    font-style: italic;
    letter-spacing: 0.025em;
    border-bottom: 1px solid #999;
    border-spacing: 0;
    padding: 0.5em 2em 0.5em 0;
    line-height: 2em;
    vertical-align: baseline;
    line-break: normal; }
  table tr th {
    font-weight: bold; }
  table tr:first-child th, table tr:first-child td {
    border-top: 1px solid #999; }
  table thead, table tfoot {
    font-family: "Static", Helvetica, sans-serif;
    font-style: italic;
    font-weight: bold;
    letter-spacing: 0.025em;
    color: #9AC1CA; }
    .theme--turquoise table thead, .theme--turquoise table tfoot {
      color: #95c3a8; }
    [class*="theme--"] .theme--turquoise table thead, [class*="theme--"] .theme--turquoise table tfoot {
      color: #95c3a8; }
    .theme--yellow table thead, .theme--yellow table tfoot {
      color: #f4e692; }
    [class*="theme--"] .theme--yellow table thead, [class*="theme--"] .theme--yellow table tfoot {
      color: #f4e692; }
    .theme--blue table thead, .theme--blue table tfoot {
      color: #9ac1ca; }
    [class*="theme--"] .theme--blue table thead, [class*="theme--"] .theme--blue table tfoot {
      color: #9ac1ca; }
    .theme--coral table thead, .theme--coral table tfoot {
      color: #d78179; }
    [class*="theme--"] .theme--coral table thead, [class*="theme--"] .theme--coral table tfoot {
      color: #d78179; }
    .theme--violet table thead, .theme--violet table tfoot {
      color: #9897c8; }
    [class*="theme--"] .theme--violet table thead, [class*="theme--"] .theme--violet table tfoot {
      color: #9897c8; }
    .theme--orange table thead, .theme--orange table tfoot {
      color: #e3aa71; }
    [class*="theme--"] .theme--orange table thead, [class*="theme--"] .theme--orange table tfoot {
      color: #e3aa71; }
    .theme--pink table thead, .theme--pink table tfoot {
      color: #da90ad; }
    [class*="theme--"] .theme--pink table thead, [class*="theme--"] .theme--pink table tfoot {
      color: #da90ad; }
    .theme--black table thead, .theme--black table tfoot {
      color: #2B2B2B; }
    [class*="theme--"] .theme--black table thead, [class*="theme--"] .theme--black table tfoot {
      color: #2B2B2B; }
    .theme--default table thead, .theme--default table tfoot {
      color: #9AC1CA; }
    [class*="theme--"] .theme--default table thead, [class*="theme--"] .theme--default table tfoot {
      color: #9AC1CA; }
    table thead tr td, table thead tr th, table tfoot tr td, table tfoot tr th {
      border: none; }
    table thead tr:first-child td, table thead tr:first-child th, table tfoot tr:first-child td, table tfoot tr:first-child th {
      border: none; }

dl {
  display: block;
  position: relative;
  width: 100%; }
  dl:before, dl:after {
    display: table;
    content: "";
    clear: both; }
  dl:after {
    display: block;
    clear: both; }
  dl dt, dl dd {
    display: inline-block;
    margin: 0;
    padding: 0.25em 0.5em;
    float: left;
    text-align: left;
    font-family: "Static", Helvetica, sans-serif;
    font-style: italic;
    letter-spacing: 0.025em;
    line-height: 2em;
    vertical-align: baseline;
    line-break: normal; }
  dl dt {
    position: relative;
    padding-right: 2em;
    clear: left; }
    dl dt:before, dl dt:last-of-type:after {
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      width: 960px;
      height: 1px;
      content: '';
      background: #999; }
    dl dt:last-of-type:after {
      top: auto;
      bottom: 0; }

figure {
  display: block;
  position: relative;
  overflow: hidden;
  margin: 0; }
  figure figcaption {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 1.25rem;
    box-sizing: border-box;
    transition: opacity .3s ease;
    background-color: #d7e6ea; }
    .theme--turquoise figure figcaption {
      background-color: #cee2d2; }
    [class*="theme--"] .theme--turquoise figure figcaption {
      background-color: #cee2d2; }
    .theme--yellow figure figcaption {
      background-color: #f9f1c1; }
    [class*="theme--"] .theme--yellow figure figcaption {
      background-color: #f9f1c1; }
    .theme--blue figure figcaption {
      background-color: #c9dde4; }
    [class*="theme--"] .theme--blue figure figcaption {
      background-color: #c9dde4; }
    .theme--coral figure figcaption {
      background-color: #eac4be; }
    [class*="theme--"] .theme--coral figure figcaption {
      background-color: #eac4be; }
    .theme--violet figure figcaption {
      background-color: #d3d3ea; }
    [class*="theme--"] .theme--violet figure figcaption {
      background-color: #d3d3ea; }
    .theme--orange figure figcaption {
      background-color: #f1d4ae; }
    [class*="theme--"] .theme--orange figure figcaption {
      background-color: #f1d4ae; }
    .theme--pink figure figcaption {
      background-color: #e7bccf; }
    [class*="theme--"] .theme--pink figure figcaption {
      background-color: #e7bccf; }
    .theme--black figure figcaption {
      background-color: transparent; }
    [class*="theme--"] .theme--black figure figcaption {
      background-color: transparent; }
    .theme--default figure figcaption {
      background-color: #d7e6ea; }
    [class*="theme--"] .theme--default figure figcaption {
      background-color: #d7e6ea; }
  figure img {
    display: block; }
  figure a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-indent: -99em;
    color: transparent; }
  figure:not(:hover) figcaption {
    opacity: 0; }

.theme-header h1, .theme-header h2, .theme-header h3, .theme-header h4 {
  color: #9AC1CA; }
  .theme--turquoise .theme-header h1, .theme--turquoise .theme-header h2, .theme--turquoise .theme-header h3, .theme--turquoise .theme-header h4 {
    color: #95c3a8; }
  [class*="theme--"] .theme--turquoise .theme-header h1, [class*="theme--"] .theme--turquoise .theme-header h2, [class*="theme--"] .theme--turquoise .theme-header h3, [class*="theme--"] .theme--turquoise .theme-header h4 {
    color: #95c3a8; }
  .theme--yellow .theme-header h1, .theme--yellow .theme-header h2, .theme--yellow .theme-header h3, .theme--yellow .theme-header h4 {
    color: #f4e692; }
  [class*="theme--"] .theme--yellow .theme-header h1, [class*="theme--"] .theme--yellow .theme-header h2, [class*="theme--"] .theme--yellow .theme-header h3, [class*="theme--"] .theme--yellow .theme-header h4 {
    color: #f4e692; }
  .theme--blue .theme-header h1, .theme--blue .theme-header h2, .theme--blue .theme-header h3, .theme--blue .theme-header h4 {
    color: #9ac1ca; }
  [class*="theme--"] .theme--blue .theme-header h1, [class*="theme--"] .theme--blue .theme-header h2, [class*="theme--"] .theme--blue .theme-header h3, [class*="theme--"] .theme--blue .theme-header h4 {
    color: #9ac1ca; }
  .theme--coral .theme-header h1, .theme--coral .theme-header h2, .theme--coral .theme-header h3, .theme--coral .theme-header h4 {
    color: #d78179; }
  [class*="theme--"] .theme--coral .theme-header h1, [class*="theme--"] .theme--coral .theme-header h2, [class*="theme--"] .theme--coral .theme-header h3, [class*="theme--"] .theme--coral .theme-header h4 {
    color: #d78179; }
  .theme--violet .theme-header h1, .theme--violet .theme-header h2, .theme--violet .theme-header h3, .theme--violet .theme-header h4 {
    color: #9897c8; }
  [class*="theme--"] .theme--violet .theme-header h1, [class*="theme--"] .theme--violet .theme-header h2, [class*="theme--"] .theme--violet .theme-header h3, [class*="theme--"] .theme--violet .theme-header h4 {
    color: #9897c8; }
  .theme--orange .theme-header h1, .theme--orange .theme-header h2, .theme--orange .theme-header h3, .theme--orange .theme-header h4 {
    color: #e3aa71; }
  [class*="theme--"] .theme--orange .theme-header h1, [class*="theme--"] .theme--orange .theme-header h2, [class*="theme--"] .theme--orange .theme-header h3, [class*="theme--"] .theme--orange .theme-header h4 {
    color: #e3aa71; }
  .theme--pink .theme-header h1, .theme--pink .theme-header h2, .theme--pink .theme-header h3, .theme--pink .theme-header h4 {
    color: #da90ad; }
  [class*="theme--"] .theme--pink .theme-header h1, [class*="theme--"] .theme--pink .theme-header h2, [class*="theme--"] .theme--pink .theme-header h3, [class*="theme--"] .theme--pink .theme-header h4 {
    color: #da90ad; }
  .theme--black .theme-header h1, .theme--black .theme-header h2, .theme--black .theme-header h3, .theme--black .theme-header h4 {
    color: #2B2B2B; }
  [class*="theme--"] .theme--black .theme-header h1, [class*="theme--"] .theme--black .theme-header h2, [class*="theme--"] .theme--black .theme-header h3, [class*="theme--"] .theme--black .theme-header h4 {
    color: #2B2B2B; }
  .theme--default .theme-header h1, .theme--default .theme-header h2, .theme--default .theme-header h3, .theme--default .theme-header h4 {
    color: #9AC1CA; }
  [class*="theme--"] .theme--default .theme-header h1, [class*="theme--"] .theme--default .theme-header h2, [class*="theme--"] .theme--default .theme-header h3, [class*="theme--"] .theme--default .theme-header h4 {
    color: #9AC1CA; }

.gap-children > * + * {
  margin-top: 4rem; }

.content-element p a {
  font-weight: normal; }

/* custom styling for jquery.nicescroll scrollbars */
.nicescroll-rails-vr {
  right: 0; }

.nicescroll-cursors {
  width: .5em;
  border: none;
  border-radius: 0;
  background-color: #999; }

.articles__item {
  position: relative;
  height: 100%;
  padding: 1.25rem 0; }
  .articles__item:before {
    position: absolute;
    right: 0;
    top: 0;
    content: "";
    width: 75%;
    height: 100%;
    background-color: #d7e6ea;
    opacity: 0;
    transition: opacity .25s ease;
    z-index: -1; }
    .theme--turquoise .articles__item:before {
      background-color: #cee2d2; }
    [class*="theme--"] .theme--turquoise .articles__item:before {
      background-color: #cee2d2; }
    .theme--yellow .articles__item:before {
      background-color: #f9f1c1; }
    [class*="theme--"] .theme--yellow .articles__item:before {
      background-color: #f9f1c1; }
    .theme--blue .articles__item:before {
      background-color: #c9dde4; }
    [class*="theme--"] .theme--blue .articles__item:before {
      background-color: #c9dde4; }
    .theme--coral .articles__item:before {
      background-color: #eac4be; }
    [class*="theme--"] .theme--coral .articles__item:before {
      background-color: #eac4be; }
    .theme--violet .articles__item:before {
      background-color: #d3d3ea; }
    [class*="theme--"] .theme--violet .articles__item:before {
      background-color: #d3d3ea; }
    .theme--orange .articles__item:before {
      background-color: #f1d4ae; }
    [class*="theme--"] .theme--orange .articles__item:before {
      background-color: #f1d4ae; }
    .theme--pink .articles__item:before {
      background-color: #e7bccf; }
    [class*="theme--"] .theme--pink .articles__item:before {
      background-color: #e7bccf; }
    .theme--black .articles__item:before {
      background-color: transparent; }
    [class*="theme--"] .theme--black .articles__item:before {
      background-color: transparent; }
    .theme--default .articles__item:before {
      background-color: #d7e6ea; }
    [class*="theme--"] .theme--default .articles__item:before {
      background-color: #d7e6ea; }
  .articles__item:hover:before {
    opacity: 1; }

.articles__title {
  line-height: 1.75; }

.articles__date {
  display: block;
  font-family: "Static", Helvetica, sans-serif;
  font-style: italic;
  font-size: 1.5em;
  letter-spacing: 0.025em; }

.articles__link {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  text-indent: -99em;
  overflow: hidden;
  color: transparent; }

.button {
  display: inline-block;
  position: relative;
  text-transform: uppercase;
  font-weight: normal;
  color: #2B2B2B !important;
  text-decoration: none;
  border: 1px #2B2B2B solid;
  padding: 0.625rem 1.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  z-index: 1;
  /* Nur Internet Explorer */ }
  .button:hover {
    text-decoration: none; }
  .button:not(.button--simple) {
    transition: border .2s ease;
    transition-delay: .2s; }
    .button:not(.button--simple):before {
      position: absolute;
      top: 50%;
      width: 1.2rem;
      height: 1em;
      margin-left: -1.98rem;
      margin-top: 0.5em;
      content: '';
      border-top: 1px #2B2B2B solid;
      opacity: 0;
      -ms-transform: translateY(-50%) scaleX(0);
          transform: translateY(-50%) scaleX(0);
      -ms-transform-origin: 0 50%;
          transform-origin: 0 50%;
      transition: opacity .15s ease, transform .15s ease; }
    .button:not(.button--simple):after {
      position: absolute;
      top: 50%;
      right: -0.6rem;
      width: 1.2rem;
      height: 1em;
      margin-left: 0.6rem;
      content: '';
      background: url('vhs-assets-css-36c2a0959843814bac602b781e23ca67.svg') right center no-repeat;
      background-size: cover;
      opacity: 0;
      -ms-transform: translateX(-0.6rem) translateY(-50%);
          transform: translateX(-0.6rem) translateY(-50%);
      transition: opacity .15s ease, transform .15s ease; }
    .button:not(.button--simple):hover {
      transition-delay: 0s;
      border-color: transparent; }
      .button:not(.button--simple):hover:before, .button:not(.button--simple):hover:after {
        opacity: 1;
        -ms-transform: translateY(-50%) scaleX(1);
            transform: translateY(-50%) scaleX(1); }
  .button--simple {
    border: none;
    padding-left: 2.4rem; }
    .button--simple:before {
      display: block;
      position: absolute;
      left: 0;
      top: 50%;
      -ms-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
      width: 1.2rem;
      height: 0.8em;
      content: '';
      background: url('vhs-assets-css-36c2a0959843814bac602b781e23ca67.svg') right center no-repeat;
      background-size: cover;
      transition: transform 0.15s; }
    .button--simple:hover:before {
      -ms-transform: translate(50%, -50%);
          transform: translate(50%, -50%); }
    .button--simple:active:before {
      -ms-transform: translate(0%, -50%);
          transform: translate(0%, -50%); }
  .button--arrow {
    max-width: 15rem;
    border: 0; }
    .button--arrow:before, .button--arrow:after {
      display: none; }
  @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .button--arrow {
      max-width: 15rem;
      border: 1px #2B2B2B solid; }
      .button--arrow:before, .button--arrow:after {
        display: inline-block; } }

.collapsible__head {
  position: relative;
  padding-bottom: 0.625rem;
  cursor: pointer;
  border-bottom: 2px #2B2B2B solid; }
  .collapsible__head h2, .collapsible__head h3, .collapsible__head h4 {
    color: #333; }

.collapsible__indicator {
  display: block;
  position: absolute;
  right: 0.75em;
  top: 1em;
  -ms-transform: scaleY(-1);
      transform: scaleY(-1); }
  .collapsible__indicator:after {
    position: absolute;
    content: "";
    width: 0.75em;
    height: 0.75em;
    border: 1px currentColor solid;
    border-right: none;
    border-bottom: none;
    -ms-transform: translate(-0.375em, -0.6em) rotate(225deg);
        transform: translate(-0.375em, -0.6em) rotate(225deg);
    border-width: 2px; }

.collapsible__body {
  animation: fade-in .3s ease-out; }

.collapsible:not([data-active="true"]) .collapsible__indicator {
  -ms-transform: scaleY(1);
      transform: scaleY(1); }

.collapsible:not([data-active="true"]) .collapsible__body {
  display: none; }

@keyframes fade-in {
  from {
    transform: translateY(-1.25rem);
    opacity: 0; } }

.downloads__list {
  list-style: none;
  margin: 0;
  padding: 0;
  list-style-image: none;
  margin-top: 2.5rem; }

.downloads__item {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: end;
      align-items: flex-end;
  padding: 0.625rem 0;
  color: #2B2B2B;
  border-top: 1px solid #2B2B2B; }
  .downloads__item:last-of-type {
    border-bottom: 1px solid #2B2B2B; }
  .downloads__item:last-of-type:after {
    top: auto;
    bottom: 0; }

.downloads__title {
  display: block;
  width: 100%;
  font-weight: bold; }

.downloads__filename, .downloads__information {
  position: relative;
  font-size: 0.8em;
  color: #616161;
  /* Nur Internet Explorer */ }
  @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .downloads__filename, .downloads__information {
      width: 50%; } }

.downloads__information {
  /* Nur Internet Explorer */ }
  @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .downloads__information {
      text-align: right; } }
  .downloads__information:after {
    display: inline-block;
    position: relative;
    margin-left: 0.625rem;
    content: '';
    width: 2.2em;
    height: 2.2em;
    background: url('vhs-assets-css-1763aff2ba9c3d3f1e54f9e1b37ee5ba.svg');
    vertical-align: bottom; }

.downloads__link {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  text-indent: -99em;
  overflow: hidden;
  color: transparent; }

@media (max-width: 639px) {
  .downloads__filename, .downloads__information {
    width: 100%;
    padding-right: 3.5em; }
  .downloads__information {
    margin-top: 0.625rem; }
    .downloads__information:after {
      position: absolute;
      bottom: 0;
      right: 0;
      height: 3em;
      width: 3em; } }

.downloads-list__search {
  position: relative;
  height: 100%;
  min-height: 2rem;
  overflow: hidden; }
  .downloads-list__search__input {
    width: 100%;
    height: 100%;
    box-sizing: border-box; }

.downloads-list__more {
  margin-top: 2.5rem; }

.downloads-list__content {
  transition: opacity 1s ease; }

.downloads-list[data-loading="true"] {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }
  .downloads-list[data-loading="true"] .downloads-list__content {
    opacity: .2; }

.featherlight-content {
  padding: 0 !important;
  border-bottom: none !important;
  max-width: 50em;
  max-height: 85vh !important; }

.featherlight-close {
  right: 0.625rem !important;
  top: 0.625rem !important; }

.filter {
  background: #FFF;
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw; }
  .filter__toggle {
    font-size: .85em;
    color: #999; }
  .filter__toggle {
    padding-bottom: 1.25rem;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    border-bottom: 1px #999 solid;
    color: #2B2B2B; }
    .filter__toggle__indicator {
      position: absolute;
      margin: .4em 0 0 1em; }
      .filter__toggle__indicator:after {
        position: absolute;
        content: "";
        width: 0.5em;
        height: 0.5em;
        border: 1px currentColor solid;
        border-right: none;
        border-bottom: none;
        -ms-transform: translate(-0.25em, -0.4em) rotate(225deg);
            transform: translate(-0.25em, -0.4em) rotate(225deg); }
  .filter__select {
    /*blue color only for filter on all products page */ }
    .filter__select__info {
      margin-top: 0.3125rem;
      font-size: .85em;
      text-align: right; }
      .filter__select__info * {
        text-decoration: underline;
        color: #999; }
    .filter__select .select[data-selected="true"] .select__head {
      color: #FFF;
      background-color: #9AC1CA; }
      .theme--turquoise .filter__select .select[data-selected="true"] .select__head {
        background-color: #95c3a8; }
      [class*="theme--"] .theme--turquoise .filter__select .select[data-selected="true"] .select__head {
        background-color: #95c3a8; }
      .theme--yellow .filter__select .select[data-selected="true"] .select__head {
        background-color: #f4e692; }
      [class*="theme--"] .theme--yellow .filter__select .select[data-selected="true"] .select__head {
        background-color: #f4e692; }
      .theme--blue .filter__select .select[data-selected="true"] .select__head {
        background-color: #9ac1ca; }
      [class*="theme--"] .theme--blue .filter__select .select[data-selected="true"] .select__head {
        background-color: #9ac1ca; }
      .theme--coral .filter__select .select[data-selected="true"] .select__head {
        background-color: #d78179; }
      [class*="theme--"] .theme--coral .filter__select .select[data-selected="true"] .select__head {
        background-color: #d78179; }
      .theme--violet .filter__select .select[data-selected="true"] .select__head {
        background-color: #9897c8; }
      [class*="theme--"] .theme--violet .filter__select .select[data-selected="true"] .select__head {
        background-color: #9897c8; }
      .theme--orange .filter__select .select[data-selected="true"] .select__head {
        background-color: #e3aa71; }
      [class*="theme--"] .theme--orange .filter__select .select[data-selected="true"] .select__head {
        background-color: #e3aa71; }
      .theme--pink .filter__select .select[data-selected="true"] .select__head {
        background-color: #da90ad; }
      [class*="theme--"] .theme--pink .filter__select .select[data-selected="true"] .select__head {
        background-color: #da90ad; }
      .theme--black .filter__select .select[data-selected="true"] .select__head {
        background-color: #2B2B2B; }
      [class*="theme--"] .theme--black .filter__select .select[data-selected="true"] .select__head {
        background-color: #2B2B2B; }
      .theme--default .filter__select .select[data-selected="true"] .select__head {
        background-color: #9AC1CA; }
      [class*="theme--"] .theme--default .filter__select .select[data-selected="true"] .select__head {
        background-color: #9AC1CA; }
    .filter__select .select__head {
      background-color: #d7e6ea;
      border: none;
      font-size: 0.85em; }
      .theme--turquoise .filter__select .select__head {
        background-color: #cee2d2; }
      [class*="theme--"] .theme--turquoise .filter__select .select__head {
        background-color: #cee2d2; }
      .theme--yellow .filter__select .select__head {
        background-color: #f9f1c1; }
      [class*="theme--"] .theme--yellow .filter__select .select__head {
        background-color: #f9f1c1; }
      .theme--blue .filter__select .select__head {
        background-color: #c9dde4; }
      [class*="theme--"] .theme--blue .filter__select .select__head {
        background-color: #c9dde4; }
      .theme--coral .filter__select .select__head {
        background-color: #eac4be; }
      [class*="theme--"] .theme--coral .filter__select .select__head {
        background-color: #eac4be; }
      .theme--violet .filter__select .select__head {
        background-color: #d3d3ea; }
      [class*="theme--"] .theme--violet .filter__select .select__head {
        background-color: #d3d3ea; }
      .theme--orange .filter__select .select__head {
        background-color: #f1d4ae; }
      [class*="theme--"] .theme--orange .filter__select .select__head {
        background-color: #f1d4ae; }
      .theme--pink .filter__select .select__head {
        background-color: #e7bccf; }
      [class*="theme--"] .theme--pink .filter__select .select__head {
        background-color: #e7bccf; }
      .theme--black .filter__select .select__head {
        background-color: transparent; }
      [class*="theme--"] .theme--black .filter__select .select__head {
        background-color: transparent; }
      .theme--default .filter__select .select__head {
        background-color: #d7e6ea; }
      [class*="theme--"] .theme--default .filter__select .select__head {
        background-color: #d7e6ea; }
    .filter__select .select__body {
      background-color: #d7e6ea; }
      .theme--turquoise .filter__select .select__body {
        background-color: #cee2d2; }
      [class*="theme--"] .theme--turquoise .filter__select .select__body {
        background-color: #cee2d2; }
      .theme--yellow .filter__select .select__body {
        background-color: #f9f1c1; }
      [class*="theme--"] .theme--yellow .filter__select .select__body {
        background-color: #f9f1c1; }
      .theme--blue .filter__select .select__body {
        background-color: #c9dde4; }
      [class*="theme--"] .theme--blue .filter__select .select__body {
        background-color: #c9dde4; }
      .theme--coral .filter__select .select__body {
        background-color: #eac4be; }
      [class*="theme--"] .theme--coral .filter__select .select__body {
        background-color: #eac4be; }
      .theme--violet .filter__select .select__body {
        background-color: #d3d3ea; }
      [class*="theme--"] .theme--violet .filter__select .select__body {
        background-color: #d3d3ea; }
      .theme--orange .filter__select .select__body {
        background-color: #f1d4ae; }
      [class*="theme--"] .theme--orange .filter__select .select__body {
        background-color: #f1d4ae; }
      .theme--pink .filter__select .select__body {
        background-color: #e7bccf; }
      [class*="theme--"] .theme--pink .filter__select .select__body {
        background-color: #e7bccf; }
      .theme--black .filter__select .select__body {
        background-color: transparent; }
      [class*="theme--"] .theme--black .filter__select .select__body {
        background-color: transparent; }
      .theme--default .filter__select .select__body {
        background-color: #d7e6ea; }
      [class*="theme--"] .theme--default .filter__select .select__body {
        background-color: #d7e6ea; }
    .filter__select .select__footer {
      background-color: #d7e6ea; }
      .theme--turquoise .filter__select .select__footer {
        background-color: #cee2d2; }
      [class*="theme--"] .theme--turquoise .filter__select .select__footer {
        background-color: #cee2d2; }
      .theme--yellow .filter__select .select__footer {
        background-color: #f9f1c1; }
      [class*="theme--"] .theme--yellow .filter__select .select__footer {
        background-color: #f9f1c1; }
      .theme--blue .filter__select .select__footer {
        background-color: #c9dde4; }
      [class*="theme--"] .theme--blue .filter__select .select__footer {
        background-color: #c9dde4; }
      .theme--coral .filter__select .select__footer {
        background-color: #eac4be; }
      [class*="theme--"] .theme--coral .filter__select .select__footer {
        background-color: #eac4be; }
      .theme--violet .filter__select .select__footer {
        background-color: #d3d3ea; }
      [class*="theme--"] .theme--violet .filter__select .select__footer {
        background-color: #d3d3ea; }
      .theme--orange .filter__select .select__footer {
        background-color: #f1d4ae; }
      [class*="theme--"] .theme--orange .filter__select .select__footer {
        background-color: #f1d4ae; }
      .theme--pink .filter__select .select__footer {
        background-color: #e7bccf; }
      [class*="theme--"] .theme--pink .filter__select .select__footer {
        background-color: #e7bccf; }
      .theme--black .filter__select .select__footer {
        background-color: transparent; }
      [class*="theme--"] .theme--black .filter__select .select__footer {
        background-color: transparent; }
      .theme--default .filter__select .select__footer {
        background-color: #d7e6ea; }
      [class*="theme--"] .theme--default .filter__select .select__footer {
        background-color: #d7e6ea; }
    .filter__select .select__item__box {
      border: 1px #FFF solid;
      background: #FFF; }
    .filter__select .select__mask {
      width: calc(100% + 4px);
      left: -1px; }
    .filter__select .select__dropdown {
      border: 1px #FFF solid;
      width: calc(100% - 4px); }
    .filter__select .select__close {
      background: #FFF; }
  .filter__summary {
    margin-top: 1.25rem;
    margin-bottom: -0.625rem; }
    .filter__summary:before, .filter__summary:after {
      display: table;
      content: "";
      clear: both; }
    .filter__summary__list {
      list-style: none;
      margin: 0;
      padding: 0;
      list-style-image: none; }
    .filter__summary__reset, .filter__summary__item {
      position: relative;
      float: left;
      padding: 0.625rem;
      padding-right: 1.875rem;
      margin-right: 0.625rem;
      margin-bottom: 0.625rem;
      font-size: .6em;
      letter-spacing: .125em;
      font-weight: normal;
      line-height: 1;
      text-transform: uppercase;
      border: 1px #999 solid;
      cursor: pointer; }
      .filter__summary__reset:after, .filter__summary__item:after {
        position: absolute;
        content: "\D7";
        font-size: 1.5em;
        font-weight: normal;
        right: 0.625rem;
        top: 0.625rem;
        line-height: .35; }
    .filter__summary__reset {
      border-color: transparent;
      color: #FFF;
      background-color: #9AC1CA; }
      .theme--turquoise .filter__summary__reset {
        background-color: #95c3a8; }
      [class*="theme--"] .theme--turquoise .filter__summary__reset {
        background-color: #95c3a8; }
      .theme--yellow .filter__summary__reset {
        background-color: #f4e692; }
      [class*="theme--"] .theme--yellow .filter__summary__reset {
        background-color: #f4e692; }
      .theme--blue .filter__summary__reset {
        background-color: #9ac1ca; }
      [class*="theme--"] .theme--blue .filter__summary__reset {
        background-color: #9ac1ca; }
      .theme--coral .filter__summary__reset {
        background-color: #d78179; }
      [class*="theme--"] .theme--coral .filter__summary__reset {
        background-color: #d78179; }
      .theme--violet .filter__summary__reset {
        background-color: #9897c8; }
      [class*="theme--"] .theme--violet .filter__summary__reset {
        background-color: #9897c8; }
      .theme--orange .filter__summary__reset {
        background-color: #e3aa71; }
      [class*="theme--"] .theme--orange .filter__summary__reset {
        background-color: #e3aa71; }
      .theme--pink .filter__summary__reset {
        background-color: #da90ad; }
      [class*="theme--"] .theme--pink .filter__summary__reset {
        background-color: #da90ad; }
      .theme--black .filter__summary__reset {
        background-color: #2B2B2B; }
      [class*="theme--"] .theme--black .filter__summary__reset {
        background-color: #2B2B2B; }
      .theme--default .filter__summary__reset {
        background-color: #9AC1CA; }
      [class*="theme--"] .theme--default .filter__summary__reset {
        background-color: #9AC1CA; }
  .filter[data-active="true"] .filter__toggle__indicator {
    -ms-transform: scaleY(-1);
        transform: scaleY(-1); }
  @media (min-width: 961px) {
    .filter__mask {
      width: calc(100% + 4px);
      left: -1px; }
    .filter__dropdown {
      width: calc(100% - 4px); }
    .filter__select {
      margin-bottom: 2rem; }
    .filter__more {
      max-height: 0;
      opacity: 0;
      overflow: hidden;
      transition: max-height .3s ease-out, opacity .3s; }
    .filter[data-active="true"] .filter__more {
      transition-timing-function: ease-in;
      overflow: visible;
      opacity: 1;
      max-height: 30em; } }
  @media (max-width: 960px) {
    .filter__more {
      display: none;
      margin-top: 1.25rem; }
    .filter__footer {
      margin-top: 2rem; }
    .filter[data-active="true"] .filter__more {
      display: block; } }
  @media (max-width: 639px) {
    .filter__more {
      overflow-y: auto; }
    .filter[data-active="true"] .filter__more {
      max-height: none;
      transition: none; } }

.footer {
  padding: 2.5rem 0; }
  .footer__content {
    padding-top: 1.25rem; }
  .footer__nav > * {
    display: inline-block;
    text-decoration: none;
    color: #2B2B2B;
    margin-right: 1.25rem; }
  .footer__social-media {
    margin-top: 2.5rem; }
  .footer__claim {
    font-size: 1.25em;
    text-align: right;
    color: #9AC1CA; }
  .footer__nav-layout {
    padding-top: 0.625rem; }
  @media (min-width: 1024px) {
    .footer {
      padding: 7.5rem 0; } }
  @media (max-width: 960px) {
    .footer__nav, .footer__claim {
      text-align: center; }
    .footer__nav > * {
      margin: 0 0.625rem; } }

.form input,
.form textarea,
.form button,
.form select:not([multiple]),
.form select:not([multiple]) > option,
.form label {
  -moz-appearance: none;
  -webkit-appearance: none;
  border: 0;
  border-radius: 0;
  box-sizing: border-box;
  display: inline-block;
  font-family: "Futura", Helvetica, sans-serif;
  font-weight: lighter;
  margin: 0;
  outline: none;
  position: relative;
  width: 100%; }
  .form input[type="search"],
  .form textarea[type="search"],
  .form button[type="search"],
  .form select:not([multiple])[type="search"],
  .form select:not([multiple]) > option[type="search"],
  .form label[type="search"] {
    -webkit-appearance: none;
    border-radius: 0; }
  .form input:focus,
  .form textarea:focus,
  .form button:focus,
  .form select:not([multiple]):focus,
  .form select:not([multiple]) > option:focus,
  .form label:focus {
    outline: none; }
  .form input::-webkit-input-placeholder,
  .form textarea::-webkit-input-placeholder,
  .form button::-webkit-input-placeholder,
  .form select:not([multiple])::-webkit-input-placeholder,
  .form select:not([multiple]) > option::-webkit-input-placeholder,
  .form label::-webkit-input-placeholder {
    color: #999;
    opacity: 1; }
  .form input:-ms-input-placeholder,
  .form textarea:-ms-input-placeholder,
  .form button:-ms-input-placeholder,
  .form select:not([multiple]):-ms-input-placeholder,
  .form select:not([multiple]) > option:-ms-input-placeholder,
  .form label:-ms-input-placeholder {
    color: #999;
    opacity: 1; }
  .form input::placeholder,
  .form textarea::placeholder,
  .form button::placeholder,
  .form select:not([multiple])::placeholder,
  .form select:not([multiple]) > option::placeholder,
  .form label::placeholder {
    color: #999;
    opacity: 1; }
  .form input.error,
  .form textarea.error,
  .form button.error,
  .form select:not([multiple]).error,
  .form select:not([multiple]) > option.error,
  .form label.error {
    box-shadow: 0 3px 0 red; }

.form label,
.form legend {
  color: #999;
  font-size: .75em;
  letter-spacing: .2em;
  text-transform: uppercase; }

.form fieldset {
  border: 0;
  margin: 1.25rem 0 0;
  min-width: 0;
  padding: 0;
  width: auto; }
  .form fieldset legend {
    display: block;
    margin: 0 0 0.625rem;
    padding: 0;
    transition: .15s; }
  .form fieldset[data-active="true"] legend {
    color: #2B2B2B; }

.form input[data-active="true"] {
  box-shadow: 0 1px 0 #999; }
  .form input[data-active="true"] {
    box-shadow: 0 3px 0 #9AC1CA; }

.form button, .form textarea {
  box-shadow: inset 0 0 0 1px #999; }
  .form button[data-active="true"], .form textarea[data-active="true"] {
    box-shadow: inset 0 0 0 3px #9AC1CA; }

.form select:not([multiple]) {
  background: url('vhs-assets-css-05b368979d2f1710c7004bc61cf78b35.svg') 95% center no-repeat;
  background-size: auto .6em;
  box-shadow: inset 0 0 0 1px #999;
  font-size: .75em;
  letter-spacing: .2em;
  margin-top: calc(4em / 2 + 5px);
  padding: 0.625rem;
  text-align: left;
  text-indent: .2em;
  text-transform: uppercase; }
  .form select:not([multiple]) + label {
    -ms-transform: translateY(-5.2em);
        transform: translateY(-5.2em);
    transition: .15s;
    vertical-align: top; }
  .form select:not([multiple])[data-active="true"] + label {
    color: #2B2B2B; }

.form select[multiple] {
  margin-bottom: 1.25rem;
  width: 100%;
  outline-color: #9AC1CA; }
  .form select[multiple] > option {
    font-weight: 300; }

.form button {
  background: transparent;
  font-size: .75em;
  letter-spacing: .2em;
  margin-top: 0.8em;
  padding: 0.625rem;
  text-align: left;
  text-indent: .2em;
  text-transform: uppercase;
  transition: .15s;
  width: auto;
  cursor: pointer; }

.form label {
  vertical-align: top; }

.form textarea {
  height: calc(100% - 4.8em);
  margin-top: 2.8em;
  min-height: 12em;
  padding: 0.625rem;
  top: 8px;
  transition: .15s; }
  .form textarea + label {
    top: -100%;
    -ms-transform: translateY(3.2em);
        transform: translateY(3.2em);
    transition: .15s; }
  .form textarea[data-active="true"] + label {
    color: #2B2B2B;
    -ms-transform: translateY(1.6em);
        transform: translateY(1.6em); }

.form input {
  box-shadow: inset 0 -1px 0 #999;
  letter-spacing: .1em;
  padding: 2em 0 0.2em;
  transition: .15s; }
  .form input + label {
    -ms-transform: translateY(-3.2em);
        transform: translateY(-3.2em);
    transition: .15s; }
  .form input[data-active="true"] + label {
    color: #2B2B2B;
    -ms-transform: translateY(-4.8em);
        transform: translateY(-4.8em); }
  .form input[type="date"] + label, .form input[type="file"] + label {
    -ms-transform: translateY(-4.4em);
        transform: translateY(-4.4em); }
  .form input[type="radio"], .form input[type="checkbox"] {
    display: none; }
    .form input[type="radio"] + label, .form input[type="checkbox"] + label {
      color: #2B2B2B;
      cursor: pointer;
      font-size: 1em;
      margin-right: 1.25rem;
      padding-right: 2.1em;
      text-transform: none;
      -ms-transform: none;
          transform: none;
      vertical-align: middle;
      width: auto; }
      .form input[type="radio"] + label:before, .form input[type="radio"] + label:after, .form input[type="checkbox"] + label:before, .form input[type="checkbox"] + label:after {
        background: #d7e6ea;
        border-radius: 50%;
        content: '';
        display: inline-block;
        height: 1.4em;
        position: absolute;
        right: 0;
        top: 50%;
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
        transition: .15s;
        vertical-align: middle;
        width: 1.4em; }
        .theme--turquoise .form input[type="radio"] + label:before, .theme--turquoise .form input[type="radio"] + label:after, .theme--turquoise .form input[type="checkbox"] + label:before, .theme--turquoise .form input[type="checkbox"] + label:after {
          background: #cee2d2; }
        [class*="theme--"] .theme--turquoise .form input[type="radio"] + label:before, [class*="theme--"] .theme--turquoise .form input[type="radio"] + label:after, [class*="theme--"] .theme--turquoise .form input[type="checkbox"] + label:before, [class*="theme--"] .theme--turquoise .form input[type="checkbox"] + label:after {
          background: #cee2d2; }
        .theme--yellow .form input[type="radio"] + label:before, .theme--yellow .form input[type="radio"] + label:after, .theme--yellow .form input[type="checkbox"] + label:before, .theme--yellow .form input[type="checkbox"] + label:after {
          background: #f9f1c1; }
        [class*="theme--"] .theme--yellow .form input[type="radio"] + label:before, [class*="theme--"] .theme--yellow .form input[type="radio"] + label:after, [class*="theme--"] .theme--yellow .form input[type="checkbox"] + label:before, [class*="theme--"] .theme--yellow .form input[type="checkbox"] + label:after {
          background: #f9f1c1; }
        .theme--blue .form input[type="radio"] + label:before, .theme--blue .form input[type="radio"] + label:after, .theme--blue .form input[type="checkbox"] + label:before, .theme--blue .form input[type="checkbox"] + label:after {
          background: #c9dde4; }
        [class*="theme--"] .theme--blue .form input[type="radio"] + label:before, [class*="theme--"] .theme--blue .form input[type="radio"] + label:after, [class*="theme--"] .theme--blue .form input[type="checkbox"] + label:before, [class*="theme--"] .theme--blue .form input[type="checkbox"] + label:after {
          background: #c9dde4; }
        .theme--coral .form input[type="radio"] + label:before, .theme--coral .form input[type="radio"] + label:after, .theme--coral .form input[type="checkbox"] + label:before, .theme--coral .form input[type="checkbox"] + label:after {
          background: #eac4be; }
        [class*="theme--"] .theme--coral .form input[type="radio"] + label:before, [class*="theme--"] .theme--coral .form input[type="radio"] + label:after, [class*="theme--"] .theme--coral .form input[type="checkbox"] + label:before, [class*="theme--"] .theme--coral .form input[type="checkbox"] + label:after {
          background: #eac4be; }
        .theme--violet .form input[type="radio"] + label:before, .theme--violet .form input[type="radio"] + label:after, .theme--violet .form input[type="checkbox"] + label:before, .theme--violet .form input[type="checkbox"] + label:after {
          background: #d3d3ea; }
        [class*="theme--"] .theme--violet .form input[type="radio"] + label:before, [class*="theme--"] .theme--violet .form input[type="radio"] + label:after, [class*="theme--"] .theme--violet .form input[type="checkbox"] + label:before, [class*="theme--"] .theme--violet .form input[type="checkbox"] + label:after {
          background: #d3d3ea; }
        .theme--orange .form input[type="radio"] + label:before, .theme--orange .form input[type="radio"] + label:after, .theme--orange .form input[type="checkbox"] + label:before, .theme--orange .form input[type="checkbox"] + label:after {
          background: #f1d4ae; }
        [class*="theme--"] .theme--orange .form input[type="radio"] + label:before, [class*="theme--"] .theme--orange .form input[type="radio"] + label:after, [class*="theme--"] .theme--orange .form input[type="checkbox"] + label:before, [class*="theme--"] .theme--orange .form input[type="checkbox"] + label:after {
          background: #f1d4ae; }
        .theme--pink .form input[type="radio"] + label:before, .theme--pink .form input[type="radio"] + label:after, .theme--pink .form input[type="checkbox"] + label:before, .theme--pink .form input[type="checkbox"] + label:after {
          background: #e7bccf; }
        [class*="theme--"] .theme--pink .form input[type="radio"] + label:before, [class*="theme--"] .theme--pink .form input[type="radio"] + label:after, [class*="theme--"] .theme--pink .form input[type="checkbox"] + label:before, [class*="theme--"] .theme--pink .form input[type="checkbox"] + label:after {
          background: #e7bccf; }
        .theme--black .form input[type="radio"] + label:before, .theme--black .form input[type="radio"] + label:after, .theme--black .form input[type="checkbox"] + label:before, .theme--black .form input[type="checkbox"] + label:after {
          background: transparent; }
        [class*="theme--"] .theme--black .form input[type="radio"] + label:before, [class*="theme--"] .theme--black .form input[type="radio"] + label:after, [class*="theme--"] .theme--black .form input[type="checkbox"] + label:before, [class*="theme--"] .theme--black .form input[type="checkbox"] + label:after {
          background: transparent; }
        .theme--default .form input[type="radio"] + label:before, .theme--default .form input[type="radio"] + label:after, .theme--default .form input[type="checkbox"] + label:before, .theme--default .form input[type="checkbox"] + label:after {
          background: #d7e6ea; }
        [class*="theme--"] .theme--default .form input[type="radio"] + label:before, [class*="theme--"] .theme--default .form input[type="radio"] + label:after, [class*="theme--"] .theme--default .form input[type="checkbox"] + label:before, [class*="theme--"] .theme--default .form input[type="checkbox"] + label:after {
          background: #d7e6ea; }
    .form input[type="radio"]:checked + label:after, .form input[type="checkbox"]:checked + label:after {
      background: #9AC1CA;
      top: 50%;
      -ms-transform: translateY(-50%) scale(0.6);
          transform: translateY(-50%) scale(0.6); }
      .theme--turquoise .form input[type="radio"]:checked + label:after, .theme--turquoise .form input[type="checkbox"]:checked + label:after {
        background: #95c3a8; }
      [class*="theme--"] .theme--turquoise .form input[type="radio"]:checked + label:after, [class*="theme--"] .theme--turquoise .form input[type="checkbox"]:checked + label:after {
        background: #95c3a8; }
      .theme--yellow .form input[type="radio"]:checked + label:after, .theme--yellow .form input[type="checkbox"]:checked + label:after {
        background: #f4e692; }
      [class*="theme--"] .theme--yellow .form input[type="radio"]:checked + label:after, [class*="theme--"] .theme--yellow .form input[type="checkbox"]:checked + label:after {
        background: #f4e692; }
      .theme--blue .form input[type="radio"]:checked + label:after, .theme--blue .form input[type="checkbox"]:checked + label:after {
        background: #9ac1ca; }
      [class*="theme--"] .theme--blue .form input[type="radio"]:checked + label:after, [class*="theme--"] .theme--blue .form input[type="checkbox"]:checked + label:after {
        background: #9ac1ca; }
      .theme--coral .form input[type="radio"]:checked + label:after, .theme--coral .form input[type="checkbox"]:checked + label:after {
        background: #d78179; }
      [class*="theme--"] .theme--coral .form input[type="radio"]:checked + label:after, [class*="theme--"] .theme--coral .form input[type="checkbox"]:checked + label:after {
        background: #d78179; }
      .theme--violet .form input[type="radio"]:checked + label:after, .theme--violet .form input[type="checkbox"]:checked + label:after {
        background: #9897c8; }
      [class*="theme--"] .theme--violet .form input[type="radio"]:checked + label:after, [class*="theme--"] .theme--violet .form input[type="checkbox"]:checked + label:after {
        background: #9897c8; }
      .theme--orange .form input[type="radio"]:checked + label:after, .theme--orange .form input[type="checkbox"]:checked + label:after {
        background: #e3aa71; }
      [class*="theme--"] .theme--orange .form input[type="radio"]:checked + label:after, [class*="theme--"] .theme--orange .form input[type="checkbox"]:checked + label:after {
        background: #e3aa71; }
      .theme--pink .form input[type="radio"]:checked + label:after, .theme--pink .form input[type="checkbox"]:checked + label:after {
        background: #da90ad; }
      [class*="theme--"] .theme--pink .form input[type="radio"]:checked + label:after, [class*="theme--"] .theme--pink .form input[type="checkbox"]:checked + label:after {
        background: #da90ad; }
      .theme--black .form input[type="radio"]:checked + label:after, .theme--black .form input[type="checkbox"]:checked + label:after {
        background: #2B2B2B; }
      [class*="theme--"] .theme--black .form input[type="radio"]:checked + label:after, [class*="theme--"] .theme--black .form input[type="checkbox"]:checked + label:after {
        background: #2B2B2B; }
      .theme--default .form input[type="radio"]:checked + label:after, .theme--default .form input[type="checkbox"]:checked + label:after {
        background: #9AC1CA; }
      [class*="theme--"] .theme--default .form input[type="radio"]:checked + label:after, [class*="theme--"] .theme--default .form input[type="checkbox"]:checked + label:after {
        background: #9AC1CA; }
  .form input[type="checkbox"] + label:before, .form input[type="checkbox"] + label:after {
    border-radius: 0; }
  .form input[type="checkbox"] + label:after {
    content: '\D7';
    background: transparent !important;
    -ms-transform: translateX(25%) !important;
        transform: translateX(25%) !important;
    top: 0 !important;
    color: #2B2B2B !important; }
  .form input[type="checkbox"]:not(:checked) + label:after {
    display: none; }
  .form input[type="search"] {
    padding: 0;
    box-shadow: none; }
    .form input[type="search"]::-webkit-search-decoration, .form input[type="search"]::-webkit-search-cancel-button, .form input[type="search"]::-webkit-search-results-button, .form input[type="search"]::-webkit-search-results-decoration {
      display: none; }
    .form input[type="search"]::-webkit-input-placeholder {
      opacity: 0;
      color: #9AC1CA;
      line-height: normal;
      transform: translateX(-10%);
      transition: 0.4s;
      transition-delay: 0.2s; }
    .form input[type="search"]:-ms-input-placeholder {
      opacity: 0;
      color: #9AC1CA;
      line-height: normal;
      -ms-transform: translateX(-10%);
          transform: translateX(-10%);
      transition: 0.4s;
      transition-delay: 0.2s; }
    .form input[type="search"]::placeholder {
      opacity: 0;
      color: #9AC1CA;
      line-height: normal;
      -ms-transform: translateX(-10%);
          transform: translateX(-10%);
      transition: 0.4s;
      transition-delay: 0.2s; }
      .theme--turquoise .form input[type="search"]::-webkit-input-placeholder {
        color: #95c3a8; }
      .theme--turquoise .form input[type="search"]:-ms-input-placeholder {
        color: #95c3a8; }
      .theme--turquoise .form input[type="search"]::placeholder {
        color: #95c3a8; }
      [class*="theme--"] .theme--turquoise .form input[type="search"]::-webkit-input-placeholder {
        color: #95c3a8; }
      [class*="theme--"] .theme--turquoise .form input[type="search"]:-ms-input-placeholder {
        color: #95c3a8; }
      [class*="theme--"] .theme--turquoise .form input[type="search"]::placeholder {
        color: #95c3a8; }
      .theme--yellow .form input[type="search"]::-webkit-input-placeholder {
        color: #f4e692; }
      .theme--yellow .form input[type="search"]:-ms-input-placeholder {
        color: #f4e692; }
      .theme--yellow .form input[type="search"]::placeholder {
        color: #f4e692; }
      [class*="theme--"] .theme--yellow .form input[type="search"]::-webkit-input-placeholder {
        color: #f4e692; }
      [class*="theme--"] .theme--yellow .form input[type="search"]:-ms-input-placeholder {
        color: #f4e692; }
      [class*="theme--"] .theme--yellow .form input[type="search"]::placeholder {
        color: #f4e692; }
      .theme--blue .form input[type="search"]::-webkit-input-placeholder {
        color: #9ac1ca; }
      .theme--blue .form input[type="search"]:-ms-input-placeholder {
        color: #9ac1ca; }
      .theme--blue .form input[type="search"]::placeholder {
        color: #9ac1ca; }
      [class*="theme--"] .theme--blue .form input[type="search"]::-webkit-input-placeholder {
        color: #9ac1ca; }
      [class*="theme--"] .theme--blue .form input[type="search"]:-ms-input-placeholder {
        color: #9ac1ca; }
      [class*="theme--"] .theme--blue .form input[type="search"]::placeholder {
        color: #9ac1ca; }
      .theme--coral .form input[type="search"]::-webkit-input-placeholder {
        color: #d78179; }
      .theme--coral .form input[type="search"]:-ms-input-placeholder {
        color: #d78179; }
      .theme--coral .form input[type="search"]::placeholder {
        color: #d78179; }
      [class*="theme--"] .theme--coral .form input[type="search"]::-webkit-input-placeholder {
        color: #d78179; }
      [class*="theme--"] .theme--coral .form input[type="search"]:-ms-input-placeholder {
        color: #d78179; }
      [class*="theme--"] .theme--coral .form input[type="search"]::placeholder {
        color: #d78179; }
      .theme--violet .form input[type="search"]::-webkit-input-placeholder {
        color: #9897c8; }
      .theme--violet .form input[type="search"]:-ms-input-placeholder {
        color: #9897c8; }
      .theme--violet .form input[type="search"]::placeholder {
        color: #9897c8; }
      [class*="theme--"] .theme--violet .form input[type="search"]::-webkit-input-placeholder {
        color: #9897c8; }
      [class*="theme--"] .theme--violet .form input[type="search"]:-ms-input-placeholder {
        color: #9897c8; }
      [class*="theme--"] .theme--violet .form input[type="search"]::placeholder {
        color: #9897c8; }
      .theme--orange .form input[type="search"]::-webkit-input-placeholder {
        color: #e3aa71; }
      .theme--orange .form input[type="search"]:-ms-input-placeholder {
        color: #e3aa71; }
      .theme--orange .form input[type="search"]::placeholder {
        color: #e3aa71; }
      [class*="theme--"] .theme--orange .form input[type="search"]::-webkit-input-placeholder {
        color: #e3aa71; }
      [class*="theme--"] .theme--orange .form input[type="search"]:-ms-input-placeholder {
        color: #e3aa71; }
      [class*="theme--"] .theme--orange .form input[type="search"]::placeholder {
        color: #e3aa71; }
      .theme--pink .form input[type="search"]::-webkit-input-placeholder {
        color: #da90ad; }
      .theme--pink .form input[type="search"]:-ms-input-placeholder {
        color: #da90ad; }
      .theme--pink .form input[type="search"]::placeholder {
        color: #da90ad; }
      [class*="theme--"] .theme--pink .form input[type="search"]::-webkit-input-placeholder {
        color: #da90ad; }
      [class*="theme--"] .theme--pink .form input[type="search"]:-ms-input-placeholder {
        color: #da90ad; }
      [class*="theme--"] .theme--pink .form input[type="search"]::placeholder {
        color: #da90ad; }
      .theme--black .form input[type="search"]::-webkit-input-placeholder {
        color: #2B2B2B; }
      .theme--black .form input[type="search"]:-ms-input-placeholder {
        color: #2B2B2B; }
      .theme--black .form input[type="search"]::placeholder {
        color: #2B2B2B; }
      [class*="theme--"] .theme--black .form input[type="search"]::-webkit-input-placeholder {
        color: #2B2B2B; }
      [class*="theme--"] .theme--black .form input[type="search"]:-ms-input-placeholder {
        color: #2B2B2B; }
      [class*="theme--"] .theme--black .form input[type="search"]::placeholder {
        color: #2B2B2B; }
      .theme--default .form input[type="search"]::-webkit-input-placeholder {
        color: #9AC1CA; }
      .theme--default .form input[type="search"]:-ms-input-placeholder {
        color: #9AC1CA; }
      .theme--default .form input[type="search"]::placeholder {
        color: #9AC1CA; }
      [class*="theme--"] .theme--default .form input[type="search"]::-webkit-input-placeholder {
        color: #9AC1CA; }
      [class*="theme--"] .theme--default .form input[type="search"]:-ms-input-placeholder {
        color: #9AC1CA; }
      [class*="theme--"] .theme--default .form input[type="search"]::placeholder {
        color: #9AC1CA; }
    .form input[type="search"] + label {
      position: absolute;
      left: 2.5rem;
      bottom: 0.3em;
      color: #2B2B2B;
      -ms-transform: translateY(0);
          transform: translateY(0);
      pointer-events: none;
      transition: 0.4s; }
    .form input[type="search"][data-active="true"]::-webkit-input-placeholder {
      opacity: 1;
      transform: translateX(0); }
    .form input[type="search"][data-active="true"]:-ms-input-placeholder {
      opacity: 1;
      -ms-transform: translateX(0);
          transform: translateX(0); }
    .form input[type="search"][data-active="true"]::placeholder {
      opacity: 1;
      -ms-transform: translateX(0);
          transform: translateX(0); }
    .form input[type="search"][data-active="true"] + label {
      opacity: 0;
      -ms-transform: translateX(100%);
          transform: translateX(100%); }
    .form input[type="search"][data-active="false"] + label {
      transition-delay: 0.2s; }

.form .datepicker-inline {
  padding: 1.25rem 0; }

.form .help-block {
  background: #d7e6ea;
  padding: 0.41667rem;
  font-size: 0.8em;
  margin: 0.625rem 0 1.25rem 0px; }
  .theme--turquoise .form .help-block {
    background: #cee2d2; }
  [class*="theme--"] .theme--turquoise .form .help-block {
    background: #cee2d2; }
  .theme--yellow .form .help-block {
    background: #f9f1c1; }
  [class*="theme--"] .theme--yellow .form .help-block {
    background: #f9f1c1; }
  .theme--blue .form .help-block {
    background: #c9dde4; }
  [class*="theme--"] .theme--blue .form .help-block {
    background: #c9dde4; }
  .theme--coral .form .help-block {
    background: #eac4be; }
  [class*="theme--"] .theme--coral .form .help-block {
    background: #eac4be; }
  .theme--violet .form .help-block {
    background: #d3d3ea; }
  [class*="theme--"] .theme--violet .form .help-block {
    background: #d3d3ea; }
  .theme--orange .form .help-block {
    background: #f1d4ae; }
  [class*="theme--"] .theme--orange .form .help-block {
    background: #f1d4ae; }
  .theme--pink .form .help-block {
    background: #e7bccf; }
  [class*="theme--"] .theme--pink .form .help-block {
    background: #e7bccf; }
  .theme--black .form .help-block {
    background: transparent; }
  [class*="theme--"] .theme--black .form .help-block {
    background: transparent; }
  .theme--default .form .help-block {
    background: #d7e6ea; }
  [class*="theme--"] .theme--default .form .help-block {
    background: #d7e6ea; }

[data-gallery] a, [data-gallery] button {
  outline: none; }

@media only screen and (min-width: 639px) {
  [data-gallery][data-gallery="default"] {
    padding-right: 5em; } }

@media only screen and (min-width: 639px) {
  [data-gallery][data-gallery="default"] [data-gallery-pager] {
    position: absolute;
    right: 0;
    bottom: calc(5em + 1.25rem); } }

@media only screen and (min-width: 639px) {
  [data-gallery][data-gallery="default"] .slick-arrow {
    bottom: .33em; } }

[data-gallery][data-gallery="thumbs"] [data-gallery-stage] {
  text-align: center;
  margin-bottom: 1.25rem; }
  [data-gallery][data-gallery="thumbs"] [data-gallery-stage] img {
    width: auto;
    height: 20em; }

[data-gallery][data-gallery="thumbs"] .slick-slide {
  padding: 0 0.625rem; }

[data-gallery][data-gallery="thumbs"] .slick-current {
  opacity: .35; }

[data-gallery][data-gallery="full"] {
  position: relative;
  left: 50%;
  right: 50%;
  width: 1440px;
  margin-left: -720px;
  margin-right: -720px;
  overflow-x: hidden; }
  @media (max-width: 1440px) {
    [data-gallery][data-gallery="full"] {
      position: relative;
      left: 50%;
      right: 50%;
      width: 100vw;
      margin-left: -50vw;
      margin-right: -50vw; } }
  [data-gallery][data-gallery="full"] .slick-list {
    margin-left: -0.625rem;
    margin-right: -0.625rem; }
  [data-gallery][data-gallery="full"] .slick-slide {
    max-height: 40vh;
    padding: 0 0.625rem; }
  [data-gallery][data-gallery="full"] .slick-arrow {
    top: 50%;
    -ms-transform: translateY(-50%);
        transform: translateY(-50%); }
    @media (max-width: 639px) {
      [data-gallery][data-gallery="full"] .slick-arrow {
        width: 2.5em;
        height: 2.5em; } }
  [data-gallery][data-gallery="full"] .slick-prev {
    left: 0; }
  [data-gallery][data-gallery="full"] .slick-next {
    right: 0; }

[data-gallery] .slick-arrow {
  position: absolute;
  width: 5em;
  height: 5em;
  overflow: hidden;
  text-indent: -99em;
  border: none;
  cursor: pointer;
  background: #FFF;
  z-index: 1; }
  @media (max-width: 1023px) {
    [data-gallery] .slick-arrow {
      width: 2.5em;
      height: 2.5em; } }
  [data-gallery] .slick-arrow:before {
    position: absolute;
    content: "";
    width: 30%;
    height: 30%;
    border: 1px currentColor solid;
    border-right: none;
    border-bottom: none;
    -ms-transform: translate(-15%, -24%) rotate(225deg);
        transform: translate(-15%, -24%) rotate(225deg);
    left: 50%;
    top: 50%;
    border-width: 2px; }
  [data-gallery] .slick-arrow:hover {
    background-color: #d7e6ea; }
    .theme--turquoise [data-gallery] .slick-arrow:hover {
      background-color: #cee2d2; }
    [class*="theme--"] .theme--turquoise [data-gallery] .slick-arrow:hover {
      background-color: #cee2d2; }
    .theme--yellow [data-gallery] .slick-arrow:hover {
      background-color: #f9f1c1; }
    [class*="theme--"] .theme--yellow [data-gallery] .slick-arrow:hover {
      background-color: #f9f1c1; }
    .theme--blue [data-gallery] .slick-arrow:hover {
      background-color: #c9dde4; }
    [class*="theme--"] .theme--blue [data-gallery] .slick-arrow:hover {
      background-color: #c9dde4; }
    .theme--coral [data-gallery] .slick-arrow:hover {
      background-color: #eac4be; }
    [class*="theme--"] .theme--coral [data-gallery] .slick-arrow:hover {
      background-color: #eac4be; }
    .theme--violet [data-gallery] .slick-arrow:hover {
      background-color: #d3d3ea; }
    [class*="theme--"] .theme--violet [data-gallery] .slick-arrow:hover {
      background-color: #d3d3ea; }
    .theme--orange [data-gallery] .slick-arrow:hover {
      background-color: #f1d4ae; }
    [class*="theme--"] .theme--orange [data-gallery] .slick-arrow:hover {
      background-color: #f1d4ae; }
    .theme--pink [data-gallery] .slick-arrow:hover {
      background-color: #e7bccf; }
    [class*="theme--"] .theme--pink [data-gallery] .slick-arrow:hover {
      background-color: #e7bccf; }
    .theme--black [data-gallery] .slick-arrow:hover {
      background-color: transparent; }
    [class*="theme--"] .theme--black [data-gallery] .slick-arrow:hover {
      background-color: transparent; }
    .theme--default [data-gallery] .slick-arrow:hover {
      background-color: #d7e6ea; }
    [class*="theme--"] .theme--default [data-gallery] .slick-arrow:hover {
      background-color: #d7e6ea; }

[data-gallery] .slick-prev {
  right: 3em;
  bottom: -10px; }
  @media only screen and (min-width: 639px) {
    [data-gallery] .slick-prev {
      right: 5em;
      bottom: 0; } }
  [data-gallery] .slick-prev:before {
    -ms-transform: translate(-30%, -50%) rotate(-45deg);
        transform: translate(-30%, -50%) rotate(-45deg); }

[data-gallery] .slick-next {
  right: 0;
  bottom: -10px; }
  @media only screen and (min-width: 639px) {
    [data-gallery] .slick-next {
      bottom: 0; } }
  [data-gallery] .slick-next:before {
    -ms-transform: translate(-70%, -50%) rotate(135deg);
        transform: translate(-70%, -50%) rotate(135deg); }

.header {
  margin: 3.75rem 0 0; }
  @media (max-width: 1023px) {
    .header {
      margin: 1.25rem 0 0.625rem; } }

.hero {
  position: relative;
  padding-bottom: 2.5rem; }
  .hero img {
    display: block; }
  .hero--site-width {
    position: relative;
    left: 50%;
    right: 50%;
    width: 1440px;
    margin-left: -720px;
    margin-right: -720px; }
    @media (max-width: 1440px) {
      .hero--site-width {
        position: relative;
        left: 50%;
        right: 50%;
        width: 100vw;
        margin-left: -50vw;
        margin-right: -50vw; } }
  .hero__content {
    height: 400px;
    background-color: #9AC1CA;
    background-position: center;
    background-size: cover; }
    .hero__content--text {
      position: relative;
      left: -33.33333%;
      padding: 5rem 5% 2.5rem 40%;
      background-color: #d7e6ea; }
      .theme--turquoise .hero__content--text {
        background-color: #cee2d2; }
      [class*="theme--"] .theme--turquoise .hero__content--text {
        background-color: #cee2d2; }
      .theme--yellow .hero__content--text {
        background-color: #f9f1c1; }
      [class*="theme--"] .theme--yellow .hero__content--text {
        background-color: #f9f1c1; }
      .theme--blue .hero__content--text {
        background-color: #c9dde4; }
      [class*="theme--"] .theme--blue .hero__content--text {
        background-color: #c9dde4; }
      .theme--coral .hero__content--text {
        background-color: #eac4be; }
      [class*="theme--"] .theme--coral .hero__content--text {
        background-color: #eac4be; }
      .theme--violet .hero__content--text {
        background-color: #d3d3ea; }
      [class*="theme--"] .theme--violet .hero__content--text {
        background-color: #d3d3ea; }
      .theme--orange .hero__content--text {
        background-color: #f1d4ae; }
      [class*="theme--"] .theme--orange .hero__content--text {
        background-color: #f1d4ae; }
      .theme--pink .hero__content--text {
        background-color: #e7bccf; }
      [class*="theme--"] .theme--pink .hero__content--text {
        background-color: #e7bccf; }
      .theme--black .hero__content--text {
        background-color: transparent; }
      [class*="theme--"] .theme--black .hero__content--text {
        background-color: transparent; }
      .theme--default .hero__content--text {
        background-color: #d7e6ea; }
      [class*="theme--"] .theme--default .hero__content--text {
        background-color: #d7e6ea; }
      .hero__content--text h1, .hero__content--text h2, .hero__content--text h3 {
        line-height: 1.5; }
    .hero__content--img {
      position: relative;
      top: 2.5rem;
      height: 100%;
      background-color: #999;
      z-index: 1; }
  .hero__cta {
    margin-top: 2.5rem; }
  .hero--flip .hero__content--text {
    left: 33.33333%;
    padding-left: 8%;
    padding-right: 36%; }
  .hero--alt-ratio .hero__content--text {
    height: auto;
    padding-top: 3rem;
    padding-left: 35%;
    padding-right: 4%;
    left: -30%; }
  .hero--alt-ratio.hero--flip .hero__content--text {
    padding-left: 4%;
    padding-right: 35%;
    left: 30%; }
  @media (max-width: 1440px) {
    .hero__content--text {
      height: auto;
      padding-right: 2rem;
      padding-left: 40%; }
    .hero--flip .hero__content--text {
      padding-left: 2rem;
      padding-right: 40%; } }
  @media (max-width: 1440px) and (max-width: 639px) {
    .hero--flip .hero__content--text {
      top: 0; } }
  @media (max-width: 960px) {
    .hero {
      height: auto;
      padding-bottom: 0;
      margin-bottom: -4rem; } }
  @media (max-width: 960px) and (max-width: 639px) {
    .hero {
      margin-bottom: -2rem; } }
  @media (max-width: 960px) {
      .hero__content {
        height: auto; }
        .hero__content--text {
          left: auto !important;
          top: -2rem;
          padding: 2rem !important; }
        .hero__content--img {
          top: 0;
          height: 40vh; } }

.highlight {
  position: relative; }
  .highlight__image {
    display: block; }
  .highlight__title {
    font-size: 1em;
    font-weight: bold;
    margin-top: 1.25rem;
    margin-bottom: 0.3125rem; }
  .highlight__info {
    margin-top: 0.625rem;
    font-weight: 500;
    font-size: .75em; }
  .highlight__link {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    text-indent: -99em;
    color: transparent;
    overflow: hidden; }
  @media (min-width: 961px) {
    .highlight {
      padding-right: 1.25rem;
      padding-bottom: 2rem; } }

.info {
  position: relative;
  padding: 2rem;
  padding-left: calc(15vh + 2rem);
  box-sizing: border-box; }
  .info:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    bottom: 0;
    width: 15vh;
    background-color: #d7e6ea; }
    .theme--turquoise .info:before {
      background-color: #cee2d2; }
    [class*="theme--"] .theme--turquoise .info:before {
      background-color: #cee2d2; }
    .theme--yellow .info:before {
      background-color: #f9f1c1; }
    [class*="theme--"] .theme--yellow .info:before {
      background-color: #f9f1c1; }
    .theme--blue .info:before {
      background-color: #c9dde4; }
    [class*="theme--"] .theme--blue .info:before {
      background-color: #c9dde4; }
    .theme--coral .info:before {
      background-color: #eac4be; }
    [class*="theme--"] .theme--coral .info:before {
      background-color: #eac4be; }
    .theme--violet .info:before {
      background-color: #d3d3ea; }
    [class*="theme--"] .theme--violet .info:before {
      background-color: #d3d3ea; }
    .theme--orange .info:before {
      background-color: #f1d4ae; }
    [class*="theme--"] .theme--orange .info:before {
      background-color: #f1d4ae; }
    .theme--pink .info:before {
      background-color: #e7bccf; }
    [class*="theme--"] .theme--pink .info:before {
      background-color: #e7bccf; }
    .theme--black .info:before {
      background-color: transparent; }
    [class*="theme--"] .theme--black .info:before {
      background-color: transparent; }
    .theme--default .info:before {
      background-color: #d7e6ea; }
    [class*="theme--"] .theme--default .info:before {
      background-color: #d7e6ea; }
  .info__head {
    position: relative;
    left: -7.5vh;
    margin-bottom: 1.25rem; }
    .info__head h2, .info__head h3, .info__head h4 {
      color: #333; }

.masonry {
  min-height: 400px; }
  .masonry__item {
    position: relative;
    background: #eee;
    margin-bottom: 2.5rem; }
    .masonry__item--size-1 {
      height: 250px; }
    .masonry__item--size-2 {
      height: 540px; }
  @media (max-width: 960px) {
    .masonry__item--size-2 {
      height: 250px; } }
  @media (max-width: 960px) {
    .masonry__item {
      margin-bottom: 0; } }

.main__content {
  position: relative;
  z-index: 1; }
  .main__content > * + * {
    margin-top: 4rem; }

.main-nav {
  position: relative;
  z-index: 2; }
  .is-sticky .main-nav {
    box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.15); }
  .main-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    list-style-image: none; }
  .main-nav__item > a {
    color: #2B2B2B;
    text-decoration: none; }
  .main-nav__item--level-0:hover > a, .main-nav__item--level-0:hover > span, .main-nav__item--active > a, .main-nav__item--active > span {
    -webkit-text-stroke: 0.75px #2B2B2B; }
    @media all and (-ms-high-contrast: none) {
      .main-nav__item--level-0:hover > a, .main-nav__item--level-0:hover > span, .main-nav__item--active > a, .main-nav__item--active > span {
        -webkit-text-stroke: 0 transparent;
        text-shadow: 0.5px 0 0 #2B2B2B, 0 0.5px 0 #2B2B2B; } }
  .main-nav__item--level-1 > a, .main-nav__item--level-2 > a {
    display: block; }
  @media (min-width: 1024px) {
    .main-nav__list--level-0 {
      display: -ms-flexbox;
      display: flex; }
    .main-nav__list--level-1 {
      position: relative;
      width: 25%;
      height: 100%;
      background: #FFF; }
      .main-nav__list--level-1:not(:hover) .main-nav__item--level-1:first-child > a {
        -ms-transform: scale(1.25);
            transform: scale(1.25);
        font-weight: normal;
        -ms-transform-origin: 1.25rem 50%;
            transform-origin: 1.25rem 50%; }
      .main-nav__list--level-1:not(:hover) .main-nav__item--level-1:first-child .main-nav__sub--level-2 {
        display: block; }
    .main-nav__list--level-1, .main-nav__list--level-2 {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-direction: column;
          flex-direction: column; }
    .main-nav__list--level-2 {
      position: absolute;
      width: 100%;
      height: 400px;
      background: rgba(255, 255, 255, 0.8); }
    .main-nav__sub {
      display: none; }
      .main-nav__sub--level-1 {
        position: absolute;
        left: -2.5rem;
        top: 100%;
        width: calc(100% + 1.25rem*4);
        height: 680px;
        z-index: 2; }
      .main-nav__sub--level-2 {
        position: absolute;
        top: 0;
        left: 100%;
        width: 100%;
        height: 100%;
        z-index: 2; }
      .main-nav__sub--level-3 {
        position: absolute;
        left: 0;
        top: 0;
        width: 300%;
        height: 680px;
        background: #FFF;
        z-index: -1; }
    .main-nav__item > a, .main-nav__item > span {
      display: block;
      padding: 0.625rem 0; }
    .main-nav__item--level-0 {
      height: 4rem;
      -ms-flex-positive: 1;
          flex-grow: 1; }
      .main-nav__item--level-0:hover > a, .main-nav__item--level-0:hover > span {
        position: relative;
        color: #2B2B2B; } }
    @media (min-width: 1024px) and (min-width: 1440px) {
      .main-nav__item--level-0:hover > a:before, .main-nav__item--level-0:hover > span:before {
        position: absolute;
        content: "";
        left: 50%;
        width: 10em;
        height: 5em;
        opacity: 0;
        -ms-transform: translate(-50%);
            transform: translate(-50%); } }
  @media (min-width: 1024px) {
    .main-nav__item--level-0.main-nav__item--parent:hover:after {
      display: block;
      position: absolute;
      left: calc(-1*(100vw - 100%)/2);
      top: calc(4rem);
      content: '';
      width: 100vw;
      height: 200vh;
      background: rgba(0, 0, 0, 0.5);
      pointer-events: none;
      z-index: 1; }
    .main-nav__item--level-1:hover > a, .main-nav__item--level-2:hover > a {
      -ms-transform: scale(1.25);
          transform: scale(1.25);
      font-weight: normal;
      -ms-transform-origin: 1.25rem 50%;
          transform-origin: 1.25rem 50%; }
    .main-nav__item--level-1 {
      padding: 0 3.75rem 0 1.25rem; }
      .main-nav__item--level-1 > a {
        padding: 1.25rem; }
    .main-nav__item:hover > .main-nav__sub {
      display: block; }
    .main-nav__item--level-1:last-child, .main-nav__item--level-2:last-child {
      -ms-flex-positive: 1;
          flex-grow: 1; }
    .main-nav__item--level-2 > a {
      padding: 0.45rem 3.125rem 0.45rem 1.25rem; }
    .main-nav__overview {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      min-height: 680px;
      background: #FFF;
      z-index: -2; }
      .main-nav__sub--level-2 > .main-nav__overview {
        width: 300%; }
      .main-nav__overview__img {
        width: 100%;
        height: 400px;
        background-position: center;
        background-size: cover;
        background-color: #999; }
      .main-nav__overview__button {
        position: absolute;
        bottom: 2rem;
        right: 2rem; }
      .main-nav__overview__text {
        padding: 2.5rem 1.25rem; } }
  @media (min-width: 1024px) and (max-width: 1439px) {
    .main-nav__sub {
      font-size: 1rem; }
      .main-nav__sub--level-1 {
        left: calc(-1*(100vw - 100%)/2);
        width: 100vw; } }
  @media (max-width: 1023px) {
    .main-nav:after {
      display: block;
      position: absolute;
      content: '';
      width: 100vw;
      height: 1000vh;
      background: rgba(0, 0, 0, 0.5);
      pointer-events: none; }
    .main-nav__list--level-0 {
      overflow-x: hidden;
      overflow-y: scroll;
      height: calc(100vh - 140px); }
    .main-nav__list[data-active="true"] > li > a,
    .main-nav__list[data-active="true"] > li > label {
      display: none; }
    .main-nav__list[data-active="true"] + .main-nav__overview {
      display: none; }
    .main-nav__sub {
      display: none; }
    .main-nav__item {
      position: relative; }
      .main-nav__item--level-0 > a, .main-nav__item--level-0 > span, .main-nav__item--level-1 > a, .main-nav__item--level-1 > span, .main-nav__item--level-2 > a, .main-nav__item--level-2 > span {
        display: block;
        padding: 1.25rem 2.5rem;
        padding-right: 0;
        border-bottom: 2px #ddeaed solid; }
      .main-nav__item[data-active="true"] > a,
      .main-nav__item[data-active="true"] > label {
        display: block !important; }
    .main-nav__overview__text {
      padding: 2.5rem; } }
  @media (max-width: 960px) {
    .main-nav__item > a, .main-nav__item > span {
      padding: 1.25rem; }
    .main-nav__overview__text {
      padding: 1.25rem; } }

.map {
  position: relative;
  height: 100%;
  min-height: 20rem;
  background: #FFF; }
  .map__info {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    padding: 1.25rem;
    background-color: #d7e6ea;
    transition: opacity .3s ease;
    cursor: pointer;
    z-index: 1; }
    .theme--turquoise .map__info {
      background-color: #cee2d2; }
    [class*="theme--"] .theme--turquoise .map__info {
      background-color: #cee2d2; }
    .theme--yellow .map__info {
      background-color: #f9f1c1; }
    [class*="theme--"] .theme--yellow .map__info {
      background-color: #f9f1c1; }
    .theme--blue .map__info {
      background-color: #c9dde4; }
    [class*="theme--"] .theme--blue .map__info {
      background-color: #c9dde4; }
    .theme--coral .map__info {
      background-color: #eac4be; }
    [class*="theme--"] .theme--coral .map__info {
      background-color: #eac4be; }
    .theme--violet .map__info {
      background-color: #d3d3ea; }
    [class*="theme--"] .theme--violet .map__info {
      background-color: #d3d3ea; }
    .theme--orange .map__info {
      background-color: #f1d4ae; }
    [class*="theme--"] .theme--orange .map__info {
      background-color: #f1d4ae; }
    .theme--pink .map__info {
      background-color: #e7bccf; }
    [class*="theme--"] .theme--pink .map__info {
      background-color: #e7bccf; }
    .theme--black .map__info {
      background-color: transparent; }
    [class*="theme--"] .theme--black .map__info {
      background-color: transparent; }
    .theme--default .map__info {
      background-color: #d7e6ea; }
    [class*="theme--"] .theme--default .map__info {
      background-color: #d7e6ea; }
  .map .leaflet-container {
    height: 100%;
    min-height: 20rem;
    background: transparent; }
    .map .leaflet-container a {
      color: #2B2B2B; }
  .map .leaflet-pane {
    z-index: 1; }
  .map .leaflet-map-pane {
    opacity: .5; }
  .map .leaflet-drag-target + .map__info {
    opacity: 0;
    pointer-events: none; }

.meta-nav {
  position: relative;
  z-index: 2; }
  .meta-nav:not(:hover) .meta-nav__dropdown {
    display: none; }
  .meta-nav__list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
    -ms-flex-pack: end;
        justify-content: flex-end; }
  .meta-nav__item__icon {
    display: block;
    width: 2em;
    height: 2em;
    margin: 0 0.41667rem; }
    .meta-nav__item__icon svg {
      -ms-transform: scale(1.4);
          transform: scale(1.4); }
  .meta-nav__item:first-of-type {
    margin-left: 0; }
  .meta-nav__item:last-of-type {
    margin-right: 0; }
  .meta-nav__dropdown {
    position: fixed;
    right: 0;
    width: 100%;
    overflow: hidden;
    background: #FFF;
    z-index: 2; }
  .meta-nav[data-hover="true"]:after {
    display: none;
    position: absolute;
    right: calc(((100vw - 1440px) / -2) - 2rem);
    top: 4rem;
    content: '';
    width: 200vw;
    height: 200vh;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: none;
    z-index: 1; }
  .meta-nav__sub {
    padding-bottom: 2.5rem; }
    .meta-nav__sub:not([data-active="true"]) {
      display: none; }
  @media (min-width: 1440px) {
    .meta-nav {
      top: -0.625rem; }
      .meta-nav__dropdown {
        position: absolute;
        width: 1440px;
        padding-top: 1.375rem;
        -ms-transform: translateX(30px);
            transform: translateX(30px); }
      .meta-nav__item__icon {
        margin-bottom: 0.625rem; } }
  @media (min-width: 1024px) {
    .meta-nav:hover:after {
      display: block; } }
  @media (min-width: 1024px) and (max-width: 1439px) {
    .meta-nav[data-hover="true"]:after, .meta-nav:hover:after {
      right: calc(((100vw - 1440px) / -2) - 25vw) !important; }
    .meta-nav__list {
      position: relative;
      z-index: 5; }
    .meta-nav__dropdown {
      padding-top: 2rem; } }
  @media (max-width: 960px) {
    .meta-nav__item__icon {
      padding: 0.625rem; }
    .meta-nav__list {
      -ms-flex-pack: justify;
          justify-content: space-between; } }
  @media (max-width: 1023px) {
    .meta-nav[data-hover="true"]:after {
      display: block;
      right: -1.25rem; }
    .meta-nav__dropdown {
      max-height: 72vh;
      overflow-y: auto;
      box-shadow: 0 1em 1em rgba(0, 0, 0, 0.2); }
      .meta-nav__dropdown hr:first-child {
        display: none; }
    .meta-nav__sub {
      padding-top: 0.625rem; } }

.nav {
  background: #FFF;
  z-index: 2 !important; }
  .nav:before {
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: #FFF;
    content: '';
    z-index: -1; }
  .nav__logo {
    display: block;
    width: 8rem; }
    .nav__logo img {
      display: block; }
  .nav__check {
    display: none; }
  @media (min-width: 1024px) {
    .nav {
      padding-top: 1.25rem; }
      .nav__logo, .nav__meta {
        position: absolute;
        margin: 0 1.875rem;
        top: 1.875rem; }
      .nav__logo {
        left: 0;
        z-index: 1; }
      .nav__meta {
        right: 0;
        z-index: 2; }
      .nav__main {
        position: relative;
        margin: 0 auto;
        min-width: 240px;
        max-width: 960px; }
      .nav__toggle {
        display: none; } }
  @media (min-width: 1024px) and (max-width: 1439px) {
    .nav__logo {
      z-index: 5; }
    .nav__main {
      font-size: .8em;
      width: 60vw; }
    .nav__meta {
      top: 1.25rem; } }
  @media (max-width: 1023px) {
    .nav {
      padding: 1.25rem 0; }
      .nav__main {
        border-top: 2px #888 solid; }
      .nav__logo {
        position: relative;
        left: 1.875rem; }
      .nav__meta {
        -ms-flex-item-align: end;
            align-self: flex-end;
        padding: 1.25rem 2.5rem; }
      .nav__toggle {
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        padding: 1.25rem 2.5rem;
        cursor: pointer;
        color: #2B2B2B;
        z-index: 1;
        -webkit-tap-highlight-color: transparent; }
        .nav__toggle:before {
          display: block;
          content: "";
          width: 2em;
          height: 1.5em;
          background: url('vhs-assets-css-36c2a0959843814bac602b781e23ca67.svg') center no-repeat;
          background-size: contain; }
        .nav__toggle--root {
          display: -ms-flexbox;
          display: flex;
          -ms-flex-direction: column;
              flex-direction: column;
          -ms-flex-pack: justify;
              justify-content: space-between;
          -ms-flex-align: end;
              align-items: flex-end;
          width: 24px;
          height: 20px;
          right: 0;
          top: 1.25rem;
          padding: 0 1.875rem;
          color: #888;
          line-height: 0;
          font-weight: bold;
          font-size: 1.25rem; }
          .nav__toggle--root:before {
            content: none; }
          .nav__toggle--root span {
            display: block;
            width: 100%;
            height: 1px;
            transition: all .25s ease;
            background-color: #2B2B2B; }
      .nav__check:checked ~ ul,
      .nav__check:checked ~ div {
        display: inherit;
        animation: fade-in-right .15s ease-out both; }
      .nav__check:checked ~ .nav__toggle {
        -ms-transform: scaleX(-1);
            transform: scaleX(-1); }
        .nav__check:checked ~ .nav__toggle--root {
          -ms-transform: none;
              transform: none; }
          .nav__check:checked ~ .nav__toggle--root span:nth-child(1) {
            -ms-transform-origin: 100% 3px;
                transform-origin: 100% 3px;
            -ms-transform: rotate(-45deg);
                transform: rotate(-45deg); }
          .nav__check:checked ~ .nav__toggle--root span:nth-child(2) {
            opacity: 0; }
          .nav__check:checked ~ .nav__toggle--root span:nth-child(3) {
            -ms-transform-origin: 100% -3px;
                transform-origin: 100% -3px;
            -ms-transform: rotate(45deg);
                transform: rotate(45deg); }
      .nav__wrap {
        display: none;
        position: absolute;
        left: 0;
        width: 100vw;
        background: #FFF;
        z-index: 3; }
        .nav__wrap__order {
          display: -ms-flexbox;
          display: flex;
          -ms-flex-direction: column-reverse;
              flex-direction: column-reverse; } }
  @media (max-width: 960px) {
    .nav__logo {
      left: 1.25rem; }
    .nav__toggle {
      padding-left: 1.25rem;
      padding-right: 1.25rem; }
    .nav__meta {
      width: 100%;
      padding: 0.625rem 1.25rem;
      box-sizing: border-box; } }

.page-nav:nth-child(1), .page-nav:nth-child(2) {
  margin-top: -1.875rem; }

.page-nav__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  list-style-image: none; }

.page-nav__item {
  white-space: nowrap; }
  .page-nav__item + .page-nav__item {
    margin-left: 2.5rem; }
  .page-nav__item:hover a {
    color: #2B2B2B; }
  .page-nav__item > a {
    color: #2B2B2B;
    text-decoration: none; }

@media (max-width: 639px) {
  .page-nav__list {
    -ms-flex-pack: start;
        justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 1.25rem; }
  .page-nav__item + .page-nav__item {
    margin-left: 1.25rem; } }

.poster {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-flex-direction: column;
      flex-direction: column;
  height: 100%;
  padding: 2.5rem;
  box-sizing: border-box;
  background: center no-repeat;
  background-size: contain;
  /*make img look transparent to increase contrast */ }
  .poster--blank {
    padding-left: 0; }
    .poster--blank .poster__text {
      color: #9AC1CA;
      color: #2B2B2B; }
      .theme--turquoise .poster--blank .poster__text {
        color: #95c3a8; }
      [class*="theme--"] .theme--turquoise .poster--blank .poster__text {
        color: #95c3a8; }
      .theme--yellow .poster--blank .poster__text {
        color: #f4e692; }
      [class*="theme--"] .theme--yellow .poster--blank .poster__text {
        color: #f4e692; }
      .theme--blue .poster--blank .poster__text {
        color: #9ac1ca; }
      [class*="theme--"] .theme--blue .poster--blank .poster__text {
        color: #9ac1ca; }
      .theme--coral .poster--blank .poster__text {
        color: #d78179; }
      [class*="theme--"] .theme--coral .poster--blank .poster__text {
        color: #d78179; }
      .theme--violet .poster--blank .poster__text {
        color: #9897c8; }
      [class*="theme--"] .theme--violet .poster--blank .poster__text {
        color: #9897c8; }
      .theme--orange .poster--blank .poster__text {
        color: #e3aa71; }
      [class*="theme--"] .theme--orange .poster--blank .poster__text {
        color: #e3aa71; }
      .theme--pink .poster--blank .poster__text {
        color: #da90ad; }
      [class*="theme--"] .theme--pink .poster--blank .poster__text {
        color: #da90ad; }
      .theme--black .poster--blank .poster__text {
        color: #2B2B2B; }
      [class*="theme--"] .theme--black .poster--blank .poster__text {
        color: #2B2B2B; }
      .theme--default .poster--blank .poster__text {
        color: #9AC1CA; }
      [class*="theme--"] .theme--default .poster--blank .poster__text {
        color: #9AC1CA; }
  .poster--solid {
    padding-right: 30%;
    background-color: #d7e6ea; }
    .theme--turquoise .poster--solid {
      background-color: #cee2d2; }
    [class*="theme--"] .theme--turquoise .poster--solid {
      background-color: #cee2d2; }
    .theme--yellow .poster--solid {
      background-color: #f9f1c1; }
    [class*="theme--"] .theme--yellow .poster--solid {
      background-color: #f9f1c1; }
    .theme--blue .poster--solid {
      background-color: #c9dde4; }
    [class*="theme--"] .theme--blue .poster--solid {
      background-color: #c9dde4; }
    .theme--coral .poster--solid {
      background-color: #eac4be; }
    [class*="theme--"] .theme--coral .poster--solid {
      background-color: #eac4be; }
    .theme--violet .poster--solid {
      background-color: #d3d3ea; }
    [class*="theme--"] .theme--violet .poster--solid {
      background-color: #d3d3ea; }
    .theme--orange .poster--solid {
      background-color: #f1d4ae; }
    [class*="theme--"] .theme--orange .poster--solid {
      background-color: #f1d4ae; }
    .theme--pink .poster--solid {
      background-color: #e7bccf; }
    [class*="theme--"] .theme--pink .poster--solid {
      background-color: #e7bccf; }
    .theme--black .poster--solid {
      background-color: transparent; }
    [class*="theme--"] .theme--black .poster--solid {
      background-color: transparent; }
    .theme--default .poster--solid {
      background-color: #d7e6ea; }
    [class*="theme--"] .theme--default .poster--solid {
      background-color: #d7e6ea; }
  .poster--square {
    height: 480px; }
  .poster--tr {
    -ms-flex-align: end;
        align-items: flex-end;
    -ms-flex-pack: start;
        justify-content: flex-start;
    background-position: bottom left; }
    .poster--tr .poster__text {
      max-width: 50%; }
  .poster--bl {
    -ms-flex-align: start;
        align-items: flex-start;
    -ms-flex-pack: end;
        justify-content: flex-end;
    background-position: top right; }
    .poster--bl .poster__text {
      max-width: 50%; }
  .poster__text {
    min-width: 50%; }
  .poster__cta {
    margin-top: 2.5rem; }
  .poster--img .poster__text {
    z-index: 1; }
  .poster--img:before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    z-index: 0; }
  @media (max-width: 960px) {
    .poster--solid {
      padding-right: 2.5rem; }
    .poster--square {
      height: calc(50vw - 2.5rem); } }
  @media (max-width: 639px) {
    .poster {
      margin-left: -1.25rem;
      margin-right: -1.25rem; }
      .poster--blank {
        padding-left: 2.5rem; }
      .poster--square {
        height: auto; }
      .poster--tr .poster__text, .poster--bl .poster__text {
        max-width: none; } }

.product-table td {
  vertical-align: middle; }

.product-table a {
  color: inherit; }

.product-table__head__img {
  width: 5.5em; }

.product-table__head__link {
  width: 0; }

.product-table__body__img {
  width: 5.5em; }

.product-table__body__name {
  width: 8em;
  font-size: 1.4em; }

.product-table__body__stat1 {
  width: 12em; }

.product-table__body__stat2 {
  width: 8em; }

.product-table__body__stat3 {
  width: 11em; }

.product-table__body__link {
  position: relative;
  padding-right: 0;
  text-align: right; }
  .product-table__body__link a {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 2.5rem;
    font-size: 0;
    text-decoration: none;
    overflow: hidden;
    background: url('vhs-assets-css-36c2a0959843814bac602b781e23ca67.svg') right center no-repeat;
    /* Nur Internet Explorer */ }
    @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
      .product-table__body__link a {
        height: 108px; } }

@media (max-width: 639px) {
  .product-table__head, .product-table__head__stat, .product-table__body__stat1, .product-table__body__stat2, .product-table__body__stat3 {
    display: none; }
  .product-table__body__img {
    width: 4em; }
  .product-table__body__name {
    font-size: 1.2em; } }

.products__summary {
  font-size: .85em;
  color: #999;
  margin-bottom: 1.25rem; }

.products__filter {
  margin-bottom: 2.5rem; }

.products__title {
  margin: 5rem 0 2.5rem; }

.products__list {
  transition: opacity 1s ease; }
  .products__list > * + * {
    margin-top: 6rem; }

.products[data-loading="true"] {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }
  .products[data-loading="true"] .products__list {
    display: none; }

.references__filter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 1.875rem; }
  .references__filter__select {
    min-width: 16em;
    margin-left: 1.25rem; }

.references__modes {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  margin-bottom: 1.25rem; }
  .references__modes__item {
    width: 2em; }
    .references__modes__item + .references__modes__item {
      margin-left: 0.625rem; }

.references__grid {
  transition: opacity 1s ease; }

.references__item {
  display: block;
  position: relative;
  height: 100%;
  overflow: hidden; }
  .references__item__wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 1.25rem;
    box-sizing: border-box;
    transition: opacity .3s ease;
    background-color: #d7e6ea; }
    .theme--turquoise .references__item__wrap {
      background-color: #cee2d2; }
    [class*="theme--"] .theme--turquoise .references__item__wrap {
      background-color: #cee2d2; }
    .theme--yellow .references__item__wrap {
      background-color: #f9f1c1; }
    [class*="theme--"] .theme--yellow .references__item__wrap {
      background-color: #f9f1c1; }
    .theme--blue .references__item__wrap {
      background-color: #c9dde4; }
    [class*="theme--"] .theme--blue .references__item__wrap {
      background-color: #c9dde4; }
    .theme--coral .references__item__wrap {
      background-color: #eac4be; }
    [class*="theme--"] .theme--coral .references__item__wrap {
      background-color: #eac4be; }
    .theme--violet .references__item__wrap {
      background-color: #d3d3ea; }
    [class*="theme--"] .theme--violet .references__item__wrap {
      background-color: #d3d3ea; }
    .theme--orange .references__item__wrap {
      background-color: #f1d4ae; }
    [class*="theme--"] .theme--orange .references__item__wrap {
      background-color: #f1d4ae; }
    .theme--pink .references__item__wrap {
      background-color: #e7bccf; }
    [class*="theme--"] .theme--pink .references__item__wrap {
      background-color: #e7bccf; }
    .theme--black .references__item__wrap {
      background-color: transparent; }
    [class*="theme--"] .theme--black .references__item__wrap {
      background-color: transparent; }
    .theme--default .references__item__wrap {
      background-color: #d7e6ea; }
    [class*="theme--"] .theme--default .references__item__wrap {
      background-color: #d7e6ea; }
  .references__item__img {
    display: block;
    position: absolute;
    left: 50%;
    max-width: none;
    height: 100%;
    -ms-transform: translateX(-50%);
        transform: translateX(-50%); }
  .references__item__link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-indent: -99em;
    color: transparent; }
  .references__item:not(:hover) .references__item__wrap {
    opacity: 0; }

.references__more {
  padding: 1.25rem 0 10rem;
  text-align: center; }
  .references__more > button {
    font-size: 2em; }

.references[data-loading="true"] {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }
  .references[data-loading="true"] .references__grid {
    opacity: .2; }

@media (max-width: 960px) {
  .references__filter {
    display: block; }
    .references__filter__select {
      min-width: 0;
      width: 100%;
      margin: 1.25rem 0 0; } }

.search__form {
  position: relative; }

.search__input {
  display: block;
  width: 100%;
  font-size: 2em;
  font-weight: 300;
  line-height: 1.5;
  border: none;
  border-bottom: 1px #2B2B2B solid;
  outline: none;
  box-sizing: border-box;
  border-radius: 0;
  -webkit-appearance: none; }
  .search__input::-webkit-input-placeholder {
    color: #9AC1CA; }
  .search__input:-ms-input-placeholder {
    color: #9AC1CA; }
  .search__input::placeholder {
    color: #9AC1CA; }
    .theme--turquoise .search__input::-webkit-input-placeholder {
      color: #95c3a8; }
    .theme--turquoise .search__input:-ms-input-placeholder {
      color: #95c3a8; }
    .theme--turquoise .search__input::placeholder {
      color: #95c3a8; }
    [class*="theme--"] .theme--turquoise .search__input::-webkit-input-placeholder {
      color: #95c3a8; }
    [class*="theme--"] .theme--turquoise .search__input:-ms-input-placeholder {
      color: #95c3a8; }
    [class*="theme--"] .theme--turquoise .search__input::placeholder {
      color: #95c3a8; }
    .theme--yellow .search__input::-webkit-input-placeholder {
      color: #f4e692; }
    .theme--yellow .search__input:-ms-input-placeholder {
      color: #f4e692; }
    .theme--yellow .search__input::placeholder {
      color: #f4e692; }
    [class*="theme--"] .theme--yellow .search__input::-webkit-input-placeholder {
      color: #f4e692; }
    [class*="theme--"] .theme--yellow .search__input:-ms-input-placeholder {
      color: #f4e692; }
    [class*="theme--"] .theme--yellow .search__input::placeholder {
      color: #f4e692; }
    .theme--blue .search__input::-webkit-input-placeholder {
      color: #9ac1ca; }
    .theme--blue .search__input:-ms-input-placeholder {
      color: #9ac1ca; }
    .theme--blue .search__input::placeholder {
      color: #9ac1ca; }
    [class*="theme--"] .theme--blue .search__input::-webkit-input-placeholder {
      color: #9ac1ca; }
    [class*="theme--"] .theme--blue .search__input:-ms-input-placeholder {
      color: #9ac1ca; }
    [class*="theme--"] .theme--blue .search__input::placeholder {
      color: #9ac1ca; }
    .theme--coral .search__input::-webkit-input-placeholder {
      color: #d78179; }
    .theme--coral .search__input:-ms-input-placeholder {
      color: #d78179; }
    .theme--coral .search__input::placeholder {
      color: #d78179; }
    [class*="theme--"] .theme--coral .search__input::-webkit-input-placeholder {
      color: #d78179; }
    [class*="theme--"] .theme--coral .search__input:-ms-input-placeholder {
      color: #d78179; }
    [class*="theme--"] .theme--coral .search__input::placeholder {
      color: #d78179; }
    .theme--violet .search__input::-webkit-input-placeholder {
      color: #9897c8; }
    .theme--violet .search__input:-ms-input-placeholder {
      color: #9897c8; }
    .theme--violet .search__input::placeholder {
      color: #9897c8; }
    [class*="theme--"] .theme--violet .search__input::-webkit-input-placeholder {
      color: #9897c8; }
    [class*="theme--"] .theme--violet .search__input:-ms-input-placeholder {
      color: #9897c8; }
    [class*="theme--"] .theme--violet .search__input::placeholder {
      color: #9897c8; }
    .theme--orange .search__input::-webkit-input-placeholder {
      color: #e3aa71; }
    .theme--orange .search__input:-ms-input-placeholder {
      color: #e3aa71; }
    .theme--orange .search__input::placeholder {
      color: #e3aa71; }
    [class*="theme--"] .theme--orange .search__input::-webkit-input-placeholder {
      color: #e3aa71; }
    [class*="theme--"] .theme--orange .search__input:-ms-input-placeholder {
      color: #e3aa71; }
    [class*="theme--"] .theme--orange .search__input::placeholder {
      color: #e3aa71; }
    .theme--pink .search__input::-webkit-input-placeholder {
      color: #da90ad; }
    .theme--pink .search__input:-ms-input-placeholder {
      color: #da90ad; }
    .theme--pink .search__input::placeholder {
      color: #da90ad; }
    [class*="theme--"] .theme--pink .search__input::-webkit-input-placeholder {
      color: #da90ad; }
    [class*="theme--"] .theme--pink .search__input:-ms-input-placeholder {
      color: #da90ad; }
    [class*="theme--"] .theme--pink .search__input::placeholder {
      color: #da90ad; }
    .theme--black .search__input::-webkit-input-placeholder {
      color: #2B2B2B; }
    .theme--black .search__input:-ms-input-placeholder {
      color: #2B2B2B; }
    .theme--black .search__input::placeholder {
      color: #2B2B2B; }
    [class*="theme--"] .theme--black .search__input::-webkit-input-placeholder {
      color: #2B2B2B; }
    [class*="theme--"] .theme--black .search__input:-ms-input-placeholder {
      color: #2B2B2B; }
    [class*="theme--"] .theme--black .search__input::placeholder {
      color: #2B2B2B; }
    .theme--default .search__input::-webkit-input-placeholder {
      color: #9AC1CA; }
    .theme--default .search__input:-ms-input-placeholder {
      color: #9AC1CA; }
    .theme--default .search__input::placeholder {
      color: #9AC1CA; }
    [class*="theme--"] .theme--default .search__input::-webkit-input-placeholder {
      color: #9AC1CA; }
    [class*="theme--"] .theme--default .search__input:-ms-input-placeholder {
      color: #9AC1CA; }
    [class*="theme--"] .theme--default .search__input::placeholder {
      color: #9AC1CA; }

.search__submit {
  position: absolute;
  right: 0;
  -ms-transform: translateY(-150%);
      transform: translateY(-150%);
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer; }
  .search__submit:hover {
    color: #2B2B2B; }

.search__suggestions {
  display: -ms-flexbox;
  display: flex;
  margin: 0.625rem 0;
  font-size: .85em; }
  .search__suggestions__label {
    margin-right: 0.625rem;
    width: 7.5rem; }
  .search__suggestions__list {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
    list-style-image: none; }
  .search__suggestions__item {
    float: left; }
    .search__suggestions__item + .search__suggestions__item {
      /*margin-left: $gap/2;*/
      float: left; }
    .search__suggestions__item a {
      color: #999;
      text-decoration: underline;
      margin-left: 0.625rem; }

.search__results {
  margin: 2.5rem 0;
  transition: opacity 1s ease; }
  .search__results__more {
    margin-top: 5rem; }
  .search__results img {
    margin: 0 auto; }
  .search__results a {
    text-decoration: none; }

.search[data-loading="true"] {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }
  .search[data-loading="true"] .search__results {
    opacity: .2; }

@media (max-width: 639px) {
  .search__submit {
    -ms-transform: translateY(0.3125rem);
        transform: translateY(0.3125rem); }
  .search__suggestions__label {
    width: 5.5rem; }
  .search__suggestions__list {
    display: block;
    width: 12rem; }
  .search__suggestions__item + .search__suggestions__item {
    margin-left: 0; }
  .search__results__more {
    display: block; } }

.section {
  position: relative;
  height: 100%;
  min-width: 100%;
  max-width: 100%; }
  .section__content {
    position: relative;
    height: 100%;
    margin: 0 auto;
    padding: 0 1.25rem;
    min-width: 240px;
    max-width: 960px; }

.select {
  position: relative;
  font-size: .85em;
  font-weight: normal;
  padding: 0;
  margin: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border: 1px #FFF solid; }
  .select[data-active="true"] .select__head__indicator {
    -ms-transform: scaleY(-1);
        transform: scaleY(-1); }
  .select[data-selected="true"] .select__head {
    color: #FFF;
    background-color: #9AC1CA; }
    .theme--turquoise .select[data-selected="true"] .select__head {
      background-color: #95c3a8; }
    [class*="theme--"] .theme--turquoise .select[data-selected="true"] .select__head {
      background-color: #95c3a8; }
    .theme--yellow .select[data-selected="true"] .select__head {
      background-color: #f4e692; }
    [class*="theme--"] .theme--yellow .select[data-selected="true"] .select__head {
      background-color: #f4e692; }
    .theme--blue .select[data-selected="true"] .select__head {
      background-color: #9ac1ca; }
    [class*="theme--"] .theme--blue .select[data-selected="true"] .select__head {
      background-color: #9ac1ca; }
    .theme--coral .select[data-selected="true"] .select__head {
      background-color: #d78179; }
    [class*="theme--"] .theme--coral .select[data-selected="true"] .select__head {
      background-color: #d78179; }
    .theme--violet .select[data-selected="true"] .select__head {
      background-color: #9897c8; }
    [class*="theme--"] .theme--violet .select[data-selected="true"] .select__head {
      background-color: #9897c8; }
    .theme--orange .select[data-selected="true"] .select__head {
      background-color: #e3aa71; }
    [class*="theme--"] .theme--orange .select[data-selected="true"] .select__head {
      background-color: #e3aa71; }
    .theme--pink .select[data-selected="true"] .select__head {
      background-color: #da90ad; }
    [class*="theme--"] .theme--pink .select[data-selected="true"] .select__head {
      background-color: #da90ad; }
    .theme--black .select[data-selected="true"] .select__head {
      background-color: #2B2B2B; }
    [class*="theme--"] .theme--black .select[data-selected="true"] .select__head {
      background-color: #2B2B2B; }
    .theme--default .select[data-selected="true"] .select__head {
      background-color: #9AC1CA; }
    [class*="theme--"] .theme--default .select[data-selected="true"] .select__head {
      background-color: #9AC1CA; }
    .select[data-selected="true"] .select__head__indicator {
      -ms-transform: none;
          transform: none; }
      .select[data-selected="true"] .select__head__indicator:after {
        width: .4em;
        border-width: 3px; }
  .select__head {
    position: relative;
    padding: 0.625rem;
    text-transform: uppercase;
    font-weight: normal;
    cursor: pointer;
    /*@include theme-color(background-color, light);*/
    background: #ffffff;
    border: solid 1px #000000; }
    .select__head__indicator {
      position: absolute;
      right: 0.625rem;
      top: 1.25rem; }
      .select__head__indicator:after {
        position: absolute;
        content: "";
        width: 0.75em;
        height: 0.75em;
        border: 1px currentColor solid;
        border-right: none;
        border-bottom: none;
        -ms-transform: translate(-0.375em, -0.6em) rotate(225deg);
            transform: translate(-0.375em, -0.6em) rotate(225deg);
        right: 0;
        border-width: 2px; }
  .select__body {
    position: relative;
    max-height: 15em;
    overflow-y: auto;
    border-top: 1px #FFF solid;
    border-width: 2px;
    /* @include theme-color(background-color, light);*/
    background: #ffffff; }
  .select__list {
    list-style: none;
    margin: 0;
    padding: 0;
    list-style-image: none; }
  .select__item {
    position: relative;
    font-weight: normal; }
    .select__item__box {
      display: block;
      position: absolute;
      margin: 0.8em;
      width: 1em;
      height: 1em;
      border: 1px solid #000;
      background: #ffffff; }
    .select__item__input {
      display: none; }
      .select__item__input:checked + .select__item__box:before {
        position: absolute;
        left: 50%;
        top: 35%;
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
        content: "\D7";
        line-height: 0; }
      .select__item__input[disabled] ~ .select__item__label {
        opacity: .3;
        cursor: not-allowed; }
    .select__item__label {
      display: block;
      position: relative;
      cursor: pointer;
      padding: 0.625rem;
      padding-left: 2.75em;
      z-index: 1; }
  .select__footer {
    padding: 0.625rem;
    /*@include theme-color(background-color, light);*/
    background: #ffffff; }
  .select__close {
    width: 100%;
    padding: 0.625rem;
    box-sizing: border-box;
    text-align: center;
    border: none;
    outline: none;
    text-transform: uppercase;
    letter-spacing: .1em;
    cursor: pointer;
    background-color: #9AC1CA; }
    .theme--turquoise .select__close {
      background-color: #95c3a8; }
    [class*="theme--"] .theme--turquoise .select__close {
      background-color: #95c3a8; }
    .theme--yellow .select__close {
      background-color: #f4e692; }
    [class*="theme--"] .theme--yellow .select__close {
      background-color: #f4e692; }
    .theme--blue .select__close {
      background-color: #9ac1ca; }
    [class*="theme--"] .theme--blue .select__close {
      background-color: #9ac1ca; }
    .theme--coral .select__close {
      background-color: #d78179; }
    [class*="theme--"] .theme--coral .select__close {
      background-color: #d78179; }
    .theme--violet .select__close {
      background-color: #9897c8; }
    [class*="theme--"] .theme--violet .select__close {
      background-color: #9897c8; }
    .theme--orange .select__close {
      background-color: #e3aa71; }
    [class*="theme--"] .theme--orange .select__close {
      background-color: #e3aa71; }
    .theme--pink .select__close {
      background-color: #da90ad; }
    [class*="theme--"] .theme--pink .select__close {
      background-color: #da90ad; }
    .theme--black .select__close {
      background-color: #2B2B2B; }
    [class*="theme--"] .theme--black .select__close {
      background-color: #2B2B2B; }
    .theme--default .select__close {
      background-color: #9AC1CA; }
    [class*="theme--"] .theme--default .select__close {
      background-color: #9AC1CA; }
  @media (min-width: 961px) {
    .select__mask {
      position: absolute;
      width: calc(100% + 4px);
      left: 0px;
      height: 19.95em;
      -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
              clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
      pointer-events: none; }
    .select__dropdown {
      position: absolute;
      width: calc(100% - 6px);
      -ms-transform: translateY(-101%);
          transform: translateY(-101%);
      transition: transform .1s ease-in;
      border: 1px solid #000;
      border-top: none; }
    .select[data-active="true"] {
      z-index: 2; }
      .select[data-active="true"] .select__mask {
        pointer-events: auto; }
      .select[data-active="true"] .select__dropdown {
        transition: transform .3s ease-out;
        -ms-transform: none;
            transform: none; } }
  @media (max-width: 960px) {
    .select__dropdown {
      display: none; }
    .select__body {
      max-height: none; }
    .select[data-active="true"] .select__dropdown {
      display: block; } }
  @media all and (-ms-high-contrast: none) {
    .select__dropdown {
      transition: none; }
    .select:not([data-active="true"]) .select__dropdown {
      visibility: hidden;
      pointer-events: none; } }

.site {
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: hidden; }
  .site__content {
    position: relative;
    max-width: 1440px;
    margin: 0 auto; }

.social-media-nav__list {
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  list-style-image: none; }

.social-media-nav__item {
  width: 2rem; }
  .social-media-nav__item + .social-media-nav__item {
    margin-left: 1.25rem; }

@media (max-width: 960px) {
  .social-media-nav__list {
    -ms-flex-pack: center;
        justify-content: center; } }

.subline {
  font-family: "Static", Helvetica, sans-serif;
  font-weight: bold;
  font-style: italic;
  font-size: 1em;
  letter-spacing: .065em;
  white-space: nowrap;
  color: #2B2B2B; }
  .subline:before, .subline:after {
    display: inline-block;
    content: "";
    width: 1em;
    margin: 0 0.3125rem;
    height: 2px;
    background: #2B2B2B;
    vertical-align: .3em; }

.tabs {
  position: relative; }
  .tabs__list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    list-style: none;
    margin: 0;
    padding: 0;
    list-style-image: none; }
  .tabs__item {
    font-size: 2em;
    font-weight: normal;
    cursor: pointer;
    color: #999; }
    .tabs__item[data-active="true"] {
      color: #2B2B2B; }
  .tabs__contents {
    margin-top: 1.25rem; }
  .tabs__content:not([data-active="true"]) {
    display: none; }
  @media (max-width: 639px) {
    .tabs__item {
      font-size: .8em; } }
  .tabs__topics img,
  .tabs__references img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 169px;
    width: 100%; }

.family__img {
  display: block;
  position: relative;
  width: 100%;
  top: 2rem;
  z-index: 1; }

.family__links {
  margin-top: 1.25rem; }

.family__content {
  position: relative;
  left: 160px;
  height: 100%;
  padding: 2rem;
  padding-right: 33%;
  box-sizing: border-box;
  background-color: #d7e6ea; }
  .theme--turquoise .family__content {
    background-color: #cee2d2; }
  [class*="theme--"] .theme--turquoise .family__content {
    background-color: #cee2d2; }
  .theme--yellow .family__content {
    background-color: #f9f1c1; }
  [class*="theme--"] .theme--yellow .family__content {
    background-color: #f9f1c1; }
  .theme--blue .family__content {
    background-color: #c9dde4; }
  [class*="theme--"] .theme--blue .family__content {
    background-color: #c9dde4; }
  .theme--coral .family__content {
    background-color: #eac4be; }
  [class*="theme--"] .theme--coral .family__content {
    background-color: #eac4be; }
  .theme--violet .family__content {
    background-color: #d3d3ea; }
  [class*="theme--"] .theme--violet .family__content {
    background-color: #d3d3ea; }
  .theme--orange .family__content {
    background-color: #f1d4ae; }
  [class*="theme--"] .theme--orange .family__content {
    background-color: #f1d4ae; }
  .theme--pink .family__content {
    background-color: #e7bccf; }
  [class*="theme--"] .theme--pink .family__content {
    background-color: #e7bccf; }
  .theme--black .family__content {
    background-color: transparent; }
  [class*="theme--"] .theme--black .family__content {
    background-color: transparent; }
  .theme--default .family__content {
    background-color: #d7e6ea; }
  [class*="theme--"] .theme--default .family__content {
    background-color: #d7e6ea; }

.family__products {
  margin-top: 4rem; }
  .family__products a {
    text-decoration: none; }
  .family__products .grid__col--2 {
    text-align: center; }

@media (max-width: 960px) {
  .family__img {
    top: 3rem;
    width: 50%;
    margin-left: auto;
    margin-right: 2rem; }
  .family__content {
    margin-top: 0;
    padding-right: 2rem;
    left: 0; }
  .family__products {
    margin-top: 2rem; } }

@media (max-width: 639px) {
  .family__img {
    top: 2rem;
    width: 100%;
    margin: 0; }
  .family__links {
    max-width: 50%; }
  .family__content {
    margin-top: 0; } }

.links {
  display: block;
  margin-bottom: 1.25rem; }
  .links__item {
    display: block; }
    .links__item span {
      display: inline-block;
      position: relative;
      width: 100%;
      margin-bottom: 0.625rem;
      padding-left: 1.875rem;
      text-align: left;
      color: #2B2B2B; }
      .links__item span:before {
        display: block;
        position: absolute;
        left: 0;
        top: 50%;
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
        transition: transform .2s ease;
        width: 1.25rem;
        height: 0.8rem;
        content: '';
        background: url('vhs-assets-css-36c2a0959843814bac602b781e23ca67.svg') right center no-repeat;
        background-size: cover; }
    .links__item:hover span:before {
      -ms-transform: translateX(0.25em) translateY(-50%);
          transform: translateX(0.25em) translateY(-50%); }

.lang-nav {
  display: -ms-flexbox;
  display: flex; }
  .lang-nav__list {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    list-style: none;
    margin: 0;
    padding: 0;
    list-style-image: none; }
  .lang-nav__item {
    display: inline; }
    .lang-nav__item + .lang-nav__item:before {
      content: '|'; }
    .lang-nav__item a {
      margin: 0 0.3125rem;
      text-decoration: none;
      color: #2B2B2B; }
    .lang-nav__item--active {
      font-weight: normal;
      transform: translateY(-0.1em);
      -ms-transform: translateY(-0.02em); }

.loader {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  left: 50%;
  height: auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  font-weight: normal; }
  .loader__dots {
    display: -ms-flexbox;
    display: flex;
    width: 7.5rem;
    -ms-flex-pack: justify;
        justify-content: space-between; }
  .loader__dot {
    display: block;
    width: 0.9rem;
    height: 0.9rem;
    content: '';
    border-radius: 50%;
    background: #9AC1CA;
    transition: 0.3s; }
    .loader__dot:nth-of-type(1) {
      background-color: #cee2d2; }
    .loader__dot:nth-of-type(2) {
      background-color: #f9f1c1; }
    .loader__dot:nth-of-type(3) {
      background-color: #c9dde4; }
    .loader__dot:nth-of-type(4) {
      background-color: #eac4be; }
    .loader__dot:nth-of-type(5) {
      background-color: #d3d3ea; }
    .loader__dot:nth-of-type(6) {
      background-color: #f1d4ae; }
    .loader__dot:nth-of-type(7) {
      background-color: #e7bccf; }
    .loader__dot:nth-of-type(8) {
      background-color: transparent; }
    .loader__dot:nth-of-type(9) {
      background-color: #d7e6ea; }
    .loader[data-active="true"] .loader__dot {
      animation: wave 2s infinite ease-in-out; }
      .loader[data-active="true"] .loader__dot:nth-of-type(1) {
        animation-delay: calc(0.1s * 1); }
      .loader[data-active="true"] .loader__dot:nth-of-type(2) {
        animation-delay: calc(0.1s * 2); }
      .loader[data-active="true"] .loader__dot:nth-of-type(3) {
        animation-delay: calc(0.1s * 3); }
      .loader[data-active="true"] .loader__dot:nth-of-type(4) {
        animation-delay: calc(0.1s * 4); }
      .loader[data-active="true"] .loader__dot:nth-of-type(5) {
        animation-delay: calc(0.1s * 5); }
      .loader[data-active="true"] .loader__dot:nth-of-type(6) {
        animation-delay: calc(0.1s * 6); }
      .loader[data-active="true"] .loader__dot:nth-of-type(1) {
        background-color: #95c3a8; }
      .loader[data-active="true"] .loader__dot:nth-of-type(2) {
        background-color: #f4e692; }
      .loader[data-active="true"] .loader__dot:nth-of-type(3) {
        background-color: #9ac1ca; }
      .loader[data-active="true"] .loader__dot:nth-of-type(4) {
        background-color: #d78179; }
      .loader[data-active="true"] .loader__dot:nth-of-type(5) {
        background-color: #9897c8; }
      .loader[data-active="true"] .loader__dot:nth-of-type(6) {
        background-color: #e3aa71; }
      .loader[data-active="true"] .loader__dot:nth-of-type(7) {
        background-color: #da90ad; }
      .loader[data-active="true"] .loader__dot:nth-of-type(8) {
        background-color: #2B2B2B; }
      .loader[data-active="true"] .loader__dot:nth-of-type(9) {
        background-color: #9AC1CA; }
  .loader:hover {
    text-decoration: none; }
  .loader:not(.loader[data-active="true"]):hover .loader__dot:nth-of-type(2), .loader:not(.loader[data-active="true"]):hover .loader__dot:nth-of-type(5) {
    -ms-transform: translateY(20%);
        transform: translateY(20%); }
  .loader:not(.loader[data-active="true"]):hover .loader__dot:nth-of-type(3), .loader:not(.loader[data-active="true"]):hover .loader__dot:nth-of-type(4) {
    -ms-transform: translateY(40%);
        transform: translateY(40%); }
  .loader__text {
    display: block;
    width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    text-align: center;
    color: #2B2B2B;
    font-size: 1.4rem;
    margin-top: 1.25rem; }

@keyframes wave {
  0%, 60%, 100% {
    opacity: 0.5;
    transform: translateY(0%); }
  20% {
    opacity: 1.0;
    transform: translateY(30%); }
  40% {
    opacity: 1.0;
    transform: translateY(-30%); } }

.v-align--top {
  -ms-flex-item-align: start;
      align-self: flex-start; }

.v-align--center {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center; }

.v-align--bottom {
  -ms-flex-item-align: end;
      align-self: flex-end; }

.v-align--stretch {
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch; }

.decor, [class*="decor"] {
  position: relative; }
  .decor:before, [class*="decor"]:before {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 150%;
    height: calc(100% + 1px);
    margin-top: -3rem;
    -ms-transform: translate(0, -50%);
        transform: translate(0, -50%);
    background-color: #d7e6ea;
    content: '';
    pointer-events: none;
    z-index: -1; }
    .theme--turquoise .decor:before, .theme--turquoise [class*="decor"]:before {
      background-color: #cee2d2; }
    [class*="theme--"] .theme--turquoise .decor:before, [class*="theme--"] .theme--turquoise [class*="decor"]:before {
      background-color: #cee2d2; }
    .theme--yellow .decor:before, .theme--yellow [class*="decor"]:before {
      background-color: #f9f1c1; }
    [class*="theme--"] .theme--yellow .decor:before, [class*="theme--"] .theme--yellow [class*="decor"]:before {
      background-color: #f9f1c1; }
    .theme--blue .decor:before, .theme--blue [class*="decor"]:before {
      background-color: #c9dde4; }
    [class*="theme--"] .theme--blue .decor:before, [class*="theme--"] .theme--blue [class*="decor"]:before {
      background-color: #c9dde4; }
    .theme--coral .decor:before, .theme--coral [class*="decor"]:before {
      background-color: #eac4be; }
    [class*="theme--"] .theme--coral .decor:before, [class*="theme--"] .theme--coral [class*="decor"]:before {
      background-color: #eac4be; }
    .theme--violet .decor:before, .theme--violet [class*="decor"]:before {
      background-color: #d3d3ea; }
    [class*="theme--"] .theme--violet .decor:before, [class*="theme--"] .theme--violet [class*="decor"]:before {
      background-color: #d3d3ea; }
    .theme--orange .decor:before, .theme--orange [class*="decor"]:before {
      background-color: #f1d4ae; }
    [class*="theme--"] .theme--orange .decor:before, [class*="theme--"] .theme--orange [class*="decor"]:before {
      background-color: #f1d4ae; }
    .theme--pink .decor:before, .theme--pink [class*="decor"]:before {
      background-color: #e7bccf; }
    [class*="theme--"] .theme--pink .decor:before, [class*="theme--"] .theme--pink [class*="decor"]:before {
      background-color: #e7bccf; }
    .theme--black .decor:before, .theme--black [class*="decor"]:before {
      background-color: transparent; }
    [class*="theme--"] .theme--black .decor:before, [class*="theme--"] .theme--black [class*="decor"]:before {
      background-color: transparent; }
    .theme--default .decor:before, .theme--default [class*="decor"]:before {
      background-color: #d7e6ea; }
    [class*="theme--"] .theme--default .decor:before, [class*="theme--"] .theme--default [class*="decor"]:before {
      background-color: #d7e6ea; }
  .decor:after, [class*="decor"]:after {
    display: block;
    position: relative;
    width: 100%;
    height: 6rem;
    content: '';
    pointer-events: none; }
  @media (max-width: 1023px) {
    .decor, [class*="decor"] {
      margin-top: 1.5rem !important; } }

.decor:before {
  left: 50%;
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  width: 1440px; }

.decor--full:before {
  min-width: 960px;
  max-width: 100vw;
  width: 100vw; }

.decor--same-height:before {
  height: 100%;
  margin-top: 0; }

.decor--same-height:after {
  display: none; }

.decor--same-width:before {
  width: calc(100% + 1.25rem);
  margin-left: -1.25rem; }

.decor--half-width:before {
  width: 50%; }

.decor--left:before {
  left: -2rem;
  right: auto; }

.decor--left-offset:before {
  left: auto;
  right: 0;
  margin-right: 25%; }

.decor--download:before {
  width: 110%; }

.decor--right:before {
  left: auto;
  right: -2rem; }

.decor--right-offset:before {
  left: 0;
  right: auto;
  margin-left: 25%; }

.decor--no-margin {
  bottom: -1px;
  margin-bottom: 0; }
  .decor--no-margin:before {
    height: 100%;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 3rem; }
  .decor--no-margin:after {
    height: 3rem;
    display: block; }

.news-list {
  margin-top: 5rem; }
  .news-list__filter {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center; }
    .news-list__filter__select {
      min-width: 16em;
      margin-left: 1.25rem; }
  .news-list__item {
    position: relative;
    height: 100%;
    padding: 1.25rem 0;
    margin-bottom: 3.75rem; }
    .news-list__item__img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover; }
    .news-list__item__title {
      margin-top: 1.25rem;
      margin-bottom: 0.625rem;
      color: #9AC1CA; }
      .theme--turquoise .news-list__item__title {
        color: #95c3a8; }
      [class*="theme--"] .theme--turquoise .news-list__item__title {
        color: #95c3a8; }
      .theme--yellow .news-list__item__title {
        color: #f4e692; }
      [class*="theme--"] .theme--yellow .news-list__item__title {
        color: #f4e692; }
      .theme--blue .news-list__item__title {
        color: #9ac1ca; }
      [class*="theme--"] .theme--blue .news-list__item__title {
        color: #9ac1ca; }
      .theme--coral .news-list__item__title {
        color: #d78179; }
      [class*="theme--"] .theme--coral .news-list__item__title {
        color: #d78179; }
      .theme--violet .news-list__item__title {
        color: #9897c8; }
      [class*="theme--"] .theme--violet .news-list__item__title {
        color: #9897c8; }
      .theme--orange .news-list__item__title {
        color: #e3aa71; }
      [class*="theme--"] .theme--orange .news-list__item__title {
        color: #e3aa71; }
      .theme--pink .news-list__item__title {
        color: #da90ad; }
      [class*="theme--"] .theme--pink .news-list__item__title {
        color: #da90ad; }
      .theme--black .news-list__item__title {
        color: #2B2B2B; }
      [class*="theme--"] .theme--black .news-list__item__title {
        color: #2B2B2B; }
      .theme--default .news-list__item__title {
        color: #9AC1CA; }
      [class*="theme--"] .theme--default .news-list__item__title {
        color: #9AC1CA; }
    .news-list__item__date {
      display: block;
      font-family: "Futura", Helvetica, sans-serif;
      font-style: normal;
      font-size: 0.8em; }
    .news-list__item__description {
      margin-top: 2.5rem; }
    .news-list__item__link {
      display: block;
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      text-indent: -99em;
      overflow: hidden;
      color: transparent; }
  @media (max-width: 639px) {
    .news-list__filter__select {
      min-width: 65%; } }

.err-404 {
  display: block;
  height: calc(100vh - 9rem);
  overflow: hidden;
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw; }
  .err-404__background {
    background-color: #cee2d2;
    position: relative;
    left: 50%;
    right: 50%;
    width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
    height: calc(100vh - 9rem);
    min-width: 100vw;
    width: auto;
    z-index: -1; }
  .err-404__lemon {
    mix-blend-mode: normal;
    opacity: 0;
    animation: lemonation 0.75s ease-in-out 4s;
    animation-fill-mode: forwards; }
    .err-404__lemon--ghost {
      mix-blend-mode: luminosity;
      opacity: 1;
      animation: lemonation 0.75s ease-in-out 4s;
      animation-fill-mode: forwards;
      animation-direction: reverse; }
  .err-404__light {
    opacity: 0;
    animation: lemonation 0.75s ease-in-out 4s;
    animation-fill-mode: forwards; }
    .err-404__light__ray {
      fill: #f4e692; }
  .err-404__content {
    position: absolute;
    left: 50%;
    top: 0;
    -ms-transform: translate(calc(-100% - 15rem), 15rem);
        transform: translate(calc(-100% - 15rem), 15rem);
    font-size: 1.2rem;
    color: #2B2B2B;
    font-weight: normal;
    width: 15rem; }
    .err-404__content h1, .err-404__content h2, .err-404__content h3 {
      font-size: 1.5em;
      font-weight: 400; }
    .err-404__content h1 {
      color: #95c3a8; }
    .err-404__content h2 {
      margin: 0;
      opacity: 1;
      animation: text-out 0.75s ease-in-out 4s;
      animation-fill-mode: forwards; }
    .err-404__content h3, .err-404__content a {
      opacity: 0;
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
      animation: text-in 0.75s ease-in-out 4.75s;
      animation-fill-mode: forwards; }
    .err-404__content a {
      width: 100%; }
  .err-404 #lamp {
    -ms-transform-origin: 50% 0;
        transform-origin: 50% 0;
    animation: lamp-in 1s, swing 1s 5 alternate ease-in-out 1s, lamp-tilt-out 1s ease-in-out 6s; }
  @media (max-width: 1023px) {
    .err-404 {
      height: calc(100vh - 6rem); }
      .err-404__background {
        height: auto;
        min-height: 30vh;
        width: 100vw;
        opacity: 0.2;
        -ms-transform-origin: 50% 0;
            transform-origin: 50% 0;
        -ms-transform: scale(3);
            transform: scale(3); }
      .err-404__content {
        position: absolute;
        top: 30%;
        left: 50%;
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0); } }

@keyframes lamp-in {
  0% {
    transform: translateY(-30%) rotate(0deg); }
  50% {
    transform: translateY(1%) rotate(0deg); }
  100% {
    transform: translateY(0) rotate(-2deg); } }

@keyframes lamp-tilt-out {
  from {
    transform: rotate(2deg); }
  to {
    transform: rotate(0deg); } }

@keyframes text-out {
  0% {
    transform: translateX(0%);
    opacity: 1; }
  99% {
    transform: translateX(100%);
    opacity: 0; }
  100% {
    transform: translateX(100%);
    opacity: 0;
    height: 1px; } }

@keyframes text-in {
  to {
    transform: translateX(0%);
    opacity: 1; } }

@keyframes swing {
  from {
    transform: rotate(-2deg); }
  to {
    transform: rotate(2deg); } }

@keyframes lemonation {
  to {
    opacity: 1; } }

/*.hero---boundary-break {
  overflow: hidden;
  width: auto;
  left: 0;
  right: 0;
  height: 400px;
}
*/
.external--content iframe {
  width: 100%;
  height: 100%;
  border: 0; }

.mi-line {
  fill: none;
  stroke: #2B2B2B;
  stroke-width: 1.2px;
  stroke-miterlimit: 10;
  stroke-linecap: round;
  stroke-linejoin: round; }
  .mi-line--bold {
    stroke-width: 1.68px; }
  .mi-line--colored {
    stroke: #9ac1ca; }

.mi-fill {
  fill: #FFF; }

.mi-contact-icon .mi-line--colored {
  stroke: #d78179; }

.mi-contact-icon #letter-content {
  -ms-transform: translateY(40%);
      transform: translateY(40%);
  transition: 0.2s; }

.mi-contact-icon #flap-foreground,
.mi-contact-icon #flap-background {
  transform: rotateX(0);
  -ms-transform-origin: 50% 47%;
      transform-origin: 50% 47%;
  visibility: visible;
  transition-property: transform, visibility;
  transition-duration: 0.4s, 0.2s; }

[data-active="true"] .mi-contact-icon #flap-foreground,
[data-active="true"] .mi-contact-icon #flap-background {
  transform: rotateX(-180deg);
  transition-delay: 0s;
  visibility: hidden; }

[data-active="true"] .mi-contact-icon #flap-background {
  visibility: visible; }

[data-active="true"] .mi-contact-icon #letter-content {
  -ms-transform: translateY(0);
      transform: translateY(0);
  transition-delay: 0.2s; }

[data-active="false"] .mi-contact-icon #flap {
  transition-delay: 0.2s; }

[data-active="false"] .mi-contact-icon #letter-content {
  transition-delay: 0s; }

.mi-download-icon .mi-line--colored {
  stroke: #9897c8;
  stroke-dasharray: 20px;
  stroke-dashoffset: 20px;
  transition: 0.8s; }

.mi-download-icon #arrow {
  -ms-transform: translateY(0);
      transform: translateY(0);
  transition: 0.26667s; }

.mi-download-icon #line-1 {
  animation-delay: calc(0.1s * (1 - 1) + (0.8s));
  transition-delay: calc(0.1s * (1 - 1)); }

.mi-download-icon #line-2 {
  animation-delay: calc(0.1s * (2 - 1) + (0.8s));
  transition-delay: calc(0.1s * (2 - 1)); }

.mi-download-icon #line-3 {
  animation-delay: calc(0.1s * (3 - 1) + (0.8s));
  transition-delay: calc(0.1s * (3 - 1)); }

[data-active="true"] .mi-download-icon .mi-line--colored {
  animation-name: line-animation;
  animation-duration: 1.9s;
  animation-iteration-count: 0;
  animation-direction: reverse;
  stroke-dashoffset: 0;
  transition: 0.8s; }

[data-active="true"] .mi-download-icon #arrow {
  -ms-transform: translateY(6%);
      transform: translateY(6%); }

[data-active="false"] .mi-download-icon .mi-line--colored {
  transition: 0.26667s; }

@keyframes line-animation {
  0% {
    stroke-dashoffset: 0; }
  25% {
    stroke-dashoffset: 20px; }
  50% {
    stroke-dashoffset: 20px; }
  100% {
    stroke-dashoffset: 0; } }

.mi-search-icon .mi-line {
  stroke-width: 1.5px; }
  .mi-search-icon .mi-line--colored {
    stroke: #9ac1ca;
    stroke-dasharray: 19px;
    stroke-dashoffset: 20px;
    transition: 0.4s; }

.mi-search-icon #glas-group {
  -ms-transform: rotate(0);
      transform: rotate(0);
  -ms-transform-origin: 27% 31%;
      transform-origin: 27% 31%;
  transition: 0.4s; }

.mi-search-icon #line-1-1 {
  animation-delay: calc(0.1s * (1 - 1) + (0.4s * 2));
  transition-delay: calc(0.1s * (1 - 1)); }

.mi-search-icon #line-1-2 {
  animation-delay: calc(0.1s * 1 + (0.4s * 2));
  transition-delay: calc(0.1s * 1); }

.mi-search-icon #line-2-1 {
  animation-delay: calc(0.1s * (2 - 1) + (0.4s * 2));
  transition-delay: calc(0.1s * (2 - 1)); }

.mi-search-icon #line-2-2 {
  animation-delay: calc(0.1s * 2 + (0.4s * 2));
  transition-delay: calc(0.1s * 2); }

.mi-search-icon #line-3-1 {
  animation-delay: calc(0.1s * (3 - 1) + (0.4s * 2));
  transition-delay: calc(0.1s * (3 - 1)); }

.mi-search-icon #line-3-2 {
  animation-delay: calc(0.1s * 3 + (0.4s * 2));
  transition-delay: calc(0.1s * 3); }

.mi-search-icon #line-4-1 {
  animation-delay: calc(0.1s * (4 - 1) + (0.4s * 2));
  transition-delay: calc(0.1s * (4 - 1)); }

.mi-search-icon #line-4-2 {
  animation-delay: calc(0.1s * 4 + (0.4s * 2));
  transition-delay: calc(0.1s * 4); }

[data-active="true"] .mi-search-icon #glas-group {
  -ms-transform: rotate(-100deg);
      transform: rotate(-100deg); }

[data-active="true"] .mi-search-icon .mi-line--colored {
  animation-name: line-animation;
  animation-duration: 2.4s;
  animation-iteration-count: 0;
  animation-direction: reverse;
  stroke-dashoffset: 0; }

@keyframes line-animation {
  0% {
    stroke-dashoffset: 0; }
  40% {
    stroke-dashoffset: 0; }
  50% {
    stroke-dashoffset: 20px; }
  90% {
    stroke-dashoffset: 20px; }
  100% {
    stroke-dashoffset: 0; } }

.mi-search-bar {
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none; }
  .mi-search-bar #search-container, .mi-search-bar #search-bar-glas, .mi-search-bar #search-bar-line {
    transition-duration: 0.4s;
    transition-delay: 0.1s; }
  .mi-search-bar #search-container {
    -ms-transform: translateX(calc(-100% + 65px));
        transform: translateX(calc(-100% + 65px)); }
  .mi-search-bar #search-bar-glas {
    stroke-dasharray: 144px;
    stroke-dashoffset: 0; }
  .mi-search-bar #search-bar-line {
    stroke-dasharray: 1440px;
    stroke-dashoffset: 1440px; }
  input[data-active="true"] ~ .mi-search-bar #search-container {
    -ms-transform: translateX(-10px);
        transform: translateX(-10px); }
  input[data-active="true"] ~ .mi-search-bar #search-bar-glas {
    stroke-dashoffset: 144px; }
  input[data-active="true"] ~ .mi-search-bar #search-bar-line {
    stroke-dashoffset: 0; }
  @media (max-width: 1023px) {
    .mi-search-bar {
      height: 2rem; } }

.mi-arrow {
  /* Nur Internet Explorer */
  position: absolute;
  left: 50%;
  top: 50%;
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  white-space: nowrap; }
  @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .mi-arrow {
      display: none; } }
  .mi-arrow .mi-line {
    stroke-width: 1px; }
  .mi-arrow-shaft, .mi-arrow-box, .mi-arrow-head {
    height: 100%; }
  .mi-arrow-shaft, .mi-arrow-head {
    position: absolute; }
  .mi-arrow-shaft {
    width: 18px;
    left: 0.5px;
    -ms-transform: translateX(-100%);
        transform: translateX(-100%); }
  .mi-arrow-head {
    right: 0.5px;
    -ms-transform: translateX(calc(100% - 1px));
        transform: translateX(calc(100% - 1px)); }
  .mi-arrow-box {
    position: absolute;
    left: -1px;
    top: -1px;
    width: calc(100% + 1px * 2);
    height: calc(100% + 1px * 2);
    display: block;
    -ms-transform: translateY(0.5px);
        transform: translateY(0.5px); }
  .mi-arrow-shaft {
    stroke-dashoffset: 100%;
    stroke-dasharray: 100%;
    transition: stroke-dashoffset 0.2s; }
  .mi-arrow-box > * {
    stroke-dashoffset: 0%;
    stroke-dasharray: 500%;
    transition: stroke-dashoffset 0.4s; }
  .mi-arrow-head {
    stroke-dashoffset: 100px;
    stroke-dasharray: 100px;
    transition: stroke-dashoffset 0.2s; }
  .mi-arrow:hover .mi-arrow-shaft {
    transition-delay: 0.13333s;
    stroke-dashoffset: 0%; }
  .mi-arrow:hover .mi-arrow-box > * {
    stroke-dashoffset: 500%; }
  .mi-arrow:hover .mi-arrow-head {
    stroke-dashoffset: 0;
    transition-delay: 0.13333s; }

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

