@charset "UTF-8";
/** Import theme styles */
/** Box Model  */
/** letter spacing */
/** Typo */
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */

@font-face {
  font-family: 'Hellix-Bold';
  src: url('/hc/theming_assets/01HZPZZ79V7MZ0QWDFPPW3SCER');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Hellix-Bold-Italic';
  src: url('/hc/theming_assets/01HZPZZ7FD51XHHWNAC2S14DWC');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Hellix-Extra-Bold-Italic';
  src: url('/hc/theming_assets/01HZPZZ7MZ6NHR55NJXY736BZQ');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Hellix-Medium';
  src: url('/hc/theming_assets/01HZPZZ7SHRMTJDWFYCMNNFJGD');
  font-weight: 400;
  font-style: normal;
}
  
@font-face {
  font-family: 'Hellix-Medium-Italic';
  src: url('/hc/theming_assets/01HZPZZ8SFZNXVMAK4X34KH2B3');
  font-weight: 400;
  font-style: normal;
}

@keyframes buttonAnimation {
  0% {
      transform: scaleX(1);
  }
  20% {
      transform: scaleX(1.11);
  }
  40% {
      transform: scaleX(1.08);
  }
  70% {
      transform: scaleX(1.1);
  }
  to {
      transform: scaleX(1.1);
  }
}

@keyframes buttonAnimationOut {
  0% {
      transform: scaleX(1.1);
  }
  40% {
      transform: scaleX(1.11);
  }
  60% {
      transform: scaleX(1.08);
  }
  to {
      transform: scaleX(1);
  }
}

.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: #F4F4F4;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger.is-active:hover {
  opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #f4f4f4;
}

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

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #000;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

/*
   * 3DX
   */
.hamburger--3dx .hamburger-box {
  perspective: 80px;
}

.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(180deg);
}

.hamburger--3dx.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dx.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DX Reverse
   */
.hamburger--3dx-r .hamburger-box {
  perspective: 80px;
}

.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(-180deg);
}

.hamburger--3dx-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dx-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DY
   */
.hamburger--3dy .hamburger-box {
  perspective: 80px;
}

.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(-180deg);
}

.hamburger--3dy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DY Reverse
   */
.hamburger--3dy-r .hamburger-box {
  perspective: 80px;
}

.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg);
}

.hamburger--3dy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DXY
   */
.hamburger--3dxy .hamburger-box {
  perspective: 80px;
}

.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg);
}

.hamburger--3dxy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dxy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DXY Reverse
   */
.hamburger--3dxy-r .hamburger-box {
  perspective: 80px;
}

.hamburger--3dxy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}

.hamburger--3dxy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dxy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * Arrow
   */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
   * Arrow Right
   */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
   * Arrow Alt
   */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
   * Arrow Alt Right
   */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
   * Arrow Turn
   */
.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg);
}

.hamburger--arrowturn.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--arrowturn.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
   * Arrow Turn Right
   */
.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg);
}

.hamburger--arrowturn-r.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrowturn-r.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
   * Boring
   */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none;
}

.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg);
}

.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/*
   * Collapse
   */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Collapse Reverse
   */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse-r .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Elastic
   */
.hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(135deg);
  transition-delay: 0.075s;
}

.hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-270deg);
  transition-delay: 0.075s;
}

/*
   * Elastic Reverse
   */
.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic-r .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-135deg);
  transition-delay: 0.075s;
}

.hamburger--elastic-r.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(270deg);
  transition-delay: 0.075s;
}

/*
   * Emphatic
   */
.hamburger--emphatic {
  overflow: hidden;
}

.hamburger--emphatic .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}

.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}

.hamburger--emphatic .hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}

.hamburger--emphatic.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}

.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -80px;
  top: -80px;
  transform: translate3d(80px, 80px, 0) rotate(45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -80px;
  top: -80px;
  transform: translate3d(-80px, 80px, 0) rotate(-45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
   * Emphatic Reverse
   */
.hamburger--emphatic-r {
  overflow: hidden;
}

.hamburger--emphatic-r .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}

.hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}

.hamburger--emphatic-r .hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}

.hamburger--emphatic-r.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}

.hamburger--emphatic-r.is-active .hamburger-inner::before {
  left: -80px;
  top: 80px;
  transform: translate3d(80px, -80px, 0) rotate(-45deg);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--emphatic-r.is-active .hamburger-inner::after {
  right: -80px;
  top: 80px;
  transform: translate3d(-80px, -80px, 0) rotate(45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
   * Minus
   */
.hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
}

.hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
}

.hamburger--minus.is-active .hamburger-inner::before {
  top: 0;
}

.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0;
}

/*
   * Slider
   */
.hamburger--slider .hamburger-inner {
  top: 2px;
}

.hamburger--slider .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}

.hamburger--slider .hamburger-inner::after {
  top: 20px;
}

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0;
}

.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-90deg);
}

/*
   * Slider Reverse
   */
.hamburger--slider-r .hamburger-inner {
  top: 2px;
}

.hamburger--slider-r .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}

.hamburger--slider-r .hamburger-inner::after {
  top: 20px;
}

.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}

.hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(5.71429px, -6px, 0);
  opacity: 0;
}

.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(90deg);
}

/*
   * Spin
   */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Spin Reverse
   */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin-r .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Spring
   */
.hamburger--spring .hamburger-inner {
  top: 2px;
  transition: background-color 0s 0.13s linear;
}

.hamburger--spring .hamburger-inner::before {
  top: 10px;
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring .hamburger-inner::after {
  top: 20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent !important;
}

.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}

/*
   * Spring Reverse
   */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring-r .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}

.hamburger--spring-r .hamburger-inner::before {
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
}

.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Stand
   */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}

.hamburger--stand .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}

.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Stand Reverse
   */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}

.hamburger--stand-r .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand-r .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}

.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Squeeze
   */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Vortex
   */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}

.hamburger--vortex .hamburger-inner::before {
  transition-property: top, opacity;
}

.hamburger--vortex .hamburger-inner::after {
  transition-property: bottom, transform;
}

.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
  transition-delay: 0s;
}

.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
}

/*
   * Vortex Reverse
   */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}

.hamburger--vortex-r .hamburger-inner::before {
  transition-property: top, opacity;
}

.hamburger--vortex-r .hamburger-inner::after {
  transition-property: bottom, transform;
}

.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
  transition-delay: 0s;
}

.hamburger--vortex-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--vortex-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

@font-face {
  font-family: "futura-pt-bold-obl";
  src: url(/hc/theming_assets/01HZPZZH4NB110KF32X6WDY89J);
  src: url(/hc/theming_assets/01HZPZZH4NB110KF32X6WDY89J) format("embedded-opentype"), url(/hc/theming_assets/01HZPZZHPSZK2AZR3FC7THKHKM) format("woff2"), url(/hc/theming_assets/01HZPZZHHB3WMA58HMHVNEG0AP) format("woff"), url(/hc/theming_assets/01HZPZZHBFSNRC1QC6X3PADJ0B) format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "gt-walsheim";
  src: url(/hc/theming_assets/01HZPZZNNCDEY25XJV4FM550J9);
  src: url(/hc/theming_assets/01HZPZZNNCDEY25XJV4FM550J9) format("embedded-opentype"), url(/hc/theming_assets/01HZPZZPANKBK08BXAFG3QKX9Z) format("woff"), url(/hc/theming_assets/01HZPZZP4BTZF9KJF1Y0KNY6GD) format("truetype"), url(/hc/theming_assets/01HZPZZNY6KX196330TG5QH6SH) format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "gt-walsheim";
  src: url(/hc/theming_assets/01HZPZZMMVDPPP0C3PNZWZWNK0);
  src: url(/hc/theming_assets/01HZPZZMMVDPPP0C3PNZWZWNK0) format("embedded-opentype"), url(/hc/theming_assets/01HZPZZNDACDY24AJBB26MJPWH) format("woff"), url(/hc/theming_assets/01HZPZZN7DBD4V97CP38JZCAVJ) format("truetype"), url(/hc/theming_assets/01HZPZZMZE8FGXPQ0GRGNEJPKH) format("svg");
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: "gt-walsheim";
  src: url(/hc/theming_assets/01HZPZZKKEBT9M7JVFKTDBDFX0);
  src: url(/hc/theming_assets/01HZPZZKKEBT9M7JVFKTDBDFX0) format("embedded-opentype"), url(/hc/theming_assets/01HZPZZMCAF7DGPNHMH1AB559J) format("woff"), url(/hc/theming_assets/01HZPZZM4F9VQ4AEBVEZZK6VM3) format("truetype"), url(/hc/theming_assets/01HZPZZKWSZDPAK9GAVHVK3D6V) format("svg");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "gt-walsheim";
  src: url(/hc/theming_assets/01HZPZZJQ1F67VY6ZMY8QKH86X);
  src: url(/hc/theming_assets/01HZPZZJQ1F67VY6ZMY8QKH86X) format("embedded-opentype"), url(/hc/theming_assets/01HZPZZKBR3FEV1VF5MQXTHWHH) format("woff"), url(/hc/theming_assets/01HZPZZK3AHWC4N15CVFPB58P5) format("truetype"), url(/hc/theming_assets/01HZPZZJY429V1TPMDMSFAZ34D) format("svg");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "gt-walsheim";
  src: url(/hc/theming_assets/01HZPZZHWH495HBV1CXJEJGH6K);
  src: url(/hc/theming_assets/01HZPZZHWH495HBV1CXJEJGH6K) format("embedded-opentype"), url(/hc/theming_assets/01HZPZZJGGHQJ68JRG14M2W9HX) format("woff"), url(/hc/theming_assets/01HZPZZJAHDCX19WYR47PAPCMC) format("truetype"), url(/hc/theming_assets/01HZPZZJ4C0N9RATZN6A7EWPZ1) format("svg");
  font-weight: 800;
  font-style: italic;
}

@font-face {
  font-family: "Futura-Demi-Italic";
  src: url(/hc/theming_assets/01HZPZZGTYWW0AHZHTQ94E9H2M) format("woff2"), url(/hc/theming_assets/01HZPZZGPZYG8PZZ7CHFXE951M) format("woff"), url(/hc/theming_assets/01HZPZZGJ0468WVD11K0APKEJC) format("truetype");
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Futura-Bold-Italic";
  src: url(/hc/theming_assets/01HZPZZGAM0G3JRN00TQ9TTSJ2) format("woff2"), url(/hc/theming_assets/01HZPZZG6T9WBEVK0VMF1R5M3J) format("woff"), url(/hc/theming_assets/01HZPZZG2TBA7VFN4AP7A6TSCD) format("truetype");
  font-style: normal;
  font-weight: 600;
}

/***** Base *****/
* {
  box-sizing: border-box;
}

html {
  font-size: 20px;
}

