/*! Flickity v2.2.1
https://flickity.metafizzy.co
---------------------------------------------- */

.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus { outline: none; }

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- flickity-button ---- */

.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #19F;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */

.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous { left: 10px; }
.flickity-prev-next-button.next { right: 10px; }
/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}
.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots { direction: rtl; }

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

@charset "UTF-8";
/**
 * strip units from numbers
 * @param  {cssunit} $number the number in question
 * @return {number}         unitless representation
 */
/**
 * insert svg icon as pseudo element :before
 * @param  {string} $name  name of the icon = filename without extension
 * @param  {cssunit} $w:1em width in px, em, rem, …
 */
/**
 * strip units from numbers
 * @param  {cssunit} $number the number in question
 * @return {number}         unitless representation
 */
/**
 * insert svg icon as pseudo element :before
 * @param  {string} $name  name of the icon = filename without extension
 * @param  {cssunit} $w:1em width in px, em, rem, …
 */
/**
 * set font size and line height
 * @param  {number} $fs			font size in pixels
 * @param  {number} $lh: auto   line height in pixels
 */
/**
 * UTILITY MIXINS
 */
/*!
	yeah-grid-utils


	@version	1.0.0
	@author		Yeah <https://github.com/yeah8000>
	@used		https://grid-utils.yeah.de
*/
/**
 * Defaults
 */
/**
 * Opinions
 */
*,
*:before,
*:after {
  box-sizing: border-box;
}

/**
 * Mixins and functions
 */
/**
 * mobile-first media query at breakpoint
 * @param  {cssunit} $size	breakpoint in pixels or slug (see $breakpoints)
 */
/**
 * mobile-last media query at breakpoint
 * @param  {cssunit} $size	breakpoint in pixels or slug (see $breakpoints)
 */
/**
 * shorthand: set the gutter-width as value for a property
 */
/**
 * shorthand: set the outer-margin as value for a property
 */
/**
 * shorthand: set the gutter-width as value for a property
 */
/**
 * shorthand: get the value of a property at a certain size
 */
/**
 * Get breakpoint by name
 * @param  {string} $name
 */
/**
 * utility mixin for containers
 */
/**
 * utility mixin for fullwidth containers
 */
/**
 * utility mixin for containers
 */
/**
 * utility mixin for rows that ignore the outer-margin
 */
/**
 * utility mixin for declaring multiple properties for multiple breakpoints
 * @param  {list} $values	list of values for breakpoints (in $breakpoint)
 *
 * e.g.
 *
 * @include breakpoint-stepper((
 *         xs: #ff0000,
 *         md: #00ff00,
 *         lg: #0000ff
 *     ), color);
 * 
 */
/**
 *  Map multiple grid values to a property, modifier is optional
 *	e.g. map-grid-values('padding-left': ('outer-margin', 0.5));
 */
/**
 * base for all cols
 */
/**
  * create all classes
  */
/**
 * 	init
 */
