html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:0.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:0.35em 0.75em 0.625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 22px 15px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  .hamburger:hover {
    opacity: 1; }
  .hamburger.is-active:hover {
    opacity: 1; }
  .hamburger.is-active .hamburger-inner,
  .hamburger.is-active .hamburger-inner::before,
  .hamburger.is-active .hamburger-inner::after {
    background-color: #000; }

.hamburger-box {
  width: 40px;
  height: 28px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }
  .hamburger-inner::before {
    width: 40px;
    height: 4px;
    background-color: #000;
    border-radius: 0px;
    position: absolute;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-duration: 0.15s;
            transition-duration: 0.15s;
    -webkit-transition-timing-function: ease;
            transition-timing-function: ease;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg); }
  .hamburger-inner::before {
    content: "";
    display: block; }

/*
	* DFM Animation
	*/
.hamburger--dfm .hamburger-inner {
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform; }
  .hamburger--dfm .hamburger-inner::before {
    -webkit-transition-duration: .25s;
            transition-duration: .25s;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform; }

.hamburger--dfm.is-active .hamburger-inner {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition-duration: .25s;
          transition-duration: .25s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform; }
  .hamburger--dfm.is-active .hamburger-inner::before {
    -webkit-transition-duration: .25s;
            transition-duration: .25s;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform; }
@charset "UTF-8";
/**
 * Foundation for Sites by ZURB
 * Version 6.5.3
 * foundation.zurb.com
 * Licensed under MIT Open Source
 */
@media print, screen and (min-width: 40em) {
  .reveal, .reveal.tiny, .reveal.small, .reveal.large {
    right: auto;
    left: auto;
    margin: 0 auto; } }

/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

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

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible; }

pre {
  font-family: monospace, monospace;
  font-size: 1em; }

a {
  background-color: transparent; }

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted; }

b,
strong {
  font-weight: bolder; }

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

small {
  font-size: 80%; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

img {
  border-style: none; }

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0; }

button,
input {
  overflow: visible; }

button,
select {
  text-transform: none; }

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

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

fieldset {
  padding: 0.35em 0.75em 0.625em; }

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal; }

progress {
  vertical-align: baseline; }

textarea {
  overflow: auto; }

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0; }

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px; }

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit; }

details {
  display: block; }

summary {
  display: list-item; }

template {
  display: none; }

[hidden] {
  display: none; }

.foundation-mq {
  font-family: "small=0em&medium=40em&large=64em&xlarge=75em&xxlarge=90em"; }

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

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

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

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

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

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

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

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

pre {
  overflow: auto; }

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; }

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

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

[type='text'], [type='password'], [type='date'], [type='datetime'], [type='datetime-local'], [type='month'], [type='week'], [type='email'], [type='number'], [type='search'], [type='tel'], [type='time'], [type='url'], [type='color'],
textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 2.4375rem;
  margin: 0 0 1rem;
  padding: 0.5rem;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #fefefe;
  box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
  font-family: inherit;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1.5;
  color: #0a0a0a;
  transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
  appearance: none; }
  [type='text']:focus, [type='password']:focus, [type='date']:focus, [type='datetime']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='week']:focus, [type='email']:focus, [type='number']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='url']:focus, [type='color']:focus,
  textarea:focus {
    outline: none;
    border: 1px solid #8a8a8a;
    background-color: #fefefe;
    box-shadow: 0 0 5px #cacaca;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out; }

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

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

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

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

::placeholder {
  color: #cacaca; }

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

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

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

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

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

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

.input-group {
  display: flex;
  width: 100%;
  margin-bottom: 1rem;
  align-items: stretch; }
  .input-group > :first-child, .input-group > :first-child.input-group-button > * {
    border-radius: 0 0 0 0; }
  .input-group > :last-child, .input-group > :last-child.input-group-button > * {
    border-radius: 0 0 0 0; }

.input-group-label, .input-group-field, .input-group-button, .input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label {
  margin: 0;
  white-space: nowrap; }

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

.input-group-field {
  border-radius: 0;
  flex: 1 1 0px;
  min-width: 0; }

.input-group-button {
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  display: flex;
  flex: 0 0 auto; }
  .input-group-button a,
  .input-group-button input,
  .input-group-button button,
  .input-group-button label {
    align-self: stretch;
    height: auto;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 1rem; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media print, screen and (min-width: 40em) {
  h1, .h1 {
    font-size: 3rem; }
  h2, .h2 {
    font-size: 2.5rem; }
  h3, .h3 {
    font-size: 1.9375rem; }
  h4, .h4 {
    font-size: 1.5625rem; }
  h5, .h5 {
    font-size: 1.25rem; }
  h6, .h6 {
    font-size: 1rem; } }

a {
  line-height: inherit;
  color: #000000;
  text-decoration: none;
  cursor: pointer; }
  a:hover, a:focus {
    color: black; }
  a img {
    border: 0; }

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

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

li {
  font-size: inherit; }

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

ol {
  margin-left: 1.25rem; }

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

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

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

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

abbr, abbr[title] {
  border-bottom: 1px dotted #0a0a0a;
  cursor: help;
  text-decoration: none; }

figure {
  margin: 0; }

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

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

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

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

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

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

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

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

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

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

@media print, screen and (min-width: 40em) {
  .medium-text-left {
    text-align: left; }
  .medium-text-right {
    text-align: right; }
  .medium-text-center {
    text-align: center; }
  .medium-text-justify {
    text-align: justify; } }

@media print, screen and (min-width: 64em) {
  .large-text-left {
    text-align: left; }
  .large-text-right {
    text-align: right; }
  .large-text-center {
    text-align: center; }
  .large-text-justify {
    text-align: justify; } }

.show-for-print {
  display: none !important; }

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

.grid-container {
  padding-right: 0.625rem;
  padding-left: 0.625rem;
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto; }
  @media print, screen and (min-width: 40em) {
    .grid-container {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }
  .grid-container.fluid {
    padding-right: 0.625rem;
    padding-left: 0.625rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto; }
    @media print, screen and (min-width: 40em) {
      .grid-container.fluid {
        padding-right: 0.9375rem;
        padding-left: 0.9375rem; } }
  .grid-container.full {
    padding-right: 0;
    padding-left: 0;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto; }

.grid-x {
  display: flex;
  flex-flow: row wrap; }

.cell {
  flex: 0 0 auto;
  min-height: 0px;
  min-width: 0px;
  width: 100%; }
  .cell.auto {
    flex: 1 1 0px; }
  .cell.shrink {
    flex: 0 0 auto; }

.grid-x > .auto {
  width: auto; }

.grid-x > .shrink {
  width: auto; }

.grid-x > .small-shrink, .grid-x > .small-full, .grid-x > .small-1, .grid-x > .small-2, .grid-x > .small-3, .grid-x > .small-4, .grid-x > .small-5, .grid-x > .small-6, .grid-x > .small-7, .grid-x > .small-8, .grid-x > .small-9, .grid-x > .small-10, .grid-x > .small-11, .grid-x > .small-12 {
  flex-basis: auto; }

@media print, screen and (min-width: 40em) {
  .grid-x > .medium-shrink, .grid-x > .medium-full, .grid-x > .medium-1, .grid-x > .medium-2, .grid-x > .medium-3, .grid-x > .medium-4, .grid-x > .medium-5, .grid-x > .medium-6, .grid-x > .medium-7, .grid-x > .medium-8, .grid-x > .medium-9, .grid-x > .medium-10, .grid-x > .medium-11, .grid-x > .medium-12 {
    flex-basis: auto; } }

@media print, screen and (min-width: 64em) {
  .grid-x > .large-shrink, .grid-x > .large-full, .grid-x > .large-1, .grid-x > .large-2, .grid-x > .large-3, .grid-x > .large-4, .grid-x > .large-5, .grid-x > .large-6, .grid-x > .large-7, .grid-x > .large-8, .grid-x > .large-9, .grid-x > .large-10, .grid-x > .large-11, .grid-x > .large-12 {
    flex-basis: auto; } }

.grid-x > .small-1, .grid-x > .small-2, .grid-x > .small-3, .grid-x > .small-4, .grid-x > .small-5, .grid-x > .small-6, .grid-x > .small-7, .grid-x > .small-8, .grid-x > .small-9, .grid-x > .small-10, .grid-x > .small-11, .grid-x > .small-12 {
  flex: 0 0 auto; }

.grid-x > .small-1 {
  width: 8.3333333333%; }

.grid-x > .small-2 {
  width: 16.6666666667%; }

.grid-x > .small-3 {
  width: 25%; }

.grid-x > .small-4 {
  width: 33.3333333333%; }

.grid-x > .small-5 {
  width: 41.6666666667%; }

.grid-x > .small-6 {
  width: 50%; }

.grid-x > .small-7 {
  width: 58.3333333333%; }

.grid-x > .small-8 {
  width: 66.6666666667%; }

.grid-x > .small-9 {
  width: 75%; }

.grid-x > .small-10 {
  width: 83.3333333333%; }

.grid-x > .small-11 {
  width: 91.6666666667%; }

.grid-x > .small-12 {
  width: 100%; }

@media print, screen and (min-width: 40em) {
  .grid-x > .medium-auto {
    flex: 1 1 0px;
    width: auto; }
  .grid-x > .medium-shrink, .grid-x > .medium-1, .grid-x > .medium-2, .grid-x > .medium-3, .grid-x > .medium-4, .grid-x > .medium-5, .grid-x > .medium-6, .grid-x > .medium-7, .grid-x > .medium-8, .grid-x > .medium-9, .grid-x > .medium-10, .grid-x > .medium-11, .grid-x > .medium-12 {
    flex: 0 0 auto; }
  .grid-x > .medium-shrink {
    width: auto; }
  .grid-x > .medium-1 {
    width: 8.3333333333%; }
  .grid-x > .medium-2 {
    width: 16.6666666667%; }
  .grid-x > .medium-3 {
    width: 25%; }
  .grid-x > .medium-4 {
    width: 33.3333333333%; }
  .grid-x > .medium-5 {
    width: 41.6666666667%; }
  .grid-x > .medium-6 {
    width: 50%; }
  .grid-x > .medium-7 {
    width: 58.3333333333%; }
  .grid-x > .medium-8 {
    width: 66.6666666667%; }
  .grid-x > .medium-9 {
    width: 75%; }
  .grid-x > .medium-10 {
    width: 83.3333333333%; }
  .grid-x > .medium-11 {
    width: 91.6666666667%; }
  .grid-x > .medium-12 {
    width: 100%; } }

@media print, screen and (min-width: 64em) {
  .grid-x > .large-auto {
    flex: 1 1 0px;
    width: auto; }
  .grid-x > .large-shrink, .grid-x > .large-1, .grid-x > .large-2, .grid-x > .large-3, .grid-x > .large-4, .grid-x > .large-5, .grid-x > .large-6, .grid-x > .large-7, .grid-x > .large-8, .grid-x > .large-9, .grid-x > .large-10, .grid-x > .large-11, .grid-x > .large-12 {
    flex: 0 0 auto; }
  .grid-x > .large-shrink {
    width: auto; }
  .grid-x > .large-1 {
    width: 8.3333333333%; }
  .grid-x > .large-2 {
    width: 16.6666666667%; }
  .grid-x > .large-3 {
    width: 25%; }
  .grid-x > .large-4 {
    width: 33.3333333333%; }
  .grid-x > .large-5 {
    width: 41.6666666667%; }
  .grid-x > .large-6 {
    width: 50%; }
  .grid-x > .large-7 {
    width: 58.3333333333%; }
  .grid-x > .large-8 {
    width: 66.6666666667%; }
  .grid-x > .large-9 {
    width: 75%; }
  .grid-x > .large-10 {
    width: 83.3333333333%; }
  .grid-x > .large-11 {
    width: 91.6666666667%; }
  .grid-x > .large-12 {
    width: 100%; } }

.grid-margin-x:not(.grid-x) > .cell {
  width: auto; }

.grid-margin-y:not(.grid-y) > .cell {
  height: auto; }

.grid-margin-x {
  margin-left: -0.625rem;
  margin-right: -0.625rem; }
  @media print, screen and (min-width: 40em) {
    .grid-margin-x {
      margin-left: -0.9375rem;
      margin-right: -0.9375rem; } }
  .grid-margin-x > .cell {
    width: calc(100% - 1.25rem);
    margin-left: 0.625rem;
    margin-right: 0.625rem; }
  @media print, screen and (min-width: 40em) {
    .grid-margin-x > .cell {
      width: calc(100% - 1.875rem);
      margin-left: 0.9375rem;
      margin-right: 0.9375rem; } }
  .grid-margin-x > .auto {
    width: auto; }
  .grid-margin-x > .shrink {
    width: auto; }
  .grid-margin-x > .small-1 {
    width: calc(8.3333333333% - 1.25rem); }
  .grid-margin-x > .small-2 {
    width: calc(16.6666666667% - 1.25rem); }
  .grid-margin-x > .small-3 {
    width: calc(25% - 1.25rem); }
  .grid-margin-x > .small-4 {
    width: calc(33.3333333333% - 1.25rem); }
  .grid-margin-x > .small-5 {
    width: calc(41.6666666667% - 1.25rem); }
  .grid-margin-x > .small-6 {
    width: calc(50% - 1.25rem); }
  .grid-margin-x > .small-7 {
    width: calc(58.3333333333% - 1.25rem); }
  .grid-margin-x > .small-8 {
    width: calc(66.6666666667% - 1.25rem); }
  .grid-margin-x > .small-9 {
    width: calc(75% - 1.25rem); }
  .grid-margin-x > .small-10 {
    width: calc(83.3333333333% - 1.25rem); }
  .grid-margin-x > .small-11 {
    width: calc(91.6666666667% - 1.25rem); }
  .grid-margin-x > .small-12 {
    width: calc(100% - 1.25rem); }
  @media print, screen and (min-width: 40em) {
    .grid-margin-x > .auto {
      width: auto; }
    .grid-margin-x > .shrink {
      width: auto; }
    .grid-margin-x > .small-1 {
      width: calc(8.3333333333% - 1.875rem); }
    .grid-margin-x > .small-2 {
      width: calc(16.6666666667% - 1.875rem); }
    .grid-margin-x > .small-3 {
      width: calc(25% - 1.875rem); }
    .grid-margin-x > .small-4 {
      width: calc(33.3333333333% - 1.875rem); }
    .grid-margin-x > .small-5 {
      width: calc(41.6666666667% - 1.875rem); }
    .grid-margin-x > .small-6 {
      width: calc(50% - 1.875rem); }
    .grid-margin-x > .small-7 {
      width: calc(58.3333333333% - 1.875rem); }
    .grid-margin-x > .small-8 {
      width: calc(66.6666666667% - 1.875rem); }
    .grid-margin-x > .small-9 {
      width: calc(75% - 1.875rem); }
    .grid-margin-x > .small-10 {
      width: calc(83.3333333333% - 1.875rem); }
    .grid-margin-x > .small-11 {
      width: calc(91.6666666667% - 1.875rem); }
    .grid-margin-x > .small-12 {
      width: calc(100% - 1.875rem); }
    .grid-margin-x > .medium-auto {
      width: auto; }
    .grid-margin-x > .medium-shrink {
      width: auto; }
    .grid-margin-x > .medium-1 {
      width: calc(8.3333333333% - 1.875rem); }
    .grid-margin-x > .medium-2 {
      width: calc(16.6666666667% - 1.875rem); }
    .grid-margin-x > .medium-3 {
      width: calc(25% - 1.875rem); }
    .grid-margin-x > .medium-4 {
      width: calc(33.3333333333% - 1.875rem); }
    .grid-margin-x > .medium-5 {
      width: calc(41.6666666667% - 1.875rem); }
    .grid-margin-x > .medium-6 {
      width: calc(50% - 1.875rem); }
    .grid-margin-x > .medium-7 {
      width: calc(58.3333333333% - 1.875rem); }
    .grid-margin-x > .medium-8 {
      width: calc(66.6666666667% - 1.875rem); }
    .grid-margin-x > .medium-9 {
      width: calc(75% - 1.875rem); }
    .grid-margin-x > .medium-10 {
      width: calc(83.3333333333% - 1.875rem); }
    .grid-margin-x > .medium-11 {
      width: calc(91.6666666667% - 1.875rem); }
    .grid-margin-x > .medium-12 {
      width: calc(100% - 1.875rem); } }
  @media print, screen and (min-width: 64em) {
    .grid-margin-x > .large-auto {
      width: auto; }
    .grid-margin-x > .large-shrink {
      width: auto; }
    .grid-margin-x > .large-1 {
      width: calc(8.3333333333% - 1.875rem); }
    .grid-margin-x > .large-2 {
      width: calc(16.6666666667% - 1.875rem); }
    .grid-margin-x > .large-3 {
      width: calc(25% - 1.875rem); }
    .grid-margin-x > .large-4 {
      width: calc(33.3333333333% - 1.875rem); }
    .grid-margin-x > .large-5 {
      width: calc(41.6666666667% - 1.875rem); }
    .grid-margin-x > .large-6 {
      width: calc(50% - 1.875rem); }
    .grid-margin-x > .large-7 {
      width: calc(58.3333333333% - 1.875rem); }
    .grid-margin-x > .large-8 {
      width: calc(66.6666666667% - 1.875rem); }
    .grid-margin-x > .large-9 {
      width: calc(75% - 1.875rem); }
    .grid-margin-x > .large-10 {
      width: calc(83.3333333333% - 1.875rem); }
    .grid-margin-x > .large-11 {
      width: calc(91.6666666667% - 1.875rem); }
    .grid-margin-x > .large-12 {
      width: calc(100% - 1.875rem); } }

.grid-padding-x .grid-padding-x {
  margin-right: -0.625rem;
  margin-left: -0.625rem; }
  @media print, screen and (min-width: 40em) {
    .grid-padding-x .grid-padding-x {
      margin-right: -0.9375rem;
      margin-left: -0.9375rem; } }

.grid-container:not(.full) > .grid-padding-x {
  margin-right: -0.625rem;
  margin-left: -0.625rem; }
  @media print, screen and (min-width: 40em) {
    .grid-container:not(.full) > .grid-padding-x {
      margin-right: -0.9375rem;
      margin-left: -0.9375rem; } }

.grid-padding-x > .cell {
  padding-right: 0.625rem;
  padding-left: 0.625rem; }
  @media print, screen and (min-width: 40em) {
    .grid-padding-x > .cell {
      padding-right: 0.9375rem;
      padding-left: 0.9375rem; } }

.small-up-1 > .cell {
  width: 100%; }

.small-up-2 > .cell {
  width: 50%; }

.small-up-3 > .cell {
  width: 33.3333333333%; }

.small-up-4 > .cell {
  width: 25%; }

.small-up-5 > .cell {
  width: 20%; }

.small-up-6 > .cell {
  width: 16.6666666667%; }

.small-up-7 > .cell {
  width: 14.2857142857%; }

.small-up-8 > .cell {
  width: 12.5%; }

@media print, screen and (min-width: 40em) {
  .medium-up-1 > .cell {
    width: 100%; }
  .medium-up-2 > .cell {
    width: 50%; }
  .medium-up-3 > .cell {
    width: 33.3333333333%; }
  .medium-up-4 > .cell {
    width: 25%; }
  .medium-up-5 > .cell {
    width: 20%; }
  .medium-up-6 > .cell {
    width: 16.6666666667%; }
  .medium-up-7 > .cell {
    width: 14.2857142857%; }
  .medium-up-8 > .cell {
    width: 12.5%; } }

@media print, screen and (min-width: 64em) {
  .large-up-1 > .cell {
    width: 100%; }
  .large-up-2 > .cell {
    width: 50%; }
  .large-up-3 > .cell {
    width: 33.3333333333%; }
  .large-up-4 > .cell {
    width: 25%; }
  .large-up-5 > .cell {
    width: 20%; }
  .large-up-6 > .cell {
    width: 16.6666666667%; }
  .large-up-7 > .cell {
    width: 14.2857142857%; }
  .large-up-8 > .cell {
    width: 12.5%; } }

.grid-margin-x.small-up-1 > .cell {
  width: calc(100% - 1.25rem); }

.grid-margin-x.small-up-2 > .cell {
  width: calc(50% - 1.25rem); }

.grid-margin-x.small-up-3 > .cell {
  width: calc(33.3333333333% - 1.25rem); }

.grid-margin-x.small-up-4 > .cell {
  width: calc(25% - 1.25rem); }

.grid-margin-x.small-up-5 > .cell {
  width: calc(20% - 1.25rem); }

.grid-margin-x.small-up-6 > .cell {
  width: calc(16.6666666667% - 1.25rem); }

.grid-margin-x.small-up-7 > .cell {
  width: calc(14.2857142857% - 1.25rem); }

.grid-margin-x.small-up-8 > .cell {
  width: calc(12.5% - 1.25rem); }

@media print, screen and (min-width: 40em) {
  .grid-margin-x.small-up-1 > .cell {
    width: calc(100% - 1.875rem); }
  .grid-margin-x.small-up-2 > .cell {
    width: calc(50% - 1.875rem); }
  .grid-margin-x.small-up-3 > .cell {
    width: calc(33.3333333333% - 1.875rem); }
  .grid-margin-x.small-up-4 > .cell {
    width: calc(25% - 1.875rem); }
  .grid-margin-x.small-up-5 > .cell {
    width: calc(20% - 1.875rem); }
  .grid-margin-x.small-up-6 > .cell {
    width: calc(16.6666666667% - 1.875rem); }
  .grid-margin-x.small-up-7 > .cell {
    width: calc(14.2857142857% - 1.875rem); }
  .grid-margin-x.small-up-8 > .cell {
    width: calc(12.5% - 1.875rem); }
  .grid-margin-x.medium-up-1 > .cell {
    width: calc(100% - 1.875rem); }
  .grid-margin-x.medium-up-2 > .cell {
    width: calc(50% - 1.875rem); }
  .grid-margin-x.medium-up-3 > .cell {
    width: calc(33.3333333333% - 1.875rem); }
  .grid-margin-x.medium-up-4 > .cell {
    width: calc(25% - 1.875rem); }
  .grid-margin-x.medium-up-5 > .cell {
    width: calc(20% - 1.875rem); }
  .grid-margin-x.medium-up-6 > .cell {
    width: calc(16.6666666667% - 1.875rem); }
  .grid-margin-x.medium-up-7 > .cell {
    width: calc(14.2857142857% - 1.875rem); }
  .grid-margin-x.medium-up-8 > .cell {
    width: calc(12.5% - 1.875rem); } }

@media print, screen and (min-width: 64em) {
  .grid-margin-x.large-up-1 > .cell {
    width: calc(100% - 1.875rem); }
  .grid-margin-x.large-up-2 > .cell {
    width: calc(50% - 1.875rem); }
  .grid-margin-x.large-up-3 > .cell {
    width: calc(33.3333333333% - 1.875rem); }
  .grid-margin-x.large-up-4 > .cell {
    width: calc(25% - 1.875rem); }
  .grid-margin-x.large-up-5 > .cell {
    width: calc(20% - 1.875rem); }
  .grid-margin-x.large-up-6 > .cell {
    width: calc(16.6666666667% - 1.875rem); }
  .grid-margin-x.large-up-7 > .cell {
    width: calc(14.2857142857% - 1.875rem); }
  .grid-margin-x.large-up-8 > .cell {
    width: calc(12.5% - 1.875rem); } }

.small-margin-collapse {
  margin-right: 0;
  margin-left: 0; }
  .small-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0; }
  .small-margin-collapse > .small-1 {
    width: 8.3333333333%; }
  .small-margin-collapse > .small-2 {
    width: 16.6666666667%; }
  .small-margin-collapse > .small-3 {
    width: 25%; }
  .small-margin-collapse > .small-4 {
    width: 33.3333333333%; }
  .small-margin-collapse > .small-5 {
    width: 41.6666666667%; }
  .small-margin-collapse > .small-6 {
    width: 50%; }
  .small-margin-collapse > .small-7 {
    width: 58.3333333333%; }
  .small-margin-collapse > .small-8 {
    width: 66.6666666667%; }
  .small-margin-collapse > .small-9 {
    width: 75%; }
  .small-margin-collapse > .small-10 {
    width: 83.3333333333%; }
  .small-margin-collapse > .small-11 {
    width: 91.6666666667%; }
  .small-margin-collapse > .small-12 {
    width: 100%; }
  @media print, screen and (min-width: 40em) {
    .small-margin-collapse > .medium-1 {
      width: 8.3333333333%; }
    .small-margin-collapse > .medium-2 {
      width: 16.6666666667%; }
    .small-margin-collapse > .medium-3 {
      width: 25%; }
    .small-margin-collapse > .medium-4 {
      width: 33.3333333333%; }
    .small-margin-collapse > .medium-5 {
      width: 41.6666666667%; }
    .small-margin-collapse > .medium-6 {
      width: 50%; }
    .small-margin-collapse > .medium-7 {
      width: 58.3333333333%; }
    .small-margin-collapse > .medium-8 {
      width: 66.6666666667%; }
    .small-margin-collapse > .medium-9 {
      width: 75%; }
    .small-margin-collapse > .medium-10 {
      width: 83.3333333333%; }
    .small-margin-collapse > .medium-11 {
      width: 91.6666666667%; }
    .small-margin-collapse > .medium-12 {
      width: 100%; } }
  @media print, screen and (min-width: 64em) {
    .small-margin-collapse > .large-1 {
      width: 8.3333333333%; }
    .small-margin-collapse > .large-2 {
      width: 16.6666666667%; }
    .small-margin-collapse > .large-3 {
      width: 25%; }
    .small-margin-collapse > .large-4 {
      width: 33.3333333333%; }
    .small-margin-collapse > .large-5 {
      width: 41.6666666667%; }
    .small-margin-collapse > .large-6 {
      width: 50%; }
    .small-margin-collapse > .large-7 {
      width: 58.3333333333%; }
    .small-margin-collapse > .large-8 {
      width: 66.6666666667%; }
    .small-margin-collapse > .large-9 {
      width: 75%; }
    .small-margin-collapse > .large-10 {
      width: 83.3333333333%; }
    .small-margin-collapse > .large-11 {
      width: 91.6666666667%; }
    .small-margin-collapse > .large-12 {
      width: 100%; } }

.small-padding-collapse {
  margin-right: 0;
  margin-left: 0; }
  .small-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0; }

@media print, screen and (min-width: 40em) {
  .medium-margin-collapse {
    margin-right: 0;
    margin-left: 0; }
    .medium-margin-collapse > .cell {
      margin-right: 0;
      margin-left: 0; } }

@media print, screen and (min-width: 40em) {
  .medium-margin-collapse > .small-1 {
    width: 8.3333333333%; }
  .medium-margin-collapse > .small-2 {
    width: 16.6666666667%; }
  .medium-margin-collapse > .small-3 {
    width: 25%; }
  .medium-margin-collapse > .small-4 {
    width: 33.3333333333%; }
  .medium-margin-collapse > .small-5 {
    width: 41.6666666667%; }
  .medium-margin-collapse > .small-6 {
    width: 50%; }
  .medium-margin-collapse > .small-7 {
    width: 58.3333333333%; }
  .medium-margin-collapse > .small-8 {
    width: 66.6666666667%; }
  .medium-margin-collapse > .small-9 {
    width: 75%; }
  .medium-margin-collapse > .small-10 {
    width: 83.3333333333%; }
  .medium-margin-collapse > .small-11 {
    width: 91.6666666667%; }
  .medium-margin-collapse > .small-12 {
    width: 100%; } }

@media print, screen and (min-width: 40em) {
  .medium-margin-collapse > .medium-1 {
    width: 8.3333333333%; }
  .medium-margin-collapse > .medium-2 {
    width: 16.6666666667%; }
  .medium-margin-collapse > .medium-3 {
    width: 25%; }
  .medium-margin-collapse > .medium-4 {
    width: 33.3333333333%; }
  .medium-margin-collapse > .medium-5 {
    width: 41.6666666667%; }
  .medium-margin-collapse > .medium-6 {
    width: 50%; }
  .medium-margin-collapse > .medium-7 {
    width: 58.3333333333%; }
  .medium-margin-collapse > .medium-8 {
    width: 66.6666666667%; }
  .medium-margin-collapse > .medium-9 {
    width: 75%; }
  .medium-margin-collapse > .medium-10 {
    width: 83.3333333333%; }
  .medium-margin-collapse > .medium-11 {
    width: 91.6666666667%; }
  .medium-margin-collapse > .medium-12 {
    width: 100%; } }

@media print, screen and (min-width: 64em) {
  .medium-margin-collapse > .large-1 {
    width: 8.3333333333%; }
  .medium-margin-collapse > .large-2 {
    width: 16.6666666667%; }
  .medium-margin-collapse > .large-3 {
    width: 25%; }
  .medium-margin-collapse > .large-4 {
    width: 33.3333333333%; }
  .medium-margin-collapse > .large-5 {
    width: 41.6666666667%; }
  .medium-margin-collapse > .large-6 {
    width: 50%; }
  .medium-margin-collapse > .large-7 {
    width: 58.3333333333%; }
  .medium-margin-collapse > .large-8 {
    width: 66.6666666667%; }
  .medium-margin-collapse > .large-9 {
    width: 75%; }
  .medium-margin-collapse > .large-10 {
    width: 83.3333333333%; }
  .medium-margin-collapse > .large-11 {
    width: 91.6666666667%; }
  .medium-margin-collapse > .large-12 {
    width: 100%; } }

@media print, screen and (min-width: 40em) {
  .medium-padding-collapse {
    margin-right: 0;
    margin-left: 0; }
    .medium-padding-collapse > .cell {
      padding-right: 0;
      padding-left: 0; } }

@media print, screen and (min-width: 64em) {
  .large-margin-collapse {
    margin-right: 0;
    margin-left: 0; }
    .large-margin-collapse > .cell {
      margin-right: 0;
      margin-left: 0; } }

@media print, screen and (min-width: 64em) {
  .large-margin-collapse > .small-1 {
    width: 8.3333333333%; }
  .large-margin-collapse > .small-2 {
    width: 16.6666666667%; }
  .large-margin-collapse > .small-3 {
    width: 25%; }
  .large-margin-collapse > .small-4 {
    width: 33.3333333333%; }
  .large-margin-collapse > .small-5 {
    width: 41.6666666667%; }
  .large-margin-collapse > .small-6 {
    width: 50%; }
  .large-margin-collapse > .small-7 {
    width: 58.3333333333%; }
  .large-margin-collapse > .small-8 {
    width: 66.6666666667%; }
  .large-margin-collapse > .small-9 {
    width: 75%; }
  .large-margin-collapse > .small-10 {
    width: 83.3333333333%; }
  .large-margin-collapse > .small-11 {
    width: 91.6666666667%; }
  .large-margin-collapse > .small-12 {
    width: 100%; } }

@media print, screen and (min-width: 64em) {
  .large-margin-collapse > .medium-1 {
    width: 8.3333333333%; }
  .large-margin-collapse > .medium-2 {
    width: 16.6666666667%; }
  .large-margin-collapse > .medium-3 {
    width: 25%; }
  .large-margin-collapse > .medium-4 {
    width: 33.3333333333%; }
  .large-margin-collapse > .medium-5 {
    width: 41.6666666667%; }
  .large-margin-collapse > .medium-6 {
    width: 50%; }
  .large-margin-collapse > .medium-7 {
    width: 58.3333333333%; }
  .large-margin-collapse > .medium-8 {
    width: 66.6666666667%; }
  .large-margin-collapse > .medium-9 {
    width: 75%; }
  .large-margin-collapse > .medium-10 {
    width: 83.3333333333%; }
  .large-margin-collapse > .medium-11 {
    width: 91.6666666667%; }
  .large-margin-collapse > .medium-12 {
    width: 100%; } }

@media print, screen and (min-width: 64em) {
  .large-margin-collapse > .large-1 {
    width: 8.3333333333%; }
  .large-margin-collapse > .large-2 {
    width: 16.6666666667%; }
  .large-margin-collapse > .large-3 {
    width: 25%; }
  .large-margin-collapse > .large-4 {
    width: 33.3333333333%; }
  .large-margin-collapse > .large-5 {
    width: 41.6666666667%; }
  .large-margin-collapse > .large-6 {
    width: 50%; }
  .large-margin-collapse > .large-7 {
    width: 58.3333333333%; }
  .large-margin-collapse > .large-8 {
    width: 66.6666666667%; }
  .large-margin-collapse > .large-9 {
    width: 75%; }
  .large-margin-collapse > .large-10 {
    width: 83.3333333333%; }
  .large-margin-collapse > .large-11 {
    width: 91.6666666667%; }
  .large-margin-collapse > .large-12 {
    width: 100%; } }

@media print, screen and (min-width: 64em) {
  .large-padding-collapse {
    margin-right: 0;
    margin-left: 0; }
    .large-padding-collapse > .cell {
      padding-right: 0;
      padding-left: 0; } }

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

.grid-margin-x > .small-offset-0 {
  margin-left: calc(0% + 0.625rem); }

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

.grid-margin-x > .small-offset-1 {
  margin-left: calc(8.3333333333% + 0.625rem); }

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

.grid-margin-x > .small-offset-2 {
  margin-left: calc(16.6666666667% + 0.625rem); }

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

.grid-margin-x > .small-offset-3 {
  margin-left: calc(25% + 0.625rem); }

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

.grid-margin-x > .small-offset-4 {
  margin-left: calc(33.3333333333% + 0.625rem); }

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

.grid-margin-x > .small-offset-5 {
  margin-left: calc(41.6666666667% + 0.625rem); }

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

.grid-margin-x > .small-offset-6 {
  margin-left: calc(50% + 0.625rem); }

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

.grid-margin-x > .small-offset-7 {
  margin-left: calc(58.3333333333% + 0.625rem); }

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

.grid-margin-x > .small-offset-8 {
  margin-left: calc(66.6666666667% + 0.625rem); }

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

.grid-margin-x > .small-offset-9 {
  margin-left: calc(75% + 0.625rem); }

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

.grid-margin-x > .small-offset-10 {
  margin-left: calc(83.3333333333% + 0.625rem); }

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

.grid-margin-x > .small-offset-11 {
  margin-left: calc(91.6666666667% + 0.625rem); }

@media print, screen and (min-width: 40em) {
  .medium-offset-0 {
    margin-left: 0%; }
  .grid-margin-x > .medium-offset-0 {
    margin-left: calc(0% + 0.9375rem); }
  .medium-offset-1 {
    margin-left: 8.3333333333%; }
  .grid-margin-x > .medium-offset-1 {
    margin-left: calc(8.3333333333% + 0.9375rem); }
  .medium-offset-2 {
    margin-left: 16.6666666667%; }
  .grid-margin-x > .medium-offset-2 {
    margin-left: calc(16.6666666667% + 0.9375rem); }
  .medium-offset-3 {
    margin-left: 25%; }
  .grid-margin-x > .medium-offset-3 {
    margin-left: calc(25% + 0.9375rem); }
  .medium-offset-4 {
    margin-left: 33.3333333333%; }
  .grid-margin-x > .medium-offset-4 {
    margin-left: calc(33.3333333333% + 0.9375rem); }
  .medium-offset-5 {
    margin-left: 41.6666666667%; }
  .grid-margin-x > .medium-offset-5 {
    margin-left: calc(41.6666666667% + 0.9375rem); }
  .medium-offset-6 {
    margin-left: 50%; }
  .grid-margin-x > .medium-offset-6 {
    margin-left: calc(50% + 0.9375rem); }
  .medium-offset-7 {
    margin-left: 58.3333333333%; }
  .grid-margin-x > .medium-offset-7 {
    margin-left: calc(58.3333333333% + 0.9375rem); }
  .medium-offset-8 {
    margin-left: 66.6666666667%; }
  .grid-margin-x > .medium-offset-8 {
    margin-left: calc(66.6666666667% + 0.9375rem); }
  .medium-offset-9 {
    margin-left: 75%; }
  .grid-margin-x > .medium-offset-9 {
    margin-left: calc(75% + 0.9375rem); }
  .medium-offset-10 {
    margin-left: 83.3333333333%; }
  .grid-margin-x > .medium-offset-10 {
    margin-left: calc(83.3333333333% + 0.9375rem); }
  .medium-offset-11 {
    margin-left: 91.6666666667%; }
  .grid-margin-x > .medium-offset-11 {
    margin-left: calc(91.6666666667% + 0.9375rem); } }

@media print, screen and (min-width: 64em) {
  .large-offset-0 {
    margin-left: 0%; }
  .grid-margin-x > .large-offset-0 {
    margin-left: calc(0% + 0.9375rem); }
  .large-offset-1 {
    margin-left: 8.3333333333%; }
  .grid-margin-x > .large-offset-1 {
    margin-left: calc(8.3333333333% + 0.9375rem); }
  .large-offset-2 {
    margin-left: 16.6666666667%; }
  .grid-margin-x > .large-offset-2 {
    margin-left: calc(16.6666666667% + 0.9375rem); }
  .large-offset-3 {
    margin-left: 25%; }
  .grid-margin-x > .large-offset-3 {
    margin-left: calc(25% + 0.9375rem); }
  .large-offset-4 {
    margin-left: 33.3333333333%; }
  .grid-margin-x > .large-offset-4 {
    margin-left: calc(33.3333333333% + 0.9375rem); }
  .large-offset-5 {
    margin-left: 41.6666666667%; }
  .grid-margin-x > .large-offset-5 {
    margin-left: calc(41.6666666667% + 0.9375rem); }
  .large-offset-6 {
    margin-left: 50%; }
  .grid-margin-x > .large-offset-6 {
    margin-left: calc(50% + 0.9375rem); }
  .large-offset-7 {
    margin-left: 58.3333333333%; }
  .grid-margin-x > .large-offset-7 {
    margin-left: calc(58.3333333333% + 0.9375rem); }
  .large-offset-8 {
    margin-left: 66.6666666667%; }
  .grid-margin-x > .large-offset-8 {
    margin-left: calc(66.6666666667% + 0.9375rem); }
  .large-offset-9 {
    margin-left: 75%; }
  .grid-margin-x > .large-offset-9 {
    margin-left: calc(75% + 0.9375rem); }
  .large-offset-10 {
    margin-left: 83.3333333333%; }
  .grid-margin-x > .large-offset-10 {
    margin-left: calc(83.3333333333% + 0.9375rem); }
  .large-offset-11 {
    margin-left: 91.6666666667%; }
  .grid-margin-x > .large-offset-11 {
    margin-left: calc(91.6666666667% + 0.9375rem); } }

.grid-y {
  display: flex;
  flex-flow: column nowrap; }
  .grid-y > .cell {
    width: auto;
    max-width: none; }
  .grid-y > .auto {
    height: auto; }
  .grid-y > .shrink {
    height: auto; }
  .grid-y > .small-shrink, .grid-y > .small-full, .grid-y > .small-1, .grid-y > .small-2, .grid-y > .small-3, .grid-y > .small-4, .grid-y > .small-5, .grid-y > .small-6, .grid-y > .small-7, .grid-y > .small-8, .grid-y > .small-9, .grid-y > .small-10, .grid-y > .small-11, .grid-y > .small-12 {
    flex-basis: auto; }
  @media print, screen and (min-width: 40em) {
    .grid-y > .medium-shrink, .grid-y > .medium-full, .grid-y > .medium-1, .grid-y > .medium-2, .grid-y > .medium-3, .grid-y > .medium-4, .grid-y > .medium-5, .grid-y > .medium-6, .grid-y > .medium-7, .grid-y > .medium-8, .grid-y > .medium-9, .grid-y > .medium-10, .grid-y > .medium-11, .grid-y > .medium-12 {
      flex-basis: auto; } }
  @media print, screen and (min-width: 64em) {
    .grid-y > .large-shrink, .grid-y > .large-full, .grid-y > .large-1, .grid-y > .large-2, .grid-y > .large-3, .grid-y > .large-4, .grid-y > .large-5, .grid-y > .large-6, .grid-y > .large-7, .grid-y > .large-8, .grid-y > .large-9, .grid-y > .large-10, .grid-y > .large-11, .grid-y > .large-12 {
      flex-basis: auto; } }
  .grid-y > .small-1, .grid-y > .small-2, .grid-y > .small-3, .grid-y > .small-4, .grid-y > .small-5, .grid-y > .small-6, .grid-y > .small-7, .grid-y > .small-8, .grid-y > .small-9, .grid-y > .small-10, .grid-y > .small-11, .grid-y > .small-12 {
    flex: 0 0 auto; }
  .grid-y > .small-1 {
    height: 8.3333333333%; }
  .grid-y > .small-2 {
    height: 16.6666666667%; }
  .grid-y > .small-3 {
    height: 25%; }
  .grid-y > .small-4 {
    height: 33.3333333333%; }
  .grid-y > .small-5 {
    height: 41.6666666667%; }
  .grid-y > .small-6 {
    height: 50%; }
  .grid-y > .small-7 {
    height: 58.3333333333%; }
  .grid-y > .small-8 {
    height: 66.6666666667%; }
  .grid-y > .small-9 {
    height: 75%; }
  .grid-y > .small-10 {
    height: 83.3333333333%; }
  .grid-y > .small-11 {
    height: 91.6666666667%; }
  .grid-y > .small-12 {
    height: 100%; }
  @media print, screen and (min-width: 40em) {
    .grid-y > .medium-auto {
      flex: 1 1 0px;
      height: auto; }
    .grid-y > .medium-shrink, .grid-y > .medium-1, .grid-y > .medium-2, .grid-y > .medium-3, .grid-y > .medium-4, .grid-y > .medium-5, .grid-y > .medium-6, .grid-y > .medium-7, .grid-y > .medium-8, .grid-y > .medium-9, .grid-y > .medium-10, .grid-y > .medium-11, .grid-y > .medium-12 {
      flex: 0 0 auto; }
    .grid-y > .medium-shrink {
      height: auto; }
    .grid-y > .medium-1 {
      height: 8.3333333333%; }
    .grid-y > .medium-2 {
      height: 16.6666666667%; }
    .grid-y > .medium-3 {
      height: 25%; }
    .grid-y > .medium-4 {
      height: 33.3333333333%; }
    .grid-y > .medium-5 {
      height: 41.6666666667%; }
    .grid-y > .medium-6 {
      height: 50%; }
    .grid-y > .medium-7 {
      height: 58.3333333333%; }
    .grid-y > .medium-8 {
      height: 66.6666666667%; }
    .grid-y > .medium-9 {
      height: 75%; }
    .grid-y > .medium-10 {
      height: 83.3333333333%; }
    .grid-y > .medium-11 {
      height: 91.6666666667%; }
    .grid-y > .medium-12 {
      height: 100%; } }
  @media print, screen and (min-width: 64em) {
    .grid-y > .large-auto {
      flex: 1 1 0px;
      height: auto; }
    .grid-y > .large-shrink, .grid-y > .large-1, .grid-y > .large-2, .grid-y > .large-3, .grid-y > .large-4, .grid-y > .large-5, .grid-y > .large-6, .grid-y > .large-7, .grid-y > .large-8, .grid-y > .large-9, .grid-y > .large-10, .grid-y > .large-11, .grid-y > .large-12 {
      flex: 0 0 auto; }
    .grid-y > .large-shrink {
      height: auto; }
    .grid-y > .large-1 {
      height: 8.3333333333%; }
    .grid-y > .large-2 {
      height: 16.6666666667%; }
    .grid-y > .large-3 {
      height: 25%; }
    .grid-y > .large-4 {
      height: 33.3333333333%; }
    .grid-y > .large-5 {
      height: 41.6666666667%; }
    .grid-y > .large-6 {
      height: 50%; }
    .grid-y > .large-7 {
      height: 58.3333333333%; }
    .grid-y > .large-8 {
      height: 66.6666666667%; }
    .grid-y > .large-9 {
      height: 75%; }
    .grid-y > .large-10 {
      height: 83.3333333333%; }
    .grid-y > .large-11 {
      height: 91.6666666667%; }
    .grid-y > .large-12 {
      height: 100%; } }

.grid-padding-y .grid-padding-y {
  margin-top: -0.625rem;
  margin-bottom: -0.625rem; }
  @media print, screen and (min-width: 40em) {
    .grid-padding-y .grid-padding-y {
      margin-top: -0.9375rem;
      margin-bottom: -0.9375rem; } }

.grid-padding-y > .cell {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem; }
  @media print, screen and (min-width: 40em) {
    .grid-padding-y > .cell {
      padding-top: 0.9375rem;
      padding-bottom: 0.9375rem; } }

.grid-margin-y {
  margin-top: -0.625rem;
  margin-bottom: -0.625rem; }
  @media print, screen and (min-width: 40em) {
    .grid-margin-y {
      margin-top: -0.9375rem;
      margin-bottom: -0.9375rem; } }
  .grid-margin-y > .cell {
    height: calc(100% - 1.25rem);
    margin-top: 0.625rem;
    margin-bottom: 0.625rem; }
  @media print, screen and (min-width: 40em) {
    .grid-margin-y > .cell {
      height: calc(100% - 1.875rem);
      margin-top: 0.9375rem;
      margin-bottom: 0.9375rem; } }
  .grid-margin-y > .auto {
    height: auto; }
  .grid-margin-y > .shrink {
    height: auto; }
  .grid-margin-y > .small-1 {
    height: calc(8.3333333333% - 1.25rem); }
  .grid-margin-y > .small-2 {
    height: calc(16.6666666667% - 1.25rem); }
  .grid-margin-y > .small-3 {
    height: calc(25% - 1.25rem); }
  .grid-margin-y > .small-4 {
    height: calc(33.3333333333% - 1.25rem); }
  .grid-margin-y > .small-5 {
    height: calc(41.6666666667% - 1.25rem); }
  .grid-margin-y > .small-6 {
    height: calc(50% - 1.25rem); }
  .grid-margin-y > .small-7 {
    height: calc(58.3333333333% - 1.25rem); }
  .grid-margin-y > .small-8 {
    height: calc(66.6666666667% - 1.25rem); }
  .grid-margin-y > .small-9 {
    height: calc(75% - 1.25rem); }
  .grid-margin-y > .small-10 {
    height: calc(83.3333333333% - 1.25rem); }
  .grid-margin-y > .small-11 {
    height: calc(91.6666666667% - 1.25rem); }
  .grid-margin-y > .small-12 {
    height: calc(100% - 1.25rem); }
  @media print, screen and (min-width: 40em) {
    .grid-margin-y > .auto {
      height: auto; }
    .grid-margin-y > .shrink {
      height: auto; }
    .grid-margin-y > .small-1 {
      height: calc(8.3333333333% - 1.875rem); }
    .grid-margin-y > .small-2 {
      height: calc(16.6666666667% - 1.875rem); }
    .grid-margin-y > .small-3 {
      height: calc(25% - 1.875rem); }
    .grid-margin-y > .small-4 {
      height: calc(33.3333333333% - 1.875rem); }
    .grid-margin-y > .small-5 {
      height: calc(41.6666666667% - 1.875rem); }
    .grid-margin-y > .small-6 {
      height: calc(50% - 1.875rem); }
    .grid-margin-y > .small-7 {
      height: calc(58.3333333333% - 1.875rem); }
    .grid-margin-y > .small-8 {
      height: calc(66.6666666667% - 1.875rem); }
    .grid-margin-y > .small-9 {
      height: calc(75% - 1.875rem); }
    .grid-margin-y > .small-10 {
      height: calc(83.3333333333% - 1.875rem); }
    .grid-margin-y > .small-11 {
      height: calc(91.6666666667% - 1.875rem); }
    .grid-margin-y > .small-12 {
      height: calc(100% - 1.875rem); }
    .grid-margin-y > .medium-auto {
      height: auto; }
    .grid-margin-y > .medium-shrink {
      height: auto; }
    .grid-margin-y > .medium-1 {
      height: calc(8.3333333333% - 1.875rem); }
    .grid-margin-y > .medium-2 {
      height: calc(16.6666666667% - 1.875rem); }
    .grid-margin-y > .medium-3 {
      height: calc(25% - 1.875rem); }
    .grid-margin-y > .medium-4 {
      height: calc(33.3333333333% - 1.875rem); }
    .grid-margin-y > .medium-5 {
      height: calc(41.6666666667% - 1.875rem); }
    .grid-margin-y > .medium-6 {
      height: calc(50% - 1.875rem); }
    .grid-margin-y > .medium-7 {
      height: calc(58.3333333333% - 1.875rem); }
    .grid-margin-y > .medium-8 {
      height: calc(66.6666666667% - 1.875rem); }
    .grid-margin-y > .medium-9 {
      height: calc(75% - 1.875rem); }
    .grid-margin-y > .medium-10 {
      height: calc(83.3333333333% - 1.875rem); }
    .grid-margin-y > .medium-11 {
      height: calc(91.6666666667% - 1.875rem); }
    .grid-margin-y > .medium-12 {
      height: calc(100% - 1.875rem); } }
  @media print, screen and (min-width: 64em) {
    .grid-margin-y > .large-auto {
      height: auto; }
    .grid-margin-y > .large-shrink {
      height: auto; }
    .grid-margin-y > .large-1 {
      height: calc(8.3333333333% - 1.875rem); }
    .grid-margin-y > .large-2 {
      height: calc(16.6666666667% - 1.875rem); }
    .grid-margin-y > .large-3 {
      height: calc(25% - 1.875rem); }
    .grid-margin-y > .large-4 {
      height: calc(33.3333333333% - 1.875rem); }
    .grid-margin-y > .large-5 {
      height: calc(41.6666666667% - 1.875rem); }
    .grid-margin-y > .large-6 {
      height: calc(50% - 1.875rem); }
    .grid-margin-y > .large-7 {
      height: calc(58.3333333333% - 1.875rem); }
    .grid-margin-y > .large-8 {
      height: calc(66.6666666667% - 1.875rem); }
    .grid-margin-y > .large-9 {
      height: calc(75% - 1.875rem); }
    .grid-margin-y > .large-10 {
      height: calc(83.3333333333% - 1.875rem); }
    .grid-margin-y > .large-11 {
      height: calc(91.6666666667% - 1.875rem); }
    .grid-margin-y > .large-12 {
      height: calc(100% - 1.875rem); } }

.grid-frame {
  overflow: hidden;
  position: relative;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 100vw; }

.cell .grid-frame {
  width: 100%; }

.cell-block {
  overflow-x: auto;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar; }

.cell-block-y {
  overflow-y: auto;
  max-height: 100%;
  min-height: 100%;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar; }

.cell-block-container {
  display: flex;
  flex-direction: column;
  max-height: 100%; }
  .cell-block-container > .grid-x {
    max-height: 100%;
    flex-wrap: nowrap; }

@media print, screen and (min-width: 40em) {
  .medium-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100vw; }
  .cell .medium-grid-frame {
    width: 100%; }
  .medium-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar; }
  .medium-cell-block-container {
    display: flex;
    flex-direction: column;
    max-height: 100%; }
    .medium-cell-block-container > .grid-x {
      max-height: 100%;
      flex-wrap: nowrap; }
  .medium-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar; } }