body {
  background: #ffffff;
  color: #0C0C0C;
  font-family: "gt-walsheim", sans-serif;
  font-size: 1rem;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body.u-preventScroll {
  position: fixed;
  left: 0;
  right: 0;
}

@media (min-width: 1024px) {
  body > main {
    min-height: 65vh;
  }
}

.Page-content {
  background: #F4F4F4;
  display: flex;
  flex-direction: column;
  flex: 1;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.error-page {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0;
  padding-top: 60px;
}

@media (min-width: 1500px) {
  .error-page {
    padding: 0px;
    padding-top: 60px;
  }
}

.dropdown-toggle {
  background: none;
  border: 0;
  padding: 0;
  text-align: initial;
}

.dropdown-toggle:focus {
  outline: 0;
  text-decoration: underline;
}

.dropdown-toggle::after {
  color: inherit;
}

.left-col {
  float: none;
  margin-top: 40px;
  width: 100%;
}

@media (min-width: 768px) {
  .left-col {
    float: left;
    margin-top: 0;
    width: 30%;
  }
}

@media (min-width: 1024px) {
  .left-col {
    width: 25%;
  }
}

.right-col {
  float: none;
  padding-left: 0px;
  width: 100%;
}

@media (min-width: 768px) {
  .right-col {
    float: right;
    padding-left: 50px;
    width: 70%;
  }
}

@media (min-width: 1024px) {
  .right-col {
    width: 75%;
  }
}

.powered-by-zendesk {
  display: none;
}

.hidden {
  display: none !important;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "futura-pt-bold-obl", sans-serif;
  margin: 0;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.06ch;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.1rem;
}

h4 {
  font-size: 0.9rem;
}

h5 {
  font-size: 0.8rem;
}

p {
  font-size: inherit;
  font-weight: normal;
  line-height: 1.3;
}

p {
  font-size: inherit;
  font-weight: normal;
  line-height: 1.3;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
.button,
input[type="submit"] {
  font-family: "futura-pt-bold-obl", sans-serif;
  font-weight: 600;
}

input,
optgroup,
select,
textarea {
  font-family: "gt-walsheim", sans-serif;
}

.u-font-size-1 {
  font-size: 2.5rem;
}

.u-font-size-2 {
  font-size: 2rem;
}

.u-font-size-3 {
  font-size: 1.1rem;
}

.u-font-size-4 {
  font-size: 0.9rem;
}

.u-font-size-5 {
  font-size: 0.8rem;
}

.u-font-size-base {
  font-size: 20px;
}

/** Components */
.Breadcrumbs-nav {
  background: #D4D7FF;
  display: inline-block;
  line-height: 1;
  margin: 20px 0;
  text-align: center;
  padding: 10px;
  width: 100%;
  /* Breadcrumbs on article page*/
}

.Breadcrumbs-nav--article .breadcrumbs {
  display: inline;
}

.Breadcrumbs-nav--article .breadcrumbs li:last-child a {
  color: #0C0C0C;
}

/* Article breadcrumb */
.Breadcrumb-article {
  color: #0C0C0C;
  display: inline;
  font-size: 16px;
  font-weight: 600;
  
}

.Breadcrumb-article:before {
  color: #0C0C0C;
  content: "→";
  margin: 0 4px;
}

@media (min-width: 768px) {
  .breadcrumbs {
    margin: 0;
    padding: 0;
  }
}

.breadcrumbs li {
  color: #0C0C0C;
  display: inline;
  font-size: 16px;
  max-width: 450px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.breadcrumbs li:last-child a {
  color: #0C0C0C;
}

.breadcrumbs li a {
  color: #0C0C0C;
  font-weight: 600;
}

.breadcrumbs li a:hover {
  opacity: 0.8;
}

.breadcrumbs li + li::before {
  color: #0C0C0C;
  content: "→";
  margin: 0 4px;
}

@media (min-width:768px){

 
}

.Button {
  background: #F4F4F4;
  border: none;
  border-radius: 34px;
  box-shadow: none;
  color: white;
  cursor: pointer;
  display: inline-block;
  font-size: 1.1rem;
  font-family: "futura-pt-bold-obl", sans-serif;
  margin-bottom: 10px;
  padding: 10px 35px;
  padding-top: 13px;
  position: relative;
  z-index: 1;
  letter-spacing: 0.4;
  text-decoration: none;
  transition: background 0.2s;
}

@media (min-width: 768px) {
  .Button {
    margin-right: 1ch;
  }
}

.Button::before {
  content: "";
  display: block;
  background: inherit;
  position: absolute;
  border-radius: inherit;
  z-index: -1;
  animation: button-hover-out 0.1s ease-in-out;
  top: -2px;
  bottom: -2px;
  left: -2px;
  right: -2px;
  border: inherit;
  border-color: #F4F4F4;
}

.Button:hover {
  opacity: 1;
}

.Button:hover::before {
  animation: button-hover 0.6s ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes button-hover {
  0% {
    transform: scaleX(1);
  }
  20% {
    transform: scaleX(1.11);
  }
  40% {
    transform: scaleX(1.08);
  }
  70% {
    transform: scaleX(1.1);
  }
  100% {
    transform: scaleX(1.1);
  }
}

@keyframes button-hover-out {
  from {
    transform: scaleX(1.1);
  }
  to {
    transform: scaleX(1);
  }
}

.Button-label {
  white-space: nowrap;
  width: auto;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}

.Button--animated {
  animation-delay: 50ms;
  animation-duration: 250ms;
  animation-fill-mode: both;
  animation-name: reveal;
  opacity: 0;
  overflow: hidden;
  padding: 10px 0;
}

.Button--gray {
  background: #F4F4F4;
  color: white;
}

.Button--gray::before {
  border-color: #F4F4F4;
}

.Button--green, .Button--primary {
  background: #0C0C0C;
  color: white;
}

.Button--green::before, .Button--primary::before {
  border-color: #42c26f;
}

.Button--whiteTransparent, .Button--secondary {
  color: #0C0C0C;
  background: #B3B9FF;
  border: 2px solid transparent;
}

.Button--whiteTransparent::before, .Button--secondary::before {
  top: -2px;
  bottom: -2px;
  left: -2px;
  right: -2px;
  border: inherit;
  border-color: currentColor;
}

.Button--grayTransparent {
  color: #F4F4F4;
  background: inherit;
  border: 2px solid transparent;
}

.Button--grayTransparent::before {
  top: -2px;
  bottom: -2px;
  left: -2px;
  right: -2px;
  border: inherit;
  border-color: currentColor;
}

@keyframes reveal {
  0% {
    max-width: 48px;
    opacity: 0;
  }
  1% {
    opacity: 1;
  }
  95% {
    max-width: 300px;
    opacity: 1;
    padding: 10px 30px;
  }
  100% {
    max-width: 290px;
    opacity: 1;
    padding: 10px 30px;
  }
}

/***** Buttons *****/
.button, input[type="submit"],
[role="button"],
input[type="submit"] {
  background: #0c0c0c;
  border: none;
  border-radius: 34px;
  box-shadow: none;
  -webkit-box-shadow: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1.1rem;
  margin-bottom: 10px;
  padding: 7px 30px;
  position: relative;
  text-decoration: none;
  -webkit-touch-callout: none;
}

@media (min-width: 768px) {
  .button, input[type="submit"],
  [role="button"],
  input[type="submit"] {
    width: auto;
  }
}

.button:hover, input[type="submit"]:hover, .button:focus, input[type="submit"]:focus,
[role="button"]:hover,
[role="button"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
  text-decoration: none;
}

.button::after, input[type="submit"]::after,
[role="button"]::after,
input[type="submit"]::after {
  color: #0C0C0C;
}

.button[data-disabled], input[data-disabled][type="submit"],
[role="button"][data-disabled],
input[type="submit"][data-disabled] {
  cursor: default;
}

.button-secondary {
  color: #fff;
  border: 1px solid #ddd;
  background-color: transparent;
}

.button-secondary:hover, .button-secondary:focus, .button-secondary:active {
  color: #ffffff;
  border: 1px solid #ddd;
  background-color: #f7f7f7;
}

.chat-block::after {
  content: "";
  display: table;
  clear: both;
}

.chat-block-inner {
  max-width: 1500px;
  text-align: center;
}

@media (min-width: 768px) {
  .chat-block-inner {
    display: flex;
    text-align: left;
  }
}

.chat-block-image {
  background-position: center center;
  background-size: cover;
  min-height: 300px;
  width: 100%;
}

@media (min-width: 768px) {
  .chat-block-image {
    float: left;
    min-height: 450px;
    width: 50%;
  }
}

.chat-block-text {
  background: #282F37;
  padding: 20px;
}

.chat-block-text-inner {
  max-width: 500px;
}

@media (min-width: 768px) {
  .chat-block-text {
    align-items: center;
    display: flex;
    float: left;
    justify-content: center;
    width: 50%;
  }
}

.chat-icon {
  margin-right: 10px;
  max-width: 40px;
  vertical-align: middle;
}

.ContactBlock {
  clear: both;
  display: none;
}

.ContactBlock p {
  margin-top: 0;
}

.ContactBlock::after {
  content: "";
  display: table;
  clear: both;
}

.ContactBlock-inner {
  max-width: 1500px;
}

.ContactBlock-chat, .ContactBlock-mail {
  margin-bottom: 20px;
}

.ContactBlock-mail {
  margin-bottom: 40px;
}

.ContactBlock .Button {
  margin-top: 10px;
}

.Container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0;
  padding-top: 60px;
  padding: 0;
  width: 100%;
}

@media (min-width: 1500px) {
  .Container {
    padding: 0px;
    padding-top: 60px;
  }
}

.Container::after {
  content: "";
  display: table;
  clear: both;
}

.Container-divider {
  border-top: 1px solid #ddd;
  margin-bottom: 20px;
}

.Duo {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0;
  padding-top: 60px;
  margin: 0px 0;
  padding: 0;
}

.Duo::after {
  content: "";
  display: table;
  clear: both;
}

@media (min-width: 1500px) {
  .Duo {
    display: flex;
  }
}

.duo-inner {
  max-width: 1500px;
  text-align: center;
}

@media (min-width: 768px) {
  .duo-inner {
    display: flex;
    text-align: left;
  }
}
.Duo-text {
  background: url(/hc/theming_assets/01HZPZZ8X16053JBCRGKVEY3JX);
  color: #0C0C0C;
  padding: 40px 20px;
  transition: transform 0.5s ease-out;

}

@media (min-width: 768px) {
  .Duo-text {
    float: left;
    padding: 50px 60px;
    width: 50%;
  }
}

.DuoImage {
  position: relative;
  transform: translateY(0%);
  transition: transform 0.4s linear;
  max-height: 638px;
  height: 638px;

}

@media (min-width: 768px) {
  .DuoImage {
    float: left;
    width: 100%;
  }
}

.DuoImage-img {
  bottom: 0;
  display: block;
  height: 100%;
  left: 0;
  min-width: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

@media (max-width: 768px) {
  .DuoImage-img {
    width:100%; 
    height:100%;
    object-fit:cover;
    object-position:left;
    filter: brightness(1.2);

  }
}

input,
textarea {
  color: #000;
  font-size: 14px;
}

input {
  font-weight: 300;
  max-width: 100%;
  box-sizing: border-box;
  outline: none;
  transition: border .12s ease-in-out;
}

input:focus {
  border: 1px solid #17494D;
}

input[disabled] {
  background-color: #ddd;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url(/hc/theming_assets/01HZPZZF8WNZFHDT7F4VM7RH4M) no-repeat #fff;
  background-position: right 10px center;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 8px 30px 8px 10px;
  outline: none;
  color: #555;
  width: 100%;
}

select:focus {
  border: 1px solid #17494D;
}

select::-ms-expand {
  display: none;
}

textarea {
  border: 1px solid #ddd;
  border-radius: 2px;
  resize: vertical;
  width: 100%;
  outline: none;
  padding: 10px;
}

textarea:focus {
  border: 1px solid #17494D;
}

.FrequentlyQuestions-intro {
  margin-bottom: 20px;
}

.FrequentlyQuestions-title {
  margin: 0;
}

.FrequentlyQuestions-description {
  margin: 0;
}

/*
@media (min-width: 920px) {
  .MenuButton {
    visibility: hidden;
  }
}

.MenuButton {
  background: #42c26f;
  height: 58px;
  opacity: 1;
  pointer-events: all;
  position: absolute;
  right: 0;
  text-align: left;
  z-index: 9999;
}

@media (min-width: 1024px) {
  .MenuButton {
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    opacity: 0;
    width: 70px;
  }
  .MenuButton .hamburger-box {
    left: 15px;
  }
  .MenuButton:hover, .MenuButton:active, .MenuButton:active:hover {
    opacity: 0;
  }
}

.MenuButton:hover {
  opacity: 1;
}

.MenuButton.is-active {
  background: transparent;
}

.MenuButton .hamburger-inner,
.MenuButton .hamburger-inner::before,
.MenuButton .hamburger-inner::after {
  background: white;
}

.MenuButton.hamburger.is-active:hover {
  opacity: 1;
}

.MenuButton.hamburger.is-active .hamburger-inner,
.MenuButton.hamburger.is-active .hamburger-inner::before,
.MenuButton.hamburger.is-active .hamburger-inner::after {
  background: white;
}

@media (min-width: 1024px) {
  .MenuButton--show {
    pointer-events: all;
    opacity: 1;
    right: 0;
    transition: opacity 0.2s;
  }
  .MenuButton--show:hover {
    opacity: 1;
  }
}

*/

.MailBlock {
  background: #50DC82;
  padding: 40px 20px;
  text-align: center;
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
}

.MailBlock-icon {
  margin-right: 10px;
  max-width: 40px;
  vertical-align: middle;
}

/*
* 1. prevent flash of content on load on mobile
* 2. the delay is needed to trigger the animation, not sure why...
*/
.MainMenu {
  float: right;
  display: block;
  right: 0;
  bottom: 0;
  top: 0;
  opacity: 0;
  position: fixed;
  transform: translateX(100%);
  transition: transform 0.3s 0.01s ease-out;
}

@media (min-width: 1024px) {
  .MainMenu {
    display: block;
    transform: translate(0);
    position: relative;
    opacity: 1;
  }
  .MainMenu {
    display: none;
  }
}

.MainMenu-list {
  list-style-type: none;
  margin: 0;
}

.MainMenu-list li {
  color: #0C0C0C;
  display: inline-block;
  font-size: 0.8rem;
  font-weight: normal;
}

.MainMenu-list li a {
  display: inline-block;
  padding: 20px 18px;
  transition: color 0.1s;
}

.MainMenu-list li a:hover, .MainMenu-list li a:focus, .MainMenu-list li a:active  {
  text-decoration: underline;
  outline: none;
}

.MainMenu-list li.current_page_item a, .MainMenu-list li.current-page-ancestor a {
  color: #57da85;
}

.MainMenu-list li.bg-green {
  background: transparent;
  padding: 12px;
}

.MainMenu-list li.bg-green a {
  background: #42c26f;
  color: #fff;
  border-radius: 34px;
  padding: 8px 18px;
  transition: background 0.2s;
}


.MainMenuOverlay {
  pointer-events: none;
  opacity: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transition: opacity 0.8s;
}

.MainMenu--popup {
  background: #B3B9FF;
  display: flex;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 1;
  position: fixed;
  overflow: auto;
  transform: translateX(0);
  width: 90%;
  max-width: 480px;
  z-index: 10;
  justify-content: space-between;
  flex-direction: column;
}

.MainMenu--popup.u-slideOut {
  transition: transform 0.3s ease-out;
  transform: translateX(100%);
}

.MainMenu--popup + .MainMenuOverlay {
  opacity: 1;
  pointer-events: auto;
}

.MainMenu--popup .MainMenu-list {
  padding-left: 0;
  padding-top: 60px;
}

.MainMenu--popup .MainMenu-list li {
  display: block;
  text-align: center;
  font-weight: 600;
  font-size: 1.1rem;
  font-family: "futura-pt-bold-obl", sans-serif;
  letter-spacing: -0.06ch;
  border-top: 1px solid #364049;
}

.MainMenu--popup .MainMenu-list li.bg-green {
  padding-top: 24px;
}

.MainMenu--popup .MainMenu-list li.bg-green a {
  padding: 12px 28px;
}

.QuestionList {
  text-align: center;
}

.QuestionList-item {
  border-bottom: 2px solid #46515B;
  display: block;
  font-size: 22px;
}

.QuestionList-item:first-child {
  border-top: 2px solid #46515B;
}

.QuestionList-item a {
  color: #0C0C0C;
  display: block;
  padding: 12px 0;
}

.QuestionList-item a:hover {
  color: #0C0C0C;
  text-decoration: underline;
}

.related-articles li,
.recent-articles li {
  margin-bottom: 10px;
}

.related-articles li a,
.recent-articles li a {
  color: #0C0C0C;
}

.related-articles li a:hover,
.recent-articles li a:hover {
  opacity: 0.8;
}

/***** Search field *****/
.Search-container {
  background: #F4F4F4;
  margin-top: -20px;
  padding: 20px;
}

.Search-container .Search {
  max-width: 640px;
  margin: 0 auto;
}



.Search {
  position: relative;
}

.Search input[type="search"] {
  background: #F4F4F4;
  box-sizing: border-box;
  -webkit-appearance: none;
  width: 100%;
 
  font-size: 20px;
  padding: 20px;
  padding-left: 50px;
  
  height: 2.8rem;
  
  outline: none;
  border: 1px solid #0C0C0C;
  border-radius: 1.625rem;
  padding: 0 3.5rem 0 1.5rem;
  font-size: 1rem;
}

[dir="rtl"] .Search input[type="search"] {
  padding-left: 50px;
  padding-right: 20px;
}

.Search input[type="search"]:focus {
  border: 1px solid #0C0C0C;
}

.Search ::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #0C0C0C;
  opacity: 1;
  /* Firefox */
}

.Search :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #0C0C0C;
}

.Search ::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #0C0C0C;
}

.Search::before {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  color: #0C0C0C;
  content: "\1F50D";
  font-size: 28px;
  left: 580px;
  position: absolute;
}

@media (min-width : 320px){
  .Search::before {
    content: none;
  }
}

[dir="rtl"] .Search::before {
  right: 15px;
  left: auto;
}

.Search-description-text {
  color: #0C0C0C;
  font-size: 16px;
  margin: 0;
  margin-bottom: 10px;
  margin-top: 20px;
}

.side-bar a:hover {
  opacity: 0.8;
}

.side-bar::after {
  content: "";
  display: table;
  clear: both;
}

@media (min-width: 768px) {
  .side-bar {
    padding-right: 20px;
  }
}

.side-bar ul li a {
  color: inherit;
}

.category-dropdown-menu li.menu-item > span {
  background: #444F59;
  border-left: 4px solid #57616B;
  cursor: pointer;
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 16px;
  margin-bottom: 2px;
  padding: 6px 10px;
  width: 100%;
}

.category-dropdown-menu li.menu-item > span.active {
  border-left: 4px solid #57da85;
}

.category-dropdown-menu li.menu-item > .sub-menu {
  margin-left: 10px;
}

.category-dropdown-menu .sub-menu .menu-item-expandable {
  background: #39434C;
}

.category-dropdown-menu .section-sub-menu,
.category-dropdown-menu .article-sub-menu {
  display: none;
}

.category-dropdown-menu .section-sub-menu.open,
.category-dropdown-menu .article-sub-menu.open {
  display: block;
}

.category-dropdown-menu li.menu-item > .sub-menu span {
  font-size: 16px;
}

.category-dropdown-menu li.menu-item .sub-menu .sub-menu .article-list-item {
  color: white;
  font-size: 16px;
  padding: 6px 0 6px 5px;
}

.category-dropdown-menu li.menu-item .sub-menu .sub-menu .article-list-item:first-child {
  margin-top: 10px;
}

.category-dropdown-menu li.menu-item .sub-menu .sub-menu .article-list-item:last-child {
  margin-bottom: 10px;
}

.category-dropdown-menu li.menu-item .sub-menu .sub-menu .article-list-item.active {
  color: #57da85;
}

/* List displayed on Category page */
.SubcategoryList {
  text-align: center;
}

.SubcategoryList-item {
  border-bottom: 2px solid #46515B;
  display: block;
  font-size: 22px;
}

.SubcategoryList-item:first-child {
  border-top: 2px solid #46515B;
}

.SubcategoryList-item a {
  color: #0C0C0C;
  display: block;
  padding: 12px 0;
}

.SubcategoryList-item a:hover {
  color: #0C0C0C;
  text-decoration: underline;
}

.Teasers {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  padding: 10px;
  background: white;
  

}


.TeaserItem {
  padding: 10px 0;
  text-align: center;
  width: 100%;
}

@media (min-width: 768px) {
  .TeaserItem {
    float: left;
    padding: 10px;
    width: 33.333%;
  }
}

.TeaserItem-icon {
  margin: 10px auto 20px;
  max-width: 120px;
  min-height: 111px;
}
.TeaserItem-title {
  color: #0C0C0C;
  font-size: 30px;
  margin: 0;
}

.TeaserItem-description {
  margin: 0 0 10px;
}

.TeaserItem-content {
  border: 1px solid #444F59;
  padding: 20px 10px;
  height: 100%;
  background: url(/hc/theming_assets/01HZPZZVFE0AHFETWKFQ1C0590);
}

.TeaserItem-content:hover {
  border-color: #0C0C0C;
  text-decoration: none;
  background: url(/hc/theming_assets/01HZPZZVNV5N6Q7PRGHGNG0B1N);
  
}

/** Layouts */
/* Article (questions) */
.Article {
  padding: 40px 0;
}

.Article-container {
  max-width: 710px;
  margin: 0 auto;
  box-shadow:4px -1px 7px 0px #b8b6b6;
  padding-left:15px;
  padding-right:15px;
}

.Article-header {
  margin-top: 20px;
}

@media (min-width: 768px) {
  .Article-header {
    margin-top: 0;
  }
}

.Article-title {
  border-left: 4px solid #0C0C0C;
  padding-left: 20px;
}

.Article-title .icon-lock::before {
  content: "\1F512";
  font-size: 20px;
  position: relative;
  left: -5px;
  vertical-align: baseline;
}

.Article [role="button"] {
  width: 100%;
}

@media (min-width: 768px) {
  .Article [role="button"] {
    width: auto;
  }
}

.Article-info {
  max-width: 100%;
}

.Article-meta {
  display: inline-block;
  vertical-align: middle;
}

.Article-body {
  margin-bottom: 40px;
}

.Article-body img {
  height: auto;
  max-width: 100%;
}

.Article-body ul, .Article-body ol {
  padding-left: 20px;
  list-style-position: outside;
  margin: 20px 0 20px 20px;
}

[dir="rtl"] .Article-body ul, [dir="rtl"] .Article-body ol {
  padding-right: 20px;
  padding-left: 0;
  margin-left: 0;
  margin-right: 20px;
}

.Article-body ul > ul, .Article-body ol > ol, .Article-body ol > ul, .Article-body ul > ol, .Article-body li > ul, .Article-body li > ol {
  margin: 0;
}

.Article-body ul {
  list-style-type: disc;
}

.Article-body a:visited {
  color: #0C0C0C;
}

.Article-body code {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 2px;
}

.Article-body pre {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre;
}

.Article-body blockquote {
  border-left: 1px solid #ddd;
  color: #000;
  font-style: italic;
  padding: 0 15px;
}

.Article-body p {
  line-height: 1.5;
  margin: 0;
  margin-bottom: 20px;
}

.Article-body > p:last-child {
  margin-bottom: 0;
}

.Article-body a {
  color: #0C0C0C;
}

.Article-body a:hover {
  opacity: 0.8;
  text-decoration: none;
}

.Article-content {
  line-height: 1.6;
  margin: 20px 0;
  word-wrap: break-word;
}

.Article-footer {
  padding-bottom: 20px;
}

.Article-comment-count {
  color: #fff;
  font-weight: 300;
}

.Article-comment-count:hover {
  text-decoration: none;
}

.Article-comment-count .icon-comments {
  color: #17494D;
  content: "\1F4AC";
  display: inline-block;
  font-size: 18px;
  padding: 5px;
}

.Article-sidebar {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  flex: 1 0 auto;
  margin-bottom: 20px;
  padding: 0;
}

@media (min-width: 1024px) {
  .Article-sidebar {
    border: 0;
    flex: 0 0 17%;
    height: auto;
  }
}

.Article-relatives {
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}

@media (min-width: 768px) {
  .Article-relatives {
    flex-direction: row;
  }
}

.Article-relatives > * {
  flex: 1 0 50%;
  min-width: 50%;
  overflow-wrap: break-word;
  margin-right: 0;
}

.Article-relatives > *:last-child {
  padding: 0;
}

@media (min-width: 768px) {
  .Article-relatives > * {
    padding-right: 20px;
  }
}

.Article-votes {
  padding: 30px 0;
}

.Article-votes-question {
  margin-bottom: 0px;
}

.Article-votes-controls {
  margin-top: 20px;
}

.Article-vote {
  padding: 10px 45px;
}

.Article-vote::after {
  content: attr(title);
}

.Article-vote-no {
  display: inline-block;
  position: relative;
}

.Article-vote-no:before {
  background: url(/hc/theming_assets/01HZPZZS96MMWCG4D69ZKMBVBV);
  content: '';
  height: 25px;
  left: 14px;
  position: absolute;
  top: 13px;
  width: 25px;
}

.Article-vote-yes {
  display: inline-block;
  position: relative;
}

.Article-vote-yes:after {
  background: url(/hc/theming_assets/01HZPZZY0EZCKFJNJH12YERX0S);
  content: '';
  height: 25px;
  left: 14px;
  position: absolute;
  top: 13px;
  width: 25px;
}

.Article-more-questions {
  margin: 10px 0 20px;
  text-align: center;
}

.Article-return-to-top {
  border-top: 1px solid #ddd;
}

@media (min-width: 1024px) {
  .Article-return-to-top {
    display: none;
  }
}

.Article-return-to-top a {
  color: #ffffff;
  display: block;
  padding: 20px 0;
}

.Article-return-to-top a:hover, .Article-return-to-top a:focus {
  text-decoration: none;
}

.Article-return-to-top .icon-arrow-up::before {
  font-size: 16px;
  margin-left: 5px;
}

[dir="rtl"] .Article-return-to-top .icon-arrow-up::before {
  margin-right: 10px;
}

.Article-unsubscribe {
  background-color: #17494D;
  color: #FFFFFF;
  text-decoration: none;
}

.Article-unsubscribe:hover {
  background-color: #000;
  border-color: #000;
}

.sidenav-title {
  font-size: 18px;
  position: relative;
}

.sidenav-item {
  border-radius: 4px;
  color: #ffffff;
  display: block;
  font-weight: 300;
  margin-bottom: 10px;
  padding: 10px;
}

.sidenav-item.current-article, .sidenav-item:hover {
  background-color: #17494D;
  color: #0C0C0C;
  text-decoration: none;
}

.Category {
  padding: 20px;
  padding-bottom: 50px;
}

.Category-container {
  max-width: 580px;
}

.Category-header {
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .Category-header {
    align-items: flex-end;
    display: flex;
  }
  .Category-container{
    margin-left: 2rem;

  }
}

.Category-animation {
  height: 100px;
  margin: 0 auto;
  width: 100px;
}

@media (min-width: 768px) {
  .Category-animation {
    margin: 0;
  }
}

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

@media (min-width: 768px) {
  .Category-intro {
    padding-left: 10px;
    text-align: left;
  }
}

.Category-intro-title {
  margin-bottom: 0;
}

.Category-intro-description {
  font-size: 16px;
  margin: 0;
}

.ErrorPage {
  margin: 0 auto;
}

.ErrorPage a {
  color: #f48bad;
}

.Footer-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0;
  padding-top: 60px;
  text-align: center;
}

@media (min-width: 1500px) {
  .Footer-inner {
    padding: 0px;
    padding-top: 60px;
  }
}

.Footer-text {
  font-weight: normal;
  margin-top: 20px;
  
}

.Header {
  color: white;
  width: 100%;
  z-index: 10;
  position: sticky;
  top: 0;
}

.Header + .Modules > .Section:first-child {
  padding-top: 120px;
}

.Header--sticky {
  position: sticky;
  top: 0;
}

.Header-logo {
  padding: 5px 10px;
  position: relative;
  top: 10px;
  margin-bottom: -13px;
  transition: transform 0.3s;
}

.Header-logo img {
  width: 120px;
}

@media (min-width: 1024px) {
  .Header-logo img {
    width: 200px;
  }
}

.Header-inner {
  margin-bottom: -58px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  align-items: stretch;
  background: #F4F4F4;
}

@media (min-width: 1024px) {
  .Header-inner {
    background: #F4F4F4;
  }
}

.Header-inner::before, .Header-inner::after {
  content: " ";
  display: table;
}

.Header-inner::after {
  clear: both;
}

.Header-logoWrapper {
  flex: 0 1 auto;
}

.Header-menuWrapper {
  flex: 1 1 auto;
  overflow: hidden;
}

.Header--slideOut {
  pointer-events: none;
}

.Header--slideOut .Header-inner {
  background: transparent;
  transition: background-color 0.3s;
}

.Header--slideOut .Logo {
  transform: translateX(-100%);
}

@media (min-width: 1024px) {
  .Header--slideOut .MainMenu {
    transform: translateX(100%);
  }
}

.Home {
  padding-top: 0px;
  background:white;
}

@media (min-width: 768px) {
  .Home-inner {
    max-width: 66%;
  }
}

.Home-title {
  margin: 0;
}

.Home-description {
  margin: 0;
}

.Home + .Container {
  padding-top: 20px;
}

.Request {
  max-width: 710px;
  margin: 0 auto;
  padding: 40px 20px;
}

.Request-title {
  border: none;
  border-left: 4px solid #0C0C0C;
  margin-bottom: 20px;
  padding-left: 20px;
}

.request-details {
  border-bottom: 1px solid #0C0C0C;
  font-size: 0;
  margin: 0;
  padding-bottom: 20px;
}

.request-details:last-child {
  border: 0;
}

.request-details dt, .request-details dd {
  display: inline-block;
  vertical-align: top;
  font-size: 14px;
  margin: 20px 0 0 0;
}

.request-details dd {
  padding: 0 10px;
  width: 60%;
}

.request-details dd::after {
  content: "\A";
  white-space: pre;
}

.request-details dt {
  color: #fff;
  font-weight: 300;
  width: 40%;
}

.request-details .request-collaborators {
  display: inline-block;
}

.request-attachments dt, .request-attachments dd {
  width: 100%;
}

.request-attachments dd {
  margin: 10px 0 0 0;
}

.request-form textarea {
  min-height: 120px;
}

.request-follow-up {
  padding-top: 20px;
}


/* Don't display CJK results in italic */
/* Add a yellow background instead */
html[lang|="zh"] .search-result-description em,
html[lang|="ko"] .search-result-description em,
html[lang|="ja"] .search-result-description em {
  font-style: normal;
  background: yellow;
}

.Subcategory {
  padding: 40px 20px 50px 20px;
}

.Subcategory-container {
  max-width: 580px;
}

.Subcategory-header {
  margin-bottom: 30px;
  text-align: center;
}

.Subcategory-title {
  margin-bottom: 0;
}

.Subcategory-description {
  margin: 0;
}

/***** Tables *****/
.table {
  width: 100%;
  table-layout: fixed;
}

@media (min-width: 768px) {
  .table {
    table-layout: auto;
  }
  .Subcategory-container{
    margin-left: 2rem;
  }
}

.table th,
.table th a {
  color: #3f3f3f;
  font-size: 14px;
  font-weight: 300;
  text-align: left;
  font-weight: bold;

}

[dir="rtl"] .table th, [dir="rtl"]
.table th a {
  text-align: right;
}

.table tr {
  border-bottom: 1px solid #ddd;
  display: block;
  padding: 20px 0;
}

@media (min-width: 768px) {
  .table tr {
    display: table-row;
  }
}

.table td {
  display: block;
}

@media (min-width: 768px) {
  .table td {
    display: table-cell;
  }
}

@media (min-width: 1024px) {
  .table td, .table th {
    padding: 20px 30px;
  }
}

@media (min-width: 768px) {
  .table td, .table th {
    padding: 10px 20px;
    height: 60px;
  }
}

/***** Forms *****/
.form {
  max-width: 650px;
}

.form-field ~ .form-field {
  margin-top: 25px;
}

.form-field {
  display: inline-block;
  position: relative;
  width: 100%;
}

.form-field label {
  font-size: 12px;
  font-weight: 600;
  left: 14px;
  position: absolute;
  text-transform: uppercase;
  top: 10px;
}

.form-field input {
  background: inherit;
  max-width: 100%;
  min-width: 100%;
  border: 4px solid #0C0C0C;
  color: #0C0C0C;
  display: block;
  float: left;
  padding: 22px 10px 20px;
  text-align: left;
}

.form-field input:focus {
  border: 4px solid #444F59;
}

.form-field textarea {
  background: inherit;
  border: 4px solid #0C0C0C;
  color: #0C0C0C;
  padding: 22px 10px 20px;
}

.form-field textarea:focus {
  border: 4px solid #444F59;
}

.form-field .upload-dropzone {
  background: inherit;
  border: 4px solid #444F59;
  color: #0C0C0C;
}

.form-field .upload-item {
  background: #0C0C0C;
}

.form-field .upload-item:hover {
  background: #0C0C0C;
}

.form-field .upload-item .upload-progress {
  background-color: #57da85;
}

.form-field .upload-item .upload-link::before {
  color: #0C0C0C;
}

.form-field .upload-item .upload-remove {
  color: #0C0C0C;
}

.form-field .upload-item .upload-link {
  color: #0C0C0C;
}

.form footer {
  text-align: center;
}

input[type="submit"] {
  margin: 10px auto;
  min-width: 200px;
  padding: 10px 30px;
}

.notification-inline.notification-error {
  background: none;
  border: none;
  color: red;
  font-size: 14px;
  font-weight: bold;
  padding: 0;
}

.notification-inline.notification-error:before {
  display: none;
}

/***** User info in header *****/
.user-info {
  display: inline-block;
}

.user-info .dropdown-toggle::after {
  display: none;
}

@media (min-width: 768px) {
  .user-info .dropdown-toggle::after {
    display: inline-block;
  }
}

.user-info > [role="button"] {
  border: 0;
  color: #1F73B7;
  min-width: 0;
  padding: 0;
  white-space: nowrap;
}

.user-info > [role="button"]:hover, .user-info > [role="button"]:focus {
  color: #1F73B7;
  background-color: transparent;
}

.user-info > [role="button"]::after {
  color: #1F73B7;
  padding-right: 15px;
}

[dir="rtl"] .user-info > [role="button"]::after {
  padding-left: 15px;
  padding-right: 0;
}

#user #user-name {
  display: none;
  font-size: 14px;
}

@media (min-width: 768px) {
  #user #user-name {
    display: inline-block;
  }
}

#user #user-name:hover {
  text-decoration: underline;
}

/***** User avatar *****/
.user-avatar {
  height: 25px;
  width: 25px;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
}

.avatar {
  display: inline-block;
  position: relative;
}

.avatar img {
  height: 40px;
  width: 40px;
}