.container {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  max-width: 100%;
}
@media only screen and (min-width: 550px) {
  .container {
    padding-right: 30px;
    padding-left: 30px;
    max-width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .container {
    padding-right: 30px;
    padding-left: 30px;
    max-width: 768px;
  }
}
@media only screen and (min-width: 1000px) {
  .container {
    padding-right: 30px;
    padding-left: 30px;
    max-width: 768px;
  }
}

.container-full {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 1920px;
  padding-right: 15px;
  padding-left: 15px;
}
@media only screen and (min-width: 550px) {
  .container-full {
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media only screen and (min-width: 768px) {
  .container-full {
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media only screen and (min-width: 1000px) {
  .container-full {
    padding-right: 30px;
    padding-left: 30px;
  }
}

.grid, .grid-12, .row {
  width: 100%;
  display: grid;
}

.column-gap, .grid, .grid-12, .row,
.grid-full,
.container-full {
  -moz-column-gap: 10px;
       column-gap: 10px;
}
@media only screen and (min-width: 550px) {
  .column-gap, .grid, .grid-12, .row,
.grid-full,
.container-full {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
@media only screen and (min-width: 768px) {
  .column-gap, .grid, .grid-12, .row,
.grid-full,
.container-full {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
@media only screen and (min-width: 1000px) {
  .column-gap, .grid, .grid-12, .row,
.grid-full,
.container-full {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}

.row-gap, .grid, .grid-12, .row,
.grid-full,
.container-full {
  row-gap: 10px;
}
@media only screen and (min-width: 550px) {
  .row-gap, .grid, .grid-12, .row,
.grid-full,
.container-full {
    row-gap: 20px;
  }
}
@media only screen and (min-width: 768px) {
  .row-gap, .grid, .grid-12, .row,
.grid-full,
.container-full {
    row-gap: 20px;
  }
}
@media only screen and (min-width: 1000px) {
  .row-gap, .grid, .grid-12, .row,
.grid-full,
.container-full {
    row-gap: 30px;
  }
}

.grid-full {
  margin-right: -15px;
  margin-left: -15px;
}
@media only screen and (min-width: 550px) {
  .grid-full {
    margin-right: -30px;
    margin-left: -30px;
  }
}
@media only screen and (min-width: 768px) {
  .grid-full {
    margin-right: -30px;
    margin-left: -30px;
  }
}
@media only screen and (min-width: 1000px) {
  .grid-full {
    margin-right: -30px;
    margin-left: -30px;
  }
}

[class*=col-] {
  grid-column: span 12;
}

.col-xs-0 {
  box-sizing: border-box;
  grid-column: span 0;
}

.col-xs-1 {
  box-sizing: border-box;
  grid-column: span 1;
}

.col-xs-2 {
  box-sizing: border-box;
  grid-column: span 2;
}

.col-xs-3 {
  box-sizing: border-box;
  grid-column: span 3;
}

.col-xs-4 {
  box-sizing: border-box;
  grid-column: span 4;
}

.col-xs-5 {
  box-sizing: border-box;
  grid-column: span 5;
}

.col-xs-6 {
  box-sizing: border-box;
  grid-column: span 6;
}

.col-xs-7 {
  box-sizing: border-box;
  grid-column: span 7;
}

.col-xs-8 {
  box-sizing: border-box;
  grid-column: span 8;
}

.col-xs-9 {
  box-sizing: border-box;
  grid-column: span 9;
}

.col-xs-10 {
  box-sizing: border-box;
  grid-column: span 10;
}

.col-xs-11 {
  box-sizing: border-box;
  grid-column: span 11;
}

.col-xs-12 {
  box-sizing: border-box;
  grid-column: span 12;
}

@media only screen and (min-width: 550px) {
  .col-s-0 {
    box-sizing: border-box;
    grid-column: span 0;
  }

  .col-s-1 {
    box-sizing: border-box;
    grid-column: span 1;
  }

  .col-s-2 {
    box-sizing: border-box;
    grid-column: span 2;
  }

  .col-s-3 {
    box-sizing: border-box;
    grid-column: span 3;
  }

  .col-s-4 {
    box-sizing: border-box;
    grid-column: span 4;
  }

  .col-s-5 {
    box-sizing: border-box;
    grid-column: span 5;
  }

  .col-s-6 {
    box-sizing: border-box;
    grid-column: span 6;
  }

  .col-s-7 {
    box-sizing: border-box;
    grid-column: span 7;
  }

  .col-s-8 {
    box-sizing: border-box;
    grid-column: span 8;
  }

  .col-s-9 {
    box-sizing: border-box;
    grid-column: span 9;
  }

  .col-s-10 {
    box-sizing: border-box;
    grid-column: span 10;
  }

  .col-s-11 {
    box-sizing: border-box;
    grid-column: span 11;
  }

  .col-s-12 {
    box-sizing: border-box;
    grid-column: span 12;
  }
}
@media only screen and (min-width: 768px) {
  .col-sm-0 {
    box-sizing: border-box;
    grid-column: span 0;
  }

  .col-sm-1 {
    box-sizing: border-box;
    grid-column: span 1;
  }

  .col-sm-2 {
    box-sizing: border-box;
    grid-column: span 2;
  }

  .col-sm-3 {
    box-sizing: border-box;
    grid-column: span 3;
  }

  .col-sm-4 {
    box-sizing: border-box;
    grid-column: span 4;
  }

  .col-sm-5 {
    box-sizing: border-box;
    grid-column: span 5;
  }

  .col-sm-6 {
    box-sizing: border-box;
    grid-column: span 6;
  }

  .col-sm-7 {
    box-sizing: border-box;
    grid-column: span 7;
  }

  .col-sm-8 {
    box-sizing: border-box;
    grid-column: span 8;
  }

  .col-sm-9 {
    box-sizing: border-box;
    grid-column: span 9;
  }

  .col-sm-10 {
    box-sizing: border-box;
    grid-column: span 10;
  }

  .col-sm-11 {
    box-sizing: border-box;
    grid-column: span 11;
  }

  .col-sm-12 {
    box-sizing: border-box;
    grid-column: span 12;
  }
}
@media only screen and (min-width: 1000px) {
  .col-md-0 {
    box-sizing: border-box;
    grid-column: span 0;
  }

  .col-md-1 {
    box-sizing: border-box;
    grid-column: span 1;
  }

  .col-md-2 {
    box-sizing: border-box;
    grid-column: span 2;
  }

  .col-md-3 {
    box-sizing: border-box;
    grid-column: span 3;
  }

  .col-md-4 {
    box-sizing: border-box;
    grid-column: span 4;
  }

  .col-md-5 {
    box-sizing: border-box;
    grid-column: span 5;
  }

  .col-md-6 {
    box-sizing: border-box;
    grid-column: span 6;
  }

  .col-md-7 {
    box-sizing: border-box;
    grid-column: span 7;
  }

  .col-md-8 {
    box-sizing: border-box;
    grid-column: span 8;
  }

  .col-md-9 {
    box-sizing: border-box;
    grid-column: span 9;
  }

  .col-md-10 {
    box-sizing: border-box;
    grid-column: span 10;
  }

  .col-md-11 {
    box-sizing: border-box;
    grid-column: span 11;
  }

  .col-md-12 {
    box-sizing: border-box;
    grid-column: span 12;
  }
}
.grid.no-column-gap, .no-column-gap.grid-12, .no-column-gap.row,
.grid-full.no-column-gap,
.container-full.no-column-gap {
  -moz-column-gap: 0;
       column-gap: 0;
}
.grid.no-row-gap, .no-row-gap.grid-12, .no-row-gap.row,
.grid-full.no-row-gap,
.container-full.no-row-gap {
  row-gap: 0;
}

.grid-12, .row {
  grid-template-columns: repeat(12, 1fr);
}

.grid-1-centered {
  grid-template-columns: 1;
  justify-items: center;
}
.grid-1-centered > * {
  width: 100%;
  max-width: 800px;
}

/*
$nav-height-mobile: 55px;
$nav-height-desktop: 120px;
*/
main {
  margin-top: 110px;
  padding-top: 2rem;
  padding-bottom: 1rem;
  min-height: 60vw;
}
main.template-home {
  opacity: 0;
}
@media only screen and (max-width: 999px) {
  main {
    margin-top: 70px;
  }
  main:not(.overflow-visible) {
    overflow: hidden;
  }
}
main div:not(:first-child).margin-top-small {
  margin-top: 3rem;
}
main div:not(:last-child).margin-bottom-small {
  margin-bottom: 3rem;
}
main div:not(:first-child).margin-top-large {
  margin-top: 7rem;
}
main div:not(:last-child).margin-bottom-large {
  margin-bottom: 7rem;
}
main div:not(:first-child).margin-top-medium {
  margin-top: 5rem;
}
main div:not(:last-child).margin-bottom-medium {
  margin-bottom: 5rem;
}
@media only screen and (max-width: 767px) {
  main div:not(:first-child).margin-top-small {
    margin-top: 2rem;
  }
  main div:not(:last-child).margin-bottom-small {
    margin-bottom: 2rem;
  }
  main div:not(:first-child).margin-top-large {
    margin-top: 5rem;
  }
  main div:not(:last-child).margin-bottom-large {
    margin-bottom: 5rem;
  }
  main div:not(:first-child).margin-top-medium {
    margin-top: 4rem;
  }
  main div:not(:last-child).margin-bottom-medium {
    margin-bottom: 4rem;
  }
}

.auto-height {
  align-self: start;
}

.inset {
  height: 100%;
  padding: 5px;
}
@media only screen and (min-width: 550px) {
  .inset {
    padding: 10px;
  }
}
@media only screen and (min-width: 768px) {
  .inset {
    padding: 10px;
  }
}
@media only screen and (min-width: 1000px) {
  .inset {
    padding: 15px;
  }
}

.margin-top {
  margin-top: 15px;
}
@media only screen and (min-width: 550px) {
  .margin-top {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 768px) {
  .margin-top {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 1000px) {
  .margin-top {
    margin-top: 30px;
  }
}

.mq-helper {
  position: absolute;
  left: 0;
  top: 50px;
  z-index: 1;
}
@media only screen and (min-width: 550px) {
  .mq-helper {
    z-index: 2;
  }
}
@media only screen and (min-width: 768px) {
  .mq-helper {
    z-index: 3;
  }
}
@media only screen and (min-width: 1000px) {
  .mq-helper {
    z-index: 4;
  }
}
@media only screen and (min-width: 5000px) {
  .mq-helper {
    z-index: 5;
  }
}
@media only screen and (min-width: ) {
  .mq-helper {
    z-index: 6;
  }
}
@media only screen and (min-width: ) {
  .mq-helper {
    z-index: 7;
  }
}

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

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

.img-wrapper {
  position: relative;
  background-color: transparent;
  padding-bottom: 100%;
  overflow: hidden;
  width: 100%;
  display: block;
}
.img-wrapper > img,
.img-wrapper > svg {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.img-wrapper > iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}
.img-wrapper.img-wrapper-circle {
  border-radius: 9999px;
}
.img-wrapper.ratio1to1 {
  padding-bottom: 100%;
}
.img-wrapper.ratio16to7 {
  padding-bottom: 43.75%;
}
.img-wrapper.ratio16to9 {
  padding-bottom: 56.25%;
}
.img-wrapper.ratio4to3 {
  padding-bottom: 75%;
}
.img-wrapper.ratioFix500 {
  padding-bottom: 500px;
}
.img-wrapper.ratioFix300 {
  padding-bottom: 300px;
}
.img-wrapper.ratioAuto {
  padding-bottom: 0px;
  height: auto;
}
.img-wrapper.ratioAuto > img {
  position: relative;
}
.img-wrapper.height100 {
  padding-bottom: 0px;
  height: 100%;
}
.img-wrapper.no-bg {
  background-color: transparent;
}
.img-wrapper.contain-img > img {
  -o-object-fit: contain;
     object-fit: contain;
}
.img-wrapper.icon {
  padding-bottom: 13em;
  border-top: 1rem solid transparent;
}
.img-wrapper.icon > img {
  -o-object-fit: contain;
     object-fit: contain;
}

.chevron-arrow-down,
.chevron-arrow-up,
.chevron-arrow-left,
.arrow-button-left:before,
.chevron-arrow-right,
.arrow-button:before {
  content: "";
  display: inline-block;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  width: 12px;
  height: 12px;
}
@media only screen and (max-width: 549px) {
  .chevron-arrow-down,
.chevron-arrow-up,
.chevron-arrow-left,
.arrow-button-left:before,
.chevron-arrow-right,
.arrow-button:before {
    width: 10px;
    height: 10px;
  }
}

.chevron-arrow-down {
  transform: rotate(45deg);
}

.chevron-arrow-left, .arrow-button-left:before {
  transform: rotate(-225deg);
}

.chevron-arrow-right, .arrow-button:before {
  transform: rotate(-45deg);
}

.arrow-link {
  display: inline-block;
}
.arrow-link svg {
  width: 1.3em;
  height: auto;
  margin-right: 0.2em;
  margin-top: -0.25em;
}
.arrow-link svg * {
  fill: #ff2d16;
}
.page-yellow .arrow-link svg * {
  fill: #ff2d16;
}
.arrow-link:hover {
  color: #fff;
}
.arrow-link:hover svg * {
  fill: #fff;
}

.whitebox {
  background-color: #fff;
  padding: 2rem;
  transition: transform 100ms ease;
}
.whitebox > *:not(.img-wrapper):first-child {
  margin-top: 0;
}
.whitebox > *:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .whitebox {
    padding: 1rem;
  }
}

a > .whitebox:hover {
  transform: scale(1.02);
}

/**
 * Often changed
 */
html {
  font-size: 15px;
}
@media only screen and (max-width: 999px) {
  html {
    font-size: 15px;
  }
}
@media only screen and (max-width: 549px) {
  html {
    font-size: 13px;
  }
}
@media only screen and (max-width: 479px) {
  html {
    font-size: 13px;
  }
}

body {
  font-family: Helvetica, sans-serif;
  font-weight: normal;
  font-style: normal;
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
  color: #000;
  text-align: left;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-smoothing: grayscale;
  font-weight: 400;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
.highscore-list-element .highscore-list-element-amount,
h4,
.h4,
h5,
.h5,
h6,
.h6,
td:first-child,
th:first-child,
.arrow-link,
p {
  margin-bottom: 0;
}
h1:first-child,
.h1:first-child,
h2:first-child,
.h2:first-child,
h3:first-child,
.h3:first-child,
.highscore-list-element .highscore-list-element-amount:first-child,
h4:first-child,
.h4:first-child,
h5:first-child,
.h5:first-child,
h6:first-child,
.h6:first-child,
td:first-child,
th:first-child,
.arrow-link:first-child,
p:first-child {
  margin-top: 0;
}
h1:last-child,
.h1:last-child,
h2:last-child,
.h2:last-child,
h3:last-child,
.h3:last-child,
.highscore-list-element .highscore-list-element-amount:last-child,
h4:last-child,
.h4:last-child,
h5:last-child,
.h5:last-child,
h6:last-child,
.h6:last-child,
td:last-child:first-child,
th:last-child:first-child,
.arrow-link:last-child,
p:last-child {
  margin-bottom: 0;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
.highscore-list-element .highscore-list-element-amount,
h4,
.h4,
h5,
.h5,
h6,
.h6,
td:first-child,
th:first-child,
.arrow-link {
  font-family: Helvetica, sans-serif;
  font-weight: bold;
  font-style: normal;
  line-height: 1.2;
  font-size: 16px;
  font-size: 0.8421052632rem;
  line-height: 1.2;
}
h1.font-brandon,
.h1.font-brandon,
h2.font-brandon,
.h2.font-brandon,
h3.font-brandon,
.h3.font-brandon,
.highscore-list-element .font-brandon.highscore-list-element-amount,
h4.font-brandon,
.h4.font-brandon,
h5.font-brandon,
.h5.font-brandon,
h6.font-brandon,
.h6.font-brandon,
td.font-brandon:first-child,
th.font-brandon:first-child,
.font-brandon.arrow-link {
  font-family: Helvetica, sans-serif;
  font-weight: normal;
  font-style: normal;
  font-weight: bold;
}

h1,
.h1 {
  font-size: 1.7rem;
  color: #ff2d16;
  text-align: center;
  margin-bottom: 2rem;
}

h2,
.h2 {
  font-size: 1.4rem;
  color: #ff2d16;
  text-align: center;
  margin-bottom: 2em;
  margin-top: 3em;
}
h2.color-black,
.h2.color-black {
  color: #000;
}

h3,
.h3,
.highscore-list-element .highscore-list-element-amount {
  font-size: 40px;
  font-size: 2.1052631579rem;
  margin-top: 1em;
}
@media only screen and (max-width: 549px) {
  h3,
.h3,
.highscore-list-element .highscore-list-element-amount {
    font-size: 25px;
  }
}
@media only screen and (max-width: 479px) {
  h3,
.h3,
.highscore-list-element .highscore-list-element-amount {
    font-size: 22px;
  }
}
h3 + h4, h3 + h5, h3 + h6,
.h3 + h4,
.highscore-list-element .highscore-list-element-amount + h4,
.h3 + h5,
.highscore-list-element .highscore-list-element-amount + h5,
.h3 + h6,
.highscore-list-element .highscore-list-element-amount + h6 {
  margin-top: 0.1rem;
}
h3 + h6,
.h3 + h6,
.highscore-list-element .highscore-list-element-amount + h6 {
  color: #ff2d16;
}

h4,
.h4 {
  font-size: 30px;
  font-size: 1.5789473684rem;
  margin-top: 1em;
}
h4 + h5, h4 + h6,
.h4 + h5,
.h4 + h6 {
  margin-top: 0.1rem;
}
h4 + h6,
.h4 + h6 {
  color: #ff2d16;
}

h5,
.h5 {
  font-size: 30px;
  font-size: 1.5789473684rem;
  margin-top: 1em;
  margin-bottom: 1em;
  font-weight: normal;
  display: inline-block;
}
@media only screen and (max-width: 549px) {
  h5,
.h5 {
    font-size: 18px;
  }
}
h5 a,
.h5 a {
  text-decoration: none;
  padding-right: 1.5em;
}
h5 a:after,
.h5 a:after {
  content: "";
  height: 1em;
  width: 1em;
  background-size: contain;
  position: absolute;
  margin: 0.12em 0 0 0.3em;
}
h5 a:hover,
.h5 a:hover {
  text-decoration: underline;
}

h6,
.h6,
td:first-child,
th:first-child,
.arrow-link {
  font-size: 25px;
  font-size: 1.3157894737rem;
  margin-top: 1em;
  line-height: 1.2;
}
@media only screen and (max-width: 549px) {
  h6,
.h6,
td:first-child,
th:first-child,
.arrow-link {
    font-size: 17px;
  }
}

p {
  margin-top: 0.7em;
}

h2 + h5 {
  margin-top: 0.3em;
}

h5 + p {
  margin-top: 1.7em;
}

a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}
a:hover {
  color: #ff2d16;
  text-decoration: none;
}
a:not([href]):not([tabindex]), a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  color: #000;
  text-decoration: none;
}
a:not([href]):not([tabindex]):focus {
  outline: 0;
}

hr {
  height: 0;
  border: none;
  border-bottom: 1px solid #000;
  margin: 3rem 0;
}

/**
 * Seldom changed
 */
*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@-ms-viewport {
  width: device-width;
}
[tabindex="-1"]:focus {
  outline: none !important;
}

article,
aside,
dialog,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  font-size: 1.15rem;
  line-height: 1.4;
  margin: 0;
  padding: 0;
  border-left: none;
  margin-top: 1rem;
}

dfn {
  font-style: italic;
}

b,
strong {
  font-weight: bold;
}

i,
em {
  font-style: italic;
}

small {
  font-size: 80%;
}

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

a,
area,
button,
[role=button],
input:not([type=range]),
label,
select,
summary,
textarea {
  touch-action: manipulation;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

progress {
  vertical-align: baseline;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th {
  text-align: inherit;
  background-color: #ff2d16;
  color: #fff;
}

tr + tr {
  border-top: 3px solid #fff;
}

td,
th {
  padding: 0.5em 1em;
  text-align: left;
}
td:first-child,
th:first-child {
  text-align: right;
  padding-left: 0;
}
@media only screen and (min-width: 768px) {
  td:first-child,
th:first-child {
    white-space: nowrap;
  }
}
td:first-child,
th:first-child {
  padding-right: 0;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #868e96;
  text-align: left;
  caption-side: bottom;
}

thead {
  font-weight: bold;
}

main ul {
  list-style: none;
  margin-top: 1em;
  padding-left: 0px;
}
@media only screen and (max-width: 767px) {
  main ul {
    padding-left: 0px;
  }
}
main ul li {
  list-style: none;
  margin-left: 1em;
  text-indent: -1em;
  margin-bottom: 0.5em;
}
main ul li:before {
  content: "•";
  display: inline-block;
  width: 1em;
  text-align: left;
  padding-left: 15px;
}

label {
  display: block;
  width: 100%;
}

textarea {
  display: block;
  width: 100%;
  font-family: Helvetica, sans-serif;
  color: #111;
  min-height: 150px;
  border: 1px solid #111;
  padding: 0.3em;
  margin: 1em 0;
  background-color: #fff;
}
textarea:focus {
  border-color: #30b86d;
}

select {
  min-height: 26.4px;
  border: none;
  background: transparent;
  line-height: 1.2;
  padding: 0.5em 1.2em 0.6em 0.8em;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 70 50'%3E%3Cpath fill='%23333' class='st0' d='M50 14L25 39 0 14z'/%3E%3C/svg%3E");
  background-size: 15px 10px;
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
  font-size: 1rem;
  margin: 0;
}

input[type=color],
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week],
.sociallinkhelper .sociallinkhelper-fakeinput {
  background-color: #fff;
  display: block;
  border: 2px solid #fff;
  width: 100%;
  min-height: 51px;
  line-height: 51px;
  border-radius: 4px;
  padding: 0 1em;
  margin: 0 0 1rem 0;
  outline: none;
  color: #111;
  font-weight: 400;
  -webkit-appearance: none;
  box-shadow: none !important;
}
@media only screen and (max-width: 559px) {
  input[type=color],
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week],
.sociallinkhelper .sociallinkhelper-fakeinput {
    min-height: 41px;
    line-height: 41px;
    margin-bottom: 0.7rem;
  }
}
@media only screen and (max-width: 329px) {
  input[type=color],
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week],
.sociallinkhelper .sociallinkhelper-fakeinput {
    min-height: 31px;
    line-height: 31px;
    margin-bottom: 0.5rem;
  }
}
input[type=color]:active:not(:-moz-read-only), input[type=color]:focus:not(:-moz-read-only), input[type=date]:active:not(:-moz-read-only), input[type=date]:focus:not(:-moz-read-only), input[type=datetime]:active:not(:-moz-read-only), input[type=datetime]:focus:not(:-moz-read-only), input[type=datetime-local]:active:not(:-moz-read-only), input[type=datetime-local]:focus:not(:-moz-read-only), input[type=email]:active:not(:-moz-read-only), input[type=email]:focus:not(:-moz-read-only), input[type=month]:active:not(:-moz-read-only), input[type=month]:focus:not(:-moz-read-only), input[type=number]:active:not(:-moz-read-only), input[type=number]:focus:not(:-moz-read-only), input[type=password]:active:not(:-moz-read-only), input[type=password]:focus:not(:-moz-read-only), input[type=search]:active:not(:-moz-read-only), input[type=search]:focus:not(:-moz-read-only), input[type=tel]:active:not(:-moz-read-only), input[type=tel]:focus:not(:-moz-read-only), input[type=text]:active:not(:-moz-read-only), input[type=text]:focus:not(:-moz-read-only), input[type=time]:active:not(:-moz-read-only), input[type=time]:focus:not(:-moz-read-only), input[type=url]:active:not(:-moz-read-only), input[type=url]:focus:not(:-moz-read-only), input[type=week]:active:not(:-moz-read-only), input[type=week]:focus:not(:-moz-read-only), .sociallinkhelper .sociallinkhelper-fakeinput:active:not(:-moz-read-only), .sociallinkhelper .sociallinkhelper-fakeinput:focus:not(:-moz-read-only) {
  border: 2px solid #30b86d;
}
input[type=color]:active:not(:read-only), input[type=color]:focus:not(:read-only),
input[type=date]:active:not(:read-only),
input[type=date]:focus:not(:read-only),
input[type=datetime]:active:not(:read-only),
input[type=datetime]:focus:not(:read-only),
input[type=datetime-local]:active:not(:read-only),
input[type=datetime-local]:focus:not(:read-only),
input[type=email]:active:not(:read-only),
input[type=email]:focus:not(:read-only),
input[type=month]:active:not(:read-only),
input[type=month]:focus:not(:read-only),
input[type=number]:active:not(:read-only),
input[type=number]:focus:not(:read-only),
input[type=password]:active:not(:read-only),
input[type=password]:focus:not(:read-only),
input[type=search]:active:not(:read-only),
input[type=search]:focus:not(:read-only),
input[type=tel]:active:not(:read-only),
input[type=tel]:focus:not(:read-only),
input[type=text]:active:not(:read-only),
input[type=text]:focus:not(:read-only),
input[type=time]:active:not(:read-only),
input[type=time]:focus:not(:read-only),
input[type=url]:active:not(:read-only),
input[type=url]:focus:not(:read-only),
input[type=week]:active:not(:read-only),
input[type=week]:focus:not(:read-only),
.sociallinkhelper .sociallinkhelper-fakeinput:active:not(:read-only),
.sociallinkhelper .sociallinkhelper-fakeinput:focus:not(:read-only) {
  border: 2px solid #30b86d;
}
input[type=color]::-webkit-input-placeholder,
input[type=date]::-webkit-input-placeholder,
input[type=datetime]::-webkit-input-placeholder,
input[type=datetime-local]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=month]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=search]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=text]::-webkit-input-placeholder,
input[type=time]::-webkit-input-placeholder,
input[type=url]::-webkit-input-placeholder,
input[type=week]::-webkit-input-placeholder,
.sociallinkhelper .sociallinkhelper-fakeinput::-webkit-input-placeholder {
  color: #000;
  opacity: 1;
}
input[type=color]::-moz-placeholder,
input[type=date]::-moz-placeholder,
input[type=datetime]::-moz-placeholder,
input[type=datetime-local]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=month]::-moz-placeholder,
input[type=number]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=search]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=text]::-moz-placeholder,
input[type=time]::-moz-placeholder,
input[type=url]::-moz-placeholder,
input[type=week]::-moz-placeholder,
.sociallinkhelper .sociallinkhelper-fakeinput::-moz-placeholder {
  color: #000;
  opacity: 1;
}
input[type=color]:-ms-input-placeholder,
input[type=date]:-ms-input-placeholder,
input[type=datetime]:-ms-input-placeholder,
input[type=datetime-local]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=month]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=search]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=text]:-ms-input-placeholder,
input[type=time]:-ms-input-placeholder,
input[type=url]:-ms-input-placeholder,
input[type=week]:-ms-input-placeholder,
.sociallinkhelper .sociallinkhelper-fakeinput:-ms-input-placeholder {
  color: #000;
  opacity: 1;
}
input[type=color]:-moz-placeholder,
input[type=date]:-moz-placeholder,
input[type=datetime]:-moz-placeholder,
input[type=datetime-local]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=month]:-moz-placeholder,
input[type=number]:-moz-placeholder,
input[type=password]:-moz-placeholder,
input[type=search]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
input[type=text]:-moz-placeholder,
input[type=time]:-moz-placeholder,
input[type=url]:-moz-placeholder,
input[type=week]:-moz-placeholder,
.sociallinkhelper .sociallinkhelper-fakeinput:-moz-placeholder {
  color: #000;
  opacity: 1;
}
input[type=color].validation-error,
input[type=date].validation-error,
input[type=datetime].validation-error,
input[type=datetime-local].validation-error,
input[type=email].validation-error,
input[type=month].validation-error,
input[type=number].validation-error,
input[type=password].validation-error,
input[type=search].validation-error,
input[type=tel].validation-error,
input[type=text].validation-error,
input[type=time].validation-error,
input[type=url].validation-error,
input[type=week].validation-error,
.sociallinkhelper .validation-error.sociallinkhelper-fakeinput {
  border: 2px solid #ff2d16;
}
input[type=color].color-gray,
input[type=date].color-gray,
input[type=datetime].color-gray,
input[type=datetime-local].color-gray,
input[type=email].color-gray,
input[type=month].color-gray,
input[type=number].color-gray,
input[type=password].color-gray,
input[type=search].color-gray,
input[type=tel].color-gray,
input[type=text].color-gray,
input[type=time].color-gray,
input[type=url].color-gray,
input[type=week].color-gray,
.sociallinkhelper .color-gray.sociallinkhelper-fakeinput {
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}
input[type=color]:-moz-read-only, input[type=date]:-moz-read-only, input[type=datetime]:-moz-read-only, input[type=datetime-local]:-moz-read-only, input[type=email]:-moz-read-only, input[type=month]:-moz-read-only, input[type=number]:-moz-read-only, input[type=password]:-moz-read-only, input[type=search]:-moz-read-only, input[type=tel]:-moz-read-only, input[type=text]:-moz-read-only, input[type=time]:-moz-read-only, input[type=url]:-moz-read-only, input[type=week]:-moz-read-only, .sociallinkhelper .sociallinkhelper-fakeinput:-moz-read-only {
  color: #9c9c9c;
}
input[type=color]:read-only,
input[type=date]:read-only,
input[type=datetime]:read-only,
input[type=datetime-local]:read-only,
input[type=email]:read-only,
input[type=month]:read-only,
input[type=number]:read-only,
input[type=password]:read-only,
input[type=search]:read-only,
input[type=tel]:read-only,
input[type=text]:read-only,
input[type=time]:read-only,
input[type=url]:read-only,
input[type=week]:read-only,
.sociallinkhelper .sociallinkhelper-fakeinput:read-only {
  color: #9c9c9c;
}