@media print, screen and (min-width: 64em) {
  .large-grid-frame {
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100vw; }
  .cell .large-grid-frame {
    width: 100%; }
  .large-cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar; }
  .large-cell-block-container {
    display: flex;
    flex-direction: column;
    max-height: 100%; }
    .large-cell-block-container > .grid-x {
      max-height: 100%;
      flex-wrap: nowrap; }
  .large-cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar; } }

.grid-y.grid-frame {
  width: auto;
  overflow: hidden;
  position: relative;
  flex-wrap: nowrap;
  align-items: stretch;
  height: 100vh; }

@media print, screen and (min-width: 40em) {
  .grid-y.medium-grid-frame {
    width: auto;
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    height: 100vh; } }

@media print, screen and (min-width: 64em) {
  .grid-y.large-grid-frame {
    width: auto;
    overflow: hidden;
    position: relative;
    flex-wrap: nowrap;
    align-items: stretch;
    height: 100vh; } }

.cell .grid-y.grid-frame {
  height: 100%; }

@media print, screen and (min-width: 40em) {
  .cell .grid-y.medium-grid-frame {
    height: 100%; } }

@media print, screen and (min-width: 64em) {
  .cell .grid-y.large-grid-frame {
    height: 100%; } }

.grid-margin-y {
  margin-top: -0.625rem;
  margin-bottom: -0.625rem; }
  @media print, screen and (min-width: 40em) {
    .grid-margin-y {
      margin-top: -0.9375rem;
      margin-bottom: -0.9375rem; } }
  .grid-margin-y > .cell {
    height: calc(100% - 1.25rem);
    margin-top: 0.625rem;
    margin-bottom: 0.625rem; }
  @media print, screen and (min-width: 40em) {
    .grid-margin-y > .cell {
      height: calc(100% - 1.875rem);
      margin-top: 0.9375rem;
      margin-bottom: 0.9375rem; } }
  .grid-margin-y > .auto {
    height: auto; }
  .grid-margin-y > .shrink {
    height: auto; }
  .grid-margin-y > .small-1 {
    height: calc(8.3333333333% - 1.25rem); }
  .grid-margin-y > .small-2 {
    height: calc(16.6666666667% - 1.25rem); }
  .grid-margin-y > .small-3 {
    height: calc(25% - 1.25rem); }
  .grid-margin-y > .small-4 {
    height: calc(33.3333333333% - 1.25rem); }
  .grid-margin-y > .small-5 {
    height: calc(41.6666666667% - 1.25rem); }
  .grid-margin-y > .small-6 {
    height: calc(50% - 1.25rem); }
  .grid-margin-y > .small-7 {
    height: calc(58.3333333333% - 1.25rem); }
  .grid-margin-y > .small-8 {
    height: calc(66.6666666667% - 1.25rem); }
  .grid-margin-y > .small-9 {
    height: calc(75% - 1.25rem); }
  .grid-margin-y > .small-10 {
    height: calc(83.3333333333% - 1.25rem); }
  .grid-margin-y > .small-11 {
    height: calc(91.6666666667% - 1.25rem); }
  .grid-margin-y > .small-12 {
    height: calc(100% - 1.25rem); }
  @media print, screen and (min-width: 40em) {
    .grid-margin-y > .auto {
      height: auto; }
    .grid-margin-y > .shrink {
      height: auto; }
    .grid-margin-y > .small-1 {
      height: calc(8.3333333333% - 1.875rem); }
    .grid-margin-y > .small-2 {
      height: calc(16.6666666667% - 1.875rem); }
    .grid-margin-y > .small-3 {
      height: calc(25% - 1.875rem); }
    .grid-margin-y > .small-4 {
      height: calc(33.3333333333% - 1.875rem); }
    .grid-margin-y > .small-5 {
      height: calc(41.6666666667% - 1.875rem); }
    .grid-margin-y > .small-6 {
      height: calc(50% - 1.875rem); }
    .grid-margin-y > .small-7 {
      height: calc(58.3333333333% - 1.875rem); }
    .grid-margin-y > .small-8 {
      height: calc(66.6666666667% - 1.875rem); }
    .grid-margin-y > .small-9 {
      height: calc(75% - 1.875rem); }
    .grid-margin-y > .small-10 {
      height: calc(83.3333333333% - 1.875rem); }
    .grid-margin-y > .small-11 {
      height: calc(91.6666666667% - 1.875rem); }
    .grid-margin-y > .small-12 {
      height: calc(100% - 1.875rem); }
    .grid-margin-y > .medium-auto {
      height: auto; }
    .grid-margin-y > .medium-shrink {
      height: auto; }
    .grid-margin-y > .medium-1 {
      height: calc(8.3333333333% - 1.875rem); }
    .grid-margin-y > .medium-2 {
      height: calc(16.6666666667% - 1.875rem); }
    .grid-margin-y > .medium-3 {
      height: calc(25% - 1.875rem); }
    .grid-margin-y > .medium-4 {
      height: calc(33.3333333333% - 1.875rem); }
    .grid-margin-y > .medium-5 {
      height: calc(41.6666666667% - 1.875rem); }
    .grid-margin-y > .medium-6 {
      height: calc(50% - 1.875rem); }
    .grid-margin-y > .medium-7 {
      height: calc(58.3333333333% - 1.875rem); }
    .grid-margin-y > .medium-8 {
      height: calc(66.6666666667% - 1.875rem); }
    .grid-margin-y > .medium-9 {
      height: calc(75% - 1.875rem); }
    .grid-margin-y > .medium-10 {
      height: calc(83.3333333333% - 1.875rem); }
    .grid-margin-y > .medium-11 {
      height: calc(91.6666666667% - 1.875rem); }
    .grid-margin-y > .medium-12 {
      height: calc(100% - 1.875rem); } }
  @media print, screen and (min-width: 64em) {
    .grid-margin-y > .large-auto {
      height: auto; }
    .grid-margin-y > .large-shrink {
      height: auto; }
    .grid-margin-y > .large-1 {
      height: calc(8.3333333333% - 1.875rem); }
    .grid-margin-y > .large-2 {
      height: calc(16.6666666667% - 1.875rem); }
    .grid-margin-y > .large-3 {
      height: calc(25% - 1.875rem); }
    .grid-margin-y > .large-4 {
      height: calc(33.3333333333% - 1.875rem); }
    .grid-margin-y > .large-5 {
      height: calc(41.6666666667% - 1.875rem); }
    .grid-margin-y > .large-6 {
      height: calc(50% - 1.875rem); }
    .grid-margin-y > .large-7 {
      height: calc(58.3333333333% - 1.875rem); }
    .grid-margin-y > .large-8 {
      height: calc(66.6666666667% - 1.875rem); }
    .grid-margin-y > .large-9 {
      height: calc(75% - 1.875rem); }
    .grid-margin-y > .large-10 {
      height: calc(83.3333333333% - 1.875rem); }
    .grid-margin-y > .large-11 {
      height: calc(91.6666666667% - 1.875rem); }
    .grid-margin-y > .large-12 {
      height: calc(100% - 1.875rem); } }