.avatar .icon-agent::before {
  background-color: #17494D;
  border: 2px solid #fff;
  border-radius: 50%;
  bottom: -4px;
  color: #FFFFFF;
  content: "\1F464";
  font-size: 14px;
  height: 14px;
  line-height: 14px;
  position: absolute;
  right: -2px;
  text-align: center;
  width: 14px;
}

/***** Hero component *****/
.hero {
  background-position: center 650px;
  background-size: cover;
  height: 300px;
  padding: 0 20px;
  text-align: center;
  width: 100%;
}

.hero-inner {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  max-width: 610px;
  margin: 0 auto;
}

.page-header {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 10px 0;
}

@media (min-width: 768px) {
  .page-header {
    align-items: baseline;
    flex-direction: row;
    margin: 0;
  }
}

.page-header .section-subscribe {
  flex-shrink: 0;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .page-header .section-subscribe {
    margin-bottom: 0;
  }
}

.page-header h1 {
  flex-grow: 1;
  margin-bottom: 10px;
}

.page-header-description {
  font-style: italic;
  font-weight: 300;
  margin: 0 0 30px 0;
  word-break: break-word;
}

@media (min-width: 1024px) {
  .page-header-description {
    flex-basis: 100%;
  }
}

.page-header .icon-lock::before {
  content: "\1F512";
  font-size: 20px;
  position: relative;
  left: -5px;
  vertical-align: baseline;
}

.sub-nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 30px;
  min-height: 50px;
  padding-bottom: 15px;
}