.checkbox-wrapper {
  display: grid;
  grid-template-columns: 2em 1fr;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  margin-bottom: 1rem;
  align-items: center;
}
.checkbox-wrapper label {
  margin: 0;
}

input[type=radio], input[type=checkbox] {
  opacity: 0;
  cursor: pointer;
  position: absolute;
  width: 2em;
  height: 2em;
}
input[type=radio] + span, input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  width: 2em;
  height: 2em;
  position: relative;
  top: 0.1em;
  border: 0px solid #111;
  display: inline-block;
  cursor: pointer;
  background-color: #f0f0f0;
  pointer-events: none;
  border-radius: 999px;
}
input[type=radio] + span:after, input[type=checkbox] + span:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  background-color: #ff2d16;
  border-radius: 999px;
  content: " ";
  width: 40%;
  height: 40%;
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 1em;
  background-size: contain;
}
input[type=radio]:checked + span:after, input[type=checkbox]:checked + span:after {
  opacity: 1;
}
input[type=radio][disabled] + span, input[type=checkbox][disabled] + span {
  opacity: 0.33;
}
input[type=radio] + span {
  border-radius: 50%;
}
input[type=radio] + span:after {
  content: none;
  display: none;
  opacity: 0;
}
input[type=radio]:checked + span {
  background: radial-gradient(ellipse at center, #111 0%, #111 40%, transparent 45%, transparent 100%);
}

.menu-icon {
  display: flex;
  width: 30px;
  height: 40px;
  margin-right: 0;
  position: relative;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 9999;
}
.menu-icon .typo {
  font-size: 1px;
  color: rgba(255, 255, 255, 0);
}
.menu-icon .lines {
  display: block;
  width: 35px;
  height: 4px;
  content: "";
  position: absolute;
  background-color: #000;
  transition: background-color 0.3s, transform 0.5s, opacity 0.5s;
}
@media only screen and (max-width: 999px) {
  .menu-icon .lines {
    width: 30px;
    height: 3px;
  }
}
@media only screen and (max-width: 767px) {
  .menu-icon .lines {
    width: 25px;
    height: 3px;
  }
}
.menu-icon .lines:before {
  display: block;
  width: 35px;
  height: 4px;
  content: "";
  position: absolute;
  background-color: #000;
  transition: background-color 0.3s, transform 0.5s, opacity 0.5s;
  transform: translateY(-10px);
}
@media only screen and (max-width: 999px) {
  .menu-icon .lines:before {
    width: 30px;
    height: 3px;
  }
}
@media only screen and (max-width: 767px) {
  .menu-icon .lines:before {
    width: 25px;
    height: 3px;
  }
}
@media only screen and (max-width: 767px) {
  .menu-icon .lines:before {
    transform: translateY(-7px);
  }
}
.menu-icon .lines:after {
  display: block;
  width: 35px;
  height: 4px;
  content: "";
  position: absolute;
  background-color: #000;
  transition: background-color 0.3s, transform 0.5s, opacity 0.5s;
  transform: translateY(10px);
}
@media only screen and (max-width: 999px) {
  .menu-icon .lines:after {
    width: 30px;
    height: 3px;
  }
}
@media only screen and (max-width: 767px) {
  .menu-icon .lines:after {
    width: 25px;
    height: 3px;
  }
}
@media only screen and (max-width: 767px) {
  .menu-icon .lines:after {
    transform: translateY(7px);
  }
}
.menu-open .menu-icon .lines {
  background-color: #000;
}
.menu-open .menu-icon .lines:before {
  transform: rotateZ(-45deg);
  background-color: #000;
}
.menu-open .menu-icon .lines:after {
  transform: rotateZ(45deg);
  background-color: #000;
}
.color-purple:not(:hover):not(.menu-open) .menu-icon .lines,
.color-purple:not(:hover):not(.menu-open) .menu-icon .lines:before,
.color-purple:not(:hover):not(.menu-open) .menu-icon .lines:after {
  background-color: #000;
}
.color-purple.menu-open:hover .menu-icon .lines {
  background-color: #fff;
}
.color-purple.menu-open:hover .menu-icon .lines:before {
  background-color: #000;
}
.color-purple.menu-open:hover .menu-icon .lines:after {
  background-color: #000;
}
@media only screen and (max-width: 767px) {
  .menu-icon {
    width: 30px;
    height: 30px;
  }
}

.loading-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  z-index: 9999999;
  background-color: rgba(255, 255, 255, 0.93);
  display: none;
}
.loading-overlay svg {
  display: block;
  width: 5rem;
}
.loading-overlay svg * {
  fill: #ff2d16;
}
.loading-overlay.active {
  display: flex;
}
.loading-overlay.active svg {
  -webkit-animation-name: spin;
          animation-name: spin;
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

@-webkit-keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/**
 * [button description]
 * @param  {[type]} $icon [description]
 * @return {[type]}       [description]
 */
input,
button,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [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 {
  padding: 0;
  border-style: none;
}

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

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

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

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

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

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

.btn, button,
input[type=submit],
input[type=button],
input[type=reset] {
  display: inline-block;
  padding: 0 1em;
  outline: 0 !important;
  text-decoration: none;
  margin-top: 1.5rem;
  margin-right: 1em;
  background-color: #ff2d16;
  color: #fff;
  font-size: 1rem;
  min-height: 55px;
  line-height: 55px;
  font-family: Helvetica, sans-serif;
  border-radius: 4px;
  border: none;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  transition: background-color 600ms, color 600ms, opacity 600ms;
  justify-content: center;
  width: 100%;
}
.btn:last-child, button:last-child,
input[type=submit]:last-child,
input[type=button]:last-child,
input[type=reset]:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 559px) {
  .btn, button,
input[type=submit],
input[type=button],
input[type=reset] {
    min-height: 45px;
    line-height: 45px;
  }
}
@media only screen and (max-width: 329px) {
  .btn, button,
input[type=submit],
input[type=button],
input[type=reset] {
    min-height: 35px;
    line-height: 35px;
  }
}
.btn:before, button:before,
input[type=submit]:before,
input[type=button]:before,
input[type=reset]:before, .btn:after, button:after,
input[type=submit]:after,
input[type=button]:after,
input[type=reset]:after {
  background-color: #fff;
}
.btn:hover, button:hover,
input[type=submit]:hover,
input[type=button]:hover,
input[type=reset]:hover, .btn:active, button:active,
input[type=submit]:active,
input[type=button]:active,
input[type=reset]:active, .btn:focus, button:focus,
input[type=submit]:focus,
input[type=button]:focus,
input[type=reset]:focus {
  background-color: #000;
  color: #fff;
}
.btn:hover:before, button:hover:before,
input[type=submit]:hover:before,
input[type=button]:hover:before,
input[type=reset]:hover:before, .btn:hover:after, button:hover:after,
input[type=submit]:hover:after,
input[type=button]:hover:after,
input[type=reset]:hover:after, .btn:active:before, button:active:before,
input[type=submit]:active:before,
input[type=button]:active:before,
input[type=reset]:active:before, .btn:active:after, button:active:after,
input[type=submit]:active:after,
input[type=button]:active:after,
input[type=reset]:active:after, .btn:focus:before, button:focus:before,
input[type=submit]:focus:before,
input[type=button]:focus:before,
input[type=reset]:focus:before, .btn:focus:after, button:focus:after,
input[type=submit]:focus:after,
input[type=button]:focus:after,
input[type=reset]:focus:after {
  background-color: #fff;
}

.btn-right {
  float: right;
}
.btn.arrow-button:after, .btn.arrow-button-left:before {
  border-color: #000;
}
.btn-outline {
  background-color: transparent;
  color: #ff2d16;
  border: 3px solid #ff2d16;
}
.btn-outline.arrow-button:after, .btn-outline.arrow-button-left:before {
  border-color: #ff2d16;
}
.btn-outline:hover, .btn-outline:active {
  background-color: #ff2d16;
  color: #fff;
}
.btn-outline:hover.arrow-button:after, .btn-outline:hover.arrow-button-left:before, .btn-outline:active.arrow-button:after, .btn-outline:active.arrow-button-left:before {
  border-color: #fff;
}
.btn-secondary {
  background-color: #dedede;
  color: #000;
}
.btn-secondary:hover, .btn-secondary:active {
  background-color: #000;
  color: #fff;
}
.btn-secondary:hover.arrow-button:after, .btn-secondary:hover.arrow-button-left:before, .btn-secondary:hover.arrow-button:before, .btn-secondary:active.arrow-button:after, .btn-secondary:active.arrow-button-left:before, .btn-secondary:active.arrow-button:before {
  border-color: #000;
}
.btn-secondary.arrow-button:after, .btn-secondary.arrow-button-left:before, .btn-secondary.arrow-button:before {
  border-color: #ff2d16;
}
.btn-secondary.btn-outline {
  background-color: transparent;
  color: #30b86d;
  border: 3px solid #30b86d;
}
.btn-secondary.btn-outline.arrow-button:after, .btn-secondary.btn-outline.arrow-button-left:before {
  border-color: #30b86d;
}
.btn-secondary.btn-outline:hover, .btn-secondary.btn-outline:active {
  background-color: #30b86d;
  color: #fff;
}
.btn-secondary.btn-outline:hover.arrow-button:after, .btn-secondary.btn-outline:hover.arrow-button-left:before, .btn-secondary.btn-outline:active.arrow-button:after, .btn-secondary.btn-outline:active.arrow-button-left:before {
  border-color: #fff;
}

.arrow-button {
  position: relative;
  padding-left: 0.5em;
}
.arrow-button:before {
  content: "";
  margin-top: 1px;
  margin-right: 0.6em;
  background-color: transparent !important;
  border-color: #000;
}
.arrow-button:hover:before, .arrow-button:active:before {
  border-color: #fff;
}

.arrow-button-left {
  position: relative;
  padding-left: 0.5em;
}
.arrow-button-left:before {
  content: "";
  margin-top: 1px;
  margin-right: 0.6em;
  background-color: transparent !important;
  border-color: #000;
}

.icon-button {
  width: 44px;
  height: 44px;
  padding: 0;
  text-align: center;
}
.icon-button:before {
  position: relative;
  content: " ";
  width: 1em;
  height: 26.4px;
  margin-right: 0;
  margin-left: 0;
  display: inline-block;
  vertical-align: middle;
  top: -1px;
  margin-right: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 1em;
  background-size: contain;
}

img, svg {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
}

svg:not(:root) {
  overflow: hidden;
}

.responsive-iframe {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}
.responsive-iframe iframe,
.responsive-iframe object,
.responsive-iframe embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.main-nav-search,
.main-nav-search {
  overflow: hidden;
  display: grid;
  grid-template-columns: auto 120px;
  padding: 0;
  grid-column: span 3;
  padding: 0;
  width: 100%;
  height: 0;
  min-height: 0;
  transition: all 0.5s;
  opacity: 1;
  /*
  	@include at($nav-breakpoint) {
  		position: absolute;
  		right: 0;
  		//top: 0;
  		width: 0;
  		height: 100%;
  		transition: width 0.5s;
  		&.is-open {
  			width: 100%;
  		}
  		&.mobile-only {
  			display: none;
  		}
  	}
  */
}
@media only screen and (max-width: 4999px) {
  .main-nav-search,
.main-nav-search {
    padding: 0;
    padding-left: 15px;
    padding-right: 15px;
    grid-template-columns: auto 8rem;
    grid-column: span 4;
  }
}
@media only screen and (max-width: 4999px) and (min-width: 550px) {
  .main-nav-search,
.main-nav-search {
    padding-left: 30px;
  }
}
@media only screen and (max-width: 4999px) and (min-width: 768px) {
  .main-nav-search,
.main-nav-search {
    padding-left: 30px;
  }
}
@media only screen and (max-width: 4999px) and (min-width: 1000px) {
  .main-nav-search,
.main-nav-search {
    padding-left: 30px;
  }
}
@media only screen and (max-width: 4999px) and (min-width: 550px) {
  .main-nav-search,
.main-nav-search {
    padding-right: 30px;
  }
}
@media only screen and (max-width: 4999px) and (min-width: 768px) {
  .main-nav-search,
.main-nav-search {
    padding-right: 30px;
  }
}
@media only screen and (max-width: 4999px) and (min-width: 1000px) {
  .main-nav-search,
.main-nav-search {
    padding-right: 30px;
  }
}
.main-nav-search.is-open,
.main-nav-search.is-open {
  height: 70px;
  min-height: 80px;
  padding: 15px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 1;
  height: auto;
}
@media only screen and (min-width: 550px) {
  .main-nav-search.is-open,
.main-nav-search.is-open {
    padding-left: 30px;
  }
}
@media only screen and (min-width: 768px) {
  .main-nav-search.is-open,
.main-nav-search.is-open {
    padding-left: 30px;
  }
}
@media only screen and (min-width: 1000px) {
  .main-nav-search.is-open,
.main-nav-search.is-open {
    padding-left: 30px;
  }
}
@media only screen and (min-width: 550px) {
  .main-nav-search.is-open,
.main-nav-search.is-open {
    padding-right: 30px;
  }
}
@media only screen and (min-width: 768px) {
  .main-nav-search.is-open,
.main-nav-search.is-open {
    padding-right: 30px;
  }
}
@media only screen and (min-width: 1000px) {
  .main-nav-search.is-open,
.main-nav-search.is-open {
    padding-right: 30px;
  }
}
@media only screen and (min-width: 5000px) {
  .main-nav-search.is-open,
.main-nav-search.is-open {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media only screen and (min-width: 5000px) and (min-width: 550px) {
  .main-nav-search.is-open,
.main-nav-search.is-open {
    padding-left: 30px;
  }
}
@media only screen and (min-width: 5000px) and (min-width: 768px) {
  .main-nav-search.is-open,
.main-nav-search.is-open {
    padding-left: 30px;
  }
}
@media only screen and (min-width: 5000px) and (min-width: 1000px) {
  .main-nav-search.is-open,
.main-nav-search.is-open {
    padding-left: 30px;
  }
}
@media only screen and (min-width: 5000px) and (min-width: 550px) {
  .main-nav-search.is-open,
.main-nav-search.is-open {
    padding-right: 30px;
  }
}
@media only screen and (min-width: 5000px) and (min-width: 768px) {
  .main-nav-search.is-open,
.main-nav-search.is-open {
    padding-right: 30px;
  }
}
@media only screen and (min-width: 5000px) and (min-width: 1000px) {
  .main-nav-search.is-open,
.main-nav-search.is-open {
    padding-right: 30px;
  }
}
.main-nav-search.desktop-only,
.main-nav-search.desktop-only {
  display: none;
}
.main-nav-search-input input,
.main-nav-search-input input:active,
.main-nav-search-input input:focus,
.main-nav-search-input input[type=text]:focus,
.main-nav-search-input input,
.main-nav-search-input input:active,
.main-nav-search-input input:focus,
.main-nav-search-input input[type=text]:focus {
  background-color: #fff;
  height: 100%;
  line-height: 24px;
  font-weight: bold;
  min-height: 0;
  border: 0px;
  margin: 0;
  border-radius: 4px 0 0 4px;
  height: 55px;
  background-color: #fff;
}
@media only screen and (max-width: 549px) {
  .main-nav-search-input input,
.main-nav-search-input input:active,
.main-nav-search-input input:focus,
.main-nav-search-input input[type=text]:focus,
.main-nav-search-input input,
.main-nav-search-input input:active,
.main-nav-search-input input:focus,
.main-nav-search-input input[type=text]:focus {
    height: 45px;
  }
}
@media only screen and (max-width: 479px) {
  .main-nav-search-input input,
.main-nav-search-input input:active,
.main-nav-search-input input:focus,
.main-nav-search-input input[type=text]:focus,
.main-nav-search-input input,
.main-nav-search-input input:active,
.main-nav-search-input input:focus,
.main-nav-search-input input[type=text]:focus {
    height: 39px;
  }
}
.small .main-nav-search-input input,
.small .main-nav-search-input input:active,
.small .main-nav-search-input input:focus,
.small .main-nav-search-input input[type=text]:focus,
.small .main-nav-search-input input,
.small .main-nav-search-input input:active,
.small .main-nav-search-input input:focus,
.small .main-nav-search-input input[type=text]:focus {
  background-color: #fff;
}
.main-nav-search input::-moz-placeholder, .main-nav-search input::-moz-placeholder {
  color: #9c9c9c;
  opacity: 1;
}
.main-nav-search input:-ms-input-placeholder, .main-nav-search input:-ms-input-placeholder {
  color: #9c9c9c;
  opacity: 1;
}
.main-nav-search input::placeholder,
.main-nav-search input::placeholder {
  color: #9c9c9c;
  opacity: 1;
}
.main-nav-search-btn,
.main-nav-search-btn {
  font-family: Helvetica, sans-serif;
  text-transform: none;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 22px;
  height: 100%;
  margin: 0;
  border-radius: 0 4px 4px 0;
  height: 55px;
  font-size: 1.2rem;
  background-color: #ff2d16;
  color: #fff;
}
@media only screen and (max-width: 549px) {
  .main-nav-search-btn,
.main-nav-search-btn {
    height: 45px;
  }
}
@media only screen and (max-width: 479px) {
  .main-nav-search-btn,
.main-nav-search-btn {
    height: 39px;
  }
}
.main-nav-search-btn:hover, .main-nav-search-btn:active, .main-nav-search-btn:focus,
.main-nav-search-btn:hover,
.main-nav-search-btn:active,
.main-nav-search-btn:focus {
  background-color: #ff2d16;
}
.main-nav-search-btn:hover, .main-nav-search-btn:active, .main-nav-search-btn:focus,
.main-nav-search-btn:hover,
.main-nav-search-btn:active,
.main-nav-search-btn:focus {
  background-color: #000;
}

@media only screen and (max-width: 4999px) {
  .main-nav {
    background-color: #f0f0f0;
    min-height: 70px;
    border-bottom: 0px solid #ff2d16;
  }
  .main-nav > .container {
    padding-right: 0;
    padding-left: 0;
  }
  .main-nav .logo {
    height: 70px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
  }
}
@media only screen and (max-width: 4999px) and (min-width: 1000px) {
  .main-nav .logo {
    transition: all 0.8s ease-in-out;
    height: 110px;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
  }
  header.small .main-nav .logo {
    height: 70px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
  }
}
@media only screen and (max-width: 4999px) {
  .main-nav .grid-nav {
    position: relative;
    grid-template-columns: 75px 1fr 75px auto;
    align-items: center;
    row-gap: 0;
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
@media only screen and (max-width: 4999px) {
  .main-nav .nav-button-wrapper {
    padding-left: 15px;
  }
}
@media only screen and (max-width: 4999px) and (min-width: 550px) {
  .main-nav .nav-button-wrapper {
    padding-left: 30px;
  }
}
@media only screen and (max-width: 4999px) and (min-width: 768px) {
  .main-nav .nav-button-wrapper {
    padding-left: 30px;
  }
}
@media only screen and (max-width: 4999px) and (min-width: 1000px) {
  .main-nav .nav-button-wrapper {
    padding-left: 30px;
  }
}
@media only screen and (max-width: 4999px) {
  .main-nav .search-wrapper {
    display: flex;
    justify-content: flex-end;
  }
}
@media only screen and (max-width: 4999px) {
  .main-nav-holder {
    position: fixed;
    z-index: 2;
    right: 0;
    top: 70px;
    height: calc(100% - 70px);
    width: 100%;
    max-width: 500px;
    background-color: #fff;
    border-left: 0;
    border-top: 0px solid #ff2d16;
    transform: translateX(110%);
    transition: top 0.8s ease-in-out, transform 0.3s;
    box-shadow: -5px 0px 0px 0px rgba(0, 0, 0, 0.1);
  }
}
@media only screen and (max-width: 4999px) and (min-width: 1000px) {
  .main-nav-holder {
    top: 110px;
  }
  header.small .main-nav-holder {
    top: 70px;
  }
}
@media only screen and (max-width: 4999px) {
  .menu-open .main-nav-holder {
    transform: translateX(0);
  }
}
@media only screen and (max-width: 4999px) {
  .main-nav-holder .mobile-nav-subheader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
    background-color: #fff;
    z-index: 1;
  }
  .main-nav-holder .mobile-nav-subheader .mobile-nav-back {
    border: none;
    background: none;
    outline: none;
    border-radius: 0;
    text-align: right;
    width: 100%;
    margin-top: 0;
    line-height: 1.5;
  }
  .main-nav-holder .mobile-nav-subheader .mobile-nav-back:after {
    content: "";
    display: block;
    position: absolute;
    left: 0.6em;
    top: 0;
    width: 40px;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 25px;
    background-position: right center;
    transform: scaleX(-1);
    background-color: transparent;
  }
  .main-nav-holder .mobile-nav-subheader .mobile-nav-back:hover {
    background-color: #000;
  }
  .main-nav-holder .mobile-nav-subheader-link a {
    width: 100%;
    color: #000;
    border-top: 0px solid #ff2d16;
  }
  .main-nav-holder .mobile-nav-subheader-link a:hover {
    background-color: #000;
  }
}
@media only screen and (max-width: 4999px) {
  .main-nav-holder.sub-menu-is-open .mobile-nav-subheader {
    transform: translateX(0);
  }
}
@media only screen and (max-width: 4999px) {
  .main-nav-holder .menu-profilemenue-container {
    transition: transform 0.3s ease-out;
    border-bottom: 20px solid #f5f5f5;
  }
}
@media only screen and (max-width: 4999px) {
  .main-nav-holder .menu-hauptmenue-container {
    transition: transform 0.3s ease-out;
  }
}
@media only screen and (max-width: 4999px) {
  .main-nav-holder ul a {
    width: 100%;
    padding-right: 60px;
  }
  .main-nav-holder ul a svg {
    width: 18px;
    height: auto;
    margin-right: 10px;
  }
  .main-nav-holder ul a svg * {
    fill: #ff2d16;
  }
  .main-nav-holder ul a:hover {
    color: #fff;
    background-color: #ff2d16;
  }
  .main-nav-holder ul a:hover svg * {
    fill: #fff;
  }
  .main-nav-holder ul.menu {
    width: 100%;
  }
  .main-nav-holder ul.menu li {
    width: 100%;
    position: static;
    text-indent: 0;
  }
  .main-nav-holder ul.menu li.menu-item-has-children > a:after {
    content: "";
    display: block;
    position: absolute;
    right: 0.6em;
    top: 0;
    width: 40px;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 25px;
    background-position: right center;
  }
  .main-nav-holder ul.menu li .sub-menu {
    position: absolute;
    left: 100%;
    top: 0;
    width: 100%;
    display: none;
  }
  .main-nav-holder ul.menu li.has-open-sub-menu {
    position: static;
  }
  .main-nav-holder ul.menu li.has-open-sub-menu > a {
    background-color: #ff2d16;
  }
  .main-nav-holder ul.menu li.has-open-sub-menu > .sub-menu {
    display: block;
  }
  .main-nav-holder ul.menu > li > .sub-menu {
    top: 93px;
  }
}
@media only screen and (max-width: 4999px) {
  .main-nav-overflow {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }
}
@media only screen and (max-width: 4999px) {
  .main-nav .mobile-nav-subheader-link {
    background-color: #f5f5f5;
    color: #000;
    font-weight: bold;
    padding: 0.3em 0.6em 0.4em;
    text-transform: uppercase;
    font-size: 14px;
    font-size: 0.7368421053rem;
  }
}
@media only screen and (max-width: 4999px) {
  .main-nav .mobile-nav-subheader .mobile-nav-back,
.main-nav ul a {
    color: #ff2d16;
    font-weight: bold;
    display: flex;
    align-items: center;
    padding: 1.2em 0.6em 1.2em 15px;
    position: relative;
    transition: background-color 0.3s, color 0.3s;
    border-bottom: 1px solid #f0f0f0;
    font-size: 18px;
    text-decoration: none;
  }
}
@media only screen and (max-width: 4999px) {
  .main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .main-nav ul li {
    margin: 0;
  }
  .main-nav ul li:before {
    display: none;
  }
}
.open-navigation {
  cursor: pointer;
  position: relative;
  color: #ff2d16;
  border: none;
  overflow: hidden;
  font-size: 0;
  outline: 0;
  width: 20px;
  height: 40px;
  min-height: 0;
  background: transparent;
  margin: 0;
}
@media only screen and (min-width: 550px) {
  .open-navigation {
    transform: scale(1.1);
  }
}
@media only screen and (min-width: 1000px) {
  .open-navigation {
    transform: scale(1.3);
  }
}
.open-navigation:before, .open-navigation:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  border-bottom: 2px solid #ff2d16;
  transition: border-color 0.2s, height 0.2s 0.2s, transform 0.2s, border 0.2s;
  transform: translate(-50%, -50%);
  background: 0 0;
  opacity: 1;
}
.open-navigation:before {
  height: 40%;
  border-top: 2px solid #ff2d16;
  transform: translate(-50%, -50%);
}
.open-navigation:after {
  height: 0;
  border-top: 1px solid #ff2d16;
  border-bottom: 1px solid #ff2d16;
}
.open-navigation.active {
  background-color: transparent;
}
.open-navigation.active:before, .open-navigation.active:after {
  transition: border-color 200ms, height 200ms, transform 200ms 200ms, border 200ms 200ms;
  border-color: #ff2d16;
}
.open-navigation.active:before {
  height: 0;
  border-bottom: 0;
  transform: translate(-50%, -50%) rotate(45deg);
}
.open-navigation.active:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.open-navigation:hover, .open-navigation:focus {
  background-color: transparent;
}
.open-navigation:hover:after, .open-navigation:focus:after, .open-navigation:hover:before, .open-navigation:focus:before {
  border-color: #ff2d16;
  background: transparent;
}

button.open-search {
  overflow: hidden;
  position: relative;
  bottom: 0;
  width: 31px;
  height: 31px;
  min-height: 0;
  border: none;
  background-color: transparent;
  color: rgba(255, 255, 255, 0);
  margin: 0;
  padding: 0;
  right: 15px;
}
@media only screen and (min-width: 550px) {
  button.open-search {
    right: 30px;
  }
}
@media only screen and (min-width: 768px) {
  button.open-search {
    right: 30px;
  }
}
@media only screen and (min-width: 1000px) {
  button.open-search {
    right: 30px;
  }
}
@media only screen and (max-width: 999px) {
  button.open-search {
    transform: scale(0.9);
  }
}
@media only screen and (max-width: 549px) {
  button.open-search {
    transform: scale(0.7);
  }
}
button.open-search .looking-glas-icon {
  top: 15px;
  left: 22px;
}
button.open-search .looking-glas-icon, button.open-search .looking-glas-icon:after, button.open-search .looking-glas-icon:before {
  content: "";
  display: block;
  position: absolute;
}
button.open-search .looking-glas-icon {
  background-color: #ff2d16;
  width: 3px;
  height: 16px;
  transform: rotateZ(-45deg);
  transition: all 0.4s ease-in-out;
}
button.open-search .looking-glas-icon:before {
  width: 22px;
  height: 22px;
  left: -10px;
  top: -20px;
  transform-origin: left top;
  border-radius: 50%;
  border: 3px solid #ff2d16;
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out, left 0.4s ease-in-out, top 0.4s ease-in-out, opacity 0.2s;
}
button.open-search .looking-glas-icon:after {
  background-color: #ff2d16;
  width: 0px;
  height: 3px;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  transition: all 0.2s ease-in-out;
}
button.open-search.is-open .looking-glas-icon {
  top: 0px;
  left: 13px;
  transform: rotateZ(45deg);
  height: 30px;
}
button.open-search.is-open .looking-glas-icon:before {
  width: 0px;
  height: 0px;
  left: 0px;
  top: 0px;
  opacity: 0;
  transition: width 0.4s ease-in-out, height 0.4s ease-in-out, left 0.4s ease-in-out, top 0.4s ease-in-out, opacity 0.2s 0.3s;
}
button.open-search.is-open .looking-glas-icon:after {
  width: 30px;
  transition: all 0.4s ease-in-out 0.2s;
}
.sociallinkhelper {
  position: relative;
  overflow: hidden;
}
.sociallinkhelper .sociallinkhelper-fakeinput {
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
}
.sociallinkhelper .sociallinkhelper-fakeinput input {
  border: 0px !important;
  display: inline;
  background-color: transparent;
  width: 100%;
  margin: 0 !important;
  padding: 0;
}
.sociallinkhelper.color-gray .sociallinkhelper-fakeinput {
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}
.sociallinkhelper.color-gray .sociallinkhelper-profiles .sociallinkhelper-profile {
  background-color: #f0f0f0;
}
.sociallinkhelper .sociallinkhelper-profiles {
  margin-top: -0.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  padding-left: 2px;
}
.sociallinkhelper .sociallinkhelper-profiles .sociallinkhelper-profile {
  display: flex;
  background-color: #fff;
  border-radius: 999px;
  width: 37px;
  height: 37px;
  text-align: center;
  font-weight: bold;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
  overflow: hidden;
  position: relative;
}
.sociallinkhelper .sociallinkhelper-profiles .sociallinkhelper-profile:last-child {
  margin-right: 0;
}
.sociallinkhelper .sociallinkhelper-profiles .sociallinkhelper-profile svg {
  width: 40%;
  height: auto;
  z-index: 9;
}
.sociallinkhelper .sociallinkhelper-profiles .sociallinkhelper-profile svg * {
  fill: #dfdfdf;
}
.sociallinkhelper .sociallinkhelper-profiles .sociallinkhelper-profile.available {
  background-color: #000;
  cursor: pointer;
}
.sociallinkhelper .sociallinkhelper-profiles .sociallinkhelper-profile.available img {
  display: block;
}
.sociallinkhelper .sociallinkhelper-profiles .sociallinkhelper-profile.available svg * {
  fill: #fff;
}
.sociallinkhelper .sociallinkhelper-profiles .sociallinkhelper-profile.active {
  background-color: #ff2d16;
}
.sociallinkhelper .sociallinkhelper-profiles .sociallinkhelper-profile.active img {
  display: block;
}
.sociallinkhelper .sociallinkhelper-profiles .sociallinkhelper-profile.active svg * {
  fill: #fff;
}

.addname-form {
  margin-bottom: 0;
  padding: 0;
}
.addname-form-trigger {
  position: relative;
  text-align: center;
  padding: 0 0 20px 0;
  cursor: pointer;
}
.addname-form-trigger h6 {
  color: #ff2d16;
  margin-bottom: 0;
  display: inline;
}
.addname-form-trigger button.open-faq {
  display: inline-block;
  background-color: transparent;
  border-radius: 0px;
  position: relative;
  right: 10px;
  top: -7px;
  width: 34px;
  height: 14px;
  border: none;
  margin-top: 0;
  padding: 0;
  margin-left: 10px;
}
.addname-form-trigger button.open-faq .arrow {
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  top: 50%;
  left: 50%;
  transition: transform 0.3s, background-color 0.3s;
}
.addname-form-trigger button.open-faq .arrow:before, .addname-form-trigger button.open-faq .arrow:after {
  content: "";
  display: block;
  background-color: #ff2d16;
  width: 2px;
  height: 12px;
  border-radius: 0px;
  position: absolute;
  top: -7px;
  transition: background-color 0.3s;
}
.addname-form-trigger button.open-faq .arrow:before {
  left: -4px;
  transform: rotateZ(-45deg);
}
.addname-form-trigger button.open-faq .arrow:after {
  left: 4px;
  transform: rotateZ(45deg);
}
@media only screen and (min-width: ) {
  .addname-form-trigger button.open-faq .arrow:before, .addname-form-trigger button.open-faq .arrow:after {
    top: -8px;
    width: 2px;
    height: 18px;
  }
  .addname-form-trigger button.open-faq .arrow:before {
    left: -7px;
  }
  .addname-form-trigger button.open-faq .arrow:after {
    left: 5px;
  }
}
.addname-form .addname-form-wrapper {
  display: none;
}
.addname-form-wrapper-inner {
  padding-bottom: 2rem;
}
.addname-form-wrapper-inner input {
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}
.addname-form-wrapper-inner .addname-form-preview {
  margin-bottom: 1rem;
}
.addname-form-wrapper-inner .socialsearch .socialsearch-profile {
  background-color: #f0f0f0;
}
.addname-form form {
  margin: 1rem 0 2rem 0;
}
.addname-form:not(.is-open):hover .addname-form-trigger:hover h3 {
  cursor: pointer;
  color: #ff2d16;
}
.addname-form:not(.is-open):hover .addname-form-trigger:hover button.open-faq {
  background-color: transparent;
}
.addname-form:not(.is-open):hover .addname-form-trigger:hover button.open-faq .arrow:before, .addname-form:not(.is-open):hover .addname-form-trigger:hover button.open-faq .arrow:after {
  background-color: #ff2d16;
}
.addname-form.is-open {
  border-color: #ff2d16;
  border-bottom: 1px solid #dedede;
}
.addname-form.is-open .addname-form-trigger button.open-faq {
  background-color: transparent;
}
.addname-form.is-open .addname-form-trigger button.open-faq .arrow {
  transform: rotateZ(180deg);
}
.addname-form.is-open .addname-form-trigger button.open-faq .arrow:before, .addname-form.is-open .addname-form-trigger button.open-faq .arrow:after {
  background-color: #ff2d16;
}

.highscore-list {
  background-color: #000;
}

.highscore-list-element-img-wrapper {
  background-color: #f0f0f0;
  transition: background-color 300ms ease;
  border-radius: 9999px;
  width: 6.5rem;
  height: 6.5rem;
  position: absolute;
  overflow: hidden;
  margin-top: 0.5rem;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.highscore-list-element-img-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.highscore-list-element-img-wrapper img[src=""] {
  display: none;
}

.highscore-list-element-img-placeholder {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 2.5rem;
}
.highscore-list-element-img-placeholder.color-0 {
  background-color: #ff2d16;
}
.highscore-list-element-img-placeholder.color-1 {
  background-color: #ea00ff;
}
.highscore-list-element-img-placeholder.color-2 {
  background-color: #8c00ff;
}
.highscore-list-element-img-placeholder.color-3 {
  background-color: #0015ff;
}
.highscore-list-element-img-placeholder.color-4 {
  background-color: #00c8ff;
}
.highscore-list-element-img-placeholder.color-5 {
  background-color: #00ffa6;
}
.highscore-list-element-img-placeholder.color-6 {
  background-color: #ffea00;
}
.highscore-list-element-img-placeholder.color-7 {
  background-color: #ff7b00;
}
.highscore-list-element-img-placeholder.color-8 {
  background-color: #00ffa6;
}
.highscore-list-element-img-placeholder.color-9 {
  background-color: #00c8ff;
}

.highscore-list-element {
  margin-top: 0rem;
  padding: 1.5rem 0;
  background-color: #fff;
  transition: background-color 300ms ease;
}
.highscore-list-element .highscore-list-element-inner {
  position: relative;
}
.highscore-list-element .highscore-list-element-text-wrapper {
  padding-left: 7.5rem;
}
.highscore-list-element .highscore-list-element-rank {
  color: #ff2d16;
  font-weight: bold;
  line-height: 1.1;
  font-size: 1rem;
}
.highscore-list-element .highscore-list-element-rank .highscore-list-element-rank-preview {
  color: #30b86d;
  opacity: 0;
  transition: opacity 300ms ease;
}
.highscore-list-element .highscore-list-element-rank .highscore-list-element-rank-preview svg {
  width: 15px;
  height: auto;
  margin-left: 5px;
  margin-right: 1px;
}
.highscore-list-element .highscore-list-element-rank .highscore-list-element-rank-preview svg * {
  fill: #30b86d;
}
.highscore-list-element .highscore-list-element-link.disabled {
  cursor: default;
}
.highscore-list-element .highscore-list-element-link.disabled:hover {
  color: #000;
}
.highscore-list-element .highscore-list-element-name {
  margin-top: 0;
  line-height: 1.1;
}
.highscore-list-element .highscore-list-element-amount {
  margin-top: 0;
  font-weight: 100;
  line-height: 1.1;
}
.highscore-list-element .highscore-list-element-more-wrapper {
  margin-top: 0.3rem;
}
.highscore-list-element .highscore-list-element-more-wrapper span:not(:last-child) {
  margin-right: 20px;
}
.highscore-list-element .highscore-list-element-more-wrapper span,
.highscore-list-element .highscore-list-element-more-wrapper span a {
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  white-space: nowrap;
}
.highscore-list-element .highscore-list-element-more-wrapper span svg,
.highscore-list-element .highscore-list-element-more-wrapper span a svg {
  width: 1.2rem;
  height: auto;
  margin-top: -0.25em;
}
.highscore-list-element .highscore-list-element-more-wrapper span svg *,
.highscore-list-element .highscore-list-element-more-wrapper span a svg * {
  fill: #000;
}
.highscore-list-element .highscore-list-element-more-wrapper span a {
  text-decoration: none;
}
.highscore-list-element .highscore-list-element-more-wrapper span a:hover {
  color: #30b86d;
}
.highscore-list-element .highscore-list-element-more-wrapper span a:hover svg * {
  fill: #30b86d;
}
.highscore-list-element .highscore-list-element-more-wrapper span a.disabled {
  cursor: default;
}
.highscore-list-element .highscore-list-element-more-wrapper span a.disabled:hover {
  color: #000;
}
.highscore-list-element .highscore-list-element-upgreat-details {
  display: none;
  padding-top: 2rem;
  padding-bottom: 0.5rem;
}
.highscore-list-element .highscore-list-element-formtoggle {
  text-decoration: none;
  font-weight: 100;
  position: absolute;
  right: 0;
  top: 3.4rem;
  width: 25px;
  height: 25px;
  transition: transform 300ms ease;
  text-indent: -9999px;
}
.highscore-list-element .highscore-list-element-formtoggle:before, .highscore-list-element .highscore-list-element-formtoggle:after {
  content: "";
  width: 2px;
  height: 100%;
  background-color: #30b86d;
  display: block;
  position: absolute;
  left: 50%;
  top: 0;
  margin-left: -1px;
}
.highscore-list-element .highscore-list-element-formtoggle:before {
  transform: rotate(-90deg);
}
.highscore-list-element .highscore-list-element-formtoggle:hover {
  color: black;
}
@media only screen and (max-width: 549px) {
  .highscore-list-element .highscore-list-element-formtoggle {
    width: 17px;
    height: 17px;
  }
}
.highscore-list-element .highscore-list-element-form {
  overflow: hidden;
  margin-top: 1.5rem;
  display: none;
}
.highscore-list-element.shows-sharing {
  background-color: #f0f0f0;
}
.highscore-list-element.shows-sharing .highscore-list-element-img-wrapper {
  background-color: #fff;
}
.highscore-list-element.shows-sharing .highscore-list-element-formtoggle {
  transform: rotate(405deg);
}
.highscore-list-element.shows-sharing .highscore-list-element-formtoggle:before, .highscore-list-element.shows-sharing .highscore-list-element-formtoggle:after {
  background-color: #000;
}
.highscore-list-element.shows-form {
  background-color: #f0f0f0;
}
.highscore-list-element.shows-form .highscore-list-element-img-wrapper {
  background-color: #fff;
}
.highscore-list-element.shows-form .highscore-list-element-rank-preview {
  opacity: 1;
}
.highscore-list-element.shows-form .highscore-list-element-formtoggle {
  transform: rotate(405deg);
}
.highscore-list-element.shows-form .highscore-list-element-formtoggle:before, .highscore-list-element.shows-form .highscore-list-element-formtoggle:after {
  background-color: #000;
}
.highscore-list-element.shows-upgreats {
  background-color: #f0f0f0;
}
.highscore-list-element.shows-upgreats .highscore-list-element-img-wrapper {
  background-color: #fff;
}
.highscore-list-element.shows-upgreats .highscore-list-element-upgreats a {
  color: #30b86d;
}
.highscore-list-element.shows-upgreats .highscore-list-element-formtoggle {
  transform: rotate(405deg);
}
.highscore-list-element.shows-upgreats .highscore-list-element-formtoggle:before, .highscore-list-element.shows-upgreats .highscore-list-element-formtoggle:after {
  background-color: #000;
}

.upgreat {
  border-bottom: 1px solid #e7e7e7;
}
.upgreat .upgreat-inner {
  display: grid;
  align-items: center;
  justify-content: left;
  padding: 3px;
  grid-template-columns: 3.5rem 1fr auto;
}
.upgreat .highscore-list-element-img-placeholder {
  font-size: 1rem;
}
.upgreat .upgreat-img-wrapper {
  background-color: #fff;
  border-radius: 4px;
  width: 2.2rem;
  height: 2.2rem;
  overflow: hidden;
  margin-right: 10px;
  position: relative;
  display: inline-block;
}
.upgreat .upgreat-img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.upgreat .upgreat-img-wrapper img[src=""] {
  display: none;
}
.upgreat .upgreat-amount {
  font-weight: 100;
}
.upgreat a.upgreat-link:not([href=""]):hover .upgreat-inner {
  background-color: #fff;
  color: #000;
}
.upgreat a.upgreat-link[href=""] {
  cursor: default;
}
.upgreat a.upgreat-link[href=""]:hover .upgreat-inner {
  color: #000;
}

header {
  max-height: 100%;
}

body:not(.menu-open) header {
  overflow: auto;
}

.search-results {
  grid-column: span 2;
  width: 100%;
  border-radius: 4px;
  z-index: 999;
  margin: 10px 0 0 0;
  overflow: hidden;
}

.search-result {
  background-color: #fff;
}
.search-result:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
}
.search-result .search-result-inner {
  display: grid;
  align-items: center;
  justify-content: left;
  padding: 5px 10px 5px 5px;
  grid-template-columns: 3.5rem 1fr auto;
  height: 3.5rem;
}
.search-result .search-result-img-wrapper {
  background-color: #dedede;
  border-radius: 9999px;
  width: 2.2rem;
  height: 2.2rem;
  overflow: hidden;
  margin-right: 10px;
  position: relative;
  display: inline-block;
  margin-top: 0.1rem;
}
.search-result .search-result-img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.search-result .search-result-img-wrapper img[src=""] {
  display: none;
}
.search-result .search-result-amount {
  font-weight: 100;
}
.search-result a.search-result-link:not([href=""]):hover .search-result-inner,
.search-result a.search-result-link:not([href=""]):focus .search-result-inner {
  color: #30b86d;
}
.search-result a.search-result-link[href=""] {
  cursor: default;
}
.search-result a.search-result-link[href=""]:hover .search-result-inner {
  color: #000;
}

.share-img-template-wrapper {
  height: 0;
  width: 100%;
  overflow: scroll;
}
.share-img-template-wrapper .share-img-template {
  background-color: #fff;
  width: 1200px;
  height: 630px;
  margin-bottom: 1rem;
}
.share-img-template-wrapper .share-img-template .share-img-template-inner {
  position: relative;
  width: 100%;
  padding-bottom: 52.5%;
}
.share-img-template-wrapper .share-img-template .share-img-template-inner .share-img-template-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 3% 4% 4% 4%;
}
.share-img-template-wrapper .share-img-template .share-img-template-inner .share-img-template-content h4 {
  color: #ff2d16;
  text-align: left;
  font-size: 60px;
  line-height: 1.2;
  white-space: pre;
}
.share-img-template-wrapper .share-img-template .share-img-template-inner .share-img-template-content img, .share-img-template-wrapper .share-img-template .share-img-template-inner .share-img-template-content svg {
  position: absolute;
  right: 4%;
  bottom: 6%;
}

.highscore-list-element-sharing-details {
  display: none;
  padding: 2rem 0 1rem 0;
}
.highscore-list-element-sharing-details .share-img-canvas-wrapper {
  overflow: auto;
}
.highscore-list-element-sharing-details .share-img-canvas-wrapper canvas {
  position: absolute;
  display: none;
}
.highscore-list-element-sharing-details .share-img-image-wrapper {
  width: 100%;
  margin-bottom: 1rem;
}

.yeah-modal-backdrop {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(153, 153, 153, 0.7);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.yeah-modal {
  position: fixed;
  width: 400px;
  max-width: 90%;
  min-height: 150px;
  background-color: white;
  border-radius: 10px;
  padding: 1.5rem;
  z-index: 100000;
}
.yeah-modal h1,
.yeah-modal .h1,
.yeah-modal h2,
.yeah-modal .h2,
.yeah-modal h3,
.yeah-modal .h3,
.yeah-modal .highscore-list-element .highscore-list-element-amount,
.highscore-list-element .yeah-modal .highscore-list-element-amount,
.yeah-modal h4,
.yeah-modal .h4,
.yeah-modal h5,
.yeah-modal .h5,
.yeah-modal h6,
.yeah-modal .h6,
.yeah-modal .arrow-link,
.yeah-modal td:first-child,
.yeah-modal th:first-child {
  text-align: left;
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.yeah-modal .yeah-modal-choice {
  margin: 0 0 0.5rem 0;
}
.yeah-modal .yeah-modal-choice:first-child {
  margin-top: 1rem;
}
.yeah-modal .yeah-modal-choice:last-child {
  margin-bottom: 0;
}

.paypal-paidlinkbutton-container {
  position: relative;
  margin-top: 1.5rem;
}
.paypal-paidlinkbutton-container a.btn {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  margin: 0;
}
.paypal-paidlinkbutton-container a.btn.popeffect {
  z-index: 999;
  -webkit-animation-name: pop;
          animation-name: pop;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-timing-function: cubic-bezier(0.65, 0.14, 0.37, 1.18);
          animation-timing-function: cubic-bezier(0.65, 0.14, 0.37, 1.18);
}
.paypal-paidlinkbutton-container > .paypal-buttons {
  opacity: 0;
}
.paypal-paidlinkbutton-container:hover a.btn {
  background-color: #000;
}

@-webkit-keyframes pop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes pop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.profile-img-text-wrapper {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 1rem;
  margin-bottom: 5rem;
  justify-items: center;
}
@media only screen and (max-width: 419px) {
  .profile-img-text-wrapper {
    grid-template-columns: 1fr;
  }
}
.profile-img-text-wrapper .highscore-list-element-img-wrapper {
  position: relative;
  margin-top: 0;
  cursor: pointer;
}
.profile-img-text-wrapper .highscore-list-element-img-wrapper.profile-list-element-img-wrapper {
  border-radius: 4px;
}
.profile-img-text-wrapper .profile-text-wrapper {
  width: 100%;
}
.profile-img-text-wrapper .profile-text-wrapper .profile-image-delete-checkbox {
  display: none;
  position: relative;
  opacity: 1;
}
.profile-img-text-wrapper .profile-text-wrapper .profile-upload-save-row {
  align-items: center;
  margin-bottom: 0.5rem;
}
.profile-img-text-wrapper .profile-text-wrapper .profile-upload-save-row [type=file] {
  margin-bottom: 0;
}
.profile-img-text-wrapper .profile-text-wrapper .profile-upload-save-row .checkbox-wrapper {
  margin: 0;
}
.profile-img-text-wrapper .profile-text-wrapper .btn {
  margin-top: 0;
}