.grid-frame.grid-margin-y {
  height: calc(100vh + 1.25rem); }
  @media print, screen and (min-width: 40em) {
    .grid-frame.grid-margin-y {
      height: calc(100vh + 1.875rem); } }
  @media print, screen and (min-width: 64em) {
    .grid-frame.grid-margin-y {
      height: calc(100vh + 1.875rem); } }

@media print, screen and (min-width: 40em) {
  .grid-margin-y.medium-grid-frame {
    height: calc(100vh + 1.875rem); } }

@media print, screen and (min-width: 64em) {
  .grid-margin-y.large-grid-frame {
    height: calc(100vh + 1.875rem); } }

.button {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 1rem 0;
  padding: 0.85em 1em;
  border: 1px solid transparent;
  border-radius: 0;
  transition: background-color 0.25s ease-out, color 0.25s ease-out;
  font-family: inherit;
  font-size: 0.9rem;
  -webkit-appearance: none;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  background-color: #000000;
  color: #fefefe; }
  [data-whatinput='mouse'] .button {
    outline: 0; }
  .button:hover, .button:focus {
    background-color: black;
    color: #fefefe; }
  .button.tiny {
    font-size: 0.6rem; }
  .button.small {
    font-size: 0.75rem; }
  .button.large {
    font-size: 1.25rem; }
  .button.expanded {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-left: 0; }
  .button.primary {
    background-color: #000000;
    color: #fefefe; }
    .button.primary:hover, .button.primary:focus {
      background-color: black;
      color: #fefefe; }
  .button.secondary {
    background-color: #444444;
    color: #fefefe; }
    .button.secondary:hover, .button.secondary:focus {
      background-color: #363636;
      color: #fefefe; }
  .button.success {
    background-color: #3adb76;
    color: #0a0a0a; }
    .button.success:hover, .button.success:focus {
      background-color: #22bb5b;
      color: #0a0a0a; }
  .button.warning {
    background-color: #ffae00;
    color: #0a0a0a; }
    .button.warning:hover, .button.warning:focus {
      background-color: #cc8b00;
      color: #0a0a0a; }
  .button.alert {
    background-color: #cc4b37;
    color: #fefefe; }
    .button.alert:hover, .button.alert:focus {
      background-color: #a53b2a;
      color: #fefefe; }
  .button.disabled, .button[disabled] {
    opacity: 0.25;
    cursor: not-allowed; }
    .button.disabled, .button.disabled:hover, .button.disabled:focus, .button[disabled], .button[disabled]:hover, .button[disabled]:focus {
      background-color: #000000;
      color: #fefefe; }
    .button.disabled.primary, .button[disabled].primary {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.primary, .button.disabled.primary:hover, .button.disabled.primary:focus, .button[disabled].primary, .button[disabled].primary:hover, .button[disabled].primary:focus {
        background-color: #000000;
        color: #fefefe; }
    .button.disabled.secondary, .button[disabled].secondary {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.secondary, .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
        background-color: #444444;
        color: #fefefe; }
    .button.disabled.success, .button[disabled].success {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.success, .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success, .button[disabled].success:hover, .button[disabled].success:focus {
        background-color: #3adb76;
        color: #0a0a0a; }
    .button.disabled.warning, .button[disabled].warning {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.warning, .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning, .button[disabled].warning:hover, .button[disabled].warning:focus {
        background-color: #ffae00;
        color: #0a0a0a; }
    .button.disabled.alert, .button[disabled].alert {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled.alert, .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert, .button[disabled].alert:hover, .button[disabled].alert:focus {
        background-color: #cc4b37;
        color: #fefefe; }
  .button.hollow {
    border: 1px solid #000000;
    color: #000000; }
    .button.hollow, .button.hollow:hover, .button.hollow:focus {
      background-color: transparent; }
    .button.hollow.disabled, .button.hollow.disabled:hover, .button.hollow.disabled:focus, .button.hollow[disabled], .button.hollow[disabled]:hover, .button.hollow[disabled]:focus {
      background-color: transparent; }
    .button.hollow:hover, .button.hollow:focus {
      border-color: black;
      color: black; }
      .button.hollow:hover.disabled, .button.hollow:hover[disabled], .button.hollow:focus.disabled, .button.hollow:focus[disabled] {
        border: 1px solid #000000;
        color: #000000; }
    .button.hollow.primary {
      border: 1px solid #000000;
      color: #000000; }
      .button.hollow.primary:hover, .button.hollow.primary:focus {
        border-color: black;
        color: black; }
        .button.hollow.primary:hover.disabled, .button.hollow.primary:hover[disabled], .button.hollow.primary:focus.disabled, .button.hollow.primary:focus[disabled] {
          border: 1px solid #000000;
          color: #000000; }
    .button.hollow.secondary {
      border: 1px solid #444444;
      color: #444444; }
      .button.hollow.secondary:hover, .button.hollow.secondary:focus {
        border-color: #222222;
        color: #222222; }
        .button.hollow.secondary:hover.disabled, .button.hollow.secondary:hover[disabled], .button.hollow.secondary:focus.disabled, .button.hollow.secondary:focus[disabled] {
          border: 1px solid #444444;
          color: #444444; }
    .button.hollow.success {
      border: 1px solid #3adb76;
      color: #3adb76; }
      .button.hollow.success:hover, .button.hollow.success:focus {
        border-color: #157539;
        color: #157539; }
        .button.hollow.success:hover.disabled, .button.hollow.success:hover[disabled], .button.hollow.success:focus.disabled, .button.hollow.success:focus[disabled] {
          border: 1px solid #3adb76;
          color: #3adb76; }
    .button.hollow.warning {
      border: 1px solid #ffae00;
      color: #ffae00; }
      .button.hollow.warning:hover, .button.hollow.warning:focus {
        border-color: #805700;
        color: #805700; }
        .button.hollow.warning:hover.disabled, .button.hollow.warning:hover[disabled], .button.hollow.warning:focus.disabled, .button.hollow.warning:focus[disabled] {
          border: 1px solid #ffae00;
          color: #ffae00; }
    .button.hollow.alert {
      border: 1px solid #cc4b37;
      color: #cc4b37; }
      .button.hollow.alert:hover, .button.hollow.alert:focus {
        border-color: #67251a;
        color: #67251a; }
        .button.hollow.alert:hover.disabled, .button.hollow.alert:hover[disabled], .button.hollow.alert:focus.disabled, .button.hollow.alert:focus[disabled] {
          border: 1px solid #cc4b37;
          color: #cc4b37; }
  .button.clear {
    border: 1px solid #000000;
    color: #000000; }
    .button.clear, .button.clear:hover, .button.clear:focus {
      background-color: transparent; }
    .button.clear.disabled, .button.clear.disabled:hover, .button.clear.disabled:focus, .button.clear[disabled], .button.clear[disabled]:hover, .button.clear[disabled]:focus {
      background-color: transparent; }
    .button.clear:hover, .button.clear:focus {
      border-color: black;
      color: black; }
      .button.clear:hover.disabled, .button.clear:hover[disabled], .button.clear:focus.disabled, .button.clear:focus[disabled] {
        border: 1px solid #000000;
        color: #000000; }
    .button.clear, .button.clear.disabled, .button.clear[disabled], .button.clear:hover, .button.clear:hover.disabled, .button.clear:hover[disabled], .button.clear:focus, .button.clear:focus.disabled, .button.clear:focus[disabled] {
      border-color: transparent; }
    .button.clear.primary {
      border: 1px solid #000000;
      color: #000000; }
      .button.clear.primary:hover, .button.clear.primary:focus {
        border-color: black;
        color: black; }
        .button.clear.primary:hover.disabled, .button.clear.primary:hover[disabled], .button.clear.primary:focus.disabled, .button.clear.primary:focus[disabled] {
          border: 1px solid #000000;
          color: #000000; }
      .button.clear.primary, .button.clear.primary.disabled, .button.clear.primary[disabled], .button.clear.primary:hover, .button.clear.primary:hover.disabled, .button.clear.primary:hover[disabled], .button.clear.primary:focus, .button.clear.primary:focus.disabled, .button.clear.primary:focus[disabled] {
        border-color: transparent; }
    .button.clear.secondary {
      border: 1px solid #444444;
      color: #444444; }
      .button.clear.secondary:hover, .button.clear.secondary:focus {
        border-color: #222222;
        color: #222222; }
        .button.clear.secondary:hover.disabled, .button.clear.secondary:hover[disabled], .button.clear.secondary:focus.disabled, .button.clear.secondary:focus[disabled] {
          border: 1px solid #444444;
          color: #444444; }
      .button.clear.secondary, .button.clear.secondary.disabled, .button.clear.secondary[disabled], .button.clear.secondary:hover, .button.clear.secondary:hover.disabled, .button.clear.secondary:hover[disabled], .button.clear.secondary:focus, .button.clear.secondary:focus.disabled, .button.clear.secondary:focus[disabled] {
        border-color: transparent; }
    .button.clear.success {
      border: 1px solid #3adb76;
      color: #3adb76; }
      .button.clear.success:hover, .button.clear.success:focus {
        border-color: #157539;
        color: #157539; }
        .button.clear.success:hover.disabled, .button.clear.success:hover[disabled], .button.clear.success:focus.disabled, .button.clear.success:focus[disabled] {
          border: 1px solid #3adb76;
          color: #3adb76; }
      .button.clear.success, .button.clear.success.disabled, .button.clear.success[disabled], .button.clear.success:hover, .button.clear.success:hover.disabled, .button.clear.success:hover[disabled], .button.clear.success:focus, .button.clear.success:focus.disabled, .button.clear.success:focus[disabled] {
        border-color: transparent; }
    .button.clear.warning {
      border: 1px solid #ffae00;
      color: #ffae00; }
      .button.clear.warning:hover, .button.clear.warning:focus {
        border-color: #805700;
        color: #805700; }
        .button.clear.warning:hover.disabled, .button.clear.warning:hover[disabled], .button.clear.warning:focus.disabled, .button.clear.warning:focus[disabled] {
          border: 1px solid #ffae00;
          color: #ffae00; }
      .button.clear.warning, .button.clear.warning.disabled, .button.clear.warning[disabled], .button.clear.warning:hover, .button.clear.warning:hover.disabled, .button.clear.warning:hover[disabled], .button.clear.warning:focus, .button.clear.warning:focus.disabled, .button.clear.warning:focus[disabled] {
        border-color: transparent; }
    .button.clear.alert {
      border: 1px solid #cc4b37;
      color: #cc4b37; }
      .button.clear.alert:hover, .button.clear.alert:focus {
        border-color: #67251a;
        color: #67251a; }
        .button.clear.alert:hover.disabled, .button.clear.alert:hover[disabled], .button.clear.alert:focus.disabled, .button.clear.alert:focus[disabled] {
          border: 1px solid #cc4b37;
          color: #cc4b37; }
      .button.clear.alert, .button.clear.alert.disabled, .button.clear.alert[disabled], .button.clear.alert:hover, .button.clear.alert:hover.disabled, .button.clear.alert:hover[disabled], .button.clear.alert:focus, .button.clear.alert:focus.disabled, .button.clear.alert:focus[disabled] {
        border-color: transparent; }
  .button.dropdown::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.4em;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #fefefe transparent transparent;
    position: relative;
    top: 0.4em;
    display: inline-block;
    float: right;
    margin-left: 1em; }
  .button.dropdown.hollow::after, .button.dropdown.clear::after {
    border-top-color: #000000; }
  .button.dropdown.hollow.primary::after, .button.dropdown.clear.primary::after {
    border-top-color: #000000; }
  .button.dropdown.hollow.secondary::after, .button.dropdown.clear.secondary::after {
    border-top-color: #444444; }
  .button.dropdown.hollow.success::after, .button.dropdown.clear.success::after {
    border-top-color: #3adb76; }
  .button.dropdown.hollow.warning::after, .button.dropdown.clear.warning::after {
    border-top-color: #ffae00; }
  .button.dropdown.hollow.alert::after, .button.dropdown.clear.alert::after {
    border-top-color: #cc4b37; }
  .button.arrow-only::after {
    top: -0.1em;
    float: none;
    margin-left: 0; }

a.button:hover, a.button:focus {
  text-decoration: none; }

.button-group {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch; }
  .button-group::before, .button-group::after {
    display: table;
    content: ' ';
    flex-basis: 0;
    order: 1; }
  .button-group::after {
    clear: both; }
  .button-group .button {
    margin: 0;
    margin-right: 1px;
    margin-bottom: 1px;
    font-size: 0.9rem;
    flex: 0 0 auto; }
    .button-group .button:last-child {
      margin-right: 0; }
  .button-group.tiny .button {
    font-size: 0.6rem; }
  .button-group.small .button {
    font-size: 0.75rem; }
  .button-group.large .button {
    font-size: 1.25rem; }
  .button-group.expanded .button {
    flex: 1 1 0px; }
  .button-group.primary .button {
    background-color: #000000;
    color: #fefefe; }
    .button-group.primary .button:hover, .button-group.primary .button:focus {
      background-color: black;
      color: #fefefe; }
  .button-group.secondary .button {
    background-color: #444444;
    color: #fefefe; }
    .button-group.secondary .button:hover, .button-group.secondary .button:focus {
      background-color: #363636;
      color: #fefefe; }
  .button-group.success .button {
    background-color: #3adb76;
    color: #0a0a0a; }
    .button-group.success .button:hover, .button-group.success .button:focus {
      background-color: #22bb5b;
      color: #0a0a0a; }
  .button-group.warning .button {
    background-color: #ffae00;
    color: #0a0a0a; }
    .button-group.warning .button:hover, .button-group.warning .button:focus {
      background-color: #cc8b00;
      color: #0a0a0a; }
  .button-group.alert .button {
    background-color: #cc4b37;
    color: #fefefe; }
    .button-group.alert .button:hover, .button-group.alert .button:focus {
      background-color: #a53b2a;
      color: #fefefe; }
  .button-group.stacked, .button-group.stacked-for-small, .button-group.stacked-for-medium {
    flex-wrap: wrap; }
    .button-group.stacked .button, .button-group.stacked-for-small .button, .button-group.stacked-for-medium .button {
      flex: 0 0 100%; }
      .button-group.stacked .button:last-child, .button-group.stacked-for-small .button:last-child, .button-group.stacked-for-medium .button:last-child {
        margin-bottom: 0; }
    .button-group.stacked.expanded .button, .button-group.stacked-for-small.expanded .button, .button-group.stacked-for-medium.expanded .button {
      flex: 1 1 0px; }
  @media print, screen and (min-width: 40em) {
    .button-group.stacked-for-small .button {
      flex: 0 0 auto;
      margin-bottom: 0; } }
  @media print, screen and (min-width: 64em) {
    .button-group.stacked-for-medium .button {
      flex: 0 0 auto;
      margin-bottom: 0; } }
  @media screen and (max-width: 39.99875em) {
    .button-group.stacked-for-small.expanded {
      display: block; }
      .button-group.stacked-for-small.expanded .button {
        display: block;
        margin-right: 0; } }
  @media screen and (max-width: 63.99875em) {
    .button-group.stacked-for-medium.expanded {
      display: block; }
      .button-group.stacked-for-medium.expanded .button {
        display: block;
        margin-right: 0; } }

.close-button {
  position: absolute;
  color: #8a8a8a;
  cursor: pointer; }
  [data-whatinput='mouse'] .close-button {
    outline: 0; }
  .close-button:hover, .close-button:focus {
    color: #0a0a0a; }
  .close-button.small {
    right: 0.66rem;
    top: 0.33em;
    font-size: 1.5em;
    line-height: 1; }
  .close-button, .close-button.medium {
    right: 1rem;
    top: 0.5rem;
    font-size: 2em;
    line-height: 1; }

.label {
  display: inline-block;
  padding: 0.33333rem 0.5rem;
  border-radius: 0;
  font-size: 0.8rem;
  line-height: 1;
  white-space: nowrap;
  cursor: default;
  background: #000000;
  color: #fefefe; }
  .label.primary {
    background: #000000;
    color: #fefefe; }
  .label.secondary {
    background: #444444;
    color: #fefefe; }
  .label.success {
    background: #3adb76;
    color: #0a0a0a; }
  .label.warning {
    background: #ffae00;
    color: #0a0a0a; }
  .label.alert {
    background: #cc4b37;
    color: #fefefe; }

.progress {
  height: 1rem;
  margin-bottom: 1rem;
  border-radius: 0;
  background-color: #cacaca; }
  .progress.primary .progress-meter {
    background-color: #000000; }
  .progress.secondary .progress-meter {
    background-color: #444444; }
  .progress.success .progress-meter {
    background-color: #3adb76; }
  .progress.warning .progress-meter {
    background-color: #ffae00; }
  .progress.alert .progress-meter {
    background-color: #cc4b37; }

.progress-meter {
  position: relative;
  display: block;
  width: 0%;
  height: 100%;
  background-color: #000000; }

.progress-meter-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  font-size: 0.75rem;
  font-weight: bold;
  color: #fefefe;
  white-space: nowrap; }

.slider {
  position: relative;
  height: 0.5rem;
  margin-top: 1.25rem;
  margin-bottom: 2.25rem;
  background-color: #e6e6e6;
  cursor: pointer;
  user-select: none;
  touch-action: none; }

.slider-fill {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  max-width: 100%;
  height: 0.5rem;
  background-color: #cacaca;
  transition: all 0.2s ease-in-out; }
  .slider-fill.is-dragging {
    transition: all 0s linear; }

.slider-handle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  z-index: 1;
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 0;
  background-color: #000000;
  transition: all 0.2s ease-in-out;
  touch-action: manipulation; }
  [data-whatinput='mouse'] .slider-handle {
    outline: 0; }
  .slider-handle:hover {
    background-color: black; }
  .slider-handle.is-dragging {
    transition: all 0s linear; }

.slider.disabled,
.slider[disabled] {
  opacity: 0.25;
  cursor: not-allowed; }

.slider.vertical {
  display: inline-block;
  width: 0.5rem;
  height: 12.5rem;
  margin: 0 1.25rem;
  transform: scale(1, -1); }
  .slider.vertical .slider-fill {
    top: 0;
    width: 0.5rem;
    max-height: 100%; }
  .slider.vertical .slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1.4rem;
    height: 1.4rem;
    transform: translateX(-50%); }

.switch {
  height: 2rem;
  position: relative;
  margin-bottom: 1rem;
  outline: 0;
  font-size: 0.875rem;
  font-weight: bold;
  color: #fefefe;
  user-select: none; }

.switch-input {
  position: absolute;
  margin-bottom: 0;
  opacity: 0; }

.switch-paddle {
  position: relative;
  display: block;
  width: 4rem;
  height: 2rem;
  border-radius: 0;
  background: #cacaca;
  transition: all 0.25s ease-out;
  font-weight: inherit;
  color: inherit;
  cursor: pointer; }
  input + .switch-paddle {
    margin: 0; }
  .switch-paddle::after {
    position: absolute;
    top: 0.25rem;
    left: 0.25rem;
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    transform: translate3d(0, 0, 0);
    border-radius: 0;
    background: #fefefe;
    transition: all 0.25s ease-out;
    content: ''; }
  input:checked ~ .switch-paddle {
    background: #000000; }
    input:checked ~ .switch-paddle::after {
      left: 2.25rem; }
  [data-whatinput='mouse'] input:focus ~ .switch-paddle {
    outline: 0; }

.switch-active, .switch-inactive {
  position: absolute;
  top: 50%;
  transform: translateY(-50%); }

.switch-active {
  left: 8%;
  display: none; }
  input:checked + label > .switch-active {
    display: block; }

.switch-inactive {
  right: 15%; }
  input:checked + label > .switch-inactive {
    display: none; }

.switch.tiny {
  height: 1.5rem; }
  .switch.tiny .switch-paddle {
    width: 3rem;
    height: 1.5rem;
    font-size: 0.625rem; }
  .switch.tiny .switch-paddle::after {
    top: 0.25rem;
    left: 0.25rem;
    width: 1rem;
    height: 1rem; }
  .switch.tiny input:checked ~ .switch-paddle::after {
    left: 1.75rem; }

.switch.small {
  height: 1.75rem; }
  .switch.small .switch-paddle {
    width: 3.5rem;
    height: 1.75rem;
    font-size: 0.75rem; }
  .switch.small .switch-paddle::after {
    top: 0.25rem;
    left: 0.25rem;
    width: 1.25rem;
    height: 1.25rem; }
  .switch.small input:checked ~ .switch-paddle::after {
    left: 2rem; }

.switch.large {
  height: 2.5rem; }
  .switch.large .switch-paddle {
    width: 5rem;
    height: 2.5rem;
    font-size: 1rem; }
  .switch.large .switch-paddle::after {
    top: 0.25rem;
    left: 0.25rem;
    width: 2rem;
    height: 2rem; }
  .switch.large input:checked ~ .switch-paddle::after {
    left: 2.75rem; }

table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 0; }
  thead,
  tbody,
  tfoot {
    border: 1px solid #f1f1f1;
    background-color: #fefefe; }
  caption {
    padding: 0.5rem 0.625rem 0.625rem;
    font-weight: bold; }
  thead {
    background: #f8f8f8;
    color: #0a0a0a; }
  tfoot {
    background: #f1f1f1;
    color: #0a0a0a; }
  thead tr,
  tfoot tr {
    background: transparent; }
  thead th,
  thead td,
  tfoot th,
  tfoot td {
    padding: 0.5rem 0.625rem 0.625rem;
    font-weight: bold;
    text-align: left; }
  tbody th,
  tbody td {
    padding: 0.5rem 0.625rem 0.625rem; }
  tbody tr:nth-child(even) {
    border-bottom: 0;
    background-color: #f1f1f1; }
  table.unstriped tbody {
    background-color: #fefefe; }
    table.unstriped tbody tr {
      border-bottom: 0;
      border-bottom: 1px solid #f1f1f1;
      background-color: #fefefe; }

@media screen and (max-width: 63.99875em) {
  table.stack thead {
    display: none; }
  table.stack tfoot {
    display: none; }
  table.stack tr,
  table.stack th,
  table.stack td {
    display: block; }
  table.stack td {
    border-top: 0; } }

table.scroll {
  display: block;
  width: 100%;
  overflow-x: auto; }

table.hover thead tr:hover {
  background-color: #f3f3f3; }

table.hover tfoot tr:hover {
  background-color: #ececec; }

table.hover tbody tr:hover {
  background-color: #f9f9f9; }

table.hover:not(.unstriped) tr:nth-of-type(even):hover {
  background-color: #ececec; }

.table-scroll {
  overflow-x: auto; }

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

.breadcrumbs {
  margin: 0 0 1rem 0;
  list-style: none; }
  .breadcrumbs::before, .breadcrumbs::after {
    display: table;
    content: ' ';
    flex-basis: 0;
    order: 1; }
  .breadcrumbs::after {
    clear: both; }
  .breadcrumbs li {
    float: left;
    font-size: 0.6875rem;
    color: #0a0a0a;
    cursor: default;
    text-transform: uppercase; }
    .breadcrumbs li:not(:last-child)::after {
      position: relative;
      margin: 0 0.75rem;
      opacity: 1;
      content: "/";
      color: #cacaca; }
  .breadcrumbs a {
    color: #000000; }
    .breadcrumbs a:hover {
      text-decoration: underline; }
  .breadcrumbs .disabled {
    color: #cacaca;
    cursor: not-allowed; }

.callout {
  position: relative;
  margin: 0 0 1rem 0;
  padding: 1rem;
  border: 1px solid rgba(10, 10, 10, 0.25);
  border-radius: 0;
  background-color: white;
  color: #0a0a0a; }
  .callout > :first-child {
    margin-top: 0; }
  .callout > :last-child {
    margin-bottom: 0; }
  .callout.primary {
    background-color: #d9d9d9;
    color: #0a0a0a; }
  .callout.secondary {
    background-color: #e3e3e3;
    color: #0a0a0a; }
  .callout.success {
    background-color: #e1faea;
    color: #0a0a0a; }
  .callout.warning {
    background-color: #fff3d9;
    color: #0a0a0a; }
  .callout.alert {
    background-color: #f7e4e1;
    color: #0a0a0a; }
  .callout.small {
    padding-top: 0.5rem;
    padding-right: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.5rem; }
  .callout.large {
    padding-top: 3rem;
    padding-right: 3rem;
    padding-bottom: 3rem;
    padding-left: 3rem; }

.card {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  margin-bottom: 1rem;
  border: 1px solid #e6e6e6;
  border-radius: 0;
  background: #fefefe;
  box-shadow: none;
  overflow: hidden;
  color: #0a0a0a; }
  .card > :last-child {
    margin-bottom: 0; }

.card-divider {
  display: flex;
  flex: 0 1 auto;
  padding: 1rem;
  background: #e6e6e6; }
  .card-divider > :last-child {
    margin-bottom: 0; }

.card-section {
  flex: 1 0 auto;
  padding: 1rem; }
  .card-section > :last-child {
    margin-bottom: 0; }

.card-image {
  min-height: 1px; }

.dropdown-pane {
  position: absolute;
  z-index: 10;
  display: none;
  width: 300px;
  padding: 1rem;
  visibility: hidden;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #fefefe;
  font-size: 1rem; }
  .dropdown-pane.is-opening {
    display: block; }
  .dropdown-pane.is-open {
    display: block;
    visibility: visible; }

.dropdown-pane.tiny {
  width: 100px; }

.dropdown-pane.small {
  width: 200px; }

.dropdown-pane.large {
  width: 400px; }

.pagination {
  margin-left: 0;
  margin-bottom: 1rem; }
  .pagination::before, .pagination::after {
    display: table;
    content: ' ';
    flex-basis: 0;
    order: 1; }
  .pagination::after {
    clear: both; }
  .pagination li {
    margin-right: 0.0625rem;
    border-radius: 0;
    font-size: 0.875rem;
    display: none; }
    .pagination li:last-child, .pagination li:first-child {
      display: inline-block; }
    @media print, screen and (min-width: 40em) {
      .pagination li {
        display: inline-block; } }
  .pagination a,
  .pagination button {
    display: block;
    padding: 0.1875rem 0.625rem;
    border-radius: 0;
    color: #0a0a0a; }
    .pagination a:hover,
    .pagination button:hover {
      background: #e6e6e6; }
  .pagination .current {
    padding: 0.1875rem 0.625rem;
    background: #000000;
    color: #fefefe;
    cursor: default; }
  .pagination .disabled {
    padding: 0.1875rem 0.625rem;
    color: #cacaca;
    cursor: not-allowed; }
    .pagination .disabled:hover {
      background: transparent; }
  .pagination .ellipsis::after {
    padding: 0.1875rem 0.625rem;
    content: '\2026';
    color: #0a0a0a; }

.pagination-previous a::before,
.pagination-previous.disabled::before {
  display: inline-block;
  margin-right: 0.5rem;
  content: '\00ab'; }

.pagination-next a::after,
.pagination-next.disabled::after {
  display: inline-block;
  margin-left: 0.5rem;
  content: '\00bb'; }

.has-tip {
  position: relative;
  display: inline-block;
  border-bottom: dotted 1px #8a8a8a;
  font-weight: bold;
  cursor: help; }

.tooltip {
  position: absolute;
  top: calc(100% + 0.6495rem);
  z-index: 1200;
  max-width: 10rem;
  padding: 0.75rem;
  border-radius: 0;
  background-color: #0a0a0a;
  font-size: 80%;
  color: #fefefe; }
  .tooltip::before {
    position: absolute; }
  .tooltip.bottom::before {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.75rem;
    content: '';
    border-top-width: 0;
    border-bottom-style: solid;
    border-color: transparent transparent #0a0a0a;
    bottom: 100%; }
  .tooltip.bottom.align-center::before {
    left: 50%;
    transform: translateX(-50%); }
  .tooltip.top::before {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.75rem;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #0a0a0a transparent transparent;
    top: 100%;
    bottom: auto; }
  .tooltip.top.align-center::before {
    left: 50%;
    transform: translateX(-50%); }
  .tooltip.left::before {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.75rem;
    content: '';
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #0a0a0a;
    left: 100%; }
  .tooltip.left.align-center::before {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%); }
  .tooltip.right::before {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.75rem;
    content: '';
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #0a0a0a transparent transparent;
    right: 100%;
    left: auto; }
  .tooltip.right.align-center::before {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%); }
  .tooltip.align-top::before {
    bottom: auto;
    top: 10%; }
  .tooltip.align-bottom::before {
    bottom: 10%;
    top: auto; }
  .tooltip.align-left::before {
    left: 10%;
    right: auto; }
  .tooltip.align-right::before {
    left: auto;
    right: 10%; }

.accordion {
  margin-left: 0;
  background: transparent;
  list-style-type: none; }
  .accordion[disabled] .accordion-title {
    cursor: not-allowed; }

.accordion-item:first-child > :first-child {
  border-radius: 0 0 0 0; }

.accordion-item:last-child > :last-child {
  border-radius: 0 0 0 0; }

.accordion-title {
  position: relative;
  display: block;
  padding: 1.25rem 0.4rem;
  border: 1px solid transparent;
  border-bottom: 0;
  font-size: 1rem;
  line-height: 1;
  color: #000000; }
  :last-child:not(.is-active) > .accordion-title {
    border-bottom: 1px solid transparent;
    border-radius: 0 0 0 0; }
  .accordion-title:hover, .accordion-title:focus {
    background-color: transparent; }

.accordion-content {
  display: none;
  padding: 1rem;
  border: 1px solid transparent;
  border-bottom: 0;
  background-color: transparent;
  color: white; }
  :last-child > .accordion-content:last-child {
    border-bottom: 1px solid transparent; }

.media-object {
  display: flex;
  margin-bottom: 1rem;
  flex-wrap: nowrap; }
  .media-object img {
    max-width: none; }
  @media screen and (max-width: 39.99875em) {
    .media-object.stack-for-small {
      flex-wrap: wrap; } }

.media-object-section {
  flex: 0 1 auto; }
  .media-object-section:first-child {
    padding-right: 1rem; }
  .media-object-section:last-child:not(:nth-child(2)) {
    padding-left: 1rem; }
  .media-object-section > :last-child {
    margin-bottom: 0; }
  @media screen and (max-width: 39.99875em) {
    .stack-for-small .media-object-section {
      padding: 0;
      padding-bottom: 1rem;
      flex-basis: 100%;
      max-width: 100%; }
      .stack-for-small .media-object-section img {
        width: 100%; } }
  .media-object-section.main-section {
    flex: 1 1 0px; }

.orbit {
  position: relative; }

.orbit-container {
  position: relative;
  height: 0;
  margin: 0;
  list-style: none;
  overflow: hidden; }

.orbit-slide {
  width: 100%;
  position: absolute; }
  .orbit-slide.no-motionui.is-active {
    top: 0;
    left: 0; }

.orbit-figure {
  margin: 0; }

.orbit-image {
  width: 100%;
  max-width: 100%;
  margin: 0; }

.orbit-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  margin-bottom: 0;
  padding: 1rem;
  background-color: rgba(10, 10, 10, 0.5);
  color: #fefefe; }

.orbit-previous, .orbit-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  padding: 1rem;
  color: #fefefe; }
  [data-whatinput='mouse'] .orbit-previous, [data-whatinput='mouse'] .orbit-next {
    outline: 0; }
  .orbit-previous:hover, .orbit-next:hover, .orbit-previous:active, .orbit-next:active, .orbit-previous:focus, .orbit-next:focus {
    background-color: rgba(10, 10, 10, 0.5); }

.orbit-previous {
  left: 0; }

.orbit-next {
  left: auto;
  right: 0; }

.orbit-bullets {
  position: relative;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
  text-align: center; }
  [data-whatinput='mouse'] .orbit-bullets {
    outline: 0; }
  .orbit-bullets button {
    width: 1.2rem;
    height: 1.2rem;
    margin: 0.1rem;
    border-radius: 50%;
    background-color: #cacaca; }
    .orbit-bullets button:hover {
      background-color: #8a8a8a; }
    .orbit-bullets button.is-active {
      background-color: #8a8a8a; }

.responsive-embed,
.flex-video {
  position: relative;
  height: 0;
  margin-bottom: 1rem;
  padding-bottom: 75%;
  overflow: hidden; }
  .responsive-embed iframe,
  .responsive-embed object,
  .responsive-embed embed,
  .responsive-embed video,
  .flex-video iframe,
  .flex-video object,
  .flex-video embed,
  .flex-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .responsive-embed.widescreen,
  .flex-video.widescreen {
    padding-bottom: 56.25%; }

.tabs {
  margin: 0;
  border: 1px solid #e6e6e6;
  background: #fefefe;
  list-style-type: none; }
  .tabs::before, .tabs::after {
    display: table;
    content: ' ';
    flex-basis: 0;
    order: 1; }
  .tabs::after {
    clear: both; }

.tabs.vertical > li {
  display: block;
  float: none;
  width: auto; }

.tabs.simple > li > a {
  padding: 0; }
  .tabs.simple > li > a:hover {
    background: transparent; }

.tabs.primary {
  background: #000000; }
  .tabs.primary > li > a {
    color: #fefefe; }
    .tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
      background: #0d0d0d; }

.tabs-title {
  float: left; }
  .tabs-title > a {
    display: block;
    padding: 1.25rem 1.5rem;
    font-size: 0.75rem;
    line-height: 1;
    color: #000000; }
    [data-whatinput='mouse'] .tabs-title > a {
      outline: 0; }
    .tabs-title > a:hover {
      background: #fefefe;
      color: black; }
    .tabs-title > a:focus, .tabs-title > a[aria-selected='true'] {
      background: #e6e6e6;
      color: #000000; }

.tabs-content {
  border: 1px solid #e6e6e6;
  border-top: 0;
  background: #fefefe;
  color: #0a0a0a;
  transition: all 0.5s ease; }

.tabs-content.vertical {
  border: 1px solid #e6e6e6;
  border-left: 0; }

.tabs-panel {
  display: none;
  padding: 1rem; }
  .tabs-panel.is-active {
    display: block; }

.thumbnail {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 1rem;
  border: solid 4px #fefefe;
  border-radius: 0;
  box-shadow: 0 0 0 1px rgba(10, 10, 10, 0.2);
  line-height: 0; }

a.thumbnail {
  transition: box-shadow 200ms ease-out; }
  a.thumbnail:hover, a.thumbnail:focus {
    box-shadow: 0 0 6px 1px rgba(0, 0, 0, 0.5); }
  a.thumbnail image {
    box-shadow: none; }

.menu {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
  display: flex;
  flex-wrap: wrap; }
  [data-whatinput='mouse'] .menu li {
    outline: 0; }
  .menu a,
  .menu .button {
    line-height: 1;
    text-decoration: none;
    display: block;
    padding: 0.7rem 1rem; }
  .menu input,
  .menu select,
  .menu a,
  .menu button {
    margin-bottom: 0; }
  .menu input {
    display: inline-block; }
  .menu, .menu.horizontal {
    flex-wrap: wrap;
    flex-direction: row; }
  .menu.vertical {
    flex-wrap: nowrap;
    flex-direction: column; }
  .menu.expanded li {
    flex: 1 1 0px; }
  .menu.simple {
    align-items: center; }
    .menu.simple li + li {
      margin-left: 1rem; }
    .menu.simple a {
      padding: 0; }
  @media print, screen and (min-width: 40em) {
    .menu.medium-horizontal {
      flex-wrap: wrap;
      flex-direction: row; }
    .menu.medium-vertical {
      flex-wrap: nowrap;
      flex-direction: column; }
    .menu.medium-expanded li {
      flex: 1 1 0px; }
    .menu.medium-simple li {
      flex: 1 1 0px; } }
  @media print, screen and (min-width: 64em) {
    .menu.large-horizontal {
      flex-wrap: wrap;
      flex-direction: row; }
    .menu.large-vertical {
      flex-wrap: nowrap;
      flex-direction: column; }
    .menu.large-expanded li {
      flex: 1 1 0px; }
    .menu.large-simple li {
      flex: 1 1 0px; } }
  .menu.nested {
    margin-right: 0;
    margin-left: 1rem; }
  .menu.icons a {
    display: flex; }
  .menu.icon-top a, .menu.icon-right a, .menu.icon-bottom a, .menu.icon-left a {
    display: flex; }
  .menu.icon-left li a {
    flex-flow: row nowrap; }
    .menu.icon-left li a img,
    .menu.icon-left li a i,
    .menu.icon-left li a svg {
      margin-right: 0.25rem; }
  .menu.icon-right li a {
    flex-flow: row nowrap; }
    .menu.icon-right li a img,
    .menu.icon-right li a i,
    .menu.icon-right li a svg {
      margin-left: 0.25rem; }
  .menu.icon-top li a {
    flex-flow: column nowrap; }
    .menu.icon-top li a img,
    .menu.icon-top li a i,
    .menu.icon-top li a svg {
      align-self: stretch;
      margin-bottom: 0.25rem;
      text-align: center; }
  .menu.icon-bottom li a {
    flex-flow: column nowrap; }
    .menu.icon-bottom li a img,
    .menu.icon-bottom li a i,
    .menu.icon-bottom li a svg {
      align-self: stretch;
      margin-bottom: 0.25rem;
      text-align: center; }
  .menu .is-active > a {
    background: #000000;
    color: #fefefe; }
  .menu .active > a {
    background: #000000;
    color: #fefefe; }
  .menu.align-left {
    justify-content: flex-start; }
  .menu.align-right li {
    display: flex;
    justify-content: flex-end; }
    .menu.align-right li .submenu li {
      justify-content: flex-start; }
  .menu.align-right.vertical li {
    display: block;
    text-align: right; }
    .menu.align-right.vertical li .submenu li {
      text-align: right; }
  .menu.align-right .nested {
    margin-right: 1rem;
    margin-left: 0; }
  .menu.align-center li {
    display: flex;
    justify-content: center; }
    .menu.align-center li .submenu li {
      justify-content: flex-start; }
  .menu .menu-text {
    padding: 0.7rem 1rem;
    font-weight: bold;
    line-height: 1;
    color: inherit; }

.menu-centered > .menu {
  justify-content: center; }
  .menu-centered > .menu li {
    display: flex;
    justify-content: center; }
    .menu-centered > .menu li .submenu li {
      justify-content: flex-start; }

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

.menu-icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 16px;
  cursor: pointer; }
  .menu-icon::after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: #fefefe;
    box-shadow: 0 7px 0 #fefefe, 0 14px 0 #fefefe;
    content: ''; }
  .menu-icon:hover::after {
    background: #cacaca;
    box-shadow: 0 7px 0 #cacaca, 0 14px 0 #cacaca; }

.menu-icon.dark {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 16px;
  cursor: pointer; }
  .menu-icon.dark::after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: #0a0a0a;
    box-shadow: 0 7px 0 #0a0a0a, 0 14px 0 #0a0a0a;
    content: ''; }
  .menu-icon.dark:hover::after {
    background: #8a8a8a;
    box-shadow: 0 7px 0 #8a8a8a, 0 14px 0 #8a8a8a; }

.accordion-menu li {
  width: 100%; }

.accordion-menu a {
  padding: 0.7rem 1rem; }

.accordion-menu .is-accordion-submenu a {
  padding: 0.7rem 1rem; }

.accordion-menu .nested.is-accordion-submenu {
  margin-right: 0;
  margin-left: 1rem; }

.accordion-menu.align-right .nested.is-accordion-submenu {
  margin-right: 1rem;
  margin-left: 0; }

.accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) > a {
  position: relative; }
  .accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #000000 transparent transparent;
    position: absolute;
    top: 50%;
    margin-top: -3px;
    right: 1rem; }

.accordion-menu.align-left .is-accordion-submenu-parent > a::after {
  right: 1rem;
  left: auto; }

.accordion-menu.align-right .is-accordion-submenu-parent > a::after {
  right: auto;
  left: 1rem; }

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

.is-accordion-submenu-parent {
  position: relative; }

.has-submenu-toggle > a {
  margin-right: 40px; }

.submenu-toggle {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  cursor: pointer; }
  .submenu-toggle::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #000000 transparent transparent;
    top: 0;
    bottom: 0;
    margin: auto; }

.submenu-toggle[aria-expanded='true']::after {
  transform: scaleY(-1);
  transform-origin: 50% 50%; }

.submenu-toggle-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0; }

.is-drilldown {
  position: relative;
  overflow: hidden; }
  .is-drilldown li {
    display: block; }
  .is-drilldown.animate-height {
    transition: height 0.5s; }

.drilldown a {
  padding: 0.7rem 1rem;
  background: #fefefe; }

.drilldown .is-drilldown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: -1;
  width: 100%;
  background: #fefefe;
  transition: transform 0.15s linear; }
  .drilldown .is-drilldown-submenu.is-active {
    z-index: 1;
    display: block;
    transform: translateX(-100%); }
  .drilldown .is-drilldown-submenu.is-closing {
    transform: translateX(100%); }
  .drilldown .is-drilldown-submenu a {
    padding: 0.7rem 1rem; }

.drilldown .nested.is-drilldown-submenu {
  margin-right: 0;
  margin-left: 0; }

.drilldown .drilldown-submenu-cover-previous {
  min-height: 100%; }

.drilldown .is-drilldown-submenu-parent > a {
  position: relative; }
  .drilldown .is-drilldown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #000000;
    position: absolute;
    top: 50%;
    margin-top: -6px;
    right: 1rem; }

.drilldown.align-left .is-drilldown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #000000;
  right: 1rem;
  left: auto; }

.drilldown.align-right .is-drilldown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #000000 transparent transparent;
  right: auto;
  left: 1rem; }

.drilldown .js-drilldown-back > a::before {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #000000 transparent transparent;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.75rem; }

.dropdown.menu > li.opens-left > .is-dropdown-submenu {
  top: 100%;
  right: 0;
  left: auto; }

.dropdown.menu > li.opens-right > .is-dropdown-submenu {
  top: 100%;
  right: auto;
  left: 0; }

.dropdown.menu > li.is-dropdown-submenu-parent > a {
  position: relative;
  padding-right: 1.5rem; }

.dropdown.menu > li.is-dropdown-submenu-parent > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-bottom-width: 0;
  border-top-style: solid;
  border-color: #000000 transparent transparent;
  right: 5px;
  left: auto;
  margin-top: -3px; }

[data-whatinput='mouse'] .dropdown.menu a {
  outline: 0; }

.dropdown.menu > li > a {
  background: #fefefe;
  padding: 0.7rem 1rem; }

.dropdown.menu > li.is-active > a {
  background: transparent;
  color: #000000; }

.no-js .dropdown.menu ul {
  display: none; }

.dropdown.menu .nested.is-dropdown-submenu {
  margin-right: 0;
  margin-left: 0; }

.dropdown.menu.vertical > li .is-dropdown-submenu {
  top: 0; }

.dropdown.menu.vertical > li.opens-left > .is-dropdown-submenu {
  top: 0;
  right: 100%;
  left: auto; }

.dropdown.menu.vertical > li.opens-right > .is-dropdown-submenu {
  right: auto;
  left: 100%; }

.dropdown.menu.vertical > li > a::after {
  right: 14px; }

.dropdown.menu.vertical > li.opens-left > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-left-width: 0;
  border-right-style: solid;
  border-color: transparent #000000 transparent transparent;
  right: auto;
  left: 5px; }

.dropdown.menu.vertical > li.opens-right > a::after {
  display: block;
  width: 0;
  height: 0;
  border: inset 6px;
  content: '';
  border-right-width: 0;
  border-left-style: solid;
  border-color: transparent transparent transparent #000000; }

@media print, screen and (min-width: 40em) {
  .dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto; }
  .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0; }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem; }
  .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #000000 transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px; }
  .dropdown.menu.medium-vertical > li .is-dropdown-submenu {
    top: 0; }
  .dropdown.menu.medium-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto; }
  .dropdown.menu.medium-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%; }
  .dropdown.menu.medium-vertical > li > a::after {
    right: 14px; }
  .dropdown.menu.medium-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #000000 transparent transparent;
    right: auto;
    left: 5px; }
  .dropdown.menu.medium-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #000000; } }

@media print, screen and (min-width: 64em) {
  .dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto; }
  .dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0; }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem; }
  .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #000000 transparent transparent;
    right: 5px;
    left: auto;
    margin-top: -3px; }
  .dropdown.menu.large-vertical > li .is-dropdown-submenu {
    top: 0; }
  .dropdown.menu.large-vertical > li.opens-left > .is-dropdown-submenu {
    top: 0;
    right: 100%;
    left: auto; }
  .dropdown.menu.large-vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%; }
  .dropdown.menu.large-vertical > li > a::after {
    right: 14px; }
  .dropdown.menu.large-vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #000000 transparent transparent;
    right: auto;
    left: 5px; }
  .dropdown.menu.large-vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #000000; } }

.dropdown.menu.align-right .is-dropdown-submenu.first-sub {
  top: 100%;
  right: 0;
  left: auto; }

.is-dropdown-menu.vertical {
  width: 100px; }
  .is-dropdown-menu.vertical.align-right {
    float: right; }

.is-dropdown-submenu-parent {
  position: relative; }
  .is-dropdown-submenu-parent a::after {
    position: absolute;
    top: 50%;
    right: 5px;
    left: auto;
    margin-top: -6px; }
  .is-dropdown-submenu-parent.opens-inner > .is-dropdown-submenu {
    top: 100%;
    left: auto; }
  .is-dropdown-submenu-parent.opens-left > .is-dropdown-submenu {
    right: 100%;
    left: auto; }
  .is-dropdown-submenu-parent.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%; }

.is-dropdown-submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 1;
  display: none;
  min-width: 200px;
  border: 1px solid #cacaca;
  background: #fefefe; }
  .dropdown .is-dropdown-submenu a {
    padding: 0.7rem 1rem; }
  .is-dropdown-submenu .is-dropdown-submenu-parent > a::after {
    right: 14px; }
  .is-dropdown-submenu .is-dropdown-submenu-parent.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #000000 transparent transparent;
    right: auto;
    left: 5px; }
  .is-dropdown-submenu .is-dropdown-submenu-parent.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: '';
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #000000; }
  .is-dropdown-submenu .is-dropdown-submenu {
    margin-top: -1px; }
  .is-dropdown-submenu > li {
    width: 100%; }
  .is-dropdown-submenu.js-dropdown-active {
    display: block; }

.is-off-canvas-open {
  overflow: hidden; }

.js-off-canvas-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  background: rgba(254, 254, 254, 0.25);
  opacity: 0;
  visibility: hidden;
  overflow: hidden; }
  .js-off-canvas-overlay.is-visible {
    opacity: 1;
    visibility: visible; }
  .js-off-canvas-overlay.is-closable {
    cursor: pointer; }
  .js-off-canvas-overlay.is-overlay-absolute {
    position: absolute; }
  .js-off-canvas-overlay.is-overlay-fixed {
    position: fixed; }

.off-canvas-wrapper {
  position: relative;
  overflow: hidden; }

.off-canvas {
  position: fixed;
  z-index: 12;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  background: #e6e6e6; }
  [data-whatinput='mouse'] .off-canvas {
    outline: 0; }
  .off-canvas.is-transition-push {
    z-index: 12; }
  .off-canvas.is-closed {
    visibility: hidden; }
  .off-canvas.is-transition-overlap {
    z-index: 13; }
    .off-canvas.is-transition-overlap.is-open {
      box-shadow: 0 0 10px rgba(10, 10, 10, 0.7); }
  .off-canvas.is-open {
    transform: translate(0, 0); }

.off-canvas-absolute {
  position: absolute;
  z-index: 12;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  background: #e6e6e6; }
  [data-whatinput='mouse'] .off-canvas-absolute {
    outline: 0; }
  .off-canvas-absolute.is-transition-push {
    z-index: 12; }
  .off-canvas-absolute.is-closed {
    visibility: hidden; }
  .off-canvas-absolute.is-transition-overlap {
    z-index: 13; }
    .off-canvas-absolute.is-transition-overlap.is-open {
      box-shadow: 0 0 10px rgba(10, 10, 10, 0.7); }
  .off-canvas-absolute.is-open {
    transform: translate(0, 0); }

.position-left {
  top: 0;
  left: 0;
  height: 100%;
  overflow-y: auto;
  width: 250px;
  transform: translateX(-250px); }
  .off-canvas-content .off-canvas.position-left {
    transform: translateX(-250px); }
    .off-canvas-content .off-canvas.position-left.is-transition-overlap.is-open {
      transform: translate(0, 0); }
  .off-canvas-content.is-open-left.has-transition-push {
    transform: translateX(250px); }
  .position-left.is-transition-push {
    box-shadow: inset -13px 0 20px -13px rgba(10, 10, 10, 0.25); }

.position-right {
  top: 0;
  right: 0;
  height: 100%;
  overflow-y: auto;
  width: 250px;
  transform: translateX(250px); }
  .off-canvas-content .off-canvas.position-right {
    transform: translateX(250px); }
    .off-canvas-content .off-canvas.position-right.is-transition-overlap.is-open {
      transform: translate(0, 0); }
  .off-canvas-content.is-open-right.has-transition-push {
    transform: translateX(-250px); }
  .position-right.is-transition-push {
    box-shadow: inset 13px 0 20px -13px rgba(10, 10, 10, 0.25); }

.position-top {
  top: 0;
  left: 0;
  width: 100%;
  overflow-x: auto;
  height: 250px;
  transform: translateY(-250px); }
  .off-canvas-content .off-canvas.position-top {
    transform: translateY(-250px); }
    .off-canvas-content .off-canvas.position-top.is-transition-overlap.is-open {
      transform: translate(0, 0); }
  .off-canvas-content.is-open-top.has-transition-push {
    transform: translateY(250px); }
  .position-top.is-transition-push {
    box-shadow: inset 0 -13px 20px -13px rgba(10, 10, 10, 0.25); }

.position-bottom {
  bottom: 0;
  left: 0;
  width: 100%;
  overflow-x: auto;
  height: 250px;
  transform: translateY(250px); }
  .off-canvas-content .off-canvas.position-bottom {
    transform: translateY(250px); }
    .off-canvas-content .off-canvas.position-bottom.is-transition-overlap.is-open {
      transform: translate(0, 0); }
  .off-canvas-content.is-open-bottom.has-transition-push {
    transform: translateY(-250px); }
  .position-bottom.is-transition-push {
    box-shadow: inset 0 13px 20px -13px rgba(10, 10, 10, 0.25); }

.off-canvas-content {
  transform: none;
  transition: transform 0.5s ease;
  backface-visibility: hidden; }
  .off-canvas-content.has-transition-push {
    transform: translate(0, 0); }
  .off-canvas-content .off-canvas.is-open {
    transform: translate(0, 0); }

@media print, screen and (min-width: 40em) {
  .position-left.reveal-for-medium {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible; }
    .position-left.reveal-for-medium .close-button {
      display: none; }
    .off-canvas-content .position-left.reveal-for-medium {
      transform: none; }
    .off-canvas-content.has-reveal-left {
      margin-left: 250px; }
    .position-left.reveal-for-medium ~ .off-canvas-content {
      margin-left: 250px; }
  .position-right.reveal-for-medium {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible; }
    .position-right.reveal-for-medium .close-button {
      display: none; }
    .off-canvas-content .position-right.reveal-for-medium {
      transform: none; }
    .off-canvas-content.has-reveal-right {
      margin-right: 250px; }
    .position-right.reveal-for-medium ~ .off-canvas-content {
      margin-right: 250px; }
  .position-top.reveal-for-medium {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible; }
    .position-top.reveal-for-medium .close-button {
      display: none; }
    .off-canvas-content .position-top.reveal-for-medium {
      transform: none; }
    .off-canvas-content.has-reveal-top {
      margin-top: 250px; }
    .position-top.reveal-for-medium ~ .off-canvas-content {
      margin-top: 250px; }
  .position-bottom.reveal-for-medium {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible; }
    .position-bottom.reveal-for-medium .close-button {
      display: none; }
    .off-canvas-content .position-bottom.reveal-for-medium {
      transform: none; }
    .off-canvas-content.has-reveal-bottom {
      margin-bottom: 250px; }
    .position-bottom.reveal-for-medium ~ .off-canvas-content {
      margin-bottom: 250px; } }

@media print, screen and (min-width: 64em) {
  .position-left.reveal-for-large {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible; }
    .position-left.reveal-for-large .close-button {
      display: none; }
    .off-canvas-content .position-left.reveal-for-large {
      transform: none; }
    .off-canvas-content.has-reveal-left {
      margin-left: 250px; }
    .position-left.reveal-for-large ~ .off-canvas-content {
      margin-left: 250px; }
  .position-right.reveal-for-large {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible; }
    .position-right.reveal-for-large .close-button {
      display: none; }
    .off-canvas-content .position-right.reveal-for-large {
      transform: none; }
    .off-canvas-content.has-reveal-right {
      margin-right: 250px; }
    .position-right.reveal-for-large ~ .off-canvas-content {
      margin-right: 250px; }
  .position-top.reveal-for-large {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible; }
    .position-top.reveal-for-large .close-button {
      display: none; }
    .off-canvas-content .position-top.reveal-for-large {
      transform: none; }
    .off-canvas-content.has-reveal-top {
      margin-top: 250px; }
    .position-top.reveal-for-large ~ .off-canvas-content {
      margin-top: 250px; }
  .position-bottom.reveal-for-large {
    transform: none;
    z-index: 12;
    transition: none;
    visibility: visible; }
    .position-bottom.reveal-for-large .close-button {
      display: none; }
    .off-canvas-content .position-bottom.reveal-for-large {
      transform: none; }
    .off-canvas-content.has-reveal-bottom {
      margin-bottom: 250px; }
    .position-bottom.reveal-for-large ~ .off-canvas-content {
      margin-bottom: 250px; } }

@media print, screen and (min-width: 40em) {
  .off-canvas.in-canvas-for-medium {
    visibility: visible;
    height: auto;
    position: static;
    background: none;
    width: auto;
    overflow: visible;
    transition: none; }
    .off-canvas.in-canvas-for-medium.position-left, .off-canvas.in-canvas-for-medium.position-right, .off-canvas.in-canvas-for-medium.position-top, .off-canvas.in-canvas-for-medium.position-bottom {
      box-shadow: none;
      transform: none; }
    .off-canvas.in-canvas-for-medium .close-button {
      display: none; } }

@media print, screen and (min-width: 64em) {
  .off-canvas.in-canvas-for-large {
    visibility: visible;
    height: auto;
    position: static;
    background: none;
    width: auto;
    overflow: visible;
    transition: none; }
    .off-canvas.in-canvas-for-large.position-left, .off-canvas.in-canvas-for-large.position-right, .off-canvas.in-canvas-for-large.position-top, .off-canvas.in-canvas-for-large.position-bottom {
      box-shadow: none;
      transform: none; }
    .off-canvas.in-canvas-for-large .close-button {
      display: none; } }

html.is-reveal-open {
  position: fixed;
  width: 100%;
  overflow-y: hidden; }
  html.is-reveal-open.zf-has-scroll {
    overflow-y: scroll; }
  html.is-reveal-open body {
    overflow-y: hidden; }

.reveal-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1005;
  display: none;
  background-color: rgba(10, 10, 10, 0.45);
  overflow-y: auto; }

.reveal {
  z-index: 1006;
  backface-visibility: hidden;
  display: none;
  padding: 1rem;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #fefefe;
  position: relative;
  top: 100px;
  margin-right: auto;
  margin-left: auto;
  overflow-y: auto; }
  [data-whatinput='mouse'] .reveal {
    outline: 0; }
  @media print, screen and (min-width: 40em) {
    .reveal {
      min-height: 0; } }
  .reveal .column {
    min-width: 0; }
  .reveal > :last-child {
    margin-bottom: 0; }
  @media print, screen and (min-width: 40em) {
    .reveal {
      width: 600px;
      max-width: 75rem; } }
  .reveal.collapse {
    padding: 0; }
  @media print, screen and (min-width: 40em) {
    .reveal.tiny {
      width: 30%;
      max-width: 75rem; } }
  @media print, screen and (min-width: 40em) {
    .reveal.small {
      width: 50%;
      max-width: 75rem; } }
  @media print, screen and (min-width: 40em) {
    .reveal.large {
      width: 90%;
      max-width: 75rem; } }
  .reveal.full {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 100%;
    margin-left: 0;
    border: 0;
    border-radius: 0; }
  @media screen and (max-width: 39.99875em) {
    .reveal {
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      max-width: none;
      height: 100%;
      min-height: 100%;
      margin-left: 0;
      border: 0;
      border-radius: 0; } }
  .reveal.without-overlay {
    position: fixed; }

.sticky-container {
  position: relative; }

.sticky {
  position: relative;
  z-index: 0;
  transform: translate3d(0, 0, 0); }

.sticky.is-stuck {
  position: fixed;
  z-index: 5;
  width: 100%; }
  .sticky.is-stuck.is-at-top {
    top: 0; }
  .sticky.is-stuck.is-at-bottom {
    bottom: 0; }

.sticky.is-anchored {
  position: relative;
  right: auto;
  left: auto; }
  .sticky.is-anchored.is-at-bottom {
    bottom: 0; }

.title-bar {
  padding: 0.5rem;
  background: #0a0a0a;
  color: #fefefe;
  display: flex;
  justify-content: flex-start;
  align-items: center; }
  .title-bar .menu-icon {
    margin-left: 0.25rem;
    margin-right: 0.25rem; }

.title-bar-left,
.title-bar-right {
  flex: 1 1 0px; }

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

.title-bar-title {
  display: inline-block;
  vertical-align: middle;
  font-weight: bold; }

.top-bar {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  flex-wrap: wrap; }
  .top-bar,
  .top-bar ul {
    background-color: #e6e6e6; }
  .top-bar input {
    max-width: 200px;
    margin-right: 1rem; }
  .top-bar .input-group-field {
    width: 100%;
    margin-right: 0; }
  .top-bar input.button {
    width: auto; }
  .top-bar .top-bar-left,
  .top-bar .top-bar-right {
    flex: 0 0 100%;
    max-width: 100%; }
  @media print, screen and (min-width: 40em) {
    .top-bar {
      flex-wrap: nowrap; }
      .top-bar .top-bar-left {
        flex: 1 1 auto;
        margin-right: auto; }
      .top-bar .top-bar-right {
        flex: 0 1 auto;
        margin-left: auto; } }
  @media screen and (max-width: 63.99875em) {
    .top-bar.stacked-for-medium {
      flex-wrap: wrap; }
      .top-bar.stacked-for-medium .top-bar-left,
      .top-bar.stacked-for-medium .top-bar-right {
        flex: 0 0 100%;
        max-width: 100%; } }
  @media screen and (max-width: 74.99875em) {
    .top-bar.stacked-for-large {
      flex-wrap: wrap; }
      .top-bar.stacked-for-large .top-bar-left,
      .top-bar.stacked-for-large .top-bar-right {
        flex: 0 0 100%;
        max-width: 100%; } }

.top-bar-title {
  flex: 0 0 auto;
  margin: 0.5rem 1rem 0.5rem 0; }

.top-bar-left,
.top-bar-right {
  flex: 0 0 auto; }

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

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

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

.clearfix::before, .clearfix::after {
  display: table;
  content: ' ';
  flex-basis: 0;
  order: 1; }

.clearfix::after {
  clear: both; }

.align-left {
  justify-content: flex-start; }

.align-right {
  justify-content: flex-end; }

.align-center {
  justify-content: center; }

.align-justify {
  justify-content: space-between; }

.align-spaced {
  justify-content: space-around; }

.align-left.vertical.menu > li > a {
  justify-content: flex-start; }

.align-right.vertical.menu > li > a {
  justify-content: flex-end; }

.align-center.vertical.menu > li > a {
  justify-content: center; }

.align-top {
  align-items: flex-start; }

.align-self-top {
  align-self: flex-start; }

.align-bottom {
  align-items: flex-end; }

.align-self-bottom {
  align-self: flex-end; }

.align-middle {
  align-items: center; }

.align-self-middle {
  align-self: center; }

.align-stretch {
  align-items: stretch; }

.align-self-stretch {
  align-self: stretch; }

.align-center-middle {
  justify-content: center;
  align-items: center;
  align-content: center; }

.small-order-1 {
  order: 1; }

.small-order-2 {
  order: 2; }

.small-order-3 {
  order: 3; }

.small-order-4 {
  order: 4; }

.small-order-5 {
  order: 5; }

.small-order-6 {
  order: 6; }

@media print, screen and (min-width: 40em) {
  .medium-order-1 {
    order: 1; }
  .medium-order-2 {
    order: 2; }
  .medium-order-3 {
    order: 3; }
  .medium-order-4 {
    order: 4; }
  .medium-order-5 {
    order: 5; }
  .medium-order-6 {
    order: 6; } }

@media print, screen and (min-width: 64em) {
  .large-order-1 {
    order: 1; }
  .large-order-2 {
    order: 2; }
  .large-order-3 {
    order: 3; }
  .large-order-4 {
    order: 4; }
  .large-order-5 {
    order: 5; }
  .large-order-6 {
    order: 6; } }

.flex-container {
  display: flex; }

.flex-child-auto {
  flex: 1 1 auto; }

.flex-child-grow {
  flex: 1 0 auto; }

.flex-child-shrink {
  flex: 0 1 auto; }

.flex-dir-row {
  flex-direction: row; }

.flex-dir-row-reverse {
  flex-direction: row-reverse; }

.flex-dir-column {
  flex-direction: column; }

.flex-dir-column-reverse {
  flex-direction: column-reverse; }

@media print, screen and (min-width: 40em) {
  .medium-flex-container {
    display: flex; }
  .medium-flex-child-auto {
    flex: 1 1 auto; }
  .medium-flex-child-grow {
    flex: 1 0 auto; }
  .medium-flex-child-shrink {
    flex: 0 1 auto; }
  .medium-flex-dir-row {
    flex-direction: row; }
  .medium-flex-dir-row-reverse {
    flex-direction: row-reverse; }
  .medium-flex-dir-column {
    flex-direction: column; }
  .medium-flex-dir-column-reverse {
    flex-direction: column-reverse; } }

@media print, screen and (min-width: 64em) {
  .large-flex-container {
    display: flex; }
  .large-flex-child-auto {
    flex: 1 1 auto; }
  .large-flex-child-grow {
    flex: 1 0 auto; }
  .large-flex-child-shrink {
    flex: 0 1 auto; }
  .large-flex-dir-row {
    flex-direction: row; }
  .large-flex-dir-row-reverse {
    flex-direction: row-reverse; }
  .large-flex-dir-column {
    flex-direction: column; }
  .large-flex-dir-column-reverse {
    flex-direction: column-reverse; } }

.hide {
  display: none !important; }

.invisible {
  visibility: hidden; }

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

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

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

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

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

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

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

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

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

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

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

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

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

.hide-for-landscape,
.show-for-portrait {
  display: none !important; }
  @media screen and (orientation: landscape) {
    .hide-for-landscape,
    .show-for-portrait {
      display: none !important; } }
  @media screen and (orientation: portrait) {
    .hide-for-landscape,
    .show-for-portrait {
      display: block !important; } }
/**
 * Swiper 5.1.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://swiperjs.com
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 16, 2019
 */

@font-face{font-family:swiper-icons;src:url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper-container{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-container-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-container-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-container-multirow>.swiper-wrapper{flex-wrap:wrap}.swiper-container-multirow-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-container-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{height:auto}.swiper-container-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-container-3d{perspective:1200px}.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-container-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-container-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-container-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-container-horizontal.swiper-container-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-container-vertical.swiper-container-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(-1 * var(--swiper-navigation-size)/ 2);z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important}.swiper-button-prev,.swiper-container-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-container-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-container-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-container-rtl .swiper-button-prev:after{content:'next'}.swiper-button-next.swiper-button-white,.swiper-button-prev.swiper-button-white{--swiper-navigation-color:#ffffff}.swiper-button-next.swiper-button-black,.swiper-button-prev.swiper-button-black{--swiper-navigation-color:#000000}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:8px;height:8px;display:inline-block;border-radius:100%;background:#000;opacity:.2}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet-active{opacity:1;background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-container-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:6px 0;display:block}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 4px}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-container-horizontal>.swiper-pagination-progressbar,.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-container-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-white{--swiper-pagination-color:#ffffff}.swiper-pagination-black{--swiper-pagination-color:#000000}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-container-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-container-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;animation:swiper-preloader-spin 1s infinite linear;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{100%{transform:rotate(360deg)}}.swiper-container .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-container-fade.swiper-container-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-container-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-container-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube{overflow:visible}.swiper-container-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-container-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-cube.swiper-container-rtl .swiper-slide{transform-origin:100% 0}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;background:#000;opacity:.6;-webkit-filter:blur(50px);filter:blur(50px);z-index:0}.swiper-container-flip{overflow:visible}.swiper-container-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-container-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}
@font-face {
  font-family: "DFMHamburg";
  src: url(../../templates/fonts/DFMHamburg.eot);
  src: url(../../templates/fonts/DFMHamburg.eot?#iefix) format("embedded-opentype"),
    url(../../templates/fonts/DFMHamburg.woff2) format("woff2"),
    url(../../templates/fonts/DFMHamburg.woff) format("woff"),
    url(../../templates/fonts/DFMHamburg.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "DFMHamburg";
  src: url(../../templates/fonts/DFMHamburg_1.eot);
  src: url(../../templates/fonts/DFMHamburg_1.eot?#iefix) format("embedded-opentype"),
    url(../../templates/fonts/DFMHamburg_1.woff2) format("woff2"),
    url(../../templates/fonts/DFMHamburg_1.woff) format("woff"),
    url(../../templates/fonts/DFMHamburg_1.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "MrEavesSanOT";
  src: url(../../templates/fonts/MrEavesSanOT-RegItalic.eot);
  src: url(../../templates/fonts/MrEavesSanOT-RegItalic.eot?#iefix)
      format("embedded-opentype"),
    url(../../templates/fonts/MrEavesSanOT-RegItalic.woff2) format("woff2"),
    url(../../templates/fonts/MrEavesSanOT-RegItalic.woff) format("woff"),
    url(../../templates/fonts/MrEavesSanOT-RegItalic.ttf) format("truetype");
  font-weight: normal;
  font-style: italic;
  font-display: block;
}
@font-face {
  font-family: "MrEavesSanOT";
  src: url(../../templates/fonts/MrEavesSanOT-BoldItalic.eot);
  src: url(../../templates/fonts/MrEavesSanOT-BoldItalic.eot?#iefix)
      format("embedded-opentype"),
    url(../../templates/fonts/MrEavesSanOT-BoldItalic.woff2) format("woff2"),
    url(../../templates/fonts/MrEavesSanOT-BoldItalic.woff) format("woff"),
    url(../../templates/fonts/MrEavesSanOT-BoldItalic.ttf) format("truetype");
  font-weight: bold;
  font-style: italic;
  font-display: block;
}
@font-face {
  font-family: "MrEavesSanOT";
  src: url(../../templates/fonts/MrEavesSanOT-Bold.eot);
  src: url(../../templates/fonts/MrEavesSanOT-Bold.eot?#iefix) format("embedded-opentype"),
    url(../../templates/fonts/MrEavesSanOT-Bold.woff2) format("woff2"),
    url(../../templates/fonts/MrEavesSanOT-Bold.woff) format("woff"),
    url(../../templates/fonts/MrEavesSanOT-Bold.ttf) format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "MrEavesSanOT";
  src: url(../../templates/fonts/MrEavesSanOT-Reg.eot);
  src: url(../../templates/fonts/MrEavesSanOT-Reg.eot?#iefix) format("embedded-opentype"),
    url(../../templates/fonts/MrEavesSanOT-Reg.woff2) format("woff2"),
    url(../../templates/fonts/MrEavesSanOT-Reg.woff) format("woff"),
    url(../../templates/fonts/MrEavesSanOT-Reg.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "MrEavesXLModOT";
  src: url(../../templates/fonts/MrEavesXLModOT-Reg.eot);
  src: url(../../templates/fonts/MrEavesXLModOT-Reg.eot?#iefix) format("embedded-opentype"),
    url(../../templates/fonts/MrEavesXLModOT-Reg.woff2) format("woff2"),
    url(../../templates/fonts/MrEavesXLModOT-Reg.woff) format("woff"),
    url(../../templates/fonts/MrEavesXLModOT-Reg.ttf) format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "MrEavesXLModOT";
  src: url(../../templates/fonts/MrEavesXLModOT-BoldItalic.eot);
  src: url(../../templates/fonts/MrEavesXLModOT-BoldItalic.eot?#iefix)
      format("embedded-opentype"),
    url(../../templates/fonts/MrEavesXLModOT-BoldItalic.woff2) format("woff2"),
    url(../../templates/fonts/MrEavesXLModOT-BoldItalic.woff) format("woff"),
    url(../../templates/fonts/MrEavesXLModOT-BoldItalic.ttf) format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: block;
}
@font-face {
  font-family: "MrEavesXLModOT";
  src: url(../../templates/fonts/MrEavesXLModOT-Bold.eot);
  src: url(../../templates/fonts/MrEavesXLModOT-Bold.eot?#iefix)
      format("embedded-opentype"),
    url(../../templates/fonts/MrEavesXLModOT-Bold.woff2) format("woff2"),
    url(../../templates/fonts/MrEavesXLModOT-Bold.woff) format("woff"),
    url(../../templates/fonts/MrEavesXLModOT-Bold.ttf) format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "MrEavesXLModOT";
  src: url(../../templates/fonts/MrEavesXLModOT-RegItalic.eot);
  src: url(../../templates/fonts/MrEavesXLModOT-RegItalic.eot?#iefix)
      format("embedded-opentype"),
    url(../../templates/fonts/MrEavesXLModOT-RegItalic.woff2) format("woff2"),
    url(../../templates/fonts/MrEavesXLModOT-RegItalic.woff) format("woff"),
    url(../../templates/fonts/MrEavesXLModOT-RegItalic.ttf) format("truetype");
  font-weight: normal;
  font-style: italic;
  font-display: block;
}
html {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  font-weight: 400;
}
@-moz-document url-prefix() {
  body {
    font-weight: lighter !important;
  }
}
* {
  -webkit-overflow-scrolling: touch;
}
div::-moz-focus-inner {
  border: 0;
  outline: 0;
}
img {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}
::selection {
  color: white;
  background: black;
}
html,
body {
  margin: 0;
  padding: 0;
  font-family: "DFMHamburg", Helvetica, Arial, sans-serif;
  color: #000;
  -webkit-font-smoothing: antialiased;
  width: 100%;
}
a {
  text-decoration: none;
}
a:active,
a:visited,
a:hover {
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "MrEavesSanOT";
  font-weight: 700;
  line-height: 1.2em;
}
h1 {
  font-size: 45px;
}
h2 {
  font-size: 36px;
  font-weight: 600;
  font-family: "MrEavesXLModOT";
}
h2.dfm {
  font-family: "DFMHamburg";
}
h3 {
  font-size: 24px;
  font-family: "MrEavesXLModOT";
}
@media (min-width: 640px) {
  h3 {
    font-size: 28px;
  }
}
@media (min-width: 1024px) {
  h3 {
    font-size: 32px;
  }
}
h3.dfm {
  font-family: "DFMHamburg";
}
h4 {
  font-weight: 600;
  font-family: "MrEavesXLModOT";
}
h5 {
  font-family: "MrEavesXLModOT";
}
p,
li {
  font-size: 20px;
  line-height: 1.2em;
  font-family: "MrEavesXLModOT";
  max-width: 770px;
  font-weight: 600;
  margin-bottom: 0.7rem;
}
a {
  font-family: "MrEavesXLModOT";
  color: #000;
}
a[href^="tel"] {
  color: inherit;
  text-decoration: none;
}
section {
  padding-top: 0px;
  padding-top: 0px;
  padding-bottom: 100px;
}
section .grid-container {
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  section .grid-container {
    margin-left: 400px;
  }
}
section.overview-content {
  padding-top: 60px;
  padding-bottom: 0px;
  min-height: 50vh;
}
@media (min-width: 640px) {
  section.overview-content {
    padding-bottom: 0px;
  }
}
@media (min-width: 1024px) {
  section.overview-content {
    padding-top: 12vh;
    padding-bottom: 0px;
  }
}
section.overview-content.basicpage {
  margin-top: 50px;
}
section.main-content {
  padding-top: 40px;
  padding-bottom: 0;
  min-height: 50vh;
}
@media (min-width: 370px) {
  section.main-content {
    padding-top: 50px;
  }
}
@media (min-width: 640px) {
  section.main-content {
    padding-top: 50px;
    padding-bottom: 25px;
  }
}
@media (min-width: 1024px) {
  section.main-content {
    padding-top: 0px;
    padding-bottom: 10px;
  }
}
section#dfm-home-newsteaser {
  padding-top: 0px;
  padding-bottom: 0px;
}
@media (min-width: 640px) {
  section#dfm-home-newsteaser {
    padding-bottom: 20px;
  }
}
section .headline-overimg {
  display: none;
  position: absolute;
  top: 10px;
  max-width: 50vh;
  padding-left: 15px;
}
section .headline-overimg.alignbottom {
  position: relative;
  top: unset;
  bottom: 50px;
}
section .headline-overimg .dfm {
  font-size: 20px;
}
@media (min-width: 1024px) {
  section .headline-overimg .dfm {
    font-size: 24px;
  }
}
section .headline-overimg a {
  color: white;
}
#anchor-mininav {
  position: relative;
  top: -70px;
}
#socialmedia {
  transform: translate3d(0, 0, 0);
  display: none;
  position: fixed;
  z-index: 99990;
  top: 20px;
  right: 20px;
  width: 160px;
  height: 50px;
  text-align: right;
}
@media (min-width: 1024px) {
  #socialmedia {
    display: block;
  }
}
#socialmedia a {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-left: 12px;
  transition: transform 0.1s;
  transform: scale(1);
}
#socialmedia a:hover {
  transition: transform 0.1s;
  transform: scale(1.2);
}
#socialmedia a img {
  width: 100%;
  height: 100%;
}
#dfm-mobilemenu {
  display: block;
  transform: translate3d(0, 0, 0);
  position: fixed;
  width: 100%;
  height: auto;
  min-height: 40px;
  top: 0px;
  right: 0px;
  color: white;
  z-index: 19990;
  pointer-events: none;
}
@media (min-width: 370px) {
  #dfm-mobilemenu {
    min-height: 50px;
  }
}
@media (min-width: 1024px) {
  #dfm-mobilemenu {
    display: none;
  }
}
#dfm-mobilemenu .clickcatcher {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
  z-index: 1000;
  width: 100vw;
  height: 120vh;
  transition: background-color 0.3s;
}
#dfm-mobilemenu .close-cross {
  cursor: pointer;
  pointer-events: none;
  position: absolute;
  display: block;
  background-color: transparent;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  z-index: 5000;
}
#dfm-mobilemenu .hamburger-box {
  position: absolute;
  width: 100%;
  text-align: right;
  pointer-events: none;
  z-index: 3500;
}
#dfm-mobilemenu .hamburger-box .hamburger {
  padding: 18px 12px;
  pointer-events: all;
  cursor: pointer;
  z-index: 3010;
  position: relative;
  right: 0;
  top: 0;
  display: inline-block;
  margin: 0px;
  height: 40px;
  width: 40px;
  background-color: #000;
  text-align: right;
  transition: all 0.3s;
}
@media (min-width: 370px) {
  #dfm-mobilemenu .hamburger-box .hamburger {
    height: 50px;
    width: 50px;
  }
}
#dfm-mobilemenu .hamburger-box .hamburger.showcross {
  background-color: white;
  transition: all 0.3s;
}
#dfm-mobilemenu .hamburger-box .hamburger.showcross .logo {
  opacity: 1;
}
#dfm-mobilemenu .hamburger-box .hamburger.showcross .hamburger-inner {
  max-width: 36px;
  opacity: 0;
  background-color: #000;
}
#dfm-mobilemenu .hamburger-box .hamburger.showcross .hamburger-inner:after,
#dfm-mobilemenu .hamburger-box .hamburger.showcross .hamburger-inner:before {
  background-color: #000;
}
#dfm-mobilemenu .hamburger-box .hamburger.forcehide .logo {
  opacity: 0 !important;
}
#dfm-mobilemenu .hamburger-box .hamburger.forcehide .hamburger-inner {
  opacity: 1 !important;
}
#dfm-mobilemenu .hamburger-box .hamburger .turnbox {
  position: absolute;
  top: 0;
  right: 0;
  transition: all 0.4s;
  transform: rotate(0);
  height: 40px;
  width: 40px;
}
@media (min-width: 370px) {
  #dfm-mobilemenu .hamburger-box .hamburger .turnbox {
    height: 50px;
    width: 50px;
  }
}
#dfm-mobilemenu .hamburger-box .hamburger .turnbox .hamburger-inner {
  opacity: 1;
  transition: all 0.3s;
  position: absolute;
  top: 20px;
  right: 10px;
  width: 20px;
  height: 4px;
  background-color: white;
}
@media (min-width: 370px) {
  #dfm-mobilemenu .hamburger-box .hamburger .turnbox .hamburger-inner {
    top: 26px;
    right: 11px;
    width: 28px;
  }
}
#dfm-mobilemenu .hamburger-box .hamburger .turnbox .hamburger-inner:before {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  height: 4px;
  background-color: white;
}
#dfm-mobilemenu .hamburger-box.menuopen,
#dfm-mobilemenu .hamburger-box.menu-halfopen {
  transition: all 0.3s;
  pointer-events: all;
}
#dfm-mobilemenu .hamburger-box.menuopen .hamburger,
#dfm-mobilemenu .hamburger-box.menu-halfopen .hamburger {
  transition: all 0.3s;
  margin-top: 0px;
  margin-bottom: 0;
}
#dfm-mobilemenu .hamburger-box.menuopen .hamburger .hamburger-inner,
#dfm-mobilemenu .hamburger-box.menu-halfopen .hamburger .hamburger-inner {
  max-width: 36px;
}
#dfm-mobilemenu .hamburger-box.menuopen .logo_wrapper,
#dfm-mobilemenu .hamburger-box.menu-halfopen .logo_wrapper {
  height: auto;
  opacity: 1;
}
#dfm-mobilemenu .hamburger-box.menuopen .logo_wrapper .name,
#dfm-mobilemenu .hamburger-box.menu-halfopen .logo_wrapper .name {
  transition: opacity 0.4s;
  transition-delay: 0.1s;
  opacity: 1;
}
#dfm-mobilemenu .hamburger-box.menuopen .logo_wrapper .subline,
#dfm-mobilemenu .hamburger-box.menu-halfopen .logo_wrapper .subline {
  transition: opacity 0.4s;
  transition-delay: 0.1s;
  opacity: 1;
}
#dfm-mobilemenu .mobilemenu {
  transition: all 0.3s;
  position: absolute;
  right: -100vw;
  opacity: 1;
  padding-top: 40px;
  height: 0px;
  overflow-y: hidden;
  width: 100%;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  background: #000;
  z-index: 2500;
  overflow: hidden;
}
@media (min-width: 370px) {
  #dfm-mobilemenu .mobilemenu {
    padding-top: 50px;
  }
}
#dfm-mobilemenu .mobilemenu .homelink {
  position: absolute;
  left: 0;
  top: 0px;
  transition: top 0.1s ease-in-out 0s;
  z-index: 14000;
}
#dfm-mobilemenu .mobilemenu .homelink .logo {
  opacity: 1;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.3s;
  transform: rotate(0deg);
  max-width: 260px;
  padding-left: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
}
@media (min-width: 370px) {
  #dfm-mobilemenu .mobilemenu .homelink .logo {
    padding-left: 4px;
    height: 50px;
    max-width: 325px;
  }
}
@media (min-width: 480px) {
  #dfm-mobilemenu .mobilemenu .homelink .logo {
    max-width: 380px;
  }
}
#dfm-mobilemenu .mobilemenu .menuitems-wrapper {
  padding-top: 30px;
  padding-bottom: 10px;
  padding-right: 5px;
  text-align: right;
  opacity: 0;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
}
#dfm-mobilemenu .mobilemenu .menuitems-wrapper .menuitem {
  box-sizing: border-box;
  width: 100%;
  font-size: 22px;
  display: block;
  font-weight: 400;
  text-transform: uppercase;
}
#dfm-mobilemenu .mobilemenu .menuitems-wrapper .menuitem.dfm-news {
  margin-bottom: 15px;
}
#dfm-mobilemenu .mobilemenu .menuitems-wrapper .menuitem.services {
  margin-bottom: 15px;
}
#dfm-mobilemenu .mobilemenu .menuitems-wrapper .menuitem a {
  width: 100%;
  display: inline-block;
  color: white;
  word-spacing: 2px;
  font-family: "DFMHamburg";
  padding: 4px 10px;
}
#dfm-mobilemenu .mobilemenu .menuitems-wrapper .menuitem a .inner {
  display: inline;
  position: relative;
}
#dfm-mobilemenu .mobilemenu .menuitems-wrapper .menuitem a .inner:before {
  content: "";
  position: absolute;
  display: block;
  bottom: -5px;
  height: 2px;
  width: 0;
  background-color: white;
  left: 0;
  right: 0;
  transition: width 0.25s;
}
#dfm-mobilemenu .mobilemenu .menuitems-wrapper .menuitem:hover a .inner {
  display: inline;
  position: relative;
}
@media (min-width: 1024px) {
  #dfm-mobilemenu
    .mobilemenu
    .menuitems-wrapper
    .menuitem:hover
    a
    .inner:before {
    content: "";
    position: absolute;
    display: block;
    bottom: -5px;
    height: 2px;
    width: 100%;
    background-color: white;
    left: 0;
    right: 0;
    transition: width 0.15s;
  }
}
#dfm-mobilemenu.menuopen {
  pointer-events: all;
}
#dfm-mobilemenu.menuopen .close-cross {
  pointer-events: all;
}
#dfm-mobilemenu.menuopen .mobilemenu {
  right: 0px;
  opacity: 1;
  height: 365px;
}
#dfm-mobilemenu.menuopen .mobilemenu .homelink {
  top: 0;
  pointer-events: all;
  cursor: pointer;
  transition: top 0.15s ease-in-out 0.2s;
}
#dfm-mobilemenu.menuopen .mobilemenu .menuitems-wrapper {
  transition: opacity 0.4s;
  transition-delay: 0.1s;
  opacity: 1;
}
#dfm-mobilemenu.menuopen .clickcatcher {
  pointer-events: all;
  background-color: rgba(0, 0, 0, 0.4);
  transition: background-color 0.3s;
}
#dfm-mobilemenu.menu-halfopen {
  pointer-events: all;
}
#dfm-mobilemenu.menu-halfopen .menuitems-wrapper {
  pointer-events: all;
}
#dfm-mobilemenu.menu-halfopen .homelink .logo {
  opacity: 1;
  transition: opacity 0.3s 0.2s;
}
#dfm-mobilemenu.menu-halfopen:not(.menuopen) .turnbox {
  transform: rotate(90deg);
  transition: transform 0.4s;
}
#dfm-mobilemenu.menu-halfopen:not(.menuopen) .mobilemenu {
  width: 100%;
  right: 0px;
  opacity: 1;
  height: 0;
  transition: top 0s, right 0.3s, height 0.25s;
}
@media (min-width: 370px) {
  #dfm-mobilemenu.menu-halfopen:not(.menuopen) .mobilemenu {
    padding-top: 50px;
  }
}
#dfm-mobilemenu.menu-halfopen:not(.menuopen) .mobilemenu .homelink {
  transition: top 0s linear 0s;
}
#dfm-mobilemenu.menu-halfopen:not(.menuopen) .mobilemenu .menuitems-wrapper {
  height: 0;
  padding: 0;
  overflow: hidden;
}
#dfm-mobilemenu.menu-halfopen:not(.menuopen) .clickcatcher {
  pointer-events: none;
  background-color: rgba(0, 0, 0, 0);
}
#dfm-mobilemenu:not(.menuopen):not(.menu-halfopen) .homelink .logo {
  opacity: 0;
  transition: opacity 0.15s;
}
@media (min-width: 640px) {
  #dfm-mobilemenu:not(.menuopen):not(.menu-halfopen) .homelink .logo {
    opacity: 1;
  }
}
#dfm-heromenu {
  display: none;
  z-index: 100000;
  position: fixed;
  left: 0;
  top: 13vh;
  width: 550px;
  min-height: 40px;
  transition: width 0.5s;
  pointer-events: none;
}
@media (min-width: 1024px) {
  #dfm-heromenu {
    display: block;
    transform-origin: top left;
    transform: scale(1);
  }
  #dfm-heromenu.hero-active .menu-wrapper {
    transform-origin: top left;
  }
  #dfm-heromenu.hero-active .menu-wrapper .titlebar {
    transform: scale(1.8) !important;
    transform-origin: left;
    transition: transform 0.8s !important;
  }
  #dfm-heromenu.hero-active .menu-wrapper .menuitems {
    transform: translateX(170px) scale(1.3) !important;
    transform-origin: top left;
    transition: transform 0.8s !important;
  }
}
@media (min-width: 1024px) {
  #dfm-heromenu.menu-hero {
    display: block;
  }
}
#dfm-heromenu .menu-wrapper {
  padding: 0px 10px 10px 0px;
  pointer-events: none;
}
#dfm-heromenu .menu-wrapper .titlebar {
  width: auto;
  position: relative;
  left: -175px;
  margin-bottom: 55px;
  background-color: #000;
  transition: transform 0.8s;
  transform: translateX(0px) scale(1);
  transform-origin: left;
  pointer-events: all;
}
#dfm-heromenu .menu-wrapper .titlebar a.title .inner {
  font-family: "DFMHamburg";
  text-transform: uppercase;
  color: white;
  position: relative;
  text-align: right;
  padding: 8px 8px 8px 0;
  white-space: nowrap;
  box-sizing: border-box;
  border-left: 80px solid #000;
  letter-spacing: 0.05em;
}
#dfm-heromenu .menu-wrapper .titlebar a.title .inner img {
  height: 32px;
}
#dfm-heromenu .menu-wrapper .titlebar a.title .inner.inv {
  background-color: white;
}
#dfm-heromenu .menu-wrapper .titlebar a.title .inner.inv img {
  filter: invert(1);
}
#dfm-heromenu .menu-wrapper .titlebar:hover {
  transition: transform 0.25s ease-in-out;
  transform: translateX(20px);
}
#dfm-heromenu .menu-wrapper .menuitems {
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  padding-left: 0px;
  margin-left: -250px;
  pointer-events: none;
  transform: translateX(0);
  transition: transform 0.8s;
  transform-origin: top left;
}
#dfm-heromenu
  .menu-wrapper
  .menuitems.menu-kollektionen
  .menuitem.kollektionen
  a {
  transform: translateX(85px) !important;
}
#dfm-heromenu .menu-wrapper .menuitems.menu-news .menuitem.dfm-news a {
  transform: translateX(85px) !important;
}
#dfm-heromenu .menu-wrapper .menuitems.menu-atelier .menuitem.atelier a {
  transform: translateX(85px) !important;
}
#dfm-heromenu .menu-wrapper .menuitems.menu-labels .menuitem.labels a {
  transform: translateX(85px) !important;
}
#dfm-heromenu .menu-wrapper .menuitems.menu-services .menuitem.services a {
  transform: translateX(85px) !important;
}
#dfm-heromenu .menu-wrapper .menuitems .menuitem {
  pointer-events: all;
  position: relative;
  width: auto;
  margin-bottom: 0px;
  box-sizing: border-box;
  transform: translateX(0);
}
#dfm-heromenu .menu-wrapper .menuitems .menuitem.kollektionen {
  left: -60px;
}
#dfm-heromenu .menu-wrapper .menuitems .menuitem.dfm-news {
  margin-bottom: 25px;
  left: -5px;
}
#dfm-heromenu .menu-wrapper .menuitems .menuitem.atelier {
  left: 20px;
}
#dfm-heromenu .menu-wrapper .menuitems .menuitem.labels {
  left: 20px;
}
#dfm-heromenu .menu-wrapper .menuitems .menuitem.services {
  left: 0px;
  margin-bottom: 25px;
}
#dfm-heromenu .menu-wrapper .menuitems .menuitem.contactlink {
  margin-bottom: 25px;
  left: -20px;
}
#dfm-heromenu .menu-wrapper .menuitems .menuitem a {
  display: block;
  padding: 0px 12px;
  height: 40px;
  box-sizing: content-box;
  transition: transform 0.8s ease-in-out 0.05s;
  transform: translateX(-40px);
}
#dfm-heromenu .menu-wrapper .menuitems .menuitem a .inner {
  padding: 4px 6px 4px 365px;
  background-color: #000;
  font-size: 22px;
  font-family: "DFMHamburg";
  text-transform: uppercase;
  color: white;
  position: relative;
  text-align: right;
  line-height: 1.2em;
}
#dfm-heromenu .menu-wrapper .menuitems .menuitem a .inner.inv {
  color: #000;
  background-color: white;
}
#dfm-heromenu .menu-wrapper .menuitems .menuitem:hover a {
  transform: translateX(0px);
  transition: transform 0.25s ease-in-out;
}
#dfm-hero {
  background-color: #000;
  padding: 0;
  padding-top: 40px;
}
@media (min-width: 370px) {
  #dfm-hero {
    padding-top: 50px;
  }
}
@media (min-width: 1024px) {
  #dfm-hero {
    padding-top: 0;
  }
}
#dfm-hero .hero {
  min-height: 400px;
  max-height: 420px;
  height: 60vh;
  display: block;
  background-color: #000;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
@media (min-width: 370px) {
  #dfm-hero .hero {
    max-height: 520px;
  }
}
@media (min-width: 480px) {
  #dfm-hero .hero {
    max-height: 650px;
  }
}
@media (min-width: 640px) {
  #dfm-hero .hero {
    height: 80vh;
    min-height: 550px;
    max-height: unset;
  }
}
@media (min-width: 1024px) {
  #dfm-hero .hero {
    height: 100vh;
    min-height: 700px;
  }
}
#dfm-hero .hero .homeslider {
  height: 100%;
}
#dfm-hero .hero .homeslider .swiper-container {
  height: 100%;
}
#dfm-hero .hero .homeslider .swiper-container .swiper-wrapper .swiper-slide {
  max-height: 100vh;
  height: unset;
  overflow: hidden;
}
@media (min-width: 640px) {
  #dfm-hero .hero .homeslider .swiper-container .swiper-wrapper .swiper-slide {
    min-height: 600px;
  }
}
#dfm-hero
  .hero
  .homeslider
  .swiper-container
  .swiper-wrapper
  .swiper-slide.video-slide {
  display: none;
}
#dfm-hero
  .hero
  .homeslider
  .swiper-container
  .swiper-wrapper
  .swiper-slide.video-slide.showvidslide {
  display: block;
}
#dfm-hero
  .hero
  .homeslider
  .swiper-container
  .swiper-wrapper
  .swiper-slide.video-slide
  .homeslide-content {
  padding-bottom: 5px !important;
}
#dfm-hero
  .hero
  .homeslider
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .heroimage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #000;
  font-family: "MrEavesXLModOT";
  color: #000;
  transform: scale(1.01);
}
#dfm-hero
  .hero
  .homeslider
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .videoplayer {
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: -1;
}
#dfm-hero
  .hero
  .homeslider
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .homeslide-cell {
  position: relative;
}
#dfm-hero
  .hero
  .homeslider
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .homeslide-cell
  .homeslide-content {
  display: flex;
  position: absolute;
  z-index: 10000;
  height: 100%;
  width: auto;
  right: 0;
  bottom: 0px;
  border: 0;
  flex-flow: column-reverse;
  text-align: right;
  padding: 0 0.812rem 0px;
  box-sizing: border-box;
  color: white;
}
#dfm-hero
  .hero
  .homeslider
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .homeslide-cell
  .homeslide-content
  .homeslider-link-wrapper {
  width: 100%;
  margin-bottom: 10px;
}
#dfm-hero
  .hero
  .homeslider
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .homeslide-cell
  .homeslide-content
  .homeslider-link-wrapper
  .homeslider-headline {
  color: white;
  padding: 10px 0;
  font-family: "MrEavesXLModOT";
  font-size: 38px;
  font-weight: 600;
  line-height: 1em;
}
@media (min-width: 640px) {
  #dfm-hero
    .hero
    .homeslider
    .swiper-container
    .swiper-wrapper
    .swiper-slide
    .homeslide-cell
    .homeslide-content
    .homeslider-link-wrapper
    .homeslider-headline {
    font-size: 44px;
  }
}
#dfm-hero
  .hero
  .homeslider
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .homeslide-cell
  .homeslide-content
  .homeslider-link-wrapper
  .plus-link {
  right: -5px;
  top: -5px;
  transform: scale(1.25);
  width: 30px;
  height: 20px;
  display: inline-block;
  position: relative;
}
#dfm-hero
  .hero
  .homeslider
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .homeslide-cell
  .homeslide-content
  .homeslider-link-wrapper
  .plus-link
  .closecross {
  display: block;
  top: 50%;
  margin-top: 10px;
  background-color: #fff;
  width: 24px;
  height: 3px;
  transform: rotate(0deg);
  transition-property: transform;
  transition-duration: 0.8s;
  transition-delay: 0.4s;
  transition-timing-function: ease;
}
#dfm-hero
  .hero
  .homeslider
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .homeslide-cell
  .homeslide-content
  .homeslider-link-wrapper
  .plus-link
  .closecross::before {
  width: 24px;
  height: 3px;
  background-color: #fff;
  border-radius: 0;
  position: absolute;
  transform: rotate(-90deg);
  content: "";
  display: block;
}
#dfm-hero
  .hero
  .homeslider
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .homeslide-cell
  .homeslide-content
  .homeslider-link-wrapper
  .plus-link
  .closecross {
  transition-delay: 0s;
}
#dfm-hero
  .hero
  .homeslider
  .swiper-container
  .swiper-wrapper
  .swiper-slide
  .homeslide-cell
  .homeslide-content
  .homeslider-link-wrapper:hover
  .plus-link
  .closecross {
  transform: rotate(90deg);
  transition-property: transform;
  transition-duration: 0.4s;
  transition-delay: 0s;
  transition-timing-function: ease;
}
#dfm-home-mininav {
  padding-top: 5px;
  padding-bottom: 15px;
}
#dfm-home-mininav .mininav-wrapper {
  padding: 5px 0;
}
#dfm-home-mininav .mininav-wrapper .mininav .mininav-trenner {
  display: block;
  height: 1px;
  background: #ddd;
  width: auto;
  margin: 8px 2px 6px 2px;
  box-sizing: border-box;
}
@media (min-width: 370px) {
  #dfm-home-mininav .mininav-wrapper .mininav .mininav-trenner {
    margin: 15px 5px 10px 2px;
  }
}
@media (min-width: 480px) {
  #dfm-home-mininav .mininav-wrapper .mininav .mininav-trenner {
    margin: 20px 5px 12px 2px;
  }
}
#dfm-home-mininav .mininav-wrapper .mininav .mininav-navitem .navitem-header {
  font-family: "DFMHamburg";
  color: #000;
  font-size: 26px;
  border: 0;
  padding: 15px 0 5px;
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  justify-content: space-between;
}
@media (min-width: 370px) {
  #dfm-home-mininav .mininav-wrapper .mininav .mininav-navitem .navitem-header {
    font-size: 32px;
  }
}
@media (min-width: 640px) {
  #dfm-home-mininav .mininav-wrapper .mininav .mininav-navitem .navitem-header {
    font-size: 34px;
  }
}
#dfm-home-mininav
  .mininav-wrapper
  .mininav
  .mininav-navitem
  .navitem-header:hover {
  background: transparent;
}
#dfm-home-mininav
  .mininav-wrapper
  .mininav
  .mininav-navitem
  .navitem-header:before {
  display: none;
}
#dfm-home-mininav
  .mininav-wrapper
  .mininav
  .mininav-navitem
  .navitem-header
  .linktext {
  max-width: 70%;
}
#dfm-home-mininav
  .mininav-wrapper
  .mininav
  .mininav-navitem
  .navitem-header
  .mininav-closecross-wrapper {
  width: 30px;
  height: 20px;
  display: inline-block;
  position: relative;
  padding-top: 0;
  width: 24px;
}
#dfm-home-mininav
  .mininav-wrapper
  .mininav
  .mininav-navitem
  .navitem-header
  .mininav-closecross-wrapper
  .closecross {
  display: block;
  top: 50%;
  margin-top: 10px;
  background-color: #000;
  width: 24px;
  height: 3px;
  transform: rotate(0deg);
  transition-property: transform;
  transition-duration: 0.8s;
  transition-delay: 0.4s;
  transition-timing-function: ease;
}
#dfm-home-mininav
  .mininav-wrapper
  .mininav
  .mininav-navitem
  .navitem-header
  .mininav-closecross-wrapper
  .closecross::before {
  width: 24px;
  height: 3px;
  background-color: #000;
  border-radius: 0;
  position: absolute;
  transform: rotate(-90deg);
  content: "";
  display: block;
}
#dfm-home-mininav
  .mininav-wrapper
  .mininav
  .mininav-navitem
  .navitem-header
  .mininav-closecross-wrapper
  .closecross {
  width: 22px;
}
#dfm-home-mininav
  .mininav-wrapper
  .mininav
  .mininav-navitem
  .navitem-header
  .mininav-closecross-wrapper
  .closecross:before {
  width: 22px;
}
@media (min-width: 370px) {
  #dfm-home-mininav
    .mininav-wrapper
    .mininav
    .mininav-navitem
    .navitem-header
    .mininav-closecross-wrapper {
    padding-top: 4px;
    width: 30px;
    height: 20px;
    display: inline-block;
    position: relative;
    width: 30px;
  }
  #dfm-home-mininav
    .mininav-wrapper
    .mininav
    .mininav-navitem
    .navitem-header
    .mininav-closecross-wrapper
    .closecross {
    display: block;
    top: 50%;
    margin-top: 10px;
    background-color: #000;
    width: 24px;
    height: 3px;
    transform: rotate(0deg);
    transition-property: transform;
    transition-duration: 0.8s;
    transition-delay: 0.4s;
    transition-timing-function: ease;
  }
  #dfm-home-mininav
    .mininav-wrapper
    .mininav
    .mininav-navitem
    .navitem-header
    .mininav-closecross-wrapper
    .closecross::before {
    width: 24px;
    height: 3px;
    background-color: #000;
    border-radius: 0;
    position: absolute;
    transform: rotate(-90deg);
    content: "";
    display: block;
  }
}
#dfm-home-mininav
  .mininav-wrapper
  .mininav
  .mininav-navitem:hover
  .mininav-closecross-wrapper
  .closecross {
  transform: rotate(90deg);
  transition-property: transform;
  transition-duration: 0.4s;
  transition-delay: 0s;
  transition-timing-function: ease;
}
#dfm-home-mininav
  .mininav-wrapper
  .mininav
  .mininav-navitem:not(.is-active)
  .mininav-closecross-wrapper
  .closecross {
  transition-delay: 0s;
  transition-duration: 0.4s;
}
#dfm-home-mininav
  .mininav-wrapper
  .mininav
  .mininav-navitem.is-active
  .mininav-closecross-wrapper
  .closecross {
  transform: rotate(225deg);
  transition-property: transform;
  transition-duration: 0.4s;
  transition-delay: 0s;
  transition-timing-function: ease;
}
#dfm-home-mininav .mininav-wrapper .mininav .mininav-navitem .navitem-content {
  border: 0;
  padding: 5px 1px;
}
#dfm-home-mininav
  .mininav-wrapper
  .mininav
  .mininav-navitem
  .navitem-content:before {
  display: none;
}
#dfm-home-mininav
  .mininav-wrapper
  .mininav
  .mininav-navitem
  .navitem-content
  .navitem-links-wrapper
  ul.navitem-links {
  padding-top: 5px;
  padding-bottom: 10px;
  list-style-type: none;
  margin-left: 0;
  margin-bottom: 0;
  column-count: 1;
  column-gap: 10px;
  column-width: 50%;
}
@media (min-width: 480px) {
  #dfm-home-mininav
    .mininav-wrapper
    .mininav
    .mininav-navitem
    .navitem-content
    .navitem-links-wrapper
    ul.navitem-links {
    column-count: 2;
  }
}
#dfm-home-mininav
  .mininav-wrapper
  .mininav
  .mininav-navitem
  .navitem-content
  .navitem-links-wrapper
  ul.navitem-links
  a.navitem-link {
  font-size: 24px;
  font-weight: 600;
  font-family: "MrEavesXLModOT";
  line-height: 1em;
  padding: 0;
  hyphens: auto;
}
@media (min-width: 370px) {
  #dfm-home-mininav
    .mininav-wrapper
    .mininav
    .mininav-navitem
    .navitem-content
    .navitem-links-wrapper
    ul.navitem-links
    a.navitem-link {
    font-size: 30px;
  }
}
@media (min-width: 640px) {
  #dfm-home-mininav
    .mininav-wrapper
    .mininav
    .mininav-navitem
    .navitem-content
    .navitem-links-wrapper
    ul.navitem-links
    a.navitem-link {
    font-size: 32px;
  }
}
#dfm-home-mininav
  .mininav-wrapper
  .mininav
  .mininav-navitem
  .navitem-content
  .navitem-links-wrapper
  ul.navitem-links
  a.navitem-link.last {
  padding-left: 0px;
  font-style: italic;
  font-weight: 300;
  text-align: left;
  padding-right: 10px;
}
#dfm-home-mininav
  .mininav-wrapper
  .mininav
  .mininav-navitem
  .navitem-content
  .navitem-links-wrapper
  ul.navitem-links
  a.navitem-link.last
  .arrow-right {
  display: inline-block;
  position: relative;
  top: -1px;
  padding-left: 1px;
  padding-right: 8px;
  transform: translateX(0px);
  transition: transform 0.2s linear;
}
#dfm-home-mininav
  .mininav-wrapper
  .mininav
  .mininav-navitem
  .navitem-content
  .navitem-links-wrapper
  ul.navitem-links
  a.navitem-link.last
  .arrow-right:hover {
  transform: translateX(10px);
  transition: transform 0.2s linear;
}
.testcell {
  height: 100px;
  background: grey;
  border: 20px solid transparent;
  background-clip: content-box;
  border-image: url(../../templates/img/bordertest.png) 30 repeat;
  border-left: none;
  border-right: none;
  border-bottom: none;
  margin-bottom: 40px;
  margin-top: 40px;
}
.MarkupPagerNav {
  clear: both;
  margin: 1em 0 1em;
  font-family: "DFMHamburg";
}
.MarkupPagerNav li {
  display: inline;
  list-style: none;
  margin: 0;
  font-family: "DFMHamburg";
}
.MarkupPagerNav li a,
.MarkupPagerNav li.MarkupPagerNavSeparator {
  display: block;
  float: left;
  padding: 2px 9px;
  color: #000;
  background: transparent;
  margin-right: 3px;
  font-size: 22px;
  font-weight: bold;
  text-transform: uppercase;
  font-family: "DFMHamburg";
  transform: scale(1);
  transition: transform 0.1s;
}
.MarkupPagerNav
  li:not(.MarkupPagerNavNext):not(.MarkupPagerNavPrevious)
  a:hover {
  transition: transform 0.1s;
  transform: scale(1.25);
}
.MarkupPagerNav li.MarkupPagerNavOn a {
  pointer-events: none;
  position: relative;
}
.MarkupPagerNav li.MarkupPagerNavOn a,
.MarkupPagerNav li a:hover {
  color: #000;
  background: transparent;
  text-decoration: none;
}
.MarkupPagerNav li.MarkupPagerNavSeparator {
  display: inline;
  color: #777;
  background: #d2e4ea;
  padding-left: 3px;
  padding-right: 3px;
}
.MarkupPagerNav .next,
.MarkupPagerNav .prev {
  margin-top: -3px;
  height: 32px;
  transform: translateX(0);
  transition: transform 0.2s;
}
.MarkupPagerNav .next:hover {
  transition: transform 0.2s;
  transform: translateX(5px);
}
.MarkupPagerNav .prev:hover {
  transition: transform 0.2s;
  transform: translateX(-5px);
}
.sharethis {
  padding-top: 30px;
}
ul.MarkupSocialShareButtons {
  list-style-type: none;
  text-align: left;
  margin-left: -10px;
  margin-bottom: 20px;
}
ul.MarkupSocialShareButtons li.mssb-item {
  display: inline-block;
  transform: scale(1);
  transition: transform 0.15s;
}
ul.MarkupSocialShareButtons li.mssb-item:hover {
  transition: transform 0.15s;
  transform: scale(1.2);
}
ul.MarkupSocialShareButtons li.mssb-item a {
  padding: 10px;
}
ul.MarkupSocialShareButtons li.mssb-item a img {
  width: 30px;
}
#dfm-home-newsteaser .overview-items {
  display: flex;
  flex-flow: row wrap;
  align-items: space-between;
  justify-content: space-between;
}
#dfm-home-newsteaser .overview-items::after {
  content: "";
  flex: 0 49.5%;
}
#dfm-home-newsteaser .overview-items .overview-item {
  overflow: hidden;
  display: block;
  width: 100%;
  position: relative;
  margin-bottom: 10px;
  box-sizing: border-box;
  height: 0;
  padding-top: 64%;
  background-color: #ccc;
}
@media (min-width: 640px) {
  #dfm-home-newsteaser .overview-items .overview-item {
    padding-top: 32%;
    width: 49.75%;
  }
}
#dfm-home-newsteaser .overview-items .overview-item .img-wrapper {
  position: absolute;
  top: 0;
  width: 100%;
  min-width: 100%;
  height: 100%;
}
#dfm-home-newsteaser .overview-items .overview-item .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#dfm-home-newsteaser .newsheadline {
  position: absolute;
  font-family: "DFMHamburg";
  top: 0px;
  left: 8px;
  font-size: 28px;
  color: white;
}
@media (min-width: 640px) {
  #dfm-home-newsteaser .newsheadline {
    left: 10px;
    font-size: 52px;
  }
}
@media (min-width: 640px) {
  #dfm-home-newsteaser .newsheadline {
    top: -3px;
    font-size: 34px;
  }
}
#dfm-home-newsteaser .news-link-wrapper {
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
}
#dfm-home-newsteaser .news-link-wrapper .texts-wrapper {
  position: absolute;
  bottom: 5px;
  left: 10px;
  right: 0;
  color: white;
}
#dfm-home-newsteaser .news-link-wrapper .texts-wrapper .newslabel {
  font-size: 16px;
  font-family: "MrEavesXLModOT";
  text-transform: uppercase;
  margin-bottom: -10px;
  padding-left: 1px;
  padding-bottom: 12px;
}
#dfm-home-newsteaser .news-link-wrapper .texts-wrapper .newstitle {
  font-size: 8vw;
  line-height: 1em;
  font-family: "MrEavesXLModOT";
  font-weight: 600;
  padding-bottom: 5px;
  padding-right: 10%;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