@media (min-width: 768px) {
  .sub-nav {
    align-items: baseline;
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .sub-nav input[type="search"] {
    min-width: 300px;
  }
}

.sub-nav input[type="search"]::after {
  font-size: 18px;
}

/***** Blocks *****/
/* Used in Homepage#categories and Community#topics */
.blocks-list {
  list-style: none;
  padding: 0;
}

@media (min-width: 768px) {
  .blocks-list {
    margin: 0 -15px;
  }
}

@media (min-width: 768px) {
  .blocks-item {
    margin: 0 15px 30px;
  }
}

.blocks-item-internal {
  background-color: #F4F4F4;
  border: 1px solid #ddd;
}

.blocks-item-internal .icon-lock::before {
  content: "\1F512";
  font-size: 15px;
  bottom: 5px;
  position: relative;
}

.blocks-item-internal a {
  color: #0C0C0C;
}

.blocks-item-link {
  color: #0C0C0C;
  padding: 20px 30px;
}

.blocks-item-link:hover, .blocks-item-link:focus, .blocks-item-link:active {
  text-decoration: none;
}

.blocks-item-title {
  margin-bottom: 0;
}

.blocks-item-description {
  font-weight: 300;
  margin: 0;
}

.blocks-item-description:not(:empty) {
  margin-top: 10px;
}

/***** Recent activity *****/
.recent-activity-header {
  margin-bottom: 10px;
  text-align: center;
}

.recent-activity-list {
  padding: 0;
}

.recent-activity-item {
  border-bottom: 1px solid #ddd;
  overflow: auto;
  padding: 20px 0;
}

.recent-activity-item-parent {
  font-size: 18px;
}

.recent-activity-item-parent, .recent-activity-item-link {
  margin: 6px 0;
  color: #ffffff;
  display: inline-block;
  width: 100%;
}

@media (min-width: 768px) {
  .recent-activity-item-parent, .recent-activity-item-link {
    width: 70%;
    margin: 0;
  }
}

.recent-activity-item-link {
  font-size: 14px;
  font-weight: 300;
}

.recent-activity-item-meta {
  margin: 15px 0 0 0;
  float: none;
}

@media (min-width: 768px) {
  .recent-activity-item-meta {
    margin: 0;
    float: right;
  }
  [dir="rtl"] .recent-activity-item-meta {
    float: left;
  }
}

.recent-activity-item-time, .recent-activity-item-comment {
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-weight: 300;
}

.recent-activity-item-comment {
  padding-left: 5px;
}

[dir="rtl"] .recent-activity-item-comment {
  padding: 0 5px 0 0;
}

.recent-activity-item-comment::before {
  display: inline-block;
}

.recent-activity-item-comment span::before {
  color: #17494D;
  content: "\1F4AC";
  display: inline-block;
  font-size: 18px;
  padding-right: 3px;
  vertical-align: middle;
}

[dir="rtl"] .recent-activity-item-comment span::before {
  padding-left: 3px;
}

.recent-activity-controls {
  padding-top: 15px;
}

/***** Section pages *****/
.section-container {
  display: flex;
  justify-content: flex-end;
}

.section-content {
  flex: 1;
}

@media (min-width: 1024px) {
  .section-content {
    flex: 0 0 80%;
  }
}

.section-subscribe .dropdown-toggle::after {
  display: none;
}

.section-list {
  margin: 40px 0;
}

.section-list--collapsed .section-list-item:nth-child(1n + 6) {
  display: none;
}

.section-list-item {
  border-bottom: 1px solid #ddd;
  font-size: 18px;
  padding: 15px 0;
}

.section-list-item:first-child {
  border-top: 1px solid #ddd;
}

.section-list-item a {
  align-items: center;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
}

.see-all-sections-trigger {
  cursor: pointer;
  display: block;
  padding: 15px;
  text-align: center;
}

.see-all-sections-trigger[aria-hidden="true"] {
  display: none;
}

/***** Attachments *****/
/* Styles attachments inside posts, articles and comments */
.attachments .attachment-item {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}

.attachments .attachment-item:last-child {
  margin-bottom: 0;
}

.attachments .attachment-item::before {
  color: #ffffff;
  content: "\1F4CE";
  font-size: 18px;
  left: 0;
  position: absolute;
  top: 5px;
}

[dir="rtl"] .attachments .attachment-item {
  padding-left: 0;
  padding-right: 20px;
}

[dir="rtl"] .attachments .attachment-item::before {
  left: auto;
  right: 0;
}

.upload-dropzone span {
  color: #0c0c0c;
}

/***** Social share links *****/
.share {
  padding: 0;
  white-space: nowrap;
}

.share li, .share a {
  display: inline-block;
}

.share a {
  border-radius: 50%;
  height: 25px;
  line-height: 25px;
  overflow: hidden;
  width: 25px;
}

.share a::before {
  color: #fff;
  display: block;
  font-size: 23px;
  text-align: center;
  width: 100%;
}

.share a:hover {
  text-decoration: none;
}

.share a:hover::before {
  color: #17494D;
}

.share-twitter::before {
  content: "\e901";
}

.share-facebook::before {
  content: "\e903";
}

.share-linkedin::before {
  content: "\e900";
}

.share-googleplus::before {
  content: "\e902";
}

/***** Comments *****/
/* Styles comments inside articles, posts and requests */
.comment {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}

.comment-heading {
  margin-bottom: 5px;
  margin-top: 0;
}

.comment-overview {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  padding: 20px 0;
}

.comment-overview p {
  margin-top: 0;
}

.comment-callout {
  color: #fff;
  display: inline-block;
  font-weight: 300;
  font-size: 14px;
  margin-bottom: 0;
}

.comment-callout a {
  color: #17494D;
}

.comment-sorter {
  display: inline-block;
  float: right;
}

.comment-sorter .dropdown-toggle {
  color: #fff;
  font-weight: 300;
  font-size: 14px;
}

[dir="rtl"] .comment-sorter {
  float: left;
}

.comment-wrapper {
  display: flex;
  position: relative;
}

.comment-wrapper.comment-official {
  border: 1px solid #17494D;
  padding: 40px 20px 20px;
}

@media (min-width: 768px) {
  .comment-wrapper.comment-official {
    padding-top: 20px;
  }
}

.comment-info {
  min-width: 0;
  padding-right: 20px;
  width: 100%;
}

[dir="rtl"] .comment-info {
  padding-right: 0;
  padding-left: 20px;
}

.comment-author {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .comment-author {
    justify-content: space-between;
  }
}

.comment-avatar {
  margin-right: 10px;
}

[dir="rtl"] .comment-avatar {
  margin-left: 10px;
  margin-right: 0;
}

.comment-meta {
  flex: 1 0 auto;
}

.comment-labels {
  flex-basis: 100%;
}

@media (min-width: 768px) {
  .comment-labels {
    flex-basis: auto;
  }
}

.comment .status-label:not(.status-label-official) {
  margin-top: 10px;
}

@media (min-width: 768px) {
  .comment .status-label:not(.status-label-official) {
    margin-top: 0;
  }
}

.comment-form {
  display: flex;
  padding-top: 30px;
  word-wrap: break-word;
}

.comment-container {
  width: 100%;
}

.comment-form-controls {
  display: none;
  margin-top: 10px;
  text-align: left;
}

@media (min-width: 768px) {
  [dir="ltr"] .comment-form-controls {
    text-align: right;
  }
}

.comment-form-controls input[type="submit"] {
  margin-top: 15px;
}

@media (min-width: 1024px) {
  .comment-form-controls input[type="submit"] {
    margin-left: 15px;
  }
  [dir="rtl"] .comment-form-controls input[type="submit"] {
    margin-left: 0;
    margin-right: 15px;
  }
}

.comment-form-controls input[type="checkbox"] {
  margin-right: 5px;
}

.comment-form-controls input[type="checkbox"] [dir="rtl"] {
  margin-left: 5px;
}

.comment-ccs {
  display: none;
}

.comment-ccs + textarea {
  margin-top: 10px;
}

.comment-attachments {
  margin-top: 10px;
}

.comment-attachments a {
  color: #17494D;
}

.comment-body {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  overflow-x: auto;
}

.comment-body img {
  height: auto;
  max-width: 100%;
}

.comment-body ul, .comment-body ol {
  padding-left: 20px;
  list-style-position: outside;
  margin: 20px 0 20px 20px;
}

[dir="rtl"] .comment-body ul, [dir="rtl"] .comment-body ol {
  padding-right: 20px;
  padding-left: 0;
  margin-left: 0;
  margin-right: 20px;
}

.comment-body ul > ul, .comment-body ol > ol, .comment-body ol > ul, .comment-body ul > ol, .comment-body li > ul, .comment-body li > ol {
  margin: 0;
}

.comment-body ul {
  list-style-type: disc;
}

.comment-body a:visited {
  color: #57da85;
}

.comment-body code {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 2px;
}

.comment-body pre {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre;
}

.comment-body blockquote {
  border-left: 1px solid #ddd;
  color: #fff;
  font-style: italic;
  padding: 0 15px;
}

.comment-mark-as-solved {
  display: inline-block;
}

/***** Vote *****/
/* Used in article comments, post comments and post */
.vote {
  display: inline-block;
  text-align: center;
  width: 35px;
}

.vote a {
  outline: none;
}

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

.vote-sum {
  color: #fff;
  display: block;
  margin: 3px 0;
}

[dir="rtl"] .vote-sum {
  direction: ltr;
  unicode-bidi: bidi-override;
}

.vote-up:hover::before,
.vote-down:hover::before {
  color: #17494D;
}

.vote-up::before, .vote-down::before {
  color: #fff;
  font-size: 24px;
}

.vote-up::before {
  content: "\2B06";
}

.vote-down::before {
  content: "\2B07";
}

.vote-voted::before {
  color: #17494D;
}

.vote-voted:hover::before {
  color: #000;
}

/***** Actions *****/
/* Styles admin and en user actions(edit, delete, change status) in comments and posts */
.actions {
  text-align: center;
  flex-shrink: 0;
  /*Avoid collapsing elements in Safari*/
}

.actions .dropdown-toggle {
  font-size: 0;
  margin: 15px 0;
}

.actions .dropdown-toggle:hover::before, .actions .dropdown-toggle:focus::before, .actions .dropdown-toggle:active::before {
  background-color: #f7f7f7;
}

.actions .dropdown-toggle::before {
  background-color: transparent;
  border-radius: 50%;
  color: #fff;
  content: "\2699";
  display: block;
  font-size: 14px;
  margin: auto;
  padding: 5px;
}

/***** Community *****/
.community-hero {
  margin-bottom: 10px;
}

.community-footer {
  padding-top: 50px;
  text-align: center;
}

.community-featured-posts, .community-activity {
  padding-top: 40px;
  width: 100%;
}

.community-header {
  margin-bottom: 30px;
}

.community-header h4 {
  margin-bottom: 0;
}

.post-to-community {
  margin-top: 10px;
}

@media (min-width: 768px) {
  .post-to-community {
    margin: 0;
  }
}

/* Community topics grid */
.topics {
  max-width: none;
  width: 100%;
}

.topics-item .meta-group {
  justify-content: center;
  margin-top: 20px;
}

/* Community topic page */
.topic-header {
  border-bottom: 1px solid #ddd;
  font-size: 14px;
}

@media (min-width: 768px) {
  .topic-header {
    padding-bottom: 10px;
  }
}

.topic-header .dropdown {
  display: block;
  border-top: 1px solid #ddd;
  padding: 10px 0;
}

@media (min-width: 768px) {
  .topic-header .dropdown {
    border-top: 0;
    display: inline-block;
    margin-right: 20px;
    padding: 0;
  }
}

.no-posts-with-filter {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* Topic, post and user follow button */
.community-follow {
  margin-bottom: 10px;
  width: 100%;
}

@media (min-width: 768px) {
  .community-follow {
    margin-bottom: 0;
    width: auto;
  }
}

.community-follow .dropdown {
  width: 100%;
}

.community-follow [role="button"] {
  line-height: 30px;
  padding: 0 10px 0 15px;
  position: relative;
  width: 100%;
}

@media (min-width: 768px) {
  .community-follow [role="button"] {
    width: auto;
  }
}

.community-follow [role="button"]:hover {
  background-color: #17494D;
}

.community-follow [role="button"]:hover::after, .community-follow [role="button"]:focus::after {
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.community-follow [role="button"][aria-selected="true"] {
  background-color: #17494D;
  color: #FFFFFF;
}

.community-follow [role="button"][aria-selected="true"]::after {
  border-left: 1px solid #FFFFFF;
  color: #FFFFFF;
}

.community-follow [role="button"][aria-selected="true"]:hover {
  background-color: #000;
  border-color: #000;
}

.community-follow [role="button"]::after {
  border-left: 1px solid #17494D;
  content: attr(data-follower-count);
  color: #17494D;
  display: inline-block;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  margin-left: 15px;
  padding-left: 10px;
  position: absolute;
  right: 10px;
}

@media (min-width: 768px) {
  .community-follow [role="button"]::after {
    position: static;
  }
}

[dir="rtl"] .community-follow [role="button"]::after {
  border-left: 0;
  border-right: 1px solid #17494D;
  margin: 0 10px 0 0;
  padding: 0 10px 0 0;
}

/***** Striped list *****/
/* Used in community posts list and requests list */
.striped-list {
  padding: 0;
}

.striped-list-item {
  align-items: flex-start;
  border-bottom: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 0;
}

@media (min-width: 768px) {
  .striped-list-item {
    align-items: center;
    flex-direction: row;
  }
}

.striped-list-info {
  flex: 2;
}

.striped-list-title {
  color: #0c0c0c;
  margin-bottom: 10px;
  margin-right: 5px;
}

.striped-list-title:hover, .striped-list-title:focus, .striped-list-title:active {
  text-decoration: underline;
}

.striped-list-title:visited {
  color: #57da85;
}

.striped-list .meta-group {
  margin: 5px 0;
}

.striped-list-count {
  color: #fff;
  font-weight: 300;
  font-size: 14px;
  justify-content: flex-start;
  text-transform: capitalize;
}

@media (min-width: 768px) {
  .striped-list-count {
    display: flex;
    flex: 1;
    justify-content: space-around;
  }
}

.striped-list-count-item::after {
  content: "·";
  display: inline-block;
  padding: 0 5px;
}

@media (min-width: 768px) {
  .striped-list-count-item::after {
    display: none;
  }
}

.striped-list-count-item:last-child::after {
  display: none;
}

.striped-list-number {
  font-weight: 300;
  text-align: center;
}

@media (min-width: 768px) {
  .striped-list-number {
    color: #ffffff;
    display: block;
    font-weight: 400;
  }
}

/***** Status labels *****/
/* Styles labels used in posts, articles and requests */
.status-label {
  background-color: #1eb848;
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  margin-right: 2px;
  padding: 3px 10px;
  vertical-align: middle;
  white-space: nowrap;
  display: inline-block;
}

.status-label:hover, .status-label:active, .status-label:focus {
  text-decoration: none;
}

.status-label-pinned, .status-label-featured, .status-label-official {
  background-color: #17494D;
}

.status-label-official {
  border-radius: 0;
  margin-right: 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
  width: 100%;
}

@media (min-width: 768px) {
  .status-label-official {
    border-radius: 0 0 4px 4px;
    right: 30px;
    width: auto;
  }
}

[dir="rtl"] .status-label-official {
  left: 30px;
  right: auto;
}

.status-label-pending, .status-label-not-planned {
  background-color: #eee;
  color: #fff;
}

.status-label-pending {
  text-align: center;
}

.status-label-open {
  background-color: #cc3340;
}

.status-label-closed {
  background-color: #ddd;
}

.status-label-solved {
  background-color: #999;
}

.status-label-new {
  background-color: #ffd12a;
}

.status-label-hold {
  background-color: #000;
}

.status-label-open, .status-label-closed, .status-label-solved, .status-label-new, .status-label-hold, .status-label-answered {
  text-transform: lowercase;
}

/***** Post *****/
/*
* The post grid is defined this way:
* Content | Sidebar
* 70%     | 30%
*/
.post {
  flex: 1;
  margin-bottom: 10px;
}

@media (min-width: 1024px) {
  .post {
    flex: 1 0 70%;
    max-width: 70%;
  }
}

.post-container {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .post-container {
    flex-direction: row;
  }
}

.post-header {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .post-header {
    align-items: baseline;
    flex-direction: row;
  }
}

.post-header .status-label {
  vertical-align: super;
}

.post-title {
  margin-bottom: 20px;
  width: 100%;
}

@media (min-width: 768px) {
  .post-title {
    margin-bottom: 0;
    padding-right: 10px;
  }
}

.post-title h1 {
  display: inline;
  vertical-align: middle;
}

@media (min-width: 768px) {
  .post-title h1 {
    margin-right: 5px;
  }
}

.post-author {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}

.post-avatar {
  margin-bottom: 30px;
}

.post-content {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  word-break: break-word;
}

.post-info-container {
  display: flex;
  margin-bottom: 40px;
}

.post-info {
  min-width: 0;
  padding-right: 20px;
  width: 100%;
}

[dir="rtl"] .post-info {
  padding-right: 0;
  padding-left: 20px;
}

.post-meta {
  display: inline-block;
  flex: 1;
  margin-left: 10px;
  vertical-align: middle;
}

[dir="rtl"] .post-meta {
  margin-left: 0;
  margin-right: 10px;
}

.post-body img {
  height: auto;
  max-width: 100%;
}

.post-body ul, .post-body ol {
  padding-left: 20px;
  list-style-position: outside;
  margin: 20px 0 20px 20px;
}

[dir="rtl"] .post-body ul, [dir="rtl"] .post-body ol {
  padding-right: 20px;
  padding-left: 0;
  margin-left: 0;
  margin-right: 20px;
}

.post-body ul > ul, .post-body ol > ol, .post-body ol > ul, .post-body ul > ol, .post-body li > ul, .post-body li > ol {
  margin: 0;
}

.post-body ul {
  list-style-type: disc;
}

.post-body a:visited {
  color: #57da85;
}

.post-body code {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 0 5px;
  margin: 0 2px;
}

.post-body pre {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 10px 15px;
  overflow: auto;
  white-space: pre;
}

.post-body blockquote {
  border-left: 1px solid #ddd;
  color: #fff;
  font-style: italic;
  padding: 0 15px;
}

.post-footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}

.post-comment-count {
  color: #fff;
  font-weight: 300;
}

.post-comment-count:hover {
  text-decoration: none;
}

.post-comment-count .icon-comments {
  color: #17494D;
  content: "\1F4AC";
  display: inline-block;
  font-size: 18px;
  padding: 5px;
}

.post-sidebar {
  border-top: 1px solid #ddd;
  flex: 1;
  padding: 30px 0;
  text-align: center;
}

@media (min-width: 1024px) {
  .post-sidebar {
    border: 0;
    flex: 1 0 30%;
    padding: 0 0 0 50px;
    text-align: initial;
  }
  [dir="rtl"] .post-sidebar {
    padding: 0 50px 0 0;
  }
}

.post-sidebar h5 {
  font-weight: 600;
}

@media (min-width: 1024px) {
  .post-sidebar h5 {
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
  }
}

.post-comments {
  margin-bottom: 20px;
}

@media (min-width: 1024px) {
  .post-comments {
    margin-bottom: 0;
  }
}

/* Navigation element that collapses on mobile */
.collapsible-nav {
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  flex-direction: column;
  max-height: 45px;
  overflow: hidden;
  font-size: 16px;
}

@media (min-width: 768px) {
  .collapsible-nav {
    border: 0;
    height: auto;
    flex-direction: row;
    max-height: none;
  }
}

.collapsible-nav-list {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .collapsible-nav-list {
    flex-direction: row;
  }
}

.collapsible-nav-list li {
  color: #ffffff;
  line-height: 45px;
  order: 1;
}

@media (min-width: 768px) {
  .collapsible-nav-list li {
    line-height: normal;
    margin-right: 30px;
  }
  [dir="rtl"] .collapsible-nav-list li {
    margin-left: 30px;
    margin-right: 0;
  }
  .collapsible-nav-list li a {
    text-decoration: none;
    padding: 15px 0;
  }
}

.collapsible-nav-list li a {
  color: #0c0c0c;
  display: block;
}

@media (min-width: 768px) {
  .collapsible-nav-list li:hover {
    border-bottom: 4px solid #ddd;
  }
  .collapsible-nav-list li:hover a {
    padding: 15px 0 11px 0;
    text-decoration: none;
  }
}

.collapsible-nav-list li[aria-selected="true"] {
  order: 0;
  position: relative;
}

@media (min-width: 768px) {
  .collapsible-nav-list li[aria-selected="true"] {
    border-bottom: 4px solid #17494D;
    order: 1;
    padding: 15px 0 11px 0;
  }
}

.collapsible-nav-list li[aria-selected="true"] a {
  color: #ffffff;
}

.collapsible-nav-list li[aria-selected="true"]::after {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  content: "\25BE";
  position: absolute;
  right: 0;
}

@media (min-width: 768px) {
  .collapsible-nav-list li[aria-selected="true"]::after {
    display: none;
  }
}

[dir="rtl"] .collapsible-nav-list li[aria-selected="true"]::after {
  left: 0;
  right: auto;
}

.collapsible-nav[aria-expanded="true"] {
  max-height: none;
}

.collapsible-nav[aria-expanded="true"] li[aria-selected="true"]::after {
  content: "\2715";
}

/* Sidebar navigation that collapses on mobile */
.collapsible-sidebar {
  flex: 1;
  max-height: 45px;
  overflow: hidden;
  padding: 10px 0;
  position: relative;
}

@media (min-width: 1024px) {
  .collapsible-sidebar {
    max-height: none;
    padding: 0;
  }
}

.collapsible-sidebar[aria-expanded="true"] {
  max-height: none;
}

.collapsible-sidebar[aria-expanded="true"] .collapsible-sidebar-title::after {
  content: "\2715";
}

@media (min-width: 1024px) {
  .collapsible-sidebar[aria-expanded="true"] .collapsible-sidebar-title::after {
    display: none;
  }
}

.collapsible-sidebar-title {
  margin-top: 0;
}

.collapsible-sidebar-title::after {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  content: "\25BE";
  position: absolute;
  right: 10px;
}

@media (min-width: 1024px) {
  .collapsible-sidebar-title::after {
    display: none;
  }
}

[dir="rtl"] .collapsible-sidebar-title::after {
  left: 10px;
  right: auto;
}

/***** My activities *****/
.my-activities-nav {
  background-color: #f2f2f2;
  border: 0;
  margin-bottom: 20px;
}

.my-activities-sub-nav {
  background-color: transparent;
  border-bottom: 1px solid #ddd;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .my-activities-sub-nav li:hover {
    border-bottom: 4px solid #ddd;
  }
}

.my-activities-sub-nav li[aria-selected="true"] {
  border-color: #17494D;
}

.my-activities-table .striped-list-title {
  /* My activities tables */
  display: block;
  margin-bottom: 10px;
  max-width: 350px;
  white-space: normal;
}

@media (min-width: 1024px) {
  .my-activities-table .striped-list-title {
    margin-bottom: 0;
    max-width: 500px;
    min-width: 350px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

.my-activities-table thead {
  display: none;
}

@media (min-width: 768px) {
  .my-activities-table thead {
    display: table-header-group;
  }
}

.my-activities-table th:first-child,
.my-activities-table td:first-child {
  padding-left: 0;
}

@media (min-width: 1024px) {
  .my-activities-table th:first-child,
  .my-activities-table td:first-child {
    width: 500px;
  }
}

.my-activities-table th:last-child,
.my-activities-table td:last-child {
  padding-right: 0;
}

.my-activities-table td:not(:first-child) {
  display: none;
}

@media (min-width: 768px) {
  .my-activities-table td:not(:first-child) {
    display: table-cell;
  }
}

/* Requests table */
.requests-search {
  width: 100%;
}

.requests-table-toolbar {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .requests-table-toolbar {
    flex-direction: row;
  }
}

.requests-table-toolbar .search {
  flex: 1;
  width: 100%;
}

.requests-table-toolbar .request-table-filter {
  width: 100%;
}

@media (min-width: 768px) {
  .requests-table-toolbar .request-table-filter {
    width: auto;
  }
}

.requests-table-toolbar .request-filter {
  display: block;
}

@media (min-width: 768px) {
  .requests-table-toolbar .request-filter {
    margin: 0 0 0 30px;
  }
  [dir="rtl"] .requests-table-toolbar .request-filter {
    margin: 0 30px 0 0;
  }
}

.requests-table-toolbar .request-filter-label {
  font-size: 14px;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .requests-table-toolbar .request-filter-label {
    margin-top: 0;
  }
}

.requests-table-toolbar select {
  max-height: 40px;
  margin-bottom: 30px;
  width: 100%;
}

@media (min-width: 768px) {
  .requests-table-toolbar select {
    margin-bottom: 0;
    max-width: 300px;
    width: auto;
  }
}

.requests-table-toolbar .organization-subscribe,
.requests-table-toolbar .organization-unsubscribe {
  line-height: 40px;
  max-height: 40px;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .requests-table-toolbar .organization-subscribe,
  .requests-table-toolbar .organization-unsubscribe {
    margin-left: 10px;
  }
  [dir="rtl"] .requests-table-toolbar .organization-subscribe, [dir="rtl"]
  .requests-table-toolbar .organization-unsubscribe {
    margin: 0 10px 0 0;
  }
}

.requests-table-toolbar .organization-unsubscribe {
  background-color: #17494D;
  color: #FFFFFF;
}

.requests-table-toolbar + .requests-search-info {
  margin-top: 15px;
}

.requests-table-toolbar + .requests-search-info.meta-data::after {
  content: "";
  margin: 0;
}

.requests-table-toolbar + .requests-search-info + .requests {
  margin-top: 20px;
}

.requests-table-toolbar + .requests {
  margin-top: 40px;
}

.requests .requests-table-meta {
  display: block;
}

@media (min-width: 768px) {
  .requests .requests-table-meta {
    display: none;
  }
}

.requests .requests-table thead {
  display: none;
}

@media (min-width: 768px) {
  .requests .requests-table thead {
    display: table-header-group;
  }
}

.requests .requests-table-info {
  display: block;
}

@media (min-width: 768px) {
  .requests .requests-table-info {
    display: table-cell;
    vertical-align: middle;
    width: auto;
  }
}

.requests .requests-table .requests-link {
  position: relative;
}

.requests .requests-table .requests-sort-symbol {
  position: absolute;
  left: calc(100% + 3px);
  bottom: 0;
  font-size: 10px;
}

/* Following table */
.subscriptions-unsubscribe a {
  background: #17494D;
  border-radius: 4px;
  color: #FFFFFF;
  display: inline-block;
  font-size: 12px;
  line-height: 2.34;
  padding: 0 20px;
  text-align: center;
  width: 100%;
}

@media (min-width: 768px) {
  .subscriptions-unsubscribe a {
    width: auto;
  }
}

.subscriptions-unsubscribe a:hover {
  background-color: #000;
  text-decoration: none;
}

.subscriptions-table td:last-child {
  display: block;
}

@media (min-width: 768px) {
  .subscriptions-table td:last-child {
    display: table-cell;
  }
}

.subscriptions-table td:first-child {
  display: flex;
  align-items: center;
}

.subscriptions-table .user-avatar {
  margin-right: 10px;
}

.subscriptions .striped-list-title {
  display: inline-block;
  vertical-align: middle;
}

/* Contributions table */
.contributions-table td:last-child {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
}

@media (min-width: 768px) {
  .contributions-table td:last-child {
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
  }
}

.no-activities {
  color: #fff;
}

/***** Pagination *****/
.pagination {
  margin: 20px 0;
  text-align: center;
}

.pagination * {
  display: inline-block;
}

.pagination li {
  border-radius: 50%;
  height: 40px;
  float: left;
  margin-left: 5px;
  width: 40px;
}

@media (min-width: 768px) {
  .pagination li {
    height: 30px;
    width: 30px;
  }
}

[dir="rtl"] .pagination li {
  float: right;
}

.pagination li:hover:not(.pagination-current) {
  background-color: #f3f3f3;
}

.pagination li:hover:not(.pagination-current) span, .pagination li:hover:not(.pagination-current) a {
  color: #F4F4F4;
  text-decoration: none;
}

.pagination a, .pagination span {
  font-size: 18px;
  color: #fff;
  padding: 10px 12px;
}

@media (min-width: 768px) {
  .pagination a, .pagination span {
    font-size: 14px;
    padding: 5px 12px;
  }
}

.pagination-current {
  background-color: #17494D;
}

.pagination-current a, .pagination-current span {
  color: #FFFFFF;
}

.pagination-first {
  border-radius: 3px 0 0 3px;
}

[dir="rtl"] .pagination-first {
  border-radius: 0 3px 3px 0;
}

.pagination-last {
  border-radius: 0 3px 3px 0;
}

[dir="rtl"] .pagination-last {
  border-radius: 3px 0 0 3px;
}

/***** Metadata *****/
.meta-group {
  display: block;
}

.meta-group * {
  display: inline;
}

.meta-data {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
}

.meta-data:not(:last-child)::after {
  content: "\00B7";
  margin: 0 5px;
}

/***** Icons *****/
[class^="icon-"]::before,
[class*=" icon-"]::before,
.icon,
.Search::before,
.SearchResults-item-votes::before,
.SearchResults-item-meta-count::before,
.recent-activity-item-comment span::before,
.attachments .attachment-item::before,
.share a::before,
.vote-up::before,
.vote-down::before,
.actions .dropdown-toggle::before,
.collapsible-nav-list li[aria-selected="true"]::after,
.collapsible-sidebar-title::after {
  font-family: "copenhagen-icons";
  font-style: normal;
  font-weight: normal;
  speak: none;
  line-height: 1em;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
}

.icon-lock::before {
  content: "\1F512";
}

.icon-star::before {
  content: "\2605";
}

.icon-linkedin::before {
  content: "\e900";
}

.icon-twitter::before {
  content: "\e901";
}

.icon-googleplus-::before {
  content: "\e902";
}

.icon-facebook::before {
  content: "\e903";
}

.icon-agent::before {
  content: "\1F464";
}

.icon-close::before {
  content: "\2715";
}

.icon-arrow-up::before {
  content: "\2B06";
}

.icon-arrow-down::before {
  content: "\2B07";
}

.icon-attachments::before {
  content: "\1F4CE";
}

.icon-comments::before {
  content: "\1F4AC";
}

.icon-search::before {
  content: "\1F50D";
}

.icon-vote::before {
  content: "\1F44D";
}

.icon-handle::before {
  content: "\25BE";
}

.icon-check::before {
  content: "\2713";
}

.icon-gear::before {
  content: "\2699";
}

.icon-menu::before {
  content: "\2630";
}

.icon-article::before {
  content: "\1F4C4";
}

.icon-post::before {
  content: "\1F4D4";
}

.icon-notification-alert::before {
  content: "\26A0";
}

.icon-notification-error::before {
  content: "\00D7";
}

.icon-notification-info::before {
  content: "\2139";
}

.icon-notification-success::before {
  content: "\2714";
}

/* User Profiles */
.profile-header {
  padding: 30px 0;
  background-color: #f7f7f7;
}

.profile-header .container {
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .profile-header .container {
    flex-wrap: nowrap;
  }
}

.profile-header .profile-info {
  flex-basis: 100%;
  display: flex;
  flex-wrap: wrap;
  min-width: 0;
}

.profile-avatar {
  position: relative;
  line-height: 0;
  align-self: center;
  margin-right: 10px;
}

[dir="rtl"] .profile-avatar {
  margin-left: 10px;
  margin-right: 0;
}

.profile-avatar .user-avatar {
  width: 65px;
  height: 65px;
}

.profile-avatar .icon-agent::before {
  bottom: 0;
  right: 0;
}

.profile-header .basic-info {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
}

.profile-header .basic-info .name {
  margin: 0;
}

.profile-header .options {
  display: flex;
  flex-basis: 100%;
  margin-top: 12px;
  align-items: flex-start;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .profile-header .options {
    flex-wrap: nowrap;
    flex-basis: auto;
    margin-top: 0;
    margin-left: 10px;
  }
  [dir="rtl"] .profile-header .options {
    margin-left: 0;
    margin-right: 10px;
  }
  .profile-header .options > :not(:last-child) {
    margin-bottom: 0;
    margin-right: 10px;
  }
  [dir="rtl"] .profile-header .options > :not(:last-child) {
    margin-left: 10px;
    margin-right: 0;
  }
}

.profile-header .options [data-action="edit-profile"] {
  background-color: #17494D;
  border: 0;
  color: #FFFFFF;
  line-height: normal;
  padding: 8px 20px;
  outline-color: #17494D;
}

.profile-header .description {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;
  margin: 15px 0;
  flex-basis: 100%;
}

.profile-stats {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
}

.profile-stats .stat {
  display: flex;
  margin-bottom: 10px;
}

.profile-stats .stat-label {
  color: #fff;
  font-weight: 300;
  flex: 0 0 100px;
  margin-right: 10px;
}

[dir="rtl"] .profile-stats .stat-label {
  margin-left: 10px;
  margin-right: 0;
}

.profile-stats-activity {
  border-top: solid 1px #ddd;
  margin-top: 15px;
}

@media (min-width: 768px) {
  .profile-stats-activity {
    border-top: 0;
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .profile-stats-activity .stat {
    flex-direction: column;
  }
}

.profile-stats-activity .stat:first-child {
  margin-top: 10px;
}

@media (min-width: 768px) {
  .profile-stats-activity .stat:first-child {
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  .profile-stats-activity .stat:not(:last-child) {
    margin-right: 40px;
  }
  [dir="rtl"] .profile-stats-activity .stat:not(:last-child) {
    margin-left: 40px;
    margin-right: 0;
  }
}

@media (min-width: 768px) {
  .profile-stats-activity .stat-label {
    flex: 0 1 auto;
  }
}

.profile-stats-counters {
  border-bottom: solid 1px #ddd;
}

@media (min-width: 768px) {
  .profile-stats-counters {
    flex: 0 0 200px;
    border-bottom: 0;
    margin-left: 40px;
  }
  [dir="rtl"] .profile-stats-counters {
    margin-left: 0;
    margin-right: 40px;
  }
}

@media (min-width: 1024px) {
  .profile-stats-counters {
    flex: 0 0 270px;
    margin-left: 60px;
  }
  [dir="rtl"] .profile-stats-counters {
    margin-right: 60px;
    margin-left: 0;
  }
}

@media (min-width: 768px) {
  .profile-stats-counters .stat {
    flex-direction: column;
  }
}

@media (min-width: 1024px) {
  .profile-stats-counters .stat {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .profile-stats-counters .stat:not(:last-child) {
    margin-bottom: 15px;
  }
}

@media (min-width: 768px) {
  .profile-stats-counters .stat-label {
    flex: 0 1 auto;
  }
}

@media (min-width: 1024px) {
  .profile-stats-counters .stat-label {
    flex: 0 0 100px;
  }
}

.profile-private-badge {
  flex-basis: 100%;
  border: solid 1px #17494D;
  border-radius: 4px;
  color: #17494D;
  padding: 5px 20px;
  font-size: 12px;
  text-align: center;
}

.profile-private-badge::after {
  content: "\1f512";
  margin-left: 5px;
  font-family: "copenhagen-icons";
  vertical-align: middle;
  line-height: 15px;
}

@media (min-width: 768px) {
  .profile-private-badge {
    flex-basis: auto;
  }
}

.profile-nav {
  background-color: #f2f2f2;
  border: 0;
  margin-bottom: 37px;
  padding: 0 20px;
}

.profile-section {
  width: 100%;
}

@media (min-width: 1024px) {
  .profile-section {
    width: calc(100% - 330px);
  }
}

.profile-section-header {
  display: flex;
  flex-wrap: wrap;
}

.profile-section-title {
  flex-basis: 100%;
  margin-bottom: 0;
}

.profile-section-description {
  flex-basis: 100%;
  padding: 10px 0;
  color: #fff;
  font-weight: 300;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 768px) {
  .profile-section-description {
    flex: 1 0 50%;
    padding-bottom: 0;
  }
}

.profile-section-sorter {
  flex-basis: 100%;
  border-top: solid 1px #eee;
  font-size: 14px;
}

.profile-section-sorter .dropdown-toggle {
  padding: 10px 0;
  width: 100%;
}

.profile-section-sorter .dropdown-toggle::after {
  position: absolute;
  right: 0;
}

[dir="rtl"] .profile-section-sorter .dropdown-toggle::after {
  left: 0;
  right: initial;
}

@media (min-width: 768px) {
  .profile-section-sorter .dropdown-toggle::after {
    position: relative;
  }
}

@media (min-width: 768px) {
  .profile-section-sorter {
    flex: 0 1 auto;
    padding-top: 0;
    border-top: 0;
    margin-left: 20px;
  }
  [dir="rtl"] .profile-section-sorter {
    margin-left: 0;
    margin-right: 20px;
  }
}

.profile-contribution {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;
  padding: 20px 0;
  position: relative;
}

.profile-contribution-header {
  margin-bottom: 5px;
}

.profile-contribution-title {
  margin: 0 0 5px 0;
  display: inline;
  line-height: 21px;
  font-size: 15px;
  vertical-align: middle;
}

.profile-contribution-body {
  margin: 10px 0;
}

.profile-contribution-list > .profile-contribution {
  border-top: 1px solid #eee;
}

@media (min-width: 768px) {
  .profile-contribution-list > .profile-contribution {
    padding-left: 30px;
  }
  [dir="rtl"] .profile-contribution-list > .profile-contribution {
    padding-right: 30px;
    padding-left: 0;
  }
}

.profile-contribution-list > .profile-contribution:last-child {
  border-bottom: 1px solid #eee;
}

.profile-contribution-list > .profile-contribution::before {
  left: 0;
  position: absolute;
  font-size: 16px;
  color: #ccc;
  font-family: "copenhagen-icons";
  line-height: 25px;
}

[dir="rtl"] .profile-contribution-list > .profile-contribution::before {
  right: 0;
}

.profile-contribution-list .profile-contribution-header {
  margin-left: 30px;
}

[dir="rtl"] .profile-contribution-list .profile-contribution-header {
  padding-right: 30px;
  padding-left: 0;
}

@media (min-width: 768px) {
  .profile-contribution-list .profile-contribution-header {
    margin-left: 0;
  }
  [dir="rtl"] .profile-contribution-list .profile-contribution-header {
    padding-right: 0;
  }
}

.profile-comments .profile-contribution-breadcrumbs {
  margin-left: 30px;
}

[dir="rtl"] .profile-comments .profile-contribution-breadcrumbs {
  padding-right: 30px;
  padding-left: 0;
}

@media (min-width: 768px) {
  .profile-comments .profile-contribution-breadcrumbs {
    margin-left: 0;
  }
  [dir="rtl"] .profile-comments .profile-contribution-breadcrumbs {
    padding-right: 0;
  }
}

.profile-section .no-activity,
.profile-section .private-activity {
  display: block;
  margin-top: 40px;
  color: #999;
}

.profile-section .private-activity::before {
  content: "\1f512";
  font-family: "copenhagen-icons";
  font-style: normal;
  font-size: 12px;
  font-weight: normal;
  vertical-align: middle;
  margin-right: 10px;
}

[dir="rtl"] .profile-section .private-activity::before {
  margin-right: 0;
  margin-left: 10px;
}

.profile-activity-list {
  margin-top: 25px;
}

.profile-activity {
  position: relative;
  padding-bottom: 30px;
}

@media (min-width: 768px) {
  .profile-activity {
    padding-left: 20px;
  }
  [dir="rtl"] .profile-activity {
    padding-right: 20px;
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  .profile-activity:not(:last-child) {
    border-left: 1px solid #ddd;
  }
  [dir="rtl"] .profile-activity:not(:last-child) {
    border-left: 0;
    border-right: 1px solid #ddd;
  }
}

.profile-activity-header {
  display: flex;
  align-items: center;
  margin-left: 35px;
}

[dir="rtl"] .profile-activity-header {
  margin-left: 0;
  margin-right: 35px;
}

@media (min-width: 768px) {
  .profile-activity-header {
    margin-left: 0;
  }
  [dir="rtl"] .profile-activity-header {
    margin-right: 0;
  }
}

.profile-activity-header .user-avatar {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  min-width: 40px;
  align-self: flex-start;
}

[dir="rtl"] .profile-activity-header .user-avatar {
  margin-left: 10px;
  margin-right: 0;
}

.profile-activity-description {
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  word-break: break-word;
  word-wrap: break-word;
  margin: 0;
  min-width: 0;
  width: 100%;
}

.profile-activity-description span:first-child {
  font-weight: 600;
  display: inline;
}

.profile-activity-contribution {
  padding: 20px;
  margin-top: 10px;
  border-radius: 8px;
  background-color: #f7f7f7;
}

@media (min-width: 768px) {
  .profile-activity-contribution {
    margin-top: 0;
    margin-left: 50px;
  }
  [dir="rtl"] .profile-activity-contribution {
    margin-left: 0;
    margin-right: 50px;
  }
}

.profile-activity::before {
  position: absolute;
  left: 0;
  width: 28px;
  border-radius: 50%;
  content: "";
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-color: #FFFFFF;
  background-position: 50% 50%;
  text-align: center;
  line-height: 40px;
  font-size: 16px;
  color: #ccc;
  font-family: "copenhagen-icons";
}

[dir="rtl"] .profile-activity::before {
  right: 0;
}

@media (min-width: 768px) {
  .profile-activity::before {
    left: -14px;
  }
  [dir="rtl"] .profile-activity::before {
    right: -14px;
  }
}

.profile-articles > .profile-contribution::before,
.profile-activity-list > li[class$="-article"]::before {
  content: "\1f4c4";
}

.profile-posts > .profile-contribution::before,
.profile-activity-list > li[class$="-post"]::before {
  content: "\1f4d4";
}

.profile-comments > .profile-contribution::before,
.profile-activity-list > li[class$="-comment"]::before {
  content: "\1f4ac";
  line-height: 35px;
}

.article-list-item {
  color: #57da85;
  padding: 0;
  margin-bottom: 4px;
  font-size: 16px;
}

.article-list-item a {
  color: inherit;
}
.promoted_title {
   margin-bottom: 20px;
   text-align: center;
   padding-top: 60px;
   font-size: 30px;
   background: white;
 }

 .promoted-articles-item .promoted-title {
   border: 0,5px solid #333; 
   text-align: center;
   color: #0C0C0C;
   background: #D4D7FF;
   display: block;
   margin-bottom: 5px;
   padding: 15px;
 }

 .promoted-body {
   display: none;
   padding: 15px;
 }
 .promoted-articles-item .article-open {
   background: #D4D7FF;
   border-color: #D4D7FF;
   color: #0C0C0C;
 }
 .promoted-articles .see-article {
   background: #D4D7FF;
   border-radius: 40px;
   color: #0C0C0C;
   display: inline-block;
   font-size: 16px;
   margin-top: 10px;
   padding: 5px 15px;
 }
 .promoted-title::after {
   font-family: "futura-pt-bold-obl", sans-serif;
   content: "\2304";
   float: left;
   -webkit-transition: all 0.2s ease-in;
   -moz-transition: all 0.2s ease-in;
   transition: all 0.2s ease-in;
 }
 .article-open::after {
   transform: rotate(-180deg);
   color: #fff;
 }
/***** Search results *****/
.search-results {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (min-width: 1024px) {
  .search-results {
    flex-direction: row;
  }
}

.search-results-column {
  flex: 1;
}

@media (min-width: 1024px) {
  .search-results-column {
    flex: 0 0 75%;
  }
}

.search-results-sidebar {
  border-top: 1px solid #ddd;
  flex: 1 0 auto;
  margin-bottom: 20px;
  padding: 0;
}

@media (min-width: 1024px) {
  .search-results-sidebar {
    border: 0;
    flex: 0 0 20%;
    height: auto;
  }
}

.search-results-sidebar .sidenav-item[aria-selected="true"] {
  background-color: #50DC82;
  color: #0C0C0C;
  text-decoration: none;
}

.search-results-sidebar .sidenav-item[aria-selected="false"] {
  background-color: transparent;
  color: #0C0C0C;
  text-decoration: none;
}

.search-results-subheading {
  font-size: 18px;
  font-weight: 600;
}

.search-results-list {
  margin-bottom: 25px;
}

.search-results-list > li {
  padding: 20px 0;
}

.search-results-list > li:first-child {
  border-top: 1px solid #ddd;
}

.search-results-list > li h2 {
  margin-bottom: 0;
}

.search-result-title {
  font-size: 30px;
}

.search-result-description {
  margin-top: 15px;
  word-break: break-word;
}

.search-result-votes, .search-result-meta-count {
  color: #0C0C0C;
  display: inline-block;
  font-size: 13px;
  font-weight: 300;
  padding: 4px 5px;
  position: relative;
}

.search-result-votes::before, .search-result-meta-count::before {
  color: #0C0C0C;
}

[dir="ltr"] .search-result-votes, [dir="ltr"] .search-result-meta-count {
  margin-left: 5px;
}

[dir="ltr"] .search-result-votes::before, [dir="ltr"] .search-result-meta-count::before {
  margin-right: 3px;
}

[dir="rtl"] .search-result-votes, [dir="rtl"] .search-result-meta-count {
  margin-right: 5px;
}

[dir="rtl"] .search-result-votes::before, [dir="rtl"] .search-result-meta-count::before {
  margin-left: 3px;
}

.search-result-votes::before {
  content: "\1F44D";
}

.search-result-meta-count::before {
  content: "\1F4AC";
}

.search-result .meta-group {
  align-items: center;
}

.search-result-breadcrumbs {
  margin: 0;
}

.search-result-breadcrumbs li:last-child::after {
  content: "·";
  display: inline-block;
  margin: 0 5px;
  color: #0C0C0C;
}

/* Non-latin search results highlight */
/* Add a yellow background for Chinese */
html[lang|="zh"] .search-result-description em {
  font-style: normal;
  background: yellow;
}

/* Use bold to highlight for the rest of supported non-latin languages */
html[lang|="ar"] .search-result-description em,
html[lang|="bg"] .search-result-description em,
html[lang|="el"] .search-result-description em,
html[lang|="he"] .search-result-description em,
html[lang|="hi"] .search-result-description em,
html[lang|="ko"] .search-result-description em,
html[lang|="ja"] .search-result-description em,
html[lang|="ru"] .search-result-description em,
html[lang|="th"] .search-result-description em {
  font-style: bold;
}

.bonus-pic {
  background: url($3a-purple-bg.png);
  position: relative;
}

.etabs { 
  margin: 0; padding: 0; }
.tab { 
  display: inline-block; zoom:1;
  *display:inline; 
  background: #eee; 
  border: solid 1px #999; 
  border-bottom: none; 
  -moz-border-radius: 4px 4px 0 0; 
  -webkit-border-radius: 4px 4px 0 0; 
}
.tab a { 
  font-size: 24px; line-height: 2em; display: block; padding: 0 10px; outline: none; 
}
.tab a:hover { 
  text-decoration: underline; 
}
.tab.active { 
  background: #50DC82; 
  padding-top: 6px; 
  position: relative; 
  top: 1px; 
  border-color: #666; 
}
.tab a.active {
  font-weight: bold; 
}
.tab-container
.panel-container {
  background: #fff; 
  border: solid #666 1px; 
  padding: 10px; 
  -moz-border-radius: 0 4px 4px 4px; 
  -webkit-border-radius: 0 4px 4px 4px;
}


.faqhead {
 text-align:center;
 font-size:25px;
 background: white;
 padding-top: 20px;
}
      
.h3 {
      text-align:center;
      }

.active:after {
  content: "\2212";
}

.panel {
  padding: 0 18px;
  background-color: #50DC82;
  text-align: center;
  max-height: 0;
  overflow: hidden;
  width: 100%;
  transition: max-height 0.2s ease-out;
}


.lt-article-container {
  position: relative;
  display: flex;
  padding: 0 10px;
  flex-wrap: wrap;
}


.lt-article-container__column {
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
}

.lt-article-container__sidenav,
.lt-article-container__toc {
  display: block;
}

html.sidenav-enabled .lt-article-container__sidenav,
.toc-enabled .lt-article-container__toc {
  display: block;
}

html.sidenav-enabled .lt-article-container__sidenav {
  padding-bottom: 24px;
}

.lt-article-container__sidebar {
  @media (max-width: 575px) {
    padding-top: 22px;

    border-top: 2px solid $border_color;
  }
}

@media (min-width: 768px) {
  .lt-article-container__article {
    width: calc(100% / 12 * 8);
  }

  .lt-article-container__sidebar {
    width: calc(100% / 12 * 4);
  }

  .toc-enabled .lt-article-container__toc {
    width: calc(100% / 12 * 4);
  }

  .toc-enabled .lt-article-container__sidebar {
    width: 100%;
  }

  .lt-article-container__sidenav {
    width: calc(100% / 12 * 4);
  }

  .lt-article-container__sidebar {
    margin-left: calc(100% / 12 * 4);
    flex-grow: 1;
  }

  html.sidenav-enabled.toc-enabled .lt-article-container__sidenav,
  html.sidenav-enabled.toc-enabled .lt-article-container__toc {
    width: calc(100% / 12 * 3);
  }

  html.sidenav-enabled.toc-enabled .lt-article-container__article {
    width: calc(100% / 12 * 6);
  }

  html.sidenav-enabled.toc-enabled .lt-article-container__sidebar {
    margin-left: calc(100% / 12 * 3);
  }
}

@media (min-width: 992px) {
  html.sidenav-enabled.toc-enabled .lt-article-container__article {
    width: calc(100% / 12 * 7);
  }

  html.sidenav-enabled.toc-enabled .lt-article-container__toc {
    width: calc(100% / 12 * 2);
  }
}

.lt-container {
  padding-right: 1rem;
  padding-left: 1rem;

  @media (min-width: 576px) {
    padding-right: calc(1rem * 2);
    padding-left: calc(1rem * 2);
  }
}

.lt-container-inner {
  max-width: 1320px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .column--sm-1 {
    width: 8.33333%;
  }

  .column--sm-2 {
    width: 16.66667%;
  }

  .column--sm-3 {
    width: 25%;
  }

  .column--sm-4 {
    width: 33.33333%;
  }

  .column--sm-5 {
    width: 41.66667%;
  }

  .column--sm-6 {
    width: 50%;
  }

  .column--sm-7 {
    width: 58.33333%;
  }

  .column--sm-8 {
    width: 66.66667%;
  }

  .column--sm-9 {
    width: 75%;
  }

  .column--sm-10 {
    width: 83.33333%;
  }

  .column--sm-11 {
    width: 91.66667%;
  }

  .column--sm-12 {
    width: 100%;
  }

  [dir="ltr"] .column--sm-offset-0 {
    margin-left: 0%;
  }

  [dir="rtl"] .column--sm-offset-0 {
    margin-right: 0%;
  }

  [dir="ltr"] .column--sm-offset-1 {
    margin-left: 8.33333%;
  }

  [dir="rtl"] .column--sm-offset-1 {
    margin-right: 8.33333%;
  }

  [dir="ltr"] .column--sm-offset-2 {
    margin-left: 16.66667%;
  }

  [dir="rtl"] .column--sm-offset-2 {
    margin-right: 16.66667%;
  }

  [dir="ltr"] .column--sm-offset-3 {
    margin-left: 25%;
  }

  [dir="rtl"] .column--sm-offset-3 {
    margin-right: 25%;
  }

  [dir="ltr"] .column--sm-offset-4 {
    margin-left: 33.33333%;
  }

  [dir="rtl"] .column--sm-offset-4 {
    margin-right: 33.33333%;
  }

  [dir="ltr"] .column--sm-offset-5 {
    margin-left: 41.66667%;
  }

  [dir="rtl"] .column--sm-offset-5 {
    margin-right: 41.66667%;
  }

  [dir="ltr"] .column--sm-offset-6 {
    margin-left: 50%;
  }

  [dir="rtl"] .column--sm-offset-6 {
    margin-right: 50%;
  }

  [dir="ltr"] .column--sm-offset-7 {
    margin-left: 58.33333%;
  }

  [dir="rtl"] .column--sm-offset-7 {
    margin-right: 58.33333%;
  }

  [dir="ltr"] .column--sm-offset-8 {
    margin-left: 66.66667%;
  }

  [dir="rtl"] .column--sm-offset-8 {
    margin-right: 66.66667%;
  }

  [dir="ltr"] .column--sm-offset-9 {
    margin-left: 75%;
  }

  [dir="rtl"] .column--sm-offset-9 {
    margin-right: 75%;
  }

  [dir="ltr"] .column--sm-offset-10 {
    margin-left: 83.33333%;
  }

  [dir="rtl"] .column--sm-offset-10 {
    margin-right: 83.33333%;
  }

  [dir="ltr"] .column--sm-offset-11 {
    margin-left: 91.66667%;
  }

  [dir="rtl"] .column--sm-offset-11 {
    margin-right: 91.66667%;
  }

  [dir="ltr"] .column--sm-offset-12 {
    margin-left: 100%;
  }

  [dir="rtl"] .column--sm-offset-12 {
    margin-right: 100%;
  }
}
.lt-container-cat{
  display: flex;
  flex-wrap:wrap;
}

dl {
  margin-top: 0;
  margin-bottom: calc(16px * 1.5);
}

dt,
dd {
  line-height: 1.5;
  margin-bottom: calc(16px * 1.5 / 2);
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

.dl-horizontal:before,
.dl-horizontal:after {
  display: table;
  content: "";
}

.dl-horizontal:after {
  clear: both;
}

.dl-horizontal dt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #818a91;
}

blockquote {
  color: #000;
  font-style: italic;
  font-family: Georgia, "Times New Roman", Times, serif;
  background-color: #f7f7f9;
  padding: calc(16px * 1.5 / 2) calc(16px * 1.5);
  margin: 0 0 calc(16px * 1.5);
  border-left: 5px solid #dee2e6;
}

blockquote.is-colored {
  border-left: 5px solid #107cd5;
}

blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}

code {
  border-radius: 4px !important;
  padding: 20px !important;
}

address {
  margin-bottom: calc(16px * 1.5);
  font-style: normal;
  line-height: 1.5;
}

.clearfix:before,
.clearfix:after {
  display: table;
  /* 1 */
  content: "";
  /* 2 */
}

.clearfix:after {
  clear: both;
}

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

.list-unstyled {
  margin-left: 0;
  padding-left: 0;
  list-style: none;
}

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

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

table {
  background-color: transparent;
}

caption {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #818a91;
}

caption,
th {
  text-align: left;
}

.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: calc(16px * 1.5);
}

.table th,
.table td {
  padding: 8px;
  vertical-align: top;
  height: auto;
  color: #0c0c0c;
}

.table td {
  border-top: 1px solid #d3d6d8;
}

.table thead th {
  vertical-align: bottom;
  font-weight: bold;
}

.table tbody + tbody {
  border-top: 1px solid #d3d6d8;
}

.table .table {
  background-color: #fff;
}

.table--color-header th {
  background-color: #107cd5;
  color: #fff;
}

.table--striped th,
.table--striped td,
.table--striped thead th {
  border-color: #fff;
}

.table--striped tbody tr:nth-child(odd),
.table--hover tbody tr:hover {
  background-color: #dee2e6;
  color: inherit;
}

.table--bordered {
  border: 1px solid #d3d6d8;
}

.table--bordered td,
.table--bordered th {
  border-left: 1px solid #d3d6d8;
}

.table-responsive {
  min-height: 0.01%;
  overflow-x: auto;
}

.embed,
.embed-responsive {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  padding-bottom: 56.25%;
  margin-bottom: 30px;
  overflow: hidden;
  z-index: 1;
}

.embed img,
.embed-responsive img {
  width: 100%;
}

.embed iframe,
.embed embed,
.embed object,
.embed video,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed:focus,
.embed-responsive:focus {
  outline: none !important;
}

.embed-responsive--16by9 {
  padding-bottom: 56.25%;
}

.embed-responsive--4by3 {
  padding-bottom: 75%;
}

.list-colored,
.list-bullet {
  counter-reset: list;
  list-style-type: none !important;
  padding-left: 0 !important;
}

.list-colored li {
  position: relative;
  padding-left: calc(30px + 12px);
  counter-increment: list;
  margin-bottom: calc(16px * 1.5 / 1.5) !important;
}

.list-colored li:before {
  position: absolute;
  top: -3px;
  left: 0;
  content: counter(list);
  text-align: center;
  font-size: calc(16px * 0.75);
  width: 30px;
  height: 30px;
  background-color: #107cd5;
  border-radius: 50%;
  z-index: 1;
  color: #fff;
  line-height: 30px;
}

.list-colored ol {
  counter-reset: list;
  list-style-type: none;
  margin-bottom: 14px !important;
  margin-top: 14px !important;
}

.list-bullet li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.list-bullet li:before {
  position: absolute;
  left: 0;
  top: -3px;
  font-family: "Font Awesome 5 Free";
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
  content: "\f058";
  color: #107cd5;
  background-color: transparent;
  width: auto;
  height: auto;
}

.list-bullet ul {
  list-style: none;
  margin-bottom: 14px;
}

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

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

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

.text-primary {
  background-color: #88c4f6;
}

.text-info {
  background-color: #5bc0de;
}

.text-warning {
  background-color: #fad782;
}

.text-danger {
  background-color: #ff5252;
}

.text-success {
  background-color: #107cd5;
}
.Article-body .accordion {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0;
  margin-bottom: calc(16px * 1.5);
}

.Article-body .accordion__item-title {
  width: 100%;
  position: relative;
  font-size: calc(16px * 1.25);
  padding: 15px 20px 15px 52px;
  cursor: pointer;
}

.Article-body .accordion__item-title:not(.accordion__item-title--active) {
  border-bottom: 1px solid #ddd;
}

.Article-body .accordion__item-title:before {
  content: "";
  position: absolute;
}

.Article-body .accordion__item-content {
  display: none;
  padding: 20px;
  border-bottom: 1px solid #ddd;
}

.Article-body .accordion__item-content p:last-child {
  margin-bottom: 0;
}

.Article-body .accordion__item:last-child .accordion__item-title {
  border-bottom: none;
}

.Article-body .accordion--default .accordion__item-title:before {
  left: 22px;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-bottom: 2px solid #107cd5;
  border-left: 2px solid #107cd5;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.Article-body .accordion--default .accordion__item-title--active {
  background-color: #f0f0f0;
}

.Article-body .accordion--default .accordion__item-title--active:before {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.Article-body .accordion--colored .accordion__item-title {
  transition: background-color 0.3s;
}

.Article-body .accordion--colored .accordion__item-title:before,
.Article-body .accordion--colored .accordion__item-title:after {
  top: 50%;
}

.Article-body .accordion--colored .accordion__item-title:before {
  width: 10px;
  height: 2px;
  margin-top: -1px;
  background-color: #818a91;
  left: 20px;
}

.Article-body .accordion--colored .accordion__item-title:after {
  content: "";
  position: absolute;
  left: 24px;
  width: 2px;
  height: 10px;
  margin-top: -5px;
  background-color: #818a91;
}

.Article-body .accordion--colored .accordion__item-title--active {
  background-color: #107cd5;
  color: #fff;
  transition: background-color 0.3s;
}

.Article-body .accordion--colored .accordion__item-title--active:before {
  background-color: #fff;
}

.Article-body .accordion--colored .accordion__item-title--active:after {
  display: none;
}
.tabs {
  margin-bottom: calc(16px * 1.5);
}

.tab {
  display: block;
  border: 1px solid #ddd;
  padding: 30px;
  margin-top: -1px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.tab p:last-child {
  margin-bottom: 0;
}

.tab pre {
  margin-top: 0;
}

.tab:nth-child(2) {
  border-top-left-radius: 0;
}

.tabs-link {
  display: block;
  margin: 0;
  cursor: pointer;
  padding: 8px 30px;
  color: #2c2d30;
  font-weight: 600;
  border-width: 1px 1px 0;
  border-style: solid;
  border-color: transparent;
}

.tabs-link:hover {
  color: #107cd5;
}

.tabs-link.is-active {
  border-color: #ddd;
  color: #107cd5;
  cursor: pointer;
}

.tabs-link.is-active:hover {
  color: #107cd5;
  cursor: default;
}

.tabs--colored-1 .tab {
  background-color: #f7f7f9 !important;
}

.tabs--colored-1 .tabs-link.is-active {
  background-color: #f7f7f9;
  border-bottom-color: #f7f7f9;
}

.tabs--colored-2 .tabs-link:hover {
  color: #107cd5;
}

.tabs--colored-2 .tabs-link.is-active {
  background-color: #107cd5;
  color: #fff;
  border-color: #107cd5;
}

.tabs--colored-2 .tabs-link.is-active:hover {
  color: #fff;
}

.tabs--colored-2 .tab {
  background-color: #f7f7f9 !important;
}

.image-with-border {
  padding: 10px;
  border: 1px solid #d3d6d8;
  border-radius: 4px;
}

.image-with-shadow {
  box-shadow: 0 5px 15px 2px #55595c;
}

.image-with-lightbox {
  cursor: pointer;
}

.image-with-lightbox img {
  display: block;
  max-width: 100%;
}

.image-overlay {
  position: relative;
}

.image-overlay:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.3);
}

.image-overlay img {
  display: block;
  max-width: 100%;
}

.image-with-video-icon {
  position: relative;
  display: block;
}

.image-with-video-icon img {
  width: 100%;
  vertical-align: middle;
}

.image-with-video-icon:before {
  content: "";
  font-size: 0;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 0 30px 60px;
  border-color: transparent transparent transparent #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
  z-index: 3;
}

.image-with-video-icon:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.image-with-video-icon:active:before,
.image-with-video-icon:hover:before {
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.1);
}

.callout {
  padding: calc(16px * 1.5) 20px;
  margin-bottom: calc(16px * 1.5);
  background-color: #dee2e6;
  border-left-width: 5px;
  border-left-style: solid;
}

.callout p:last-child {
  margin-bottom: 0;
}

.callout--transparent {
  background-color: transparent;
  border-width: 1px;
  border-color: #dedede;
  box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.14);
}

.callout--success {
  color: #2c2d30;
  background-color: #d9ecfc;
  border-color: #107cd5;
}

.callout--success .callout__title {
  color: #107cd5;
}

.callout--info {
  color: #2c2d30;
  background-color: #e3f4f9;
  border-color: #5bc0de;
}

.callout--info .callout__title {
  color: #5bc0de;
}

.callout--warning {
  color: #2c2d30;
  background-color: #fffbf3;
  border-color: #fad782;
}

.callout--warning .callout__title {
  color: #fad782;
}

.callout--danger {
  color: #2c2d30;
  background-color: #ffebeb;
  border-color: #ff5252;
}

.callout--danger .callout__title {
  color: #ff5252;
}

.callout--primary {
  color: #2c2d30;
  background-color: #d9ecfc;
  border-color: #107cd5;
}

.callout--primary .callout__title {
  color: #107cd5;
}

.callout--dashed {
  border-width: 1px;
  border-style: dashed;
}

.note {
  position: relative;
  margin-bottom: calc(16px * 1.5);
  padding-left: 12px;
  border-left: calc(2px * 4) solid transparent;
  color: #5d5f65;
}

.note p:last-child {
  margin-bottom: 0;
}

.note-title {
  margin-bottom: calc(16px * 1.5 / 2);
  font-weight: 600;
}

.note-default,
.note--default {
  border-color: #818a91;
}

.note-default .note-title,
.note--default .note-title {
  color: #818a91;
}

.note-info,
.note--info {
  border-color: #5bc0de;
}

.note-info .note-title,
.note--info .note-title {
  color: #5bc0de;
}

.note-warning,
.note--warning {
  border-color: #fad782;
}

.note-warning .note-title,
.note--warning .note-title {
  color: #fad782;
}

.note-success,
.note--success {
  border-color: #107cd5;
}

.note-success .note-title,
.note--success .note-title {
  color: #107cd5;
}

.note-danger,
.note--danger {
  border-color: #ff5252;
}

.note-danger .note-title,
.note--danger .note-title {
  color: #ff5252;
}

@media (min-width: 768px) {
  .dl-horizontal dt {
    width: 30%;
    float: left;
    clear: both;
    padding-right: 15px;
  }
  .dl-horizontal dd {
    width: 70%;
    float: right;
  }
  .tab {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
  }
  .tabs-link {
    display: inline-block;
  }
  .tabs-link.is-active {
    border-bottom: 1px solid #fff;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
  }
}

@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: calc(16px * 1.5 * 0.75);
    overflow-y: hidden;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #d3d6d8;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
}

@media (max-width: 767px) {
  .tabs-link {
    border-top-color: #ddd;
    border-left-color: #ddd;
    border-right-color: #ddd;
  }
  .tabs-link:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
  }
}

  .accordion {
  border: 1px solid #0c0c0c;
  border-radius: 1px;
  padding: 0;
  margin-bottom: calc(16px * 1.5);
  background: #50DC82;
 
}

  .accordion__item-title {
  width: 100%;
  position: relative;
  font-size: calc(16px * 1.25);
  padding: 0px 20px 9px 52px;
  cursor: pointer;
  background: #50DC82;
  border: #0c0c0c 1px;
}

  .accordion__item-title:not(.accordion__item-title--active) {
 
}

 .accordion__item-title:before {
  content: "";
  position: absolute;
}

 .accordion__item-content {
  display: none;
  padding: 20px;
  background: #F4F4F4;
}

 .accordion__item-content p:last-child {
  margin-bottom: 0;
}

 .accordion__item:last-child .accordion__item-title {
  
}

 .accordion--default .accordion__item-title:before {
  left: 22px;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  border-bottom: 1px solid #0c0c0c;
  border-left: 1px solid #0c0c0c;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

 .accordion--default .accordion__item-title--active {
  background-color: #50DC82;
}

 .accordion--default .accordion__item-title--active:before {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

 .accordion--colored .accordion__item-title {
  transition: background-color 0.3s;
}

.accordion--colored .accordion__item-title:before,
.accordion--colored .accordion__item-title:after {
  top: 50%;
}

.accordion--colored .accordion__item-title:before {
  width: 10px;
  height: 2px;
  margin-top: -1px;
  background-color: #50DC82;
  left: 20px;
}

.accordion--colored .accordion__item-title:after {
  content: "";
  position: absolute;
  left: 24px;
  width: 2px;
  height: 10px;
  margin-top: -5px;
  background-color: #50DC82;
}

.accordion--colored .accordion__item-title--active {
  background-color: #0c0c0c;
  color: #0c0c0c;
  transition: background-color 0.3s;
  border-color: #0c0c0c;
}

.accordion--colored .accordion__item-title--active:before {
  background-color: #0c0c0c;
  border-color: #0c0c0c;
}

.accordion--colored .accordion__item-title--active:after {
  display: none;

  }
  
  
.ButtonB {
  left: 204px;
  top: 448px;
  background: #0C0C0C;
  border: none;
  border-radius: 34px;
  box-shadow: none;
  color: #F4F4F4;
  cursor: pointer;
  display: inline-block;
  font-size: 1.1rem;
  font-family: "futura-pt-bold-obl", sans-serif;
  margin-bottom: 10px;
  padding: 0px 27px;
  position: absolute;
  z-index: 1;
  letter-spacing: 0.4;
  text-decoration: none;
  transition: background 0.2s;
}

@media (min-width: 768px) {
  .ButtonB {
    margin-right: 1ch;
  }
}

.ButtonB::before {
  content: "";
  display: block;
  background: inherit;
  position: absolute;
  border-radius: inherit;
  z-index: -1;
  animation: button-hover-out 0.1s ease-in-out;
  top: -2px;
  bottom: -2px;
  left: -2px;
  right: -2px;
  border: inherit;
  border-color: #F4F4F4;
}

.ButtonB:hover {
  opacity: 1;
}

.ButtonB:hover::before {
  animation: button-hover 0.6s ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes buttonB-hover {
  0% {
    transform: scaleX(1);
  }
  20% {
    transform: scaleX(1.11);
  }
  40% {
    transform: scaleX(1.08);
  }
  70% {
    transform: scaleX(1.1);
  }
  100% {
    transform: scaleX(1.1);
  }
}

@keyframes buttonB-hover-out {
  from {
    transform: scaleX(1.1);
  }
  to {
    transform: scaleX(1);
  }
}
  
.ButtonB-label {
  white-space: nowrap;
  width: auto;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}

.ButtonB--animated {
  animation-delay: 50ms;
  animation-duration: 250ms;
  animation-fill-mode: both;
  animation-name: reveal;
  opacity: 0;
  overflow: hidden;
  padding: 10px 0;
}

.ButtonB--gray {
  background: #F4F4F4;
  color: white;
}

.ButtonB--gray::before {
  border-color: #F4F4F4;
}

.ButtonB--green, .Button--primary {
  background: #0C0C0C;
  color: white;
}

.ButtonB--green::before, .Button--primary::before {
  border-color: #42c26f;
}

.ButtonB--whiteTransparent, .Button--secondary {
  color: #0C0C0C;
  background: #B3B9FF;
  border: 2px solid transparent;
}

.ButtonB--whiteTransparent::before, .Button--secondary::before {
  top: -2px;
  bottom: -2px;
  left: -2px;
  right: -2px;
  border: inherit;
  border-color: currentColor;
}

.ButtonB--grayTransparent {
  color: #F4F4F4;
  background: inherit;
  border: 2px solid transparent;
}

.ButtonB--grayTransparent::before {
  top: -2px;
  bottom: -2px;
  left: -2px;
  right: -2px;
  border: inherit;
  border-color: currentColor;
}

  
/**buttonc***/ 
  
.ButtonC {
  left: 56px;
  top: 448px;
  background: #0C0C0C;
  border: none;
  border-radius: 34px;
  box-shadow: none;
  color: #F4F4F4;
  cursor: pointer;
  display: inline-block;
  font-size: 1.1rem;
  font-family: "futura-pt-bold-obl", sans-serif;
  margin-bottom: 10px;
  padding: 0px 15px;
  position: absolute;
  z-index: 1;
  letter-spacing: 0.4;
  text-decoration: none;
  transition: background 0.2s;
}

@media (min-width: 768px) {
  .ButtonC {
    margin-right: 1ch;
  }
}

.ButtonC::before {
  content: "";
  display: block;
  background: inherit;
  position: absolute;
  border-radius: inherit;
  z-index: -1;
  animation: button-hover-out 0.1s ease-in-out;
  top: -2px;
  bottom: -2px;
  left: -2px;
  right: -2px;
  border: inherit;
  border-color: #F4F4F4;
}

.ButtonC:hover {
  opacity: 1;
}

.ButtonC:hover::before {
  animation: button-hover 0.6s ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes buttonC-hover {
  0% {
    transform: scaleX(1);
  }
  20% {
    transform: scaleX(1.11);
  }
  40% {
    transform: scaleX(1.08);
  }
  70% {
    transform: scaleX(1.1);
  }
  100% {
    transform: scaleX(1.1);
  }
}

@keyframes buttonC-hover-out {
  from {
    transform: scaleX(1.1);
  }
  to {
    transform: scaleX(1);
  }
}
  
.ButtonC-label {
  white-space: nowrap;
  width: auto;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}

.ButtonC--animated {
  animation-delay: 50ms;
  animation-duration: 250ms;
  animation-fill-mode: both;
  animation-name: reveal;
  opacity: 0;
  overflow: hidden;
  padding: 10px 0;
}

.ButtonC--gray {
  background: #F4F4F4;
  color: white;
}

.ButtonC--gray::before {
  border-color: #F4F4F4;
}

.ButtonC--green, .Button--primary {
  background: #0C0C0C;
  color: white;
}

.ButtonC--green::before, .Button--primary::before {
  border-color: #42c26f;
}

.ButtonC--whiteTransparent, .Button--secondary {
  color: #0C0C0C;
  background: #B3B9FF;
  border: 2px solid transparent;
}

.ButtonC--whiteTransparent::before, .Button--secondary::before {
  top: -2px;
  bottom: -2px;
  left: -2px;
  right: -2px;
  border: inherit;
  border-color: currentColor;
}

.ButtonC--grayTransparent {
  color: #F4F4F4;
  background: inherit;
  border: 2px solid transparent;
}

.ButtonC--grayTransparent::before {
  top: -2px;
  bottom: -2px;
  left: -2px;
  right: -2px;
  border: inherit;
  border-color: currentColor;
}

h2b {
  font-family: "futura-pt-bold-obl", sans-serif;
  margin: 0;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.06ch;
  top: 123px;
  left: 56px;
  font-size: 2rem;
  position: absolute;
}
  
p2 {
  top: 231px;
  left: 56px;
  font-size: inherit;
  font-weight: normal;
  line-height: 1.3;
  position: absolute;
}
  
a.alt_link{
  color: #50DC82;
  font-weight: bold;
}

/* Requests page */

.requests-page-main-content {
  height: 100%;
  padding-top: 24px;
  padding-bottom: 80px;
  flex: 1;
}

.requests-page-main-content .my-activities-header {
  border-bottom: 1px solid #E8E8E8;
}

@media(min-width: 768px) {
  .requests-page-main-content .my-activities-header {
    border-bottom: none;
  }
}
  
.requests-page-main-content .my-activities-header h1 {
  margin-top: 16px;
  font-family: 'Hellix-Extra-Bold-Italic';
  font-size: 32px;
  line-height: 35px;
  letter-spacing: -0.01em;
  font-feature-settings: 'salt' on;
  color: #0C0C0C;
  font-weight: unset;
}

@media(min-width: 768px) {
  .requests-page-main-content .my-activities-header h1 {
    margin-top: 24px;
    font-size: 56px;
    line-height: 62px;
  }
}

.requests-page-main-content .my-activities-header-description {
	font-family: 'Hellix-Medium';
  font-size: 16px;
  line-height: 22px;
  color: #0C0C0C;
  margin: 16px 0;
}

@media(min-width: 768px) {
  .requests-page-main-content .my-activities-header-description {
    font-size: 18px;
    line-height: 30px;
  }
}

.requests-page-main-content .my-activities-header-description a {
	text-decoration: underline;
}

.requests-page-main-content .my-activities-table {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto;
  align-items: center;
  margin-top: 40px;
}

.requests-page-main-content .my-activities-table .hide-on-small-screen {
  display: none;
}

@media(min-width: 920px) {
  .requests-page-main-content .my-activities-table {
    grid-template-columns: 10fr minmax(200px, 4fr) minmax(200px, 4fr) 2fr;
  }
  
  .requests-page-main-content .my-activities-table .hide-on-small-screen {
    display: unset;
  }
}

.requests-page-main-content .my-activities-table .table-head-item {
  font-family: 'Hellix-Bold';
  font-size: 14px;
  line-height: 30px;
  color: #464646;
  padding: 16px;
  border-bottom: 1px solid #0C0C0C;
  width: 100%;
  height: 100%;
}

.requests-page-main-content .my-activities-table .table-body-row-item {
  font-family: 'Hellix-Medium';
  font-size: 16px;
  line-height: 30px;
  color: #0C0C0C;
  padding: 16px;
  border-bottom: 1px solid #D8D8D8;
  width: 100%;
  height: 100%;
}

.requests-page-main-content .my-activities-table .table-body-row-item span {
  font-family: 'Hellix-Bold';
  font-size: 10px;
  line-height: 20px;
}

@media(min-width: 768px) {
  .requests-page-main-content .my-activities-table .table-head-item {
    font-size: 16px;
  }
  
  .requests-page-main-content .my-activities-table .table-body-row-item {
    font-size: 18px;
  }
  
  .requests-page-main-content .my-activities-table .table-body-row-item span {
    font-size: 12px;
  }
}

.requests-page-main-content .pagination {
  text-align: initial;
  display: flex;
  justify-content: center;
  margin: 48px 0 0 0;
}

.requests-page-main-content .pagination * {
  display: initial;
}

.requests-page-main-content .pagination .pagination-list {
  display: flex;
}

.requests-page-main-content .pagination .pagination-list li {
  height: auto;
  width: auto;
  border-radius: 0;
  float: initial;
  margin: 0;
  display: flex;
  justify-content: center;
}

.requests-page-main-content .pagination .pagination-list li a {
  display: flex;
  flex-wrap: nowrap;
  font-size: 16px;
  padding: 4px 12px;
  color: #0C0C0C;
}

.requests-page-main-content .pagination .pagination-list li a span {
  font-size: 16px;
  padding: 0 4px;
  color: #0C0C0C;
}

.create-request-container {
  display: flex;
  justify-content: center;
  background-color: #50DC82;
  padding: 32px 20px 56px 20px;
  width: 100%;
}

@media(min-width: 420px) {
  .create-request-container {
    padding: 32px 20px 32px 20px;
  }
}

.create-request-button {
  background-color: #0C0C0C;
  padding: 12px 32px 12px;
  border: 2px solid #0C0C0C;
  border-radius: 24px;
  font-family: 'Hellix-Bold';
  font-size: 17px;
  line-height: 20px;
  color: #F4F4F4;
  text-align: center;
  position: relative;
  z-index: 1;
  cursor: pointer;
  user-select: none;
  appearance: none;
}

.create-request-button::before {
 	content: "";
  display: block;
  position: absolute;
  background: inherit;
  border-radius: inherit;
  border: inherit;
  z-index: -1;
  top: -2px;
  bottom: -2px;
  left: -2px;
  right: -2px;

  transition: background-color 0.3s;
  animation: buttonAnimationOut 0.2s;
}

.create-request-button:hover::before {
 	transition: background-color 0.3s;
  animation: buttonAnimation 0.6s;
  animation-fill-mode: forwards;
}

@media (min-width: 320px) {
  .requests .requests-table th, .requests .requests-table td {
    border-top: none;
    padding: 16px;
  }
  
  .requests .requests-table td {
    border-top: 1px solid #D8D8D8;
  }
  
  .requests .requests-table th:first-child {
    padding: 16px;
  }
  
  .requests .requests-table td:first-child {
    padding: 16px;
  }
  
  .requests .requests-table {
    margin: 0;
  }

  .requests .requests-table .striped-list-title {
    display: inline; /* TODO : Couldn't find another way to get rid of the margin but this leads to that the whole column isn't clickable */
  }
  
  .requests .requests-table .requests-sort-symbol {
    top: 50%;
    transform: translateY(-50%);
    bottom: unset;
  }
  
  .striped-list-title:visited {
    color: unset;
  }
}
  
footer, header, nav {
  display: block;
}
  
/* Navbar styles */
  
:root {
  --viewport-height: 100vh;
  --bg-vimla-green: #50dc82;
  --bg-vimla-purple: #d4d7ff;
  --bg-vimla-purple-dark: #b3b9ff;
  --bg-vimla-almost-white: #f4f4f4;
  --bg-vimla-almost-black: #0c0c0c;
  --vimla-100vw: 100vw;
  --vimla-screen-max-width: 1500px;
  --vimla-screen-full: "min-width: var(--vimla-screen-max-width)";
  --vimla-page-width: var(--vimla-100vw);
  --vimla-page-padding: 1rem;
}

@media screen and (min-width: 1500px) {
  :root {
    --vimla-page-width: var(--vimla-screen-max-width);
    --vimla-page-padding: 1rem;
  }
}

* {
  --margin-wide-l: calc(var(--vimla-100vw)/2 - var(--vimla-page-width)/2 + var(--vimla-page-padding)*2/2);
  --margin-wide-r: calc(var(--vimla-100vw)/2 - var(--vimla-page-width)/2 + var(--vimla-page-padding)*2/2);
}

:root {
  --base-font-size: 16px;
  --font-size-1: 44px;
  --font-size-2: 32px;
  --font-size-3: 20px;
  --font-size-4: 20px;
  --font-size-5: 14px;
  --h-size-1: 40px;
  --h-size-2: 32px;
  --h-size-3: 24px;
  --h-size-4: 20px;
  --h-size-5: 16px;
}

@media screen and (min-width: 920px) {
  :root {
    --base-font-size:18px;
    --font-size-1: 48px;
    --font-size-2: 36px;
    --font-size-3: 24px;
    --font-size-4: 20px;
    --font-size-5: 16px;
    --h-size-1: 80px;
    --h-size-2: 56px;
    --h-size-3: 40px;
    --h-size-4: 32px;
    --h-size-5: 18px;
  }
}  

.Menu-hamburger {
  align-items: center;
  display: flex;
  flex: 1;
}

@media screen and (min-width: 920px) {
  .Menu-hamburger {
    display:none;
    flex: 0;
  }
}
  
.Header {
  position: sticky;
  top: 0;
  transition: all .2s ease-in-out;
  width: 100%;
  z-index: 999;
}
  
.Menu-inner {
  align-items: stretch;
  color: #0c0c0c;
  display: flex;
  margin: 0 auto;
  max-width: 1500px;
}

@media screen and (min-width: 920px) {
  .Menu-inner {
    padding: 18px 0;
  }
}
  
.Logo {
  display: inline-block;
  font-size: 0;
}

.Logo svg {
  height: 38px;
  width: auto;
}

@media screen and (min-width: 920px) {
  .Logo svg {
    height: 44px;
  }
}
  
.Menu {
  background: #fff;
  border-bottom: 1px solid hsla(0,0%,5%,.11);
  color: #0c0c0c;
  margin: 0 auto;
  padding: 11px 20px;
  position: relative;
  width: 100%;
  z-index: 9999;
}

@media screen and (min-width: 920px) {
  .Menu {
    padding:0 20px;
  }
}
  
.PrimaryNavigation {
  align-items: center;
  opacity: 0;
  position: absolute;
  transform: translateX(-100%);
  transition: transform .3s ease-out;
}

@media screen and (min-width: 920px) {
  .PrimaryNavigation {
    display:flex;
    opacity: 1;
    position: static;
    transform: none;
  }
}
  
.Mittvimla-wrapper {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
}
  
.Menu-mittvimla {
  align-items: center;
  color: #0c0c0c;
  display: flex;
  font-size: var(--font-size-5);
  font-family: 'Hellix-Bold';
  justify-content: flex-end;
}

.Menu-mittvimla span {
    display: none;
    margin-left: 12px
}

@media screen and (min-width: 920px) {
  .Menu-mittvimla span {
      display: block;
  }
}
  
.MenuButton {
  background: none;
  border: none;
  cursor: pointer;
  height: 32px;
  left: -3px;
  outline: 0 none;
  padding: 3px;
  position: relative;
  text-align: left;
  width: 32px;
  z-index: 999999;
}

@media screen and (min-width: 920px) {
  .MenuButton {
      display: none;
  }
}

.MenuButton span {
    background-color: #0c0c0c;
    border-radius: 10px;
    display: block;
    height: 2px;
    margin: 5px 0;
    transition: all .3s ease-in-out;
    width: 95%;
}

.MenuButton span:first-child {
    width: 80%;
}

.MenuButton span:nth-child(3) {
    width: 60%;
}

.MenuButton--open span:first-child,.MenuButton--open span:nth-child(3) {
    width: 100%;
}

.MenuButton--open span:first-child {
    transform: translateY(7px) rotate(45deg);
}

.MenuButton--open span:nth-child(2) {
    opacity: 0;
}

.MenuButton--open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
  
.PrimaryNavigation-inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: var(--viewport-height);
  justify-content: space-between;
  overflow-y: scroll;
  position: relative;
  width: 100%;
}

@media screen and (min-width: 920px) {
    .PrimaryNavigation-inner {
        height:auto;
        overflow: hidden;
        width: auto
    }
}

body.admin-bar .PrimaryNavigation-inner {
    padding-bottom: 50px
}

@media screen and (min-width: 920px) {
    body.admin-bar .PrimaryNavigation-inner {
        padding-bottom:0
    }
}
  
  .PrimaryNavigation-pattern-1,.PrimaryNavigation-pattern-2 {
    animation: navpattern 15s infinite alternate;
    bottom: -10%;
    display: none;
    height: 120%;
    left: -10%;
    max-width: none;
    position: fixed;
    top: -10%;
    width: 120%;
    z-index: 0
}

.PrimaryNavigation-pattern-2 {
    animation: navpattern 14s infinite alternate-reverse;
    opacity: 0
}

.PrimaryNavigation--popup .PrimaryNavigation-pattern-1,.PrimaryNavigation--popup .PrimaryNavigation-pattern-2 {
    display: block
}
  
  .PrimaryNavigation-list {
    list-style-type: none;
    margin: 0;
    padding-left: 19px;
}

.PrimaryNavigation-list li {
    color: #0c0c0c;
    display: inline-block;
    font-size: var(--font-size-5);
    font-weight: 700;
    padding: 0 16px
}

.PrimaryNavigation-list li a {
  	font-family: 'Hellix-Bold';
    border-bottom: 2px solid transparent;
    display: inline-block;
    padding-bottom: 2px;
    transition: color .25s,border-color .25s
}

.PrimaryNavigation-list li a:active,.PrimaryNavigation-list li a:focus,.PrimaryNavigation-list li a:hover {
    outline: none
}

@media screen and (min-width: 920px) {
    .PrimaryNavigation-list li a:active,.PrimaryNavigation-list li a:focus,.PrimaryNavigation-list li a:hover {
        border-bottom:2px solid #0c0c0c
    }
}

.PrimaryNavigation-list li.current-page-ancestor a,.PrimaryNavigation-list li.current_page_item a {
    border-bottom: 2px solid #0c0c0c;
    color: #0c0c0c
}
  
.Menu-inner .Logout-link-wrapper {
  color: #0c0c0c;
  font-size: var(--font-size-5);
  font-family: 'Hellix-Bold';
  padding: 0 16px;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
  
.Menu-inner .Logout-link-wrapper a:active, .Menu-inner .Logout-link-wrapper a:focus, .Menu-inner .Logout-link-wrapper a:hover {
    outline: none
}

.PrimaryNavigationOverlay {
    background: rgba(255, 255, 255, 0.8);
    bottom: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 0;
    transition: opacity .8s;
    z-index: 1
}

.PrimaryNavigation--popup {
    background: #fff;
    bottom: 0;
    left: 0;
    min-height: var(--viewport-height);
    opacity: 1;
    overflow: hidden;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(0);
    transition: transform .3s ease-in-out;
    width: 100vw;
    z-index: 99999
}

.PrimaryNavigation--popup.PrimaryNavigation--slideOut {
    transform: translateX(-100%)
}

.PrimaryNavigation--popup+.PrimaryNavigationOverlay {
    opacity: 1;
    pointer-events: auto
}

.PrimaryNavigation--popup .PrimaryNavigation-list {
    display: inline-block;
    padding-left: 0;
    padding-top: 100px;
    text-align: center
}

.PrimaryNavigation--popup .PrimaryNavigation-list li {
    animation: slideIn .2s linear both;
    animation-delay: .08s;
    display: block;
    font-size: var(--font-size-2);
    font-style: italic;
    font-weight: 800;
  	font-family: 'Hellix-Extra-Bold-Italic';
    letter-spacing: -.01em;
    line-height: 34px;
    margin-bottom: 22px;
    opacity: 0;
    overflow: hidden;
    position: relative;
    text-align: center
}

.PrimaryNavigation--popup .PrimaryNavigation-list li.current-page-ancestor a,.PrimaryNavigation--popup .PrimaryNavigation-list li.current_page_item a {
    color: #0c0c0c
}

.PrimaryNavigation--popup .PrimaryNavigation-list>li:first-child {
    animation-delay: .32s
}

.PrimaryNavigation--popup .PrimaryNavigation-list>li:nth-child(2) {
    animation-delay: .34s
}

.PrimaryNavigation--popup .PrimaryNavigation-list>li:nth-child(3) {
    animation-delay: .36s
}

.PrimaryNavigation--popup .PrimaryNavigation-list>li:nth-child(4) {
    animation-delay: .38s
}

.PrimaryNavigation--popup .PrimaryNavigation-list>li:nth-child(5) {
    animation-delay: .4s
}

.PrimaryNavigation--popup .PrimaryNavigation-list>li:nth-child(6) {
    animation-delay: .42s
}

.PrimaryNavigation--popup .PrimaryNavigation-list>li:nth-child(7) {
    animation-delay: .44s
}

.PrimaryNavigation--popup .PrimaryNavigation-list>li:nth-child(8) {
    animation-delay: .46s
}

.PrimaryNavigation--popup .PrimaryNavigation-list>li:nth-child(9) {
    animation-delay: .48s
}

.PrimaryNavigation--popup .PrimaryNavigation-list>li:nth-child(10) {
    animation-delay: .5s
}

.PrimaryNavigation--popup .PrimaryNavigation-list>li:nth-child(11) {
    animation-delay: .52s
}

.PrimaryNavigation--popup .PrimaryNavigation-list>li:nth-child(12) {
    animation-delay: .54s
}

.PrimaryNavigation--popup .PrimaryNavigation-list>li:nth-child(13) {
    animation-delay: .56s
}

/* Is .menu-item--mittVimla used anywhere? */
.PrimaryNavigation-list li.menu-item--mittVimla {
    display: inline-block;
    position: relative
}

@media screen and (min-width: 920px) {
    .PrimaryNavigation-list li.menu-item--mittVimla {
        display:none
    }
}

.PrimaryNavigation-list li.menu-item--mittVimla:before {
    /*background: url(images/icon_mittvimla_mobile.64cdee.svg) no-repeat;*/
    background-size: cover;
    content: "";
    height: 24px;
    left: 18px;
    position: absolute;
    top: 8px;
    width: 24px
}

.PrimaryNavigation-list li.menu-item--mittVimla a {
    padding-left: 40px
}
  
  .PrimaryNavigation-mobileText {
    margin-bottom: 2rem;
    z-index: 2;
    font-size: 16px;
    font-family: 'Hellix-Medium';
    font-feature-settings: 'salt' on;
}
  
  .PrimaryNavigation-mobileText strong {
    margin-bottom: 2rem;
    z-index: 2;
    font-size: 16px;
    font-family: 'Hellix-Bold';
    font-feature-settings: 'salt' on;
}

@media screen and (min-width: 920px) {
    .PrimaryNavigation-mobileText {
        display:none
    }
}

.PrimaryNavigation--popup .PrimaryNavigation-mobileText {
    animation: slideIn .3s linear both;
    animation-delay: .5s;
    opacity: 0;
}

.PrimaryNavigation--popup .PrimaryNavigation-mobileText span.emoji {
    animation: scaleIn .2s linear both;
    animation-delay: .5s;
    display: inline-block
}
  
  @keyframes slideIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}
  
  @keyframes navpattern {
  from {
    transform: scale3d(1, 1, 1) translate(5%, -5%);
    opacity: 1;
  }

  50% {
    transform: scale3d(1.14, 1.2, 1) translate(-2%, 2%);
    opacity: 0.7;
  }

  to {
    transform: scale3d(1.1, 1.1, 1.1) translate(-10%, 10%);
    opacity: 0;
  }
}
  
/*Footer styles*/
  
.Footer {
  background: #f4f4f4;
  color: #0c0c0c;
  margin: 0 auto;
  width: 100%;
}
  
.Fade--hide {
  opacity: 0;
  transform: translateY(75px)
}

.Fade--fadeUp {
  opacity: 1;
  transform: translateY(0);
  transition: transform .5s ease-in-out,opacity .5s ease-in-out
}

/*@media(prefers-reduced-motion) {
  .Fade--fadeUp {
    transition: none
  }
}*/

.Fade--show {
  opacity: 1;
  transform: translateY(0)
}
  
.Footer-wrapper {
  margin: auto;
  max-width: 1500px;
  padding: 20px;
  position: relative;
  width: 100%
}
  
.Footer-wrapper-mobile {
  display: none
}

@media screen and (max-width: 639px) {
  .Footer-wrapper-mobile {
    display:block;
    margin: 0 0 53px
  }
}
  
.Footer-mitt-vimla {
  position: absolute;
  right: 1rem;
  top: 0;
  transform: translateY(-50%)
}

.Footer-mitt-vimla a {
  display: inline-block;
  margin-left: auto
}

.Footer-mitt-vimla svg {
  height: 72px;
  width: 72px
}

@media screen and (min-width: 640px) {
  .Footer-mitt-vimla svg {
    height:88px;
    width: 88px
  }
}
  
.Footer-menu {
  column-gap: 10px;
  display: grid;
  grid-template-columns: repeat(5,1fr);
  margin: 11px auto 4px 0
}

@media screen and (min-width: 640px) {
  .Footer-menu {
    margin:24px auto 20px
  }
}
  
.Footer-menu-items {
    column-gap: 10px;
    display: grid;
    flex-direction: row;
    grid-column: 1/5;
    grid-template-columns: repeat(4,1fr);
    list-style-type: none;
    margin: 0;
    padding: 0
}

@media screen and (max-width: 639px) {
  .Footer-menu-items {
    display:flex;
    flex-direction: column
  }

  .Footer-menu-items>li {
    margin-bottom: 19px
  }

  .Footer-menu-items>li:first-child {
    padding-top: 0
  }
}

.Footer-menu-items li {
  display: block;
  flex: 1;
  font-size: 20px;
  font-family: 'Hellix-Bold';
  padding: 8px 0
}

@media screen and (min-width: 640px) {
  .Footer-menu-items li {
    display:inline-block
  }
}

.Footer-menu-items a {
  border-bottom: 2px solid transparent;
  color: inherit;
  display: inline-block;
  padding-bottom: 2px;
  transition: border-color .1s
}

.Footer-menu-items a:hover,.Footer-menu-items>li.current-menu-item>a {
  border-bottom: 2px solid #0c0c0c
}
  
.Footer .sub-menu {
  display: flex;
  flex-direction: column;
  padding: 7px 0 0
}

@media screen and (min-width: 920px) {
  .Footer .sub-menu {
    padding-top:16px
  }
}

.Footer .sub-menu li {
  font-size: 16px;
  font-family: 'Hellix-Medium';
  padding-bottom: 2px
}

.Footer .sub-menu a {
  border-bottom: 1px solid transparent
}

.Footer .sub-menu li a:hover,.Footer .sub-menu li.current-menu-item a {
  border-bottom: 1px solid #0c0c0c
}
  
.Footer-subMenu {
  align-items: center;
  column-gap: 10px;
  display: grid;
  grid-template-columns: repeat(5,1fr)
}

@media screen and (max-width: 639px) {
  .Footer-subMenu {
    align-items:unset;
    display: flex;
    flex-direction: column
  }
}

@media screen and (min-width: 640px) {
  .Footer-subMenu {
    margin-bottom:80px;
    margin-top: 63px
  }
}
  
.Footer-logo-wrapper {
  flex: 1
}

@media screen and (max-width: 639px) {
  .Footer-logo-wrapper {
    display:none
  }
}
  
.Footer-logo img {
  height: 40px;
  max-width: none;
  width: auto
}

.Footer-subMenu-items {
  display: flex;
  font-size: 16px;
  grid-column: 2/5;
  list-style-type: none;
  margin: 0;
  padding: 0
}

@media screen and (max-width: 639px) {
  .Footer-subMenu-items {
    flex-direction:column
  }
}

.Footer-subMenu-items li {
  display: inline-block;
  flex: 1;
  font-family: 'Hellix-Medium';
  margin: 5px 0
}

.Footer-subMenu-items a {
  border-bottom: 1px solid transparent;
  padding-bottom: 2px
}

.Footer-subMenu-items a:hover {
  border-bottom: 1px solid #0c0c0c
}
  
.Footer-appBanners {
  display: flex;
  flex: 1;
  flex-direction: column
}

.Footer-appBanners img {
  height: 40px;
  margin-bottom: 12px;
  width: auto
}

.Footer-appBanners a {
  font-size: 0
}

.Footer-appBanners p {
  font-size: 20px;
  font-weight: 700;
  padding: 10px 0
}
  
.Footer-appBanners p:first-child {
  margin-top: 0
}

@media screen and (max-width: 639px) {
  .Footer-appBanners {
    display:none
  }
}
  
.Footer-appBanners-mobile {
  display: none;
  margin: 40px 0 43px
}

.Footer-appBanners-mobile a {
  margin-right: 16px
}

.Footer-appBanners-mobile img {
  height: 40px;
  width: auto
}

@media screen and (max-width: 639px) {
  .Footer-appBanners-mobile {
    display: block
  }
}
  
.SocialMedia {
  flex: 1;
  max-width: 240px
}

@media screen and (max-width: 639px) {
  .SocialMedia {
    margin-bottom:40px
  }
}

.SocialMedia ul {
  list-style-type: none;
  margin: 0;
  padding: 0
}

.SocialMedia-facebook,.SocialMedia-instagram,.SocialMedia-twitter,.SocialMedia-youtube {
  display: inline-block;
  margin-right: 14px
}

.SocialMedia-facebook svg,.SocialMedia-instagram svg,.SocialMedia-twitter svg,.SocialMedia-youtube svg {
  height: 38px;
  width: 38px
}

.SocialMedia-facebook a,.SocialMedia-instagram a,.SocialMedia-twitter a,.SocialMedia-youtube a {
  display: inline-block
}

.SocialMedia-facebook path,.SocialMedia-instagram path,.SocialMedia-twitter path,.SocialMedia-youtube path {
  fill: #0c0c0c;
  transition: fill .2s
}

.SocialMedia-facebook:hover path,.SocialMedia-instagram:hover path,.SocialMedia-twitter:hover path,.SocialMedia-youtube:hover path {
  fill: #50dc82
}
  
/* Request page */

.request-details-request-page {
  padding-top: 24px;
  padding-bottom: 80px;
}
  
.request-details-request-page .request-title {
  font-family: 'Hellix-Extra-Bold-Italic';
  font-size: 24px;
  line-height: 26px;
	margin-top: 16px;
  letter-spacing: -0.01em;
  font-feature-settings: 'salt' on;
  color: #0C0C0C;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

@media(min-width: 768px) {
  .request-details-request-page .request-title {
    font-size: 40px;
    line-height: 44px;
  }
}
  
.request-details-request-page-header-description-wrapper {
  margin-bottom: 8px;
  padding-right: 0;
}

.request-details-request-page-header-description-wrapper.desktop {
  display: none;
}

.request-details-request-page-header-description-wrapper.mobile {
  display: block;
}

.request-details-request-page-header-description-wrapper.mobile .request-details-button {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  cursor: pointer;
}

.request-details-request-page-header-description-wrapper.mobile .request-details-button span {
  font-family: 'Hellix-Bold';
  font-size: 14px;
  line-height: 30px;
  color: #464646;
  margin-right: 8px;
  margin-bottom: 0;
  pointer-events: none;
}

.request-details-request-page-header-description-wrapper.mobile .request-details-button img {
  height: 7px;
  width: 7px;
  object-fit: contain;
  margin-left: 8px;
  transition: transform 0.25s;
}

.request-details-request-page-header-description-wrapper.mobile .request-details-button.open img {
  transform: rotate(-180deg);
}

.request-details-request-page-header-description-wrapper.mobile .toggleSlideElement {
  display: none;
}	

@media(min-width: 768px) {
  .request-details-request-page-header-description-wrapper.desktop {
    display: block;
  }
  
  .request-details-request-page-header-description-wrapper.mobile {
    display: none;
  }
}

@media(min-width: 640px) {
  .request-details-request-page-header-description-wrapper {
    padding-right: 32px;
  }
}
  
.request-details-request-page-header-description {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  flex-wrap: wrap;
}
  
.request-details-request-page-header-description > div {
  display: flex;
  flex-shrink: 0;
}

.request-details-request-page-header-description dt {
  font-family: 'Hellix-Bold';
  font-size: 14px;
  line-height: 30px;
  color: #464646;
  margin-right: 8px;
  margin-bottom: 0;
}
  
.request-details-request-page-header-description dd {
  font-family: 'Hellix-Medium';
  font-size: 14px;
  line-height: 30px;
  color: #464646;
  margin-right: 24px;
  margin-bottom: 0;
}

@media(min-width: 768px) {
  .request-details-request-page-header-description dt {
    font-size: 16px;
  }

  .request-details-request-page-header-description dd {
    font-size: 16px;
  }
}
  
.request-attachments-request-page dd {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
  
.comment-list-request-page {
	display: flex;
  flex-direction: column;
  width: 100%;
  padding-top: 24px;
  padding-bottom: 24px;
  border-top: 1px solid #D8D8D8;
  border-bottom: 1px solid #D8D8D8;
}
  
.comment-request-page {
	margin-bottom: 8px;
  margin-top: 8px;
}
  
.comment-agent {
  display: flex;
  justify-content: flex-start;
}
  
.comment-customer {
  display: flex;
  justify-content: flex-end;
}
 
.comment-wrapper-request-page {
  display: flex;
  align-items: flex-start;
  width: calc(100% - 16px);
	padding: 16px;
  padding-right: 24px;
  border-radius: 16px;
}

.user-avatar-request-page {
	width: 24px;
  height: 24px;
  margin-right: 16px;
}

@media(min-width: 640px) {
  .comment-wrapper-request-page {
    width: calc(100% - 16px - 16px - 24px);
    padding-right: calc(16px + 16px + 24px);
  }
}

@media(min-width: 768px) {
  .comment-wrapper-request-page {
    width: calc(100% - 24px - 16px - 48px);
    padding: 24px;
    padding-right: calc(24px + 16px + 48px);
  }
  
  .user-avatar-request-page {
    width: 48px;
    height: 48px;
  }
}
  
.comment-wrapper-agent-request-page {
	background: #EDFBF2;
}
  
.comment-wrapper-customer-request-page {
	background: #F4F5FF;
}
  
.comment-body-request-page {
	display: flex;
  flex-direction: column;
  align-items: flex-start;
}
  
.comment-meta-request-page {
	display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 16px;
}
  
.meta-author-name-request-page {
	font-family: 'Hellix-Bold';
  font-size: 16px;
  color: #0C0C0C;
  margin-bottom: 4px;
}
  
.meta-created-at-request-page {
	font-family: 'Hellix-Medium';
  font-size: 14px;
  color: #464646;
}
  
.comment-message-request-page .zd-comment {
	font-family: 'Hellix-Medium';
  font-size: 16px;
  line-height: 22px;
  color: #0C0C0C;
  word-break: break-word;
  overflow-wrap: break-word;
}

@media(min-width: 768px) {
  .comment-meta-request-page {
    margin-bottom: 24px;
  }
  
  .meta-author-name-request-page {
    font-size: 18px;
  }
  
  .meta-created-at-request-page {
    font-size: 16px;
  }
  
  .comment-message-request-page .zd-comment {
    font-size: 18px;
    line-height: 25px;
  }
}
  
.comment-message-request-page p {
  margin: 0;
}

.attachments-wrapper-request-page {
  margin-top: 16px;
}
  
.attachments-request-page {
	display: flex;
  align-items: center;
  flex-wrap: wrap;
}
  
.attachment-item-request-page {
  display: block;
	padding-left: 24px;
  margin-right: 24px;
  position: relative;
  flex-shrink: 0;
}
  
.attachment-item-request-page::before {
  content: url(/hc/theming_assets/01HZPZZB0MCRE1CPSH345AKM8C);
  width: 14px;
  position: absolute;
  top: calc(50% + 2px);
  left: 0;
  transform: translateY(-50%);
}

.attachment-item-request-page a {
  font-family: 'Hellix-Medium';
  font-size: 14px;
  line-height: 20px;
	color: #464646;
}

@media(min-width: 768px) {
  .attachment-item-request-page::before {
    width: 16px;
  }
  
  .attachment-item-request-page a {
    font-size: 16px;
    line-height: 22px;
  }
}

.comment-form-request-page {
	display: flex;
  align-items: initial;
  flex-direction: column;
  padding: 24px 0 0 0;
}

@media(min-width: 768px) {
  .comment-form-request-page {
    flex-direction: row;
    align-items: flex-start;
    padding: 32px 0 0 24px;
  }
}
  
.comment-form-user-request-page {
	display: flex;
  align-items: center;
  margin-right: 32px;
  margin-bottom: 16px;
}

@media(min-width: 768px) {
  .comment-form-user-request-page {
    margin-bottom: 0;
  }
}
  
.comment-form-user-request-page span {
	font-family: 'Hellix-Bold';
  font-size: 16px;
  margin-left: 16px;
  margin-right: 16px;
  color: #0C0C0C;
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

@media(min-width: 768px) {
  .comment-form-user-request-page span {
    font-size: 18px;
  }
}

.user-avatar-wrapper-request-page {
  position: relative;
	height: 24px;
  width: 24px;
  flex-shrink: 0;
}

@media(min-width: 768px) {
  .user-avatar-wrapper-request-page {
    height: 48px;
    width: 48px;
  }
}
  
.user-avatar-wrapper-request-page img {
	width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
  
.comment-container-request-page {
	display: flex;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  min-width: 60%;
}

.comment-container-request-page textarea {
	font-family: 'Hellix-Medium';
  font-size: 16px;
  line-height: 20px;
  color: #0C0C0C;
  background: #FFFFFF;
	border: 1px solid #D8D8D8;
  border-radius: 4px;
  resize: none;
  margin-bottom: 16px;
}

@media(min-width: 768px) {
  .comment-container-request-page textarea {
    font-size: 18px;
    line-height: 23px;
  }
}
  
.comment-form-attachments-title-request-page {
  display: inline-block;
  position: relative;
	font-family: 'Hellix-Bold';
  font-size: 16px;
  line-height: 30px;
  color: #0C0C0C;
  margin-bottom: 8px;
}
  
.comment-form-attachments-title-request-page::after {
	content: "(valfritt)";
  position: absolute;
  top: 0;
  left: calc(100% + 4px);
  transform: translateY(-10%);
  font-family: 'Hellix-Medium';
  font-size: 12px;
  color: #868686;
}

@media(min-width: 768px) {
  .comment-form-attachments-title-request-page {
    font-size: 18px;
  }

  .comment-form-attachments-title-request-page::after {
    font-size: 14px;
  }
}
  
/*.comment-attachments-request-page {
  position: relative;
	display: flex;
  flex-direction: column;
  width: 100%;
}*/
  
.request-details-request-page .upload-dropzone {
  display: flex;
	flex: 1;
  flex-shrink: 0;
  padding: 4px;
  /*padding-left: 40px;*/
  border: 1px dashed #D8D8D8; 
  border-radius: 4px;
  margin-bottom: 8px;
  width: 100%;
  justify-content: center;
}

.request-details-request-page .upload-dropzone span {
  position: relative;
  font-family: 'Hellix-Medium';
  font-size: 14px;
  color: #646464;
  padding-left: 56px;
  pointer-events: none;
}

.request-details-request-page .upload-dropzone span::before {
	content: url(/hc/theming_assets/01HZPZZQ2FNB0BWX3VX3PKH2X8);
  position: absolute;
  width: 24px;
  height: 18px;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
}

.request-details-request-page .upload-dropzone a {
	font-family: 'Hellix-Medium';
  font-size: 14px;
  color: #50DC82;
  text-decoration-line: underline;
}

@media(min-width: 768px) {
  .request-details-request-page .upload-dropzone {
    justify-content: flex-start;
  }
  
  .request-details-request-page .upload-dropzone span {
    font-size: 16px;
  }
  
  .request-details-request-page .upload-dropzone a {
    font-size: 16px;
  }
}
  
.request-details-request-page .request-attachments-pool {
	display: flex;
  flex-direction: column;
}
  

.request-details-request-page .upload-pool {
  width: 100%;
}

.request-details-request-page .upload-pool .upload-item {
  position: relative;
	display: flex;
  margin: 0;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding-left: 16px;
  border-radius: 0;
}

.request-details-request-page .upload-pool .upload-item:hover {
  background: none;
}
  
.request-details-request-page .upload-pool .upload-item .upload-link {
  margin: 0 16px 4px 8px;
  font-size: 14px;
  line-height: 16px;
  font-family: 'Hellix-Medium';
  color: #464646;
}

@media(min-width: 768px) {
  .request-details-request-page .upload-pool .upload-item .upload-link {
    margin: 0 16px 6px 8px;
    font-size: 16px;
    line-height: 18px;
  }
}
  
.request-details-request-page .upload-pool .upload-item .upload-progress {
	position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  background-color: #57da85;
}

.request-details-request-page .upload-pool .upload-item svg {
  display: none;
}
  
.request-details-request-page .upload-pool .upload-item::before {
  content: url(/hc/theming_assets/01HZPZZB0MCRE1CPSH345AKM8C);
  height: 16px;
  width: 16px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
  
.request-details-request-page .upload-pool .upload-item .upload-item-icon-spacer {
  display: none;
}
  
.request-details-request-page .upload-pool .upload-item .upload-remove {
  position: relative;
	background-color: #F4F4F4;
  padding: 4px;
  margin: 0;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
  
.request-details-request-page .upload-pool .upload-item .upload-remove svg {
  display: inline-block;
  height: 16px;
  width: 16px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.request-details-request-page .upload-pool .upload-item .upload-remove svg path {
  stroke: #0C0C0C;
}
  
.comment-form-attachments-icon-request-page {
	position: absolute;
  width: 24px;
  height: 24px;
  top: 16px;
  left: 16px;
  object-fit: contain;
}

.comment-form-controls-request-page {
  width: 100%;
	display: flex;
  flex-direction: column;
  justify-content: initial;
  align-items: center;
  margin-top: 24px;
}

.comment-form-controls-request-page .mark-as-solved-container-request-page {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-top: 1px;
  margin-bottom: 16px;
}

@media(min-width: 640px) {
  .comment-form-controls-request-page .mark-as-solved-container-request-page {
    margin-bottom: 0;
  }
}

.comment-form-controls-request-page .comment-form-submit-btn-wrapper-request-page {
  background: #0C0C0C;
  border: 2px solid #0C0C0C;
  border-radius: 24px;
  position: relative;
  z-index: 1;
  cursor: pointer;
  user-select: none;
  appearance: none;
  width: 100%;
  margin: 0;
}

.comment-form-controls-request-page .comment-form-submit-btn-request-page {
  background: none;
  border: none;
  border-radius: none;
  font-family: 'Hellix-Bold';
  color: #F4F4F4;
  font-size: 17px;
  line-height: 20px;
	text-align: center;
	color: #F4F4F4;
  min-width: unset;
  padding: 12px 32px 12px;
  padding-bottom: 14px;
  white-space: nowrap;
  width: 100%;
  z-index: 10;
  margin: 0;
}

.comment-form-controls-request-page .comment-form-submit-btn-wrapper-request-page::before {
	content: "";
  display: block;
  position: absolute;
  background: inherit;
  border-radius: inherit;
  border: inherit;
  z-index: 1;
  top: -2px;
  bottom: -2px;
  left: -2px;
  right: -2px;

  transition: background-color 0.3s;
  animation: buttonAnimationOut 0.2s;
}

.comment-form-controls-request-page .comment-form-submit-btn-wrapper-request-page:hover::before {
	transition: background-color 0.3s;
  animation: buttonAnimation 0.6s;
  animation-fill-mode: forwards;
}
  
/* TODO: Figure out how this html comes from the template api in order to style it */
.comment-form-controls-request-page input[type="checkbox"] {
	margin: 0;
  background: #FFFFFF;
	border: 1px solid #868686;
  border-radius: 4px;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
  
.comment-form-controls-request-page .mark-as-solved-request-page {
  font-family: 'Hellix-Medium';
  font-size: 16px;
  line-height: 30px;
	color: #646464;
  margin: 0;
  margin-left: 16px;
  margin-bottom: 1px;
  background: none;
  border-radius: unset;
  padding: 0;
  cursor: initial;
}

@media(min-width: 640px) {
  .comment-form-controls-request-page {
    flex-direction: row;
    justify-content: flex-end;
  }  

  .comment-form-controls-request-page .comment-form-submit-btn-wrapper-request-page {
 		width: auto;
    margin-left: 48px;
  }
}
  
/* New-request page */

.new-request-container {
  padding-top: 24px;
  padding-bottom: 80px;
}

.new-Request-title {
  font-family: 'Hellix-Extra-Bold-Italic';
  font-size: 32px;
  line-height: 35px;
  letter-spacing: -0.01em;
  font-feature-settings: 'salt' on;
  color: #0C0C0C;
  margin-top: 16px;
}
  
.new-header-description {
	font-family: 'Hellix-Medium';
  font-size: 16px;
  line-height: 22px;
  color: #0C0C0C;
}

@media(min-width: 768px) {
  .new-Request-title {
    font-size: 56px;
    line-height: 62px;
    margin-top: 24px;
  }

  .new-header-description {
    font-size: 18px;
    line-height: 25px;
  }
}
  
.new-request-form-wrapper {
	border-top: 1px solid #E8E8E8;
}
  
.request-form {
  padding-top: 32px;
  max-width: 750px;
}
  
.nesty-input {
  position: relative;
  background: #FFFFFF;
  border: 1px solid #D8D8D8;
  border-radius: 4px;
  padding: 16px;
  padding-right: 64px;
  height: unset;
  font-family: 'Hellix-Medium';
  font-size: 16px;
  line-height: 20px;
  color: #0C0C0C;
}

.nesty-input:focus-visible {
  outline-color: #50DC82;
}

@media(min-width: 768px) {
  .nesty-input {
    font-size: 18px;
    line-height: 24px;
  }
}
  
.nesty-input::after {
  content: url(/hc/theming_assets/01HZPZZA5JFEB069EDWDX2QQ3Z);
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  object-fit: contain;
  width: 20px;
  height: 20px;
}
  
.form-field {
  overflow: hidden;
}
  
.form-field label {
  position: relative;
	top: -8px;
  left: 0;
  font-family: 'Hellix-Bold';
  font-weight: unset;
  font-size: 16px;
  line-height: 30px;
  color: #0C0C0C;
  text-transform: unset;
}
  
.form-field label span {
  position: absolute;
  top: 0;
  left: calc(100% + 4px);
  color: #868686;
  font-family: 'Hellix-Medium';
  font-size: 10px;
  line-height: 30px;
  transform: translateY(-20%);
}

@media(min-width: 768px) {
  .form-field label {
    font-size: 18px;
  }

  .form-field label span {
    font-size: 12px;
  }
}
  
.form-field ~ .form-field {
	margin-top: 0;
  padding-top: 16px;
}
  
.form-field textarea {
  resize: none;
  height: 200px;
}
  
.form-field input, .form-field textarea {
  background: #FFFFFF;
  border: 1px solid #D8D8D8;
  border-radius: 4px;
  padding: 16px;
  font-family: 'Hellix-Medium';
  font-size: 16px;
  line-height: 20px;
  color: #0C0C0C;
}

@media(min-width: 768px) {
  .form-field input, .form-field textarea {
    font-size: 18px;
    line-height: 24px;
  }
}
  
.form-field input:focus, .form-field textarea:focus {
  background: #FFFFFF;
  border: 1px solid #D8D8D8;
  outline: none;
}

.form-field p {
	/*display: none;*/
}

.suggestion-list {
  background: #EDFBF2;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-top: -9px;
}

.form-field.request_description {
  margin-top: 9px;
}

.suggestion-list .searchbox {
  padding: 16px 16px 8px 16px;
}

.suggestion-list .searchbox h2 {
  font-family: 'Hellix-Bold';
  font-size: 16px;
  line-height: 30px;
  color: #0C0C0C;
  margin: 0;
  letter-spacing: unset;
  font-weight: unset;
}

.suggestion-list .searchbox .searchbox-suggestions {
  margin-top: 8px;
}

.suggestion-list .searchbox .searchbox-suggestions ul li {
  margin-bottom: 4px;
}

.suggestion-list .searchbox .searchbox-suggestions ul li a {
  font-family: 'Hellix-Medium';
  font-size: 16px;
  line-height: 22px;
  text-decoration-line: underline;
  color: #0C0C0C;
}

@media(min-width: 768px) {
  .suggestion-list .searchbox h2 {
    font-size: 18px;
  }

  .suggestion-list .searchbox .searchbox-suggestions ul li a {
    font-size: 18px;
    line-height: 25px;
  }
}

.form-field .upload-dropzone {
  display: flex;
  justify-content: center;
	flex: 1;
  flex-shrink: 0;
  padding: 4px;
  border: 1px dashed #D8D8D8; 
  border-radius: 4px;
  margin-bottom: 8px;
  position: relative;
  cursor: pointer;
}
  
.form-field .upload-dropzone span {
  position: relative;
	font-family: 'Hellix-Medium';
  font-size: 14px;
  color: #646464;
  padding-left: 56px;
  pointer-events: none;
}

.form-field .upload-dropzone span::before {
	content: url(/hc/theming_assets/01HZPZZQ2FNB0BWX3VX3PKH2X8);
  position: absolute;
  width: 24px;
  height: 18px;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
}
  
.form-field .upload-dropzone a {
	font-family: 'Hellix-Medium';
  font-size: 14px;
  color: #50DC82;
  text-decoration-line: underline;
}

@media(min-width: 768px) {
  .form-field .upload-dropzone {
    justify-content: flex-start;
  }
  
  .form-field .upload-dropzone span {
    font-size: 16px;
  }

  .form-field .upload-dropzone a {
    font-size: 16px;
  }
}
  
.form-field .request-attachments-pool {
	display: flex;
  flex-direction: column;
}
  
.form-field .upload-pool .upload-item {
	display: flex;
  margin: 0;
  align-items: center;
  width: 100%;
  background: none;
  padding-left: 16px;
  position: relative;
  border-radius: 0;
}

.form-field .upload-pool .upload-item:hover {
	background-color: none;
}
  
.form-field .upload-pool .upload-item > svg {
	display: none;
}
  
.form-field .upload-pool .upload-item::before {
	content: url(/hc/theming_assets/01HZPZZB0MCRE1CPSH345AKM8C);
  height: 14px;
  width: 14px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
  
.form-field .upload-pool .upload-item .upload-link {
  margin: 0 16px 4px 8px;
  font-size: 14px;
  line-height: 16px;
  font-family: 'Hellix-Medium';
  color: #464646;
}

@media(min-width: 768px) {
  .form-field .upload-pool .upload-item::before {
    height: 16px;
    width: 16px;
  }

  .form-field .upload-pool .upload-item .upload-link {
    font-size: 16px;
    line-height: 18px;
    margin: 0 16px 6px 8px;
  }
}
  
.form-field .upload-pool .upload-item .upload-progress {
	position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  background-color: #57da85;
}
  
.form-field .upload-pool .upload-item .upload-item-icon-spacer {
  display: none;
}
  
.form-field .upload-pool .upload-item .upload-remove {
  position: relative;
	background-color: #F4F4F4;
  padding: 4px;
  margin: 0;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
  
.form-field .upload-pool .upload-item .upload-remove svg {
	fill: #0C0C0C;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
}
  
.request-form footer {
  display: flex;
  justify-content: initial;
  margin-top: 24px;
}
  
.request-form footer input[type="submit"] {
	margin: 0;
  background: #0C0C0C;
  border: 2px solid #0C0C0C;
  border-radius: 24px;
  font-family: 'Hellix-Bold';
  font-size: 17px;
  line-height: 20px;
	text-align: center;
	color: #F4F4F4;
  min-width: unset;
  padding: 12px 32px 12px;
  padding-bottom: 14px;
  width: 100%;
  position: relative;
  z-index: 1;
  cursor: pointer;
  user-select: none;
  appearance: none;
}

.request-form footer input[type="submit"]::before {
	content: "";
  display: block;
  position: absolute;
  background: inherit;
  border-radius: inherit;
  border: inherit;
  z-index: 1000;
  top: -2px;
  bottom: -2px;
  left: -2px;
  right: -2px;

  transition: background-color 0.3s;
  animation: buttonAnimationOut 0.2s;
}

.request-form footer input[type="submit"]:hover::before {
	transition: background-color 0.3s;
  animation: buttonAnimation 0.6s;
  animation-fill-mode: forwards;
}

@media(min-width: 640px) {
  .request-form footer {
    justify-content: flex-end;
  }

  .request-form footer input[type="submit"] {
    width: auto;
  }
}
  
.nesty-panel {
  background: #FFFFFF;
	border: 1px solid #868686;
  border-radius: 4px;
  max-height: 225px;
}
  
.nesty-panel ul li:focus {
  background: #F4F4F4;
}
  
.nesty-panel ul li.nesty-selected {
  font-weight: unset;
  font-family: 'Hellix-Bold';
}
  
.nesty-panel ul li {
  font-family: 'Hellix-Medium';
  font-size: 16px;
  line-height: 20px;
  color: #646464;
  padding: 16px !important;
  background: #ffffff;
  transition: background 0.3s;
}

@media(min-width: 768px) {
  .nesty-panel ul li {
    font-size: 18px;
  	line-height: 24px;
  }
}
  
/* Logged in page */
  
.logged-in-container {
  display: flex;
  flex-direction: column;
	align-items: center;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
  
.logged-in-container .logged-in-icon {
	height: 58px;
  width: 58px;
  object-fit: contain;
}
  
.logged-in-container .logged-in-title {
  font-family: 'Hellix-Extra-Bold-Italic';
  font-size: 32px;
  line-height: 35px;
  text-align: center;
  letter-spacing: -0.01em;
  font-feature-settings: 'salt' on;
  color: #0C0C0C;
  margin: 16px 0 16px 0;
}
  
.logged-in-container .logged-in-description {
  font-family: 'Hellix-Medium';
  font-size: 16px;
  line-height: 21px;
  text-align: center;
  font-feature-settings: 'salt' on;
  color: #0C0C0C;
  margin: 0 0 48px 0;
}
  
.logged-in-container .logged-in-action-wrapper {
	display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  align-self: stretch;
}
  
.logged-in-container .logged-in-action-wrapper a {
  padding: 12px 32px 12px;
  border-radius: 24px;
  font-family: 'Hellix-Bold';
  font-size: 17px;
  line-height: 20px;
  margin-bottom: 8px;
  width: 100%;
  position: relative;
  z-index: 1;
  cursor: pointer;
  user-select: none;
  appearance: none;
}

.logged-in-container .logged-in-action-wrapper a::before {
  content: "";
  display: block;
  position: absolute;
  background: inherit;
  border-radius: inherit;
  border: inherit;
  z-index: -1;
  top: -2px;
  bottom: -2px;
  left: -2px;
  right: -2px;

  transition: background-color 0.3s;
  animation: buttonAnimationOut 0.2s;
}

.logged-in-container .logged-in-action-wrapper a:hover::before {
  transition: background-color 0.3s;
  animation: buttonAnimation 0.6s;
  animation-fill-mode: forwards;
}
  
.logged-in-container .logged-in-action-wrapper a:first-child {
  background-color: #0C0C0C;
  border: 2px solid #0C0C0C;
  color: #F4F4F4;
}

.logged-in-container .logged-in-action-wrapper a:last-child {
  background-color: #FFFFFF;
  border: 2px solid #0C0C0C;
  color: #0C0C0C;
}

@media(min-width: 640px) {
  .logged-in-container .logged-in-title {
    font-size: 56px;
    line-height: 62px;
    margin: 16px 0 32px 0;
  }
  
  .logged-in-container .logged-in-description {
    font-size: 18px;
    line-height: 23px;
    margin: 0 0 56px 0;
  }
  
  .logged-in-container .logged-in-action-wrapper {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    align-self: center;
  }
  
  .logged-in-container .logged-in-action-wrapper a {
    margin: 0 8px 8px 8px;
    width: auto;
    white-space: nowrap;
  }
}

/* Home page */

.home-page-header {
  padding: 80px;
  padding-left: 20px;
  padding-right: 20px;
  background-image: url(/hc/theming_assets/01HZPZZSX0WTXH0JPVH008FAXY);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-page-header h2 {
  font-family: 'Hellix-Extra-Bold-Italic';
  font-size: 40px;
  line-height: 44px;
  letter-spacing: -0.01em;
  font-feature-settings: 'salt' on;
  color: #0C0C0C;
  margin: 0;
  text-align: center;
}

@media(min-width: 768px) {
  .home-page-header h2 {
    font-size: 56px;
    line-height: 62px;
  }
}

.home-page-header .searchbar {
  position: relative;
  max-width: 400px;
  width: 100%;
  margin: 0;
  margin-top: 40px;
}

@media(min-width: 768px) {
  .home-page-header .searchbar {
    max-width: 450px;
  }
}

.home-page-header .searchbar input[type="search"] {
  background: #ffffff;
  -webkit-appearance: none;
  padding: 16px 64px 16px 32px;
  outline: none;
  border: 2px solid #0C0C0C;
  border-radius: 32px;
  font-family: 'Hellix-Medium';
  font-size: 16px;
  line-height: 20px;
	width: 100%;
}

@media(min-width: 768px) {
  .home-page-header .searchbar input[type="search"] {
    font-size: 18px;
    line-height: 24px;
  }
}

.home-page-header .searchbar::after {
  content: url(/hc/theming_assets/01HZPZZTAKE3C9CR8H5RMY1XTG);
  width: 24px;
  height: 24px;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.home-page-header .popular-topics {
  display: flex;
  align-items: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

.home-page-header .popular-topics .popular-topics-title {
  font-family: 'Hellix-Bold';
}

.home-page-header .popular-topics .popular-topics-subject {
  margin-left: 4px;
}

.home-page-header .popular-topics span {
  font-family: 'Hellix-Medium';
  font-size: 14px;
  line-height: 20px;
  color: #0C0C0C;
}

@media(min-width: 768px) {
  .home-page-header .popular-topics span {
    font-size: 16px;
    line-height: 23px;
  }
}

.home-page-header .popular-topics .popular-topics-subject a {
  text-decoration: underline;
}

.home-page-container .teasers {
	padding-top: 80px;
  margin: 0 auto;
  max-width: 1500px;
}

.home-page-container .teasers .teasers-title {
  font-family: 'Hellix-Extra-Bold-Italic';
  font-size: 32px;
  line-height: 35px;
  text-align: center;
  font-feature-settings: 'salt' on;
  color: #0C0C0C;
  margin: 0;
  letter-spacing: -0.01em;
}

@media(min-width: 768px) {
  .home-page-container .teasers .teasers-title {
    font-size: 40px;
    line-height: 44px;
  }
}

.home-page-container .teasers .teasers-list {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  grid-gap: 16px;
}

@media(min-width: 768px) {
  .home-page-container .teasers .teasers-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media(min-width: 1024px) {
  .home-page-container .teasers .teasers-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.home-page-container .teasers .teasers-list .teasers-list-item .TeaserItem-content {
  border: 1px solid #444F59;
  padding: 32px;
  height: 100%;
  background: url(/hc/theming_assets/01HZPZZVFE0AHFETWKFQ1C0590);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.home-page-container .teasers .teasers-list .teasers-list-item .TeaserItem-content:hover {
  border-color: #0C0C0C;
  text-decoration: none;
  background: url(/hc/theming_assets/01HZPZZVNV5N6Q7PRGHGNG0B1N);
  
}

.home-page-container .teasers .teasers-list .teasers-list-item .TeaserItem-content .TeaserItem-icon {
  margin: 0;
  max-width: unset;
  min-height: unset;
  width: 80px;
  height: auto;
}

.home-page-container .teasers .teasers-list .teasers-list-item .TeaserItem-content .TeaserItem-title {
  font-family: 'Hellix-Bold-Italic';
  color: #0C0C0C;
  font-size: 18px;
  margin: 0;
  margin-top: 8px;
}

.home-page-container .teasers .teasers-list .teasers-list-item .TeaserItem-content .TeaserItem-description {
  font-family: 'Hellix-Medium';
  color: #0C0C0C;
  font-size: 16px;
  margin: 0;
  margin-top: 8px;
}

@media(min-width: 768px) {
  .home-page-container .teasers .teasers-list .teasers-list-item .TeaserItem-content .TeaserItem-icon {
    width: 120px;
  }
  
  .home-page-container .teasers .teasers-list .teasers-list-item .TeaserItem-content .TeaserItem-title {
    font-size: 24px;
    margin-top: 16px;
  }
  
  .home-page-container .teasers .teasers-list .teasers-list-item .TeaserItem-content .TeaserItem-description {
    font-size: 18px;
    margin-top: 8px;
  }
}

.home-page-container .faq {
  padding-left: 0;
  padding-right: 0;
  padding-top: 80px;
  padding-bottom: 56px;
}

.home-page-container .faq h3 {
  font-family: 'Hellix-Extra-Bold-Italic';
  font-size: 32px;
  line-height: 35px;
  text-align: center;
  font-feature-settings: 'salt' on;
  color: #0C0C0C;
  margin: 0;
  letter-spacing: -0.01em;
}

@media(min-width: 768px) {
  .home-page-container .faq h3 {
    font-size: 40px;
    line-height: 44px;
  }
}

.home-page-container .faq .faq-list {
  margin-top: 56px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  margin: 56px auto 0 auto;
}

.home-page-container .faq .faq-list .faq-list-item {
  margin-bottom: 4px;
}

.home-page-container .faq .faq-list .faq-list-item .faq-list-item-title {
  position: relative;
  padding: 24px 64px 24px 24px;
  background: #F4F4F4;
	border-radius: 10px;
	cursor: pointer;
}

.home-page-container .faq .faq-list .faq-list-item .faq-list-item-title p {
  margin: 0;
  font-family: 'Hellix-Medium';
  font-size: 16px;
  font-feature-settings: 'salt' on;
  color: #0C0C0C;
  pointer-events: none;
}

@media(min-width: 768px) {
  .home-page-container .faq .faq-list .faq-list-item .faq-list-item-title p {
    font-size: 18px;
  }
}

.home-page-container .faq .faq-list .faq-list-item .faq-list-item-title img {
  width: 11px;
  height: 11px;
  object-fit: contain;
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.25s;
}

.home-page-container .faq .faq-list .faq-list-item .faq-list-item-title.faq-list-item-open img {
  transform: translateY(-50%) rotate(-180deg);   
}

@media(min-width: 768px) {
  .home-page-container .faq .faq-list .faq-list-item .faq-list-item-title img {
    width: 13px;
    height: 13px;
  }
}

.home-page-container .faq .faq-list .faq-list-item .faq-list-item-body {
  display: none;
 	padding: 48px 24px 24px 24px;
  margin-top: -48px; /* Hack to make j-query animation look good */
  background: #F4F4F4;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.home-page-container .faq .faq-list .faq-list-item .faq-list-item-body p {
  margin: 0;
  font-family: 'Hellix-Medium';
  font-size: 14px;
  line-height: 18px;
  font-feature-settings: 'salt' on;
  color: #0C0C0C;
}

@media(min-width: 768px) {
  .home-page-container .faq .faq-list .faq-list-item .faq-list-item-body p {
    font-size: 16px;
    line-height: 20px;
  }
}

.home-page-container .faq .faq-list .faq-list-item .faq-list-item-body .faq-list-item-link {
  margin: 32px 0 12px 0;
}

.home-page-container .faq .faq-list .faq-list-item .faq-list-item-body .faq-list-item-link a {
  background-color: #0C0C0C;
  padding: 12px 32px 12px 32px;
  border: 2px solid #0C0C0C;
  border-radius: 24px;
  font-family: 'Hellix-Bold';
  font-size: 14px;
  line-height: 20px;
  color: #F4F4F4;
  white-space: nowrap;
  position: relative;
  cursor: pointer;
  z-index: 1;
  user-select: none;
  appearance: none;
}

.home-page-container .faq .faq-list .faq-list-item .faq-list-item-body .faq-list-item-link a::before {
  content: "";
  display: block;
  position: absolute;
  background: inherit;
  border-radius: inherit;
  border: inherit;
  z-index: -1;
  top: -2px;
  bottom: -2px;
  left: -2px;
  right: -2px;

  transition: background-color 0.3s;
  animation: buttonAnimationOut 0.2s;
}
  
.home-page-container .faq .faq-list .faq-list-item .faq-list-item-body .faq-list-item-link a:hover::before {
  transition: background-color 0.3s;
  animation: buttonAnimation 0.6s;
  animation-fill-mode: forwards;
}

.home-page-container.contact-us {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 40px;
  padding-bottom: 160px;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.2) 48.44%, rgba(255, 255, 255, 0.7) 100%), linear-gradient(0deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(/hc/theming_assets/01HZPZZSX0WTXH0JPVH008FAXY);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media(min-width: 480px) {
  .home-page-container.contact-us {
    padding-left: 80px;
    padding-right: 80px;
    padding-top: 40px;
    padding-bottom: 160px;
  }
}

@media(min-width: 768px) {
  .home-page-container.contact-us {
    padding-left: 80px;
    padding-right: 80px;
    padding-top: 80px;
    padding-bottom: 160px;
  }
}

.home-page-container.contact-us h3 {
  font-family: 'Hellix-Extra-Bold-Italic';
  font-size: 32px;
  line-height: 35px;
  text-align: center;
  font-feature-settings: 'salt' on;
  color: #0C0C0C;
  margin: 0;
  letter-spacing: -0.01em;
}

@media(min-width: 768px) {
  .home-page-container.contact-us h3 {
    font-size: 40px;
    line-height: 44px;
  }
}

.home-page-container.contact-us p {
  font-family: 'Hellix-Medium';
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  font-feature-settings: 'salt' on;
  color: #0C0C0C;
  margin: 0;
  margin-top: 16px;
}

@media(min-width: 768px) {
  .home-page-container.contact-us p {
    font-size: 18px;
    line-height: 23px;
  }
}

.home-page-container.contact-us a {
  background-color: #0C0C0C;
  padding: 12px 32px 12px;
  border: 2px solid #0C0C0C;
  border-radius: 24px;
  font-family: 'Hellix-Bold';
  font-size: 17px;
  line-height: 20px;
  color: #F4F4F4;
  text-align: center;
  position: relative;
  z-index: 1;
  cursor: pointer;
  user-select: none;
  appearance: none;
  margin-top: 40px;
  width: 100%;
}

.home-page-container.contact-us a::before {
 	content: "";
  display: block;
  position: absolute;
  background: inherit;
  border-radius: inherit;
  border: inherit;
  z-index: -1;
  top: -2px;
  bottom: -2px;
  left: -2px;
  right: -2px;

  transition: background-color 0.3s;
  animation: buttonAnimationOut 0.2s;
}

.home-page-container.contact-us a:hover::before {
 	transition: background-color 0.3s;
  animation: buttonAnimation 0.6s;
  animation-fill-mode: forwards;
}

@media(min-width: 640px) {
  .home-page-container.contact-us a {
  	width: auto;
  }
}
  
/* Misc */
  
.horizontal-padding {
  padding-left: 20px;
  padding-right: 20px;
}
  
.breadcrumbs {
  display: none;
  padding: 0;
  margin: 0;
}

@media(min-width: 768px) {
  .breadcrumbs {
    display: unset;
  }
}
  
.breadcrumbs li {
  font-family: 'Hellix-Medium';
  font-size: 12px;
  line-height: 30px;
  color: #0C0C0C;
}
  
.breadcrumbs li a {
  font-weight: unset;
}

.breadcrumbs li + li::before {
  content: url(/hc/theming_assets/01HZPZZAABKCKESPFF8DFQ3K0W);
  height: 7px;
  width: 7px;
  margin: 0 8px;
}
  
.breadcrumbs li:first-child::before {
  content: "";
  height: 0;
  width: 0;
  margin: 0;
}

.status-label {
 	font-family: 'Hellix-Bold';
  font-size: 12px;
  line-height: 20px;
  border-radius: 24px;
  padding: 2px 8px 2px;
  background-color: #464646;
  color: #F4F4F4;
  text-transform: initial;
}

.status-label-open {
  background-color: #50DC82;
  color: #0C0C0C;
}

/* TODO: Make sure this doesn't break other page because this element might be imported on 		multiple pages */
.Page-content {
  background-color: white;
}