@media (min-width: 640px) {
  #dfm-home-newsteaser .news-link-wrapper .texts-wrapper .newstitle {
    font-size: 3.5vw;
  }
}
@media (min-width: 1024px) {
  #dfm-home-newsteaser .news-link-wrapper .texts-wrapper .newstitle {
    font-size: 2.3vw;
  }
}
#dfm-home-newsteaser .news-link-wrapper .plus-link {
  width: 30px;
  height: 20px;
  display: inline-block;
  position: relative;
  right: 5px;
  top: 10px;
  position: absolute;
}
#dfm-home-newsteaser .news-link-wrapper .plus-link .closecross {
  display: block;
  top: 50%;
  margin-top: 10px;
  background-color: #fff;
  width: 24px;
  height: 3px;
  transform: rotate(0deg);
  transition-property: transform;
  transition-duration: 0.8s;
  transition-delay: 0.4s;
  transition-timing-function: ease;
}
#dfm-home-newsteaser .news-link-wrapper .plus-link .closecross::before {
  width: 24px;
  height: 3px;
  background-color: #fff;
  border-radius: 0;
  position: absolute;
  transform: rotate(-90deg);
  content: "";
  display: block;
}
#dfm-home-newsteaser .news-link-wrapper .plus-link .closecross {
  transition-delay: 0s;
}
#dfm-home-newsteaser .news-link-wrapper:hover .plus-link .closecross {
  transform: rotate(90deg);
  transition-property: transform;
  transition-duration: 0.4s;
  transition-delay: 0s;
  transition-timing-function: ease;
}
#dfm-kollektionen {
  padding-top: 40px;
  padding-bottom: 0;
}
@media (min-width: 370px) {
  #dfm-kollektionen {
    padding-top: 50px;
  }
}
@media (min-width: 1024px) {
  #dfm-kollektionen {
    padding-top: 13vh;
  }
}
#dfm-kollektionen .kollektionen-grid {
  padding-right: 0 !important;
  padding-left: 0 !important;
}
@media (min-width: 1024px) {
  #dfm-kollektionen .kollektionen-grid {
    padding-right: 0.625rem;
    padding-left: 0.625rem;
  }
}
#dfm-kollektionen .overview-header {
  font-size: 24px;
  padding: 10px 0 5px 0;
}
@media (min-width: 640px) {
  #dfm-kollektionen .overview-header {
    font-size: 28px;
  }
}
@media (min-width: 1024px) {
  #dfm-kollektionen .overview-header {
    height: 0;
    position: absolute;
    top: 25px;
    font-size: 70px;
  }
}
#dfm-kollektionen .overview-items {
  display: flex;
  flex-flow: row wrap;
  align-items: space-between;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  #dfm-kollektionen .overview-items {
    padding-right: 7px;
  }
}
#dfm-kollektionen .overview-items::after {
  content: "";
  flex: 0 49.5%;
}
#dfm-kollektionen .overview-items .overview-item {
  display: block;
  width: 100%;
  position: relative;
  margin-bottom: 5px;
  height: 0;
  padding-top: 135%;
  background-size: cover;
  background-color: #ccc;
}
@media (min-width: 640px) {
  #dfm-kollektionen .overview-items .overview-item {
    padding-top: 75%;
    width: 100%;
  }
}
@media (min-width: 1024px) {
  #dfm-kollektionen .overview-items .overview-item {
    margin-bottom: 7px;
    padding-top: 55%;
  }
}
#dfm-kollektionen .overview-items .overview-item .img-wrapper {
  position: absolute;
  top: 0;
  width: 100%;
  min-width: 100%;
  height: 100%;
}
#dfm-kollektionen .overview-items .overview-item .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#dfm-kollektionen .overview-items .overview-item .kollektion-link-wrapper {
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-flow: row wrap;
  align-items: flex-end;
  justify-content: flex-end;
  padding-bottom: 8px;
  padding-right: 8px;
}
#dfm-kollektionen
  .overview-items
  .overview-item
  .kollektion-link-wrapper
  .texts-wrapper {
  text-align: right;
  color: white;
  padding-left: 10%;
  padding-right: 5px;
  width: 90%;
  max-width: 90%;
}
@media (min-width: 640px) {
  #dfm-kollektionen
    .overview-items
    .overview-item
    .kollektion-link-wrapper
    .texts-wrapper {
    padding-right: 10px;
  }
}
@media (min-width: 1024px) {
  #dfm-kollektionen
    .overview-items
    .overview-item
    .kollektion-link-wrapper
    .texts-wrapper {
    width: 100%;
    max-width: 100%;
  }
}
#dfm-kollektionen
  .overview-items
  .overview-item
  .kollektion-link-wrapper
  .texts-wrapper
  .plus-link {
  right: -5px;
  top: -5px;
  width: 30px;
  height: 20px;
  display: inline-block;
  position: relative;
  transform: scale(0.9);
}
#dfm-kollektionen
  .overview-items
  .overview-item
  .kollektion-link-wrapper
  .texts-wrapper
  .plus-link
  .closecross {
  display: block;
  top: 50%;
  margin-top: 10px;
  background-color: #fff;
  width: 24px;
  height: 3px;
  transform: rotate(0deg);
  transition-property: transform;
  transition-duration: 0.8s;
  transition-delay: 0.4s;
  transition-timing-function: ease;
}
#dfm-kollektionen
  .overview-items
  .overview-item
  .kollektion-link-wrapper
  .texts-wrapper
  .plus-link
  .closecross::before {
  width: 24px;
  height: 3px;
  background-color: #fff;
  border-radius: 0;
  position: absolute;
  transform: rotate(-90deg);
  content: "";
  display: block;
}
#dfm-kollektionen
  .overview-items
  .overview-item
  .kollektion-link-wrapper
  .texts-wrapper
  .plus-link
  .closecross {
  transition-delay: 0s;
}
@media (min-width: 640px) {
  #dfm-kollektionen
    .overview-items
    .overview-item
    .kollektion-link-wrapper
    .texts-wrapper
    .plus-link {
    transform: scale(1);
  }
}
@media (min-width: 1024px) {
  #dfm-kollektionen
    .overview-items
    .overview-item
    .kollektion-link-wrapper
    .texts-wrapper
    .plus-link {
    top: -10px;
    transform: scale(1.1);
  }
}
#dfm-kollektionen
  .overview-items
  .overview-item
  .kollektion-link-wrapper
  .texts-wrapper
  .kollektion-title {
  margin-top: 0;
  padding-top: 0;
  margin-bottom: 0;
  font-family: "MrEavesXLModOT";
  font-weight: 300;
  font-size: 30px;
  line-height: 1em;
}
@media (min-width: 370px) {
  #dfm-kollektionen
    .overview-items
    .overview-item
    .kollektion-link-wrapper
    .texts-wrapper
    .kollektion-title {
    font-size: 32px;
  }
}
@media (min-width: 480px) {
  #dfm-kollektionen
    .overview-items
    .overview-item
    .kollektion-link-wrapper
    .texts-wrapper
    .kollektion-title {
    font-size: 34px;
  }
}
@media (min-width: 640px) {
  #dfm-kollektionen
    .overview-items
    .overview-item
    .kollektion-link-wrapper
    .texts-wrapper
    .kollektion-title {
    font-size: 40px;
    margin-bottom: 5px;
  }
}
@media (min-width: 1024px) {
  #dfm-kollektionen
    .overview-items
    .overview-item
    .kollektion-link-wrapper
    .texts-wrapper
    .kollektion-title {
    font-size: 42px;
  }
}
@media (min-width: 1200px) {
  #dfm-kollektionen
    .overview-items
    .overview-item
    .kollektion-link-wrapper
    .texts-wrapper
    .kollektion-title {
    font-size: 44px;
  }
}
#dfm-kollektionen
  .overview-items
  .overview-item
  .kollektion-link-wrapper:hover
  .texts-wrapper
  .plus-link
  .closecross {
  transform: rotate(90deg);
  transition-property: transform;
  transition-duration: 0.4s;
  transition-delay: 0s;
  transition-timing-function: ease;
}
#dfm-kollektionen .kollheadline {
  position: absolute;
  font-family: "DFMHamburg";
  top: -7px;
  right: 8px;
  font-size: 34px;
  color: white;
  letter-spacing: -0.06em;
}
@media (min-width: 640px) {
  #dfm-kollektionen .kollheadline {
    right: 8px;
    top: -12px;
    font-size: 50px;
  }
}
@media (min-width: 1024px) {
  #dfm-kollektionen .kollheadline {
    right: unset;
    top: -62px;
    left: -3px;
    font-size: 50px;
    color: black;
  }
}
@media (min-width: 1200px) {
  #dfm-kollektionen .kollheadline {
    top: -88px;
    font-size: 70px;
  }
}
#dfm-kollektionen .koll-pagination {
  padding-left: 10px;
  padding-bottom: 15px;
}
#dfm-kollektionen .koll-pagination:empty {
  padding-bottom: 0;
}
@media (min-width: 640px) {
  #dfm-kollektionen .koll-pagination {
    margin-bottom: 0;
  }
}
#dfm-kollektion .header-item-wrapper {
  overflow: hidden;
}
@media (min-width: 1024px) {
  #dfm-kollektion .header-item-wrapper {
    max-height: 75vh;
  }
}
#dfm-kollektion .header-item-wrapper .header-item {
  width: 100%;
  position: relative;
  margin-bottom: 10px;
  height: 0;
  padding-top: 100%;
  background-size: cover;
  overflow: hidden;
  z-index: 100;
}
@media (min-width: 640px) {
  #dfm-kollektion .header-item-wrapper .header-item {
    padding-top: 50%;
  }
}
@media (min-width: 1024px) {
  #dfm-kollektion .header-item-wrapper .header-item {
    padding-top: 55%;
  }
}
#dfm-kollektion .header-item-wrapper .header-item .nostartbild {
  border: 10px solid pink;
}
#dfm-kollektion .header-item-wrapper .header-item .img-wrapper {
  position: absolute;
  top: 0;
  width: 100%;
  min-width: 100%;
  height: 100%;
}
#dfm-kollektion .header-item-wrapper .header-item .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 1024px) {
  #dfm-kollektion .header-item-wrapper .header-item .img-wrapper {
    max-height: 75vh;
  }
}
#dfm-kollektion .header-item-wrapper .videoplayer {
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: -1;
  max-height: 75vh;
  min-height: 450px;
}
#dfm-kollektion .kollektion-label {
  font-family: "DFMHamburg";
  font-size: 20px;
  padding-left: 0 !important;
}
#dfm-kollektion .kollektion-title {
  font-family: "MrEavesXLModOT";
  line-height: 1em;
  font-size: 9.5vw;
  margin-bottom: 10px;
  padding-top: 15px;
}
@media (min-width: 370px) {
  #dfm-kollektion .kollektion-title {
    font-size: 40px;
  }
}
@media (min-width: 480px) {
  #dfm-kollektion .kollektion-title {
    font-size: 44px;
  }
}
@media (min-width: 640px) {
  #dfm-kollektion .kollektion-title {
    padding-top: 20px;
    font-size: 48px;
  }
}
@media (min-width: 1024px) {
  #dfm-kollektion .kollektion-title {
    margin-top: 20px;
    font-size: 52px;
  }
}
#dfm-kollektion .kollektion-body {
  font-family: "MrEavesXLModOT";
  margin-bottom: 20px;
}
#dfm-kollektion .kollektion-body p {
  font-size: 20px;
}
@media (min-width: 640px) {
  #dfm-kollektion .kollektion-body p {
    max-width: 90%;
  }
}
@media (min-width: 1024px) {
  #dfm-kollektion .kollektion-body p {
    max-width: 90%;
  }
}
@media (min-width: 1200px) {
  #dfm-kollektion .kollektion-body p {
    max-width: 90%;
  }
}
@media (min-width: 1440px) {
  #dfm-kollektion .kollektion-body p {
    max-width: 75%;
  }
}
#dfm-kollektion .koll-images-wrapper .koll-image-wrapper {
  text-align: right;
  margin-bottom: 5px;
  display: flex;
  flex-flow: row wrap;
}
@media (min-width: 1024px) {
  #dfm-kollektion .koll-images-wrapper .koll-image-wrapper {
    flex-flow: row wrap;
    align-items: flex-end;
    text-align: left;
  }
}
#dfm-kollektion .koll-images-wrapper .koll-image-wrapper .koll-image {
  width: 100%;
}
#dfm-kollektion .koll-images-wrapper .koll-image-wrapper .koll-image img {
  width: 100%;
}
@media (min-width: 1024px) {
  #dfm-kollektion .koll-images-wrapper .koll-image-wrapper .koll-image {
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  #dfm-kollektion .koll-images-wrapper .koll-image-wrapper .koll-image {
    max-width: 100%;
  }
}
@media (min-width: 1440px) {
  #dfm-kollektion .koll-images-wrapper .koll-image-wrapper .koll-image {
    max-width: 75%;
  }
}
#dfm-kollektion .koll-images-wrapper .koll-image-wrapper .image-ref-link {
  font-size: 16px;
  font-family: "MrEavesXLModOT";
  width: 100%;
  padding: 6px 1px 4px 20px;
  font-size: 18px;
  line-height: 1.15em;
  text-align: right;
}
@media (min-width: 640px) {
  #dfm-kollektion .koll-images-wrapper .koll-image-wrapper .image-ref-link {
    text-align: right;
    padding: 6px 1px 4px 20px;
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  #dfm-kollektion .koll-images-wrapper .koll-image-wrapper .image-ref-link {
    text-align: right;
    padding: 6px 1px 4px 20px;
    font-size: 20px;
  }
}
@media (min-width: 1440px) {
  #dfm-kollektion .koll-images-wrapper .koll-image-wrapper .image-ref-link {
    padding-left: 10px;
    max-width: 25%;
    text-align: left;
  }
}
#dfm-kollektion
  .koll-images-wrapper
  .koll-image-wrapper
  .image-ref-link
  .arrow-right {
  display: inline-block;
  position: relative;
  top: -2px;
  padding-left: 0px;
  transition: transform 0.2s linear;
}
@media (min-width: 640px) {
  #dfm-kollektion
    .koll-images-wrapper
    .koll-image-wrapper
    .image-ref-link
    .arrow-right {
    padding-left: 2px;
  }
}
#dfm-kollektion
  .koll-images-wrapper
  .koll-image-wrapper
  .image-ref-link
  .arrow-right
  img {
  width: 27px;
  padding-top: 0px;
  padding-left: 4px;
}
@media (min-width: 1024px) {
  #dfm-kollektion
    .koll-images-wrapper
    .koll-image-wrapper
    .image-ref-link
    .arrow-right
    img {
    width: 30px;
    padding-top: 2px;
  }
}
#dfm-kollektion
  .koll-images-wrapper
  .koll-image-wrapper
  .image-ref-link:hover
  .arrow-right {
  transition: transform 0.2s linear;
  transform: translateX(4px);
}
#dfm-kollektion .overview-header {
  font-size: 24px;
  padding: 10px 0 5px 0;
}
@media (min-width: 640px) {
  #dfm-kollektion .overview-header {
    font-size: 28px;
  }
}
#dfm-kollektion .overview-items {
  display: flex;
  flex-flow: row wrap;
  align-items: space-between;
  justify-content: space-between;
}
#dfm-kollektion .overview-items::after {
  content: "";
  flex: 0 49.5%;
}
#dfm-kollektion .overview-items .overview-item {
  display: block;
  width: 100%;
  position: relative;
  margin-bottom: 6px;
  height: 0;
  padding-top: 64%;
  background-size: cover;
  background-color: #ccc;
  overflow: hidden;
}
@media (min-width: 640px) {
  #dfm-kollektion .overview-items .overview-item {
    padding-top: 32%;
    width: 49.75%;
  }
}
#dfm-kollektion .overview-items .overview-item .img-wrapper {
  position: absolute;
  top: 0;
  width: 100%;
  min-width: 100%;
  height: 100%;
}
#dfm-kollektion .overview-items .overview-item .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#dfm-kollektion .overview-items .overview-item .kollektion-link-wrapper {
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-flow: row wrap;
  align-items: flex-end;
  justify-content: flex-end;
  padding-bottom: 8px;
  padding-right: 8px;
}
#dfm-kollektion
  .overview-items
  .overview-item
  .kollektion-link-wrapper
  .texts-wrapper {
  text-align: right;
  color: white;
  padding-left: 10%;
  padding-right: 5px;
  width: 90%;
  max-width: 90%;
}
@media (min-width: 640px) {
  #dfm-kollektion
    .overview-items
    .overview-item
    .kollektion-link-wrapper
    .texts-wrapper {
    padding-right: 10px;
  }
}
@media (min-width: 1024px) {
  #dfm-kollektion
    .overview-items
    .overview-item
    .kollektion-link-wrapper
    .texts-wrapper {
    width: 100%;
    max-width: 100%;
  }
}
#dfm-kollektion
  .overview-items
  .overview-item
  .kollektion-link-wrapper
  .texts-wrapper
  .plus-link {
  right: -5px;
  top: -5px;
  width: 30px;
  height: 20px;
  display: inline-block;
  position: relative;
  transform: scale(0.9);
}
#dfm-kollektion
  .overview-items
  .overview-item
  .kollektion-link-wrapper
  .texts-wrapper
  .plus-link
  .closecross {
  display: block;
  top: 50%;
  margin-top: 10px;
  background-color: #fff;
  width: 24px;
  height: 3px;
  transform: rotate(0deg);
  transition-property: transform;
  transition-duration: 0.8s;
  transition-delay: 0.4s;
  transition-timing-function: ease;
}
#dfm-kollektion
  .overview-items
  .overview-item
  .kollektion-link-wrapper
  .texts-wrapper
  .plus-link
  .closecross::before {
  width: 24px;
  height: 3px;
  background-color: #fff;
  border-radius: 0;
  position: absolute;
  transform: rotate(-90deg);
  content: "";
  display: block;
}
#dfm-kollektion
  .overview-items
  .overview-item
  .kollektion-link-wrapper
  .texts-wrapper
  .plus-link
  .closecross {
  transition-delay: 0s;
}
@media (min-width: 640px) {
  #dfm-kollektion
    .overview-items
    .overview-item
    .kollektion-link-wrapper
    .texts-wrapper
    .plus-link {
    transform: scale(1);
  }
}
@media (min-width: 1024px) {
  #dfm-kollektion
    .overview-items
    .overview-item
    .kollektion-link-wrapper
    .texts-wrapper
    .plus-link {
    top: -10px;
    transform: scale(1.1);
  }
}
#dfm-kollektion
  .overview-items
  .overview-item
  .kollektion-link-wrapper
  .texts-wrapper
  .kollektion-title {
  margin-top: 0;
  padding-top: 0;
  margin-bottom: 0;
  font-family: "MrEavesXLModOT";
  font-weight: 300;
  font-size: 30px;
  line-height: 1em;
}
@media (min-width: 370px) {
  #dfm-kollektion
    .overview-items
    .overview-item
    .kollektion-link-wrapper
    .texts-wrapper
    .kollektion-title {
    font-size: 32px;
  }
}
@media (min-width: 480px) {
  #dfm-kollektion
    .overview-items
    .overview-item
    .kollektion-link-wrapper
    .texts-wrapper
    .kollektion-title {
    font-size: 34px;
  }
}
@media (min-width: 640px) {
  #dfm-kollektion
    .overview-items
    .overview-item
    .kollektion-link-wrapper
    .texts-wrapper
    .kollektion-title {
    font-size: 40px;
    margin-bottom: 5px;
  }
}
@media (min-width: 1024px) {
  #dfm-kollektion
    .overview-items
    .overview-item
    .kollektion-link-wrapper
    .texts-wrapper
    .kollektion-title {
    font-size: 42px;
  }
}
@media (min-width: 1200px) {
  #dfm-kollektion
    .overview-items
    .overview-item
    .kollektion-link-wrapper
    .texts-wrapper
    .kollektion-title {
    font-size: 44px;
  }
}
#dfm-kollektion
  .overview-items
  .overview-item
  .kollektion-link-wrapper:hover
  .texts-wrapper
  .plus-link
  .closecross {
  transform: rotate(90deg);
  transition-property: transform;
  transition-duration: 0.4s;
  transition-delay: 0s;
  transition-timing-function: ease;
}
#dfm-kollektion .teaser-kollektion {
  display: none;
}
@media (min-width: 640px) {
  #dfm-kollektion .teaser-kollektion {
    display: flex;
  }
}
@media (min-width: 1024px) {
  #dfm-kollektion .teaser-kollektion {
    display: none;
  }
}
@media (min-width: 1200px) {
  #dfm-kollektion .teaser-kollektion {
    display: flex;
  }
}
.basicpage {
  padding-top: 40px;
}
@media (min-width: 370px) {
  .basicpage {
    padding-top: 50px;
  }
}
@media (min-width: 1024px) {
  .basicpage {
    padding-top: 13vh;
  }
}
.basicpage .header-item-wrapper {
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
}
@media (min-width: 1024px) {
  .basicpage .header-item-wrapper {
    margin-left: 0.9375rem !important;
    margin-right: 0 !important;
    width: calc(100% - 1.875rem) !important;
    max-width: 850px;
  }
}
.basicpage .header-item-wrapper .header-item {
  width: 100%;
  position: relative;
  margin-bottom: 10px;
  height: 0;
  padding-top: 67%;
  background-size: cover;
}
@media (min-width: 640px) {
  .basicpage .header-item-wrapper .header-item {
    padding-top: 50%;
  }
}
@media (min-width: 1024px) {
  .basicpage .header-item-wrapper .header-item {
    padding-top: 45%;
  }
}
.basicpage .header-item-wrapper .header-item .img-wrapper {
  position: absolute;
  top: 0;
  width: 100%;
  min-width: 100%;
  height: 100%;
}
.basicpage .header-item-wrapper .header-item .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.basicpage .nostartbild {
  padding-top: 120px !important;
}
.basicpage .basicpage-label {
  margin-top: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  .basicpage .basicpage-label h3.dfm {
    font-size: 24px;
  }
}
.basicpage .basicpage-content {
  min-height: 40vh;
}
.basicpage p,
.basicpage li {
  font-size: 16px;
  padding-right: 40px;
  hyphens: auto;
}
.basicpage .grid-container {
  overflow: hidden;
}
#dfm-news .overview-items,
#dfm-newspost .overview-items {
  display: flex;
  flex-flow: row wrap;
  align-items: space-between;
  justify-content: space-between;
}
#dfm-news .overview-items::after,
#dfm-newspost .overview-items::after {
  content: "";
  flex: 0 49.5%;
}
#dfm-news .overview-items .overview-item,
#dfm-newspost .overview-items .overview-item {
  display: block;
  width: 100%;
  position: relative;
  margin-bottom: 8px;
  height: 0;
  padding-top: 64%;
  background-size: cover;
  background-color: #ccc;
}
@media (min-width: 640px) {
  #dfm-news .overview-items .overview-item,
  #dfm-newspost .overview-items .overview-item {
    margin-bottom: 7px;
    padding-top: 32%;
    width: 49.5%;
  }
}
@media (min-width: 1024px) {
  #dfm-news .overview-items .overview-item,
  #dfm-newspost .overview-items .overview-item {
    width: 100%;
    padding-top: 64%;
    margin-bottom: 8px;
  }
}
@media (min-width: 1200px) {
  #dfm-news .overview-items .overview-item,
  #dfm-newspost .overview-items .overview-item {
    padding-top: 32%;
    width: 49.5%;
  }
}
@media (min-width: 1440px) {
  #dfm-news .overview-items .overview-item,
  #dfm-newspost .overview-items .overview-item {
    margin-bottom: 10px;
  }
}
#dfm-news .overview-items .overview-item .img-wrapper,
#dfm-newspost .overview-items .overview-item .img-wrapper {
  position: absolute;
  top: 0;
  width: 100%;
  min-width: 100%;
  height: 100%;
}
#dfm-news .overview-items .overview-item .img-wrapper img,
#dfm-newspost .overview-items .overview-item .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#dfm-news .newsheadline,
#dfm-newspost .newsheadline {
  position: absolute;
  font-family: "DFMHamburg";
  top: -5px;
  left: 8px;
  overflow: visible;
  font-size: 38px;
  color: white;
  letter-spacing: -0.02em;
}
@media (min-width: 640px) {
  #dfm-news .newsheadline,
  #dfm-newspost .newsheadline {
    left: 10px;
    top: -7px;
    font-size: 44px;
  }
}
@media (min-width: 1024px) {
  #dfm-news .newsheadline,
  #dfm-newspost .newsheadline {
    margin-right: -50px;
    top: -88px;
    left: 0px;
    font-size: 70px;
    color: black;
  }
}
#dfm-news .news-link-wrapper,
#dfm-newspost .news-link-wrapper {
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
}
#dfm-news .news-link-wrapper .texts-wrapper,
#dfm-newspost .news-link-wrapper .texts-wrapper {
  position: absolute;
  bottom: 5px;
  left: 10px;
  right: 0;
  color: white;
}
#dfm-news .news-link-wrapper .texts-wrapper .newslabel,
#dfm-newspost .news-link-wrapper .texts-wrapper .newslabel {
  font-size: 16px;
  font-family: "MrEavesXLModOT";
  text-transform: uppercase;
  margin-bottom: -10px;
  padding-left: 1px;
  padding-bottom: 12px;
}
#dfm-news .news-link-wrapper .texts-wrapper .newstitle,
#dfm-newspost .news-link-wrapper .texts-wrapper .newstitle {
  font-size: 28px;
  line-height: 1em;
  font-family: "MrEavesXLModOT";
  font-weight: 600;
  padding-bottom: 5px;
  padding-right: 15%;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
@media (min-width: 370px) {
  #dfm-news .news-link-wrapper .texts-wrapper .newstitle,
  #dfm-newspost .news-link-wrapper .texts-wrapper .newstitle {
    font-size: 34px;
  }
}
@media (min-width: 480px) {
  #dfm-news .news-link-wrapper .texts-wrapper .newstitle,
  #dfm-newspost .news-link-wrapper .texts-wrapper .newstitle {
    font-size: 38px;
  }
}
@media (min-width: 640px) {
  #dfm-news .news-link-wrapper .texts-wrapper .newstitle,
  #dfm-newspost .news-link-wrapper .texts-wrapper .newstitle {
    font-size: 30px;
  }
}
@media (min-width: 1024px) {
  #dfm-news .news-link-wrapper .texts-wrapper .newstitle,
  #dfm-newspost .news-link-wrapper .texts-wrapper .newstitle {
    font-size: 40px;
  }
}
@media (min-width: 1200px) {
  #dfm-news .news-link-wrapper .texts-wrapper .newstitle,
  #dfm-newspost .news-link-wrapper .texts-wrapper .newstitle {
    font-size: 32px;
  }
}
@media (min-width: 1440px) {
  #dfm-news .news-link-wrapper .texts-wrapper .newstitle,
  #dfm-newspost .news-link-wrapper .texts-wrapper .newstitle {
    font-size: 34px;
  }
}
#dfm-news .news-link-wrapper .plus-link,
#dfm-newspost .news-link-wrapper .plus-link {
  width: 30px;
  height: 20px;
  display: inline-block;
  position: relative;
  position: absolute;
  right: 5px;
  top: 10px;
}
#dfm-news .news-link-wrapper .plus-link .closecross,
#dfm-newspost .news-link-wrapper .plus-link .closecross {
  display: block;
  top: 50%;
  margin-top: 10px;
  background-color: #fff;
  width: 24px;
  height: 3px;
  transform: rotate(0deg);
  transition-property: transform;
  transition-duration: 0.8s;
  transition-delay: 0.4s;
  transition-timing-function: ease;
}
#dfm-news .news-link-wrapper .plus-link .closecross::before,
#dfm-newspost .news-link-wrapper .plus-link .closecross::before {
  width: 24px;
  height: 3px;
  background-color: #fff;
  border-radius: 0;
  position: absolute;
  transform: rotate(-90deg);
  content: "";
  display: block;
}
#dfm-news .news-link-wrapper .plus-link .closecross,
#dfm-newspost .news-link-wrapper .plus-link .closecross {
  transition-delay: 0s;
}
#dfm-news .news-link-wrapper:hover .plus-link .closecross,
#dfm-newspost .news-link-wrapper:hover .plus-link .closecross {
  transform: rotate(90deg);
  transition-property: transform;
  transition-duration: 0.4s;
  transition-delay: 0s;
  transition-timing-function: ease;
}
#dfm-news {
  padding-top: 55px;
}
@media (min-width: 370px) {
  #dfm-news {
    padding-top: 65px;
  }
}
@media (min-width: 640px) {
  #dfm-news {
    padding-top: 65px;
  }
}
@media (min-width: 1024px) {
  #dfm-news {
    padding-top: 13vh;
  }
}
#dfm-news .news-pagination {
  padding-left: 10px;
  padding-bottom: 15px;
}
@media (min-width: 640px) {
  #dfm-news .news-pagination {
    margin-bottom: 15px;
    padding-bottom: 0px;
  }
}
@media (min-width: 1024px) {
  #dfm-news .news-pagination {
    padding-bottom: 0px;
  }
}
#dfm-newspost {
  padding-top: 40px;
}
@media (min-width: 370px) {
  #dfm-newspost {
    padding-top: 50px;
  }
}
@media (min-width: 640px) {
  #dfm-newspost {
    padding-top: 50px;
  }
}
@media (min-width: 1024px) {
  #dfm-newspost {
    padding-top: 0;
    padding-bottom: 0;
  }
}
#dfm-newspost .newspost-grid {
  padding-right: 0 !important;
  padding-left: 0 !important;
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  #dfm-newspost .newspost-grid {
    margin-left: 414px;
    padding-right: 0;
  }
}
#dfm-newspost .header-item-wrapper {
  z-index: 10000;
}
@media (min-width: 1024px) {
  #dfm-newspost .header-item-wrapper {
    max-height: 60vh;
  }
}
#dfm-newspost .header-item-wrapper .header-item {
  width: 100%;
  position: relative;
  margin-bottom: 10px;
  height: 0;
  padding-top: 64%;
  background-size: cover;
  overflow: hidden;
}
@media (min-width: 640px) {
  #dfm-newspost .header-item-wrapper .header-item {
    padding-top: 50%;
  }
}
@media (min-width: 1024px) {
  #dfm-newspost .header-item-wrapper .header-item {
    padding-top: 40%;
    max-height: 60vh;
  }
}
#dfm-newspost .header-item-wrapper .header-item .nostartbild {
  border: 10px solid pink;
}
#dfm-newspost .header-item-wrapper .header-item .img-wrapper {
  position: absolute;
  top: 0;
  width: 100%;
  min-width: 100%;
  height: 100%;
}
#dfm-newspost .header-item-wrapper .header-item .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 1024px) {
  #dfm-newspost .header-item-wrapper .header-item .img-wrapper {
    max-height: 60vh;
  }
}
#dfm-newspost .overview-items {
  display: flex;
  flex-flow: row wrap;
  align-items: space-between;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  #dfm-newspost .overview-items {
    margin-top: 20px;
  }
}
#dfm-newspost .overview-items::after {
  content: "";
  flex: 0 32.5%;
}
#dfm-newspost .overview-items .overview-item {
  display: block;
  position: relative;
  margin-bottom: 10px;
  height: 0;
  padding-top: 64%;
  width: 100%;
  background-size: cover;
  background-color: #ccc;
}
@media (min-width: 640px) {
  #dfm-newspost .overview-items .overview-item {
    padding-top: 32.5%;
    width: 49.5%;
  }
  #dfm-newspost .overview-items .overview-item:nth-child(3) {
    display: none;
  }
}
@media (min-width: 1200px) {
  #dfm-newspost .overview-items .overview-item {
    padding-top: 32.5%;
    width: 49.5%;
  }
}
@media (min-width: 1440px) {
  #dfm-newspost .overview-items .overview-item {
    padding-top: 23%;
    width: 32.67%;
  }
  #dfm-newspost .overview-items .overview-item:nth-child(3) {
    display: block;
  }
}
#dfm-newspost .overview-items .overview-item .img-wrapper {
  position: absolute;
  top: 0;
  width: 100%;
  min-width: 100%;
  height: 100%;
}
#dfm-newspost .overview-items .overview-item .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 1024px) {
  #dfm-newspost .overview-items .overview-item .newsheadline {
    margin-right: -50px;
    top: -65px;
    left: 0px;
    font-size: 50px;
    color: black;
  }
}
@media (min-width: 640px) {
  #dfm-newspost .overview-items.teaser-news {
    display: flex;
  }
}
@media (min-width: 1200px) {
  #dfm-newspost .overview-items.teaser-news {
    display: flex;
  }
}
#dfm-newspost .newspost-label {
  padding-top: 5px;
  padding-bottom: 5px;
}
@media (min-width: 1024px) {
  #dfm-newspost .newspost-label {
    padding-top: 15px;
  }
}
#dfm-newspost .newspost-label a {
  font-size: 16px;
  font-family: "DFMHamburg";
}
#dfm-newspost .newspost-meta {
  font-family: "MrEavesXLModOT";
  text-transform: uppercase;
  font-size: 16px;
  margin-top: 10px;
}
@media (min-width: 640px) {
  #dfm-newspost .newspost-meta {
    margin-top: 15px;
    font-size: 18px;
  }
}
@media (min-width: 1024px) {
  #dfm-newspost .newspost-meta {
    margin-top: 20px;
    font-size: 20px;
  }
}
#dfm-newspost .newspost-headline {
  font-family: "MrEavesXLModOT";
  font-weight: 600;
  font-size: 32px;
  line-height: 1em;
  padding-top: 5px;
  margin-bottom: 15px;
}
@media (min-width: 640px) {
  #dfm-newspost .newspost-headline {
    margin-bottom: 20px;
    font-size: 36px;
  }
}
@media (min-width: 1024px) {
  #dfm-newspost .newspost-headline {
    font-size: 46px;
  }
}
#dfm-newspost .newspost-body img {
  width: 100%;
  display: inline-block;
  max-width: 770px;
  padding: 5px 0;
}
#dfm-newspost .nonewspostimg {
  height: 0;
  overflow: hidden;
  padding: 0 !important;
  margin-bottom: 60px;
}
.TextformatterVideoEmbed {
  width: 100%;
}
@media (min-width: 1200px) {
  .TextformatterVideoEmbed {
    max-width: 880px;
  }
}
#dfm-atelier {
  padding-top: 50px;
  padding-bottom: 20px;
}
@media (min-width: 370px) {
  #dfm-atelier {
    padding-top: 60px;
  }
}
@media (min-width: 1024px) {
  #dfm-atelier {
    padding-bottom: 50px;
  }
}
#dfm-atelier .atelier-title {
  letter-spacing: -0.02em;
  font-size: 28px;
  margin-bottom: 10px;
}
@media (min-width: 480px) {
  #dfm-atelier .atelier-title {
    font-size: 38px;
    margin-bottom: 10px;
  }
}
@media (min-width: 1024px) {
  #dfm-atelier .atelier-title {
    font-size: 45px;
    margin-top: -8px;
    margin-bottom: 20px;
  }
}
@media (min-width: 1024px) {
  #dfm-atelier {
    padding-top: 13vh;
  }
}
#dfm-atelier .overview-items {
  display: flex;
  flex-flow: row wrap;
  align-items: space-between;
  justify-content: space-between;
  margin-top: 20px;
}
#dfm-atelier .overview-items::after {
  content: "";
  flex: 0 32.67%;
}
#dfm-atelier .overview-items .overview-item-wrapper {
  width: 100%;
  margin-bottom: 25px;
}
@media (min-width: 640px) {
  #dfm-atelier .overview-items .overview-item-wrapper {
    width: 49.5%;
  }
}
@media (min-width: 1440px) {
  #dfm-atelier .overview-items .overview-item-wrapper {
    width: 32.67%;
  }
}
#dfm-atelier .overview-items .overview-item-wrapper .overview-item {
  padding-top: 64%;
  overflow: hidden;
  position: relative;
}
#dfm-atelier
  .overview-items
  .overview-item-wrapper
  .overview-item
  .img-wrapper {
  position: absolute;
  top: 0;
  width: 100%;
  min-width: 100%;
  height: 100%;
}
#dfm-atelier
  .overview-items
  .overview-item-wrapper
  .overview-item
  .img-wrapper
  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#dfm-atelier
  .overview-items
  .overview-item-wrapper
  .atelierpost-link-wrapper
  .texts-wrapper {
  text-align: left;
  padding-left: 0px;
  padding-right: 5%;
  padding-top: 10px;
  color: black;
  margin-bottom: 10px;
}
#dfm-atelier
  .overview-items
  .overview-item-wrapper
  .atelierpost-link-wrapper
  .texts-wrapper
  .title {
  padding: 5px 0 5px 0;
  font-family: "MrEavesXLModOT";
  font-weight: 600;
  font-size: 28px;
  line-height: 1em;
  hyphens: auto;
}
@media (min-width: 1024px) {
  #dfm-atelier
    .overview-items
    .overview-item-wrapper
    .atelierpost-link-wrapper
    .texts-wrapper
    .title {
    font-size: 32px;
  }
}
#dfm-atelierpost {
  padding-top: 40px;
}
@media (min-width: 370px) {
  #dfm-atelierpost {
    padding-top: 50px;
  }
}
@media (min-width: 1024px) {
  #dfm-atelierpost {
    padding-top: 13vh;
  }
}
#dfm-atelierpost .header-item-wrapper {
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
}
@media (min-width: 1024px) {
  #dfm-atelierpost .header-item-wrapper {
    margin-left: 0.9375rem !important;
    margin-right: 0 !important;
    width: calc(100% - 1.875rem) !important;
    max-width: 850px;
  }
}
#dfm-atelierpost .header-item-wrapper .header-item {
  width: 100%;
  position: relative;
  margin-bottom: 10px;
  height: 0;
  padding-top: 67%;
  background-size: cover;
}
@media (min-width: 640px) {
  #dfm-atelierpost .header-item-wrapper .header-item {
    padding-top: 50%;
  }
}
@media (min-width: 1024px) {
  #dfm-atelierpost .header-item-wrapper .header-item {
    padding-top: 45%;
  }
}
#dfm-atelierpost .header-item-wrapper .header-item .img-wrapper {
  position: absolute;
  top: 0;
  width: 100%;
  min-width: 100%;
  height: 100%;
}
#dfm-atelierpost .header-item-wrapper .header-item .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#dfm-atelierpost .atelier-label {
  padding-top: 5px;
  padding-bottom: 5px;
}
@media (min-width: 1024px) {
  #dfm-atelierpost .atelier-label {
    padding-top: 15px;
  }
}
#dfm-atelierpost .atelier-label a {
  font-size: 16px;
  font-family: "DFMHamburg";
}
#dfm-atelierpost .overview-items {
  display: flex;
  flex-flow: row wrap;
  align-items: space-between;
  justify-content: space-between;
}
#dfm-atelierpost .overview-items::after {
  content: "";
  flex: 0 32.67%;
}
#dfm-atelierpost .overview-items .overview-item {
  width: 100%;
  margin-bottom: 10px;
}
@media (min-width: 640px) {
  #dfm-atelierpost .overview-items .overview-item {
    width: 49.5%;
  }
  #dfm-atelierpost .overview-items .overview-item:nth-child(3) {
    display: none;
  }
}
@media (min-width: 1200px) {
  #dfm-atelierpost .overview-items .overview-item {
    width: 32.67%;
  }
  #dfm-atelierpost .overview-items .overview-item:nth-child(3) {
    display: block;
  }
}
#dfm-atelierpost .overview-items .overview-item .overview-image {
  height: 0;
  width: 100%;
  padding-top: 64%;
  position: relative;
}
#dfm-atelierpost .overview-items .overview-item .overview-image .img-wrapper {
  position: absolute;
  top: 0;
  width: 100%;
  min-width: 100%;
  height: 100%;
}
#dfm-atelierpost
  .overview-items
  .overview-item
  .overview-image
  .img-wrapper
  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#dfm-atelierpost
  .overview-items
  .overview-item
  .atelierpost-link-wrapper
  .texts-wrapper {
  text-align: left;
  padding-left: 0px;
  padding-right: 5%;
  padding-top: 10px;
  color: black;
  margin-bottom: 10px;
}
#dfm-atelierpost
  .overview-items
  .overview-item
  .atelierpost-link-wrapper
  .texts-wrapper
  .title {
  font-family: "MrEavesSanOT";
  font-weight: 300;
  font-size: 28px;
  line-height: 1em;
}
@media (min-width: 370px) {
  #dfm-atelierpost
    .overview-items
    .overview-item
    .atelierpost-link-wrapper
    .texts-wrapper
    .title {
    font-size: 32px;
  }
}
@media (min-width: 480px) {
  #dfm-atelierpost
    .overview-items
    .overview-item
    .atelierpost-link-wrapper
    .texts-wrapper
    .title {
    font-size: 36px;
  }
}
@media (min-width: 640px) {
  #dfm-atelierpost
    .overview-items
    .overview-item
    .atelierpost-link-wrapper
    .texts-wrapper
    .title {
    font-size: 32px;
  }
}
@media (min-width: 1024px) {
  #dfm-atelierpost
    .overview-items
    .overview-item
    .atelierpost-link-wrapper
    .texts-wrapper
    .title {
    font-size: 32px;
  }
}
#dfm-labels {
  padding-top: 50px;
  padding-bottom: 20px;
}
@media (min-width: 370px) {
  #dfm-labels {
    padding-top: 60px;
  }
}
@media (min-width: 1024px) {
  #dfm-labels {
    margin-top: 7px;
    padding-top: 12.4vh;
    padding-bottom: 50px;
  }
}
#dfm-labels .labels-title {
  font-size: 24px;
  margin-bottom: 5px;
}
@media (min-width: 480px) {
  #dfm-labels .labels-title {
    font-size: 28px;
  }
}
@media (min-width: 640px) {
  #dfm-labels .labels-title {
    font-size: 32px;
  }
}
@media (min-width: 1024px) {
  #dfm-labels .labels-title {
    font-size: 45px;
    margin-top: -8px;
  }
}
#dfm-labels .labels-intro {
  margin-bottom: 5px;
}
#dfm-labels .overview-items {
  display: flex;
  flex-flow: row wrap;
  align-items: space-between;
  justify-content: space-between;
}
#dfm-labels .overview-items::after {
  content: "";
  flex: 0 32.67%;
}
#dfm-labels .overview-items .overview-item-wrapper {
  width: 100%;
  margin-bottom: 25px;
}
@media (min-width: 640px) {
  #dfm-labels .overview-items .overview-item-wrapper {
    width: 49.5%;
  }
}
@media (min-width: 1440px) {
  #dfm-labels .overview-items .overview-item-wrapper {
    width: 32.67%;
  }
}
#dfm-labels .overview-items .overview-item-wrapper .overview-item {
  padding-top: 64%;
  overflow: hidden;
  position: relative;
}
#dfm-labels .overview-items .overview-item-wrapper .overview-item .img-wrapper {
  position: absolute;
  top: 0;
  width: 100%;
  min-width: 100%;
  height: 100%;
}
#dfm-labels
  .overview-items
  .overview-item-wrapper
  .overview-item
  .img-wrapper
  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#dfm-labels
  .overview-items
  .overview-item-wrapper
  .overview-item
  .overview-image {
  height: 0;
  width: 100%;
  padding-top: 64%;
  background-size: cover;
}
#dfm-labels
  .overview-items
  .overview-item-wrapper
  .label-link-wrapper
  .texts-wrapper {
  text-align: left;
  padding-left: 0px;
  padding-right: 5%;
  padding-top: 10px;
  color: black;
  margin-bottom: 0px;
}
#dfm-labels
  .overview-items
  .overview-item-wrapper
  .label-link-wrapper
  .texts-wrapper
  .title {
  font-family: "MrEavesSanOT";
  font-weight: 300;
  font-size: 34px;
  padding-top: 2px;
  line-height: 1em;
}
@media (min-width: 480px) {
  #dfm-labels
    .overview-items
    .overview-item-wrapper
    .label-link-wrapper
    .texts-wrapper
    .title {
    font-size: 40px;
  }
}
@media (min-width: 640px) {
  #dfm-labels
    .overview-items
    .overview-item-wrapper
    .label-link-wrapper
    .texts-wrapper
    .title {
    font-size: 36px;
  }
}
@media (min-width: 1024px) {
  #dfm-labels
    .overview-items
    .overview-item-wrapper
    .label-link-wrapper
    .texts-wrapper
    .title {
    font-size: 34px;
  }
}
.teaser-headline {
  font-size: 22px;
  margin-bottom: 5px;
  line-height: 1.1em;
  padding-bottom: 5px;
}
@media (min-width: 640px) {
  .teaser-headline {
    font-size: 24px;
  }
}
#dfm-label {
  padding-top: 40px;
}
@media (min-width: 370px) {
  #dfm-label {
    padding-top: 50px;
  }
}
@media (min-width: 1024px) {
  #dfm-label {
    padding-top: 13vh;
  }
}
#dfm-label .header-item-wrapper {
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
}
@media (min-width: 1024px) {
  #dfm-label .header-item-wrapper {
    margin-left: 0.9375rem !important;
    margin-right: 0 !important;
    width: calc(100% - 1.875rem) !important;
    max-width: 850px;
  }
}
#dfm-label .header-item-wrapper .header-item {
  width: 100%;
  position: relative;
  margin-bottom: 10px;
  height: 0;
  padding-top: 67%;
  background-size: cover;
}
@media (min-width: 640px) {
  #dfm-label .header-item-wrapper .header-item {
    padding-top: 50%;
  }
}
@media (min-width: 1024px) {
  #dfm-label .header-item-wrapper .header-item {
    padding-top: 45%;
  }
}
#dfm-label .header-item-wrapper .header-item .img-wrapper {
  position: absolute;
  top: 0;
  width: 100%;
  min-width: 100%;
  height: 100%;
}
#dfm-label .header-item-wrapper .header-item .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#dfm-label .labels-label {
  padding-top: 5px;
  padding-bottom: 5px;
}
@media (min-width: 1024px) {
  #dfm-label .labels-label {
    padding-top: 15px;
  }
}
#dfm-label .labels-label a {
  font-size: 16px;
  font-family: "DFMHamburg";
}
#dfm-label .label-title {
  font-family: "MrEavesXLModOT";
  font-size: 38px;
  line-height: 1.1em;
  margin-bottom: 5px;
}
@media (min-width: 640px) {
  #dfm-label .label-title {
    margin-bottom: 10px;
    font-size: 44px;
    line-height: 1.2em;
  }
}
@media (min-width: 1024px) {
  #dfm-label .label-title {
    font-size: 48px;
  }
}
#dfm-label .label-bottomtext {
  margin-top: 20px;
}
#dfm-label .label-bottomtext p {
  font-size: 20px;
  font-style: italic;
}
#dfm-label .overview-items {
  display: flex;
  flex-flow: row wrap;
  align-items: space-between;
  justify-content: space-between;
}
#dfm-label .overview-items::after {
  content: "";
  flex: 0 32.67%;
}
#dfm-label .overview-items .overview-item {
  width: 100%;
  margin-bottom: 10px;
}
@media (min-width: 640px) {
  #dfm-label .overview-items .overview-item {
    width: 49.5%;
  }
  #dfm-label .overview-items .overview-item:nth-child(3) {
    display: none;
  }
}
@media (min-width: 1200px) {
  #dfm-label .overview-items .overview-item {
    width: 32.67%;
  }
  #dfm-label .overview-items .overview-item:nth-child(3) {
    display: block;
  }
}
#dfm-label .overview-items .overview-item .overview-image {
  height: 0;
  width: 100%;
  padding-top: 64%;
  position: relative;
}
#dfm-label .overview-items .overview-item .overview-image .img-wrapper {
  position: absolute;
  top: 0;
  width: 100%;
  min-width: 100%;
  height: 100%;
}
#dfm-label .overview-items .overview-item .overview-image .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#dfm-label .overview-items .overview-item .label-link-wrapper .texts-wrapper {
  text-align: left;
  padding-left: 0px;
  padding-right: 5%;
  padding-top: 10px;
  color: black;
}
@media (min-width: 1024px) {
  #dfm-label .overview-items .overview-item .label-link-wrapper .texts-wrapper {
    margin-bottom: 10px;
  }
}
#dfm-label
  .overview-items
  .overview-item
  .label-link-wrapper
  .texts-wrapper
  .title {
  font-family: "MrEavesSanOT";
  font-weight: 300;
  font-size: 30px;
  line-height: 1em;
}
@media (min-width: 480px) {
  #dfm-label
    .overview-items
    .overview-item
    .label-link-wrapper
    .texts-wrapper
    .title {
    font-size: 32px;
  }
}
@media (min-width: 1024px) {
  #dfm-label
    .overview-items
    .overview-item
    .label-link-wrapper
    .texts-wrapper
    .title {
    font-size: 32px;
  }
}
.endofpage-navi {
  padding: 30px 5px;
}
@media (min-width: 1024px) {
  .endofpage-navi {
    padding: 50px 5px;
  }
}
.endofpage-navi .prev-wrapper {
  text-align: left;
}
.endofpage-navi .prev-wrapper .prev {
  transition: transform 0.1s linear;
  transform: translateX(0px);
}
.endofpage-navi .prev-wrapper:hover .prev {
  transition: transform 0.1s linear;
  transform: translateX(-10px);
}
.endofpage-navi .levelup-wrapper {
  text-align: center;
}
.endofpage-navi .levelup-wrapper .levelup {
  transition: transform 0.1s linear;
  transform: translateY(0px);
}
.endofpage-navi .levelup-wrapper:hover .levelup {
  transition: transform 0.1s linear;
  transform: translateY(-10px);
}
.endofpage-navi .next-wrapper {
  text-align: right;
}
.endofpage-navi .next-wrapper .next {
  transition: transform 0.1s linear;
  transform: translateX(0px);
}
.endofpage-navi .next-wrapper:hover .next {
  transition: transform 0.1s linear;
  transform: translateX(10px);
}
#dfm-services {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 50px;
  padding-bottom: 20px;
}
@media (min-width: 370px) {
  #dfm-services {
    padding-top: 60px;
  }
}
@media (min-width: 1024px) {
  #dfm-services {
    margin-top: 7px;
    padding-top: 12.4vh;
    padding-bottom: 50px;
    transition: padding 0.2s;
  }
}
@media (min-width: 1200px) {
  #dfm-services {
    padding-left: 100px;
    transition: padding 0.2s;
    padding-bottom: 150px;
  }
}
#dfm-services .services-title {
  margin-bottom: 15px;
  font-size: 36px;
}
@media (min-width: 640px) {
  #dfm-services .services-title {
    font-size: 40px;
  }
}
@media (min-width: 1024px) {
  #dfm-services .services-title {
    font-size: 45px;
    margin-bottom: 25px;
    margin-top: -8px;
  }
}
#dfm-services .service-items .service-item-wrapper .service-link {
  padding: 0 0 5px 0;
  text-transform: uppercase;
  letter-spacing: 0em;
  font-family: "DFMHamburg";
  font-size: 22px;
  hyphens: auto;
  line-height: 1.1em;
}
@media (min-width: 640px) {
  #dfm-services .service-items .service-item-wrapper .service-link {
    font-size: 32x;
  }
}
@media (min-width: 1024px) {
  #dfm-services .service-items .service-item-wrapper .service-link {
    font-size: 28px;
  }
}
#dfm-services .service-items .service-subline {
  font-size: 18px;
  font-family: "MrEavesXLModOT";
  margin-bottom: 20px;
  max-width: 550px;
  line-height: 1.2em;
}
@media (min-width: 1024px) {
  #dfm-services .service-items .service-subline {
    font-size: 20px;
  }
}
#dfm-service {
  padding-top: 40px;
}
@media (min-width: 370px) {
  #dfm-service {
    padding-top: 50px;
  }
}
@media (min-width: 1024px) {
  #dfm-service {
    padding-top: 13vh;
  }
}
#dfm-service .header-item-wrapper {
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
}
@media (min-width: 1024px) {
  #dfm-service .header-item-wrapper {
    margin-left: 0.9375rem !important;
    margin-right: 0 !important;
    width: calc(100% - 1.875rem) !important;
    max-width: 850px;
  }
}
#dfm-service .header-item-wrapper .header-item {
  width: 100%;
  position: relative;
  margin-bottom: 10px;
  height: 0;
  padding-top: 67%;
  background-size: cover;
}
@media (min-width: 640px) {
  #dfm-service .header-item-wrapper .header-item {
    padding-top: 50%;
  }
}
@media (min-width: 1024px) {
  #dfm-service .header-item-wrapper .header-item {
    padding-top: 45%;
  }
}
#dfm-service .header-item-wrapper .header-item .img-wrapper {
  position: absolute;
  top: 0;
  width: 100%;
  min-width: 100%;
  height: 100%;
}
#dfm-service .header-item-wrapper .header-item .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#dfm-service .service-label {
  padding-top: 10px;
}
#dfm-service .service-label a {
  font-size: 16px;
  font-family: "DFMHamburg";
}
#dfm-service .service-title {
  padding-top: 5px;
  padding-bottom: 15px;
  font-size: 24px;
  line-height: 1.1em;
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  #dfm-service .service-title {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 30px;
  }
}
#anchor-footer {
  position: relative;
  top: 5px;
}
#dfm-footer {
  min-height: 100vh;
  background-color: #000;
  color: white;
  padding-bottom: 25px;
  padding-top: 45px;
}
@media (min-width: 640px) {
  #dfm-footer {
    padding-top: 45px;
  }
}
@media (min-width: 640px) {
  #dfm-footer {
    padding-bottom: 50px;
  }
}
#dfm-footer .grid-container {
  box-sizing: border-box;
}
@media (min-width: 1024px) {
  #dfm-footer .grid-container {
    margin-left: 400px;
  }
}
@media (min-width: 1024px) {
  #dfm-footer {
    padding-top: 13vh;
    padding-bottom: 10px;
  }
}
#dfm-footer .footer-infos {
  padding-top: 0px;
  padding-bottom: 5px;
  font-size: 22px;
}
@media (min-width: 640px) {
  #dfm-footer .footer-infos {
    padding-bottom: 10px;
  }
}
#dfm-footer .footer-infos h3.footer-headline {
  letter-spacing: 0.05em;
  font-family: "DFMHamburg";
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
@media (min-width: 640px) {
  #dfm-footer .footer-infos h3.footer-headline {
    margin-bottom: 15px;
    font-size: 22px;
  }
}
#dfm-footer .footer-infos .infotext {
  margin-bottom: 0px;
  padding-right: 40px;
}
@media (min-width: 640px) {
  #dfm-footer .footer-infos .infotext {
    padding-right: 0;
  }
}
@media (min-width: 1024px) {
  #dfm-footer .footer-infos .infotext {
    margin-bottom: 20px;
  }
}
#dfm-footer .footer-infos .infotext p {
  font-size: 28px;
  line-height: 1.2em;
}
@media (min-width: 640px) {
  #dfm-footer .footer-infos .infotext p {
    font-size: 32px;
  }
}
#dfm-footer .footer-infos .kontaktinfos {
  min-width: 200px;
}
#dfm-footer .footer-infos .kontaktinfos p {
  font-size: 22px;
  margin-bottom: 0.5rem;
}
#dfm-footer .footer-infos .kontaktinfos a {
  color: white;
}
#dfm-footer .footer-infos .openinghours p {
  font-size: 22px;
}
@media (min-width: 1024px) {
  #dfm-footer .footer-bottom {
    display: flex;
    padding-top: 20px;
  }
}
@media (min-width: 1024px) {
  #dfm-footer .footer-bottom .footer-infos {
    width: 50%;
  }
}
#dfm-footer .newsletter-wrapper h3 {
  margin-top: 20px;
  letter-spacing: 0.05em;
  font-family: "DFMHamburg";
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
@media (min-width: 640px) {
  #dfm-footer .newsletter-wrapper h3 {
    margin-bottom: 15px;
    font-size: 22px;
  }
}
#dfm-footer .newsletter-wrapper button.cr_button {
  border: 2px solid white;
  padding: 7px 14px;
  font-size: 20px;
  background-color: white;
  color: black;
  height: 40px;
  transition: transform 0.1s;
  transform: scale(1);
  transform-origin: left;
}
#dfm-footer .newsletter-wrapper button.cr_button:hover {
  cursor: pointer;
  transition: transform 0.1s;
  transform: scale(1.05);
  transform-origin: left;
}
#dfm-footer .newsletter-wrapper label {
  color: white;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 18px;
  font-family: "MrEavesXLModOT";
  margin-bottom: 0.5rem;
}
#dfm-footer .newsletter-wrapper input {
  font-family: "MrEavesXLModOT";
  font-size: 24px;
  padding: 10px 15px 8px;
  height: 45px;
  max-width: 500px;
  margin-bottom: 0;
}
#dfm-footer .newsletter-wrapper .newsletter-abmeldung {
  font-size: 14px;
  opacity: 0.4;
  margin-top: 20px;
}
#dfm-footer .newsletter-wrapper .newsletter-abmeldung a {
  color: white;
}
#dfm-footer .impressumslink {
  text-align: center;
  opacity: 0.4;
  padding-top: 30px;
  padding-bottom: 10px;
}
#dfm-footer .impressumslink p {
  font-size: 16px;
}
#dfm-footer .impressumslink a {
  font-size: 14px;
  font-size: 14px;
  color: white;
}
#dfm-footer .contact-impressum .copyright {
  font-size: 14px;
  font-weight: 300;
  font-family: "MrEavesXLModOT";
}
#dfm-footer .footer-image {
  text-align: center;
  margin-top: 50px;
  padding: 20px 0 50px;
}
@media (min-width: 640px) {
  #dfm-footer .footer-image {
    padding: 20px 0 40px;
  }
}
@media (min-width: 1024px) {
  #dfm-footer .footer-image {
    margin-bottom: 10px;
  }
}
#dfm-footer .footer-image img {
  max-width: 60%;
  transition: transform 0.1s;
  transform: scale(1);
}
@media (min-width: 640px) {
  #dfm-footer .footer-image img {
    max-width: 280px;
  }
}
#dfm-footer .footer-image img:hover {
  transition: transform 0.1s;
  transform: scale(1.05);
}
#dfm-footer .footer-image .contact_impressum {
  text-align: center;
}
#dfm-footer .socialmedia-footer {
  padding-top: 10px;
  padding-bottom: 40px;
}
@media (min-width: 1024px) {
  #dfm-footer .socialmedia-footer {
    padding-bottom: 0;
  }
}
#dfm-footer .socialmedia-footer a {
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-left: 0px;
  transition: transform 0.1s;
  transform: scale(1);
  padding: 10px;
  box-sizing: content-box;
}
#dfm-footer .socialmedia-footer a:first-child {
  padding-left: 0;
  margin-left: 0;
}
#dfm-footer .socialmedia-footer a:hover {
  transition: transform 0.1s;
  transform: scale(1.2);
}
#dfm-footer .socialmedia-footer a img {
  width: 100%;
  height: 100%;
  filter: invert(1);
}
#mCCForm.mCCF--light {
  background-color: #fff;
  color: #666;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}
#mCCForm.mCCF--light .mCCF__message {
  color: #666;
  font-size: 1.1em;
  line-height: 1.4em;
}
@media (min-width: 370px) {
  #mCCForm.mCCF--light .mCCF__message {
    font-size: 0.8em;
  }
}
#mCCForm.mCCF--light .mCCF__link {
  color: #666;
}
#mCCForm.mCCF--light .mCCF__link:hover {
  color: #000;
  text-decoration: underline;
}
#mCCForm.mCCF--light #mCCButton,
#mCCForm.mCCF--light #closeButton {
  background-color: #666;
  font-size: 1.1em;
}
@media (min-width: 370px) {
  #mCCForm.mCCF--light #mCCButton,
  #mCCForm.mCCF--light #closeButton {
    font-size: 0.8em;
  }
}
#mCCForm.mCCF--light #mCCButton:hover,
#mCCForm.mCCF--light #closeButton:hover {
  background-color: #000;
}
#mCCForm.mCCF--light #closeButton {
  color: #333;
  background-color: #ddd;
}
#mCCForm.mCCF--light #closeButton:hover {
  background-color: #aaa;
}
