/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 0px 0px;
  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: transparent;
  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: #ff9800; }

.hamburger-box {
  width: 30px;
  height: 20px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 30px;
    height: 4px;
    background-color: #ff9800;
    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: -8px; }
  .hamburger-inner::after {
    bottom: -8px; }

/*
 * 3DX
 */
.hamburger--3dx .hamburger-box {
  perspective: 60px; }
.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, 8px, 0) rotate(45deg); }
  .hamburger--3dx.is-active .hamburger-inner::after {
    transform: translate3d(0, -8px, 0) rotate(-45deg); }

/*
 * 3DX Reverse
 */
.hamburger--3dx-r .hamburger-box {
  perspective: 60px; }
.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, 8px, 0) rotate(45deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -8px, 0) rotate(-45deg); }

/*
 * 3DY
 */
.hamburger--3dy .hamburger-box {
  perspective: 60px; }
.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, 8px, 0) rotate(45deg); }
  .hamburger--3dy.is-active .hamburger-inner::after {
    transform: translate3d(0, -8px, 0) rotate(-45deg); }

/*
 * 3DY Reverse
 */
.hamburger--3dy-r .hamburger-box {
  perspective: 60px; }
.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, 8px, 0) rotate(45deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -8px, 0) rotate(-45deg); }

/*
 * 3DXY
 */
.hamburger--3dxy .hamburger-box {
  perspective: 60px; }
.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, 8px, 0) rotate(45deg); }
  .hamburger--3dxy.is-active .hamburger-inner::after {
    transform: translate3d(0, -8px, 0) rotate(-45deg); }

/*
 * 3DXY Reverse
 */
.hamburger--3dxy-r .hamburger-box {
  perspective: 60px; }
.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, 8px, 0) rotate(45deg); }
  .hamburger--3dxy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -8px, 0) rotate(-45deg); }

/*
 * Arrow
 */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-6px, 0, 0) rotate(-45deg) scale(0.7, 1); }
.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-6px, 0, 0) rotate(45deg) scale(0.7, 1); }

/*
 * Arrow Right
 */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(6px, 0, 0) rotate(45deg) scale(0.7, 1); }
.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(6px, 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(-6px, -7.5px, 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(-6px, 7.5px, 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(6px, -7.5px, 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(6px, 7.5px, 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: -16px;
    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, -8px, 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: -16px;
    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, -8px, 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: 8px;
    transition: opacity 0.125s 0.275s ease; }
  .hamburger--elastic .hamburger-inner::after {
    top: 16px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 8px, 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, -16px, 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: 8px;
    transition: opacity 0.125s 0.275s ease; }
  .hamburger--elastic-r .hamburger-inner::after {
    top: 16px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 8px, 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, -16px, 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: 8px;
      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: -60px;
      top: -60px;
      transform: translate3d(60px, 60px, 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: -60px;
      top: -60px;
      transform: translate3d(-60px, 60px, 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: 8px;
      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: -60px;
      top: 60px;
      transform: translate3d(60px, -60px, 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: -60px;
      top: 60px;
      transform: translate3d(-60px, -60px, 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: 8px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s; }
  .hamburger--slider .hamburger-inner::after {
    top: 16px; }
.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 8px, 0) rotate(45deg); }
  .hamburger--slider.is-active .hamburger-inner::before {
    transform: rotate(-45deg) translate3d(-4.28571px, -4px, 0);
    opacity: 0; }
  .hamburger--slider.is-active .hamburger-inner::after {
    transform: translate3d(0, -16px, 0) rotate(-90deg); }

/*
 * Slider Reverse
 */
.hamburger--slider-r .hamburger-inner {
  top: 2px; }
  .hamburger--slider-r .hamburger-inner::before {
    top: 8px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s; }
  .hamburger--slider-r .hamburger-inner::after {
    top: 16px; }
.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 8px, 0) rotate(-45deg); }
  .hamburger--slider-r.is-active .hamburger-inner::before {
    transform: rotate(45deg) translate3d(4.28571px, -4px, 0);
    opacity: 0; }
  .hamburger--slider-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -16px, 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: 8px;
    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: 16px;
    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, 8px, 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, 8px, 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: -16px;
    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, -8px, 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); }

.action-link {
  font-weight: bold;
  background: #ecf0f1;
}

@font-face {
  font-family: "TrebuchetMS";
  src: url("/include/fonts/trebuchet-ms/trebuc.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }
* {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
  font-family: "TrebuchetMS", Arial, sans-serif;
  text-decoration: none;
  color: #000; }

html {
  max-width: 100vw;
  background: #eee; }

body {
  text-align: left;
  max-width: 1200px;
  box-shadow: 0px 0 20px 0 rgba(0, 0, 0, 0.05);
  margin: 0 auto; }

.content {
  text-align: center; }

section.padding {
  padding: 2em; }
  @media screen and (max-width: 700px) {
    section.padding {
      padding: 1em; } }

div.card {
  margin: 2em 0; }
  @media screen and (max-width: 1100px) {
    div.card {
      margin: 1em 0; }

    div.card-body {
      overflow-x: scroll;
      } }

table {
  width: 100%;
  font-size: 1.1em;
  background: #fff; }

table th {
  background: #ff9800;
  color: #222;
  padding: .3em .5em; }
table .light th {
  background: #ddd;
  color: #222;
  padding: .3em .5em; }
table td {
  padding: .4em .5em; }
  @media screen and (max-width: 600px) {
    table td {
      width: 100% !important; } }
table tr:first-child {
  background: #eee !important; }
table tr:nth-child(2n+1) {
  background: #f7f7f7; }
table tr.disabled {
  opacity: 0.4; }
table td a {
  color: #ff9800; }

.table-checkbox {
  display: flex;
  align-items: center;
  justify-content: flex-start; }

form {
  text-align: left; }

a:hover {
  text-decoration: underline;
  color: #ff9800; }

.invoice_status {
  padding: 2px 10px;
  border-radius: 7px; }

.dot {
  height: 12px;
  width: 12px;
  background-color: #ddd;
  border-radius: 50%;
  display: inline-block;
  margin-right: 4px; }

.bg-orange {
  background-color: #f1c40f;
  color: #fff; }

.bg-green {
  background-color: #27ae60;
  color: #fff; }

.bg-red {
  background-color: #e74c3c;
  color: #fff; }

.btn-primary {
  color: #fff;
  background-color: #ff9800;
  border-color: #ff9800; }
  .btn-primary:hover {
    background-color: #eb8c00;
    border-color: #eb8c00; }
  .btn-primary:active {
    background-color: #e08600 !important;
    border-color: #e08600 !important; }

.btn-default {
  background: #ddd;
  color: #000; }
  .btn-default:hover {
    background: lightgray;
    color: #000; }

.hamburger-wrapper {
  display: flex;
  margin-top: 7px;
  margin-right: 1rem; }
  @media screen and (min-width: 1100px) {
    .hamburger-wrapper {
      display: none; } }
  .hamburger-wrapper .hamburger {
    outline: none !important; }

.shown {
  visibility: visible !important;
  height: auto !important;
  opacity: 1 !important;
  transition: 0.2s all ease; }

.final-step #check-forms input[type="text"],
.final-step #check-forms input[type="email"],
.final-step #check-forms input[type="phone"],
.final-step #check-forms select {
  background-color: transparent;
  border: none; }

a {
  color: #ff9800; }

.fa-spinner {
  animation: spin 0.5s infinite linear;
  color: #333 !important; }

@-moz-keyframes spin {
  from {
    -moz-transform: rotate(0deg); }
  to {
    -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg); } }
@keyframes spin {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-content: space-between;
  -ms-flex-line-pack: justify;
  align-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

input, textarea {
  box-shadow: none !important;
  -webkit-appearance: none !important;
  height: 2rem;
  padding: 0 0.35em;
  font-size: 16px;
  border: 1px solid #eee;
  color: #555;
  width: 100%;
  box-sizing: border-box;
  outline: none;
  border: 1px solid transparent;
  box-sizing: border-box;
  border: 1px solid #ccc; }

textarea {
  height: auto;
  border-radius: 0.25rem; }

input:focus {
  border: 1px solid #bbb; }

input[type="checkbox"] {
  width: 16px !important;
  height: 16px !important;
  cursor: pointer;
  padding: 0 !important;
  border: 1px solid #ccc; }

input[type="checkbox"]:checked {
  background: #111;
  color: #fff;
  background: url("../../img/parts/checkbox.png");
  background-size: cover;
  background-position: center; }

input[type="checkbox"]:not(:checked) {
  background: #fff;
  border: 2px solid #888;
 }

input[type="checkbox"]:disabled {
  background: #fff;
  border: 1px solid #eee !important; }

input[type="range"] {
  background: none;
  border: none; }

textarea {
  box-shadow: none !important;
  -webkit-appearance: none !important;
  color: #555;
  width: 100%;
  box-sizing: border-box;
  outline: none; }

textarea:focus {
  border: 1px solid #bbb; }

a {
  white-space: nowrap; }

.select-appointment {
  width: 16px; }

.form-part {
  margin: 1em auto;
}

.form-part-separator {
  display: block;
  font-weight: bold;
  background: #eee;
  width: 100%;
  margin: 1em 0 2em 0;
  padding: 1em;
  text-align: center;
  border-radius: 8px;
}

.dynamic-form {
  padding: 1em;
  text-align: center;
}

.dynamic-form .form-group {

}

.child-question {
  visibility: hidden;
}

.answer-prefilled {
  visibility: visible;
}

.about-participant {
  padding: 2em;
  text-align: center;
}

.about-participant > .row {
  text-align: left;
  margin: 1em auto;
}

.about-participant > .row > .part {
  text-align: center;
  padding: 1em 0;
}


.given-answer {
  border: 1px solid #ccc;
  border-radius: 8px;
  margin: .4em auto;
}

.given-answer > .question {
  background: #ddd;
  font-weight: bold;
  padding: 2px 8px;
}

.given-answer > .answer {
  padding: 2px 8px;
}

.given-answer > .answer > .no-answer {
  color: #aaa;
}

h2, h3, h4, h5 {
  font-family: "TrebuchetMS";
  word-break: break-word; }

h1 {
  font-weight: normal;
  font-size: 50px;
  font-family: "TrebuchetMS";
  color: #333; }

h2 {
  font-weight: bold;
  font-size: 26px;
  font-family: "TrebuchetMS";
  color: #333; }

h3 {
  font-size: 18px;
  line-height: 18px;
  font-weight: bold;
  color: #444; }

h4 {
  font-weight: normal;
  font-size: 16px; }

h5 {
  font-weight: normal; }

p, span {
  font-size: 18px;
  color: #444;
  line-height: 1.5em; }

label {
  display: block;
  height: 2rem;
  line-height: 2rem;
  padding: 0 0.5em;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
  color: #555; }

select {
  height: 2rem;
  width: 100%;
  font-size: 16px; }

.select-container {
  display: flex;
  height: 2rem;
  align-items: center; }

pre {
  display: none;
  position: relative;
  background: #eee;
  border: 1px solid #ccc;
  text-align: left;
  font-family: monospace;
  padding: 0.5rem;
  border-radius: 0.2rem;
  word-wrap: break-word; }

.container-wrapper {
  background: #fff;
  max-width: 100%; }

#overlay {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 19; }

.clearfix {
  width: 100%;
  clear: both; }

nav {
  height: 4.5rem;
  background: #fff;
  display: flex;
  vertical-align: center;
  justify-content: space-between;
  border-bottom: 1px solid transparent;
  max-width: 100vw;
  border-bottom: 1px solid #eee; }
  @media screen and (max-width: 1100px) {
    nav {
      display: block;
      height: auto; } }
  nav > ul {
    display: flex;
    box-sizing: border-box;
    position: relative;
    margin-bottom: 0 !important; }
    @media screen and (max-width: 1100px) {
      nav > ul {
        width: 100vw;
        float: none !important;
        display: block; } }
    nav > ul > li {
      display: inline-block;
      overflow: visible; }
      nav > ul > li > a {
        display: inline-block;
        box-sizing: border-box;
        height: 4.5rem;
        line-height: 4.5rem;
        padding: 0 1.5rem;
        font-size: 16px;
        color: #111;
        text-decoration: none; }
        nav > ul > li > a img {
          height: 100%;
          background-color: #fff; }
        nav > ul > li > a:hover {
          text-decoration: none;
          color: #ff9800; }
      nav > ul > li:hover > .sub-menu {
        display: block; }
      nav > ul > li .sub-menu {
        display: none;
        position: absolute;
        top: 3.5rem;
        background: #fff;
        width: 14rem;
        z-index: 20;
        border: 1px solid transparent;
        box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.1);
        border: 1px solid #eee;
        border-radius: 0.25rem; }
        @media screen and (max-width: 605px) {
          nav > ul > li .sub-menu {
            border-top: 1px solid #eee;
            width: 90vw;
            left: 5vw;
            top: 3rem;
            box-sizing: border-box; } }
        nav > ul > li .sub-menu li {
          list-style: none;
          width: 100%; }
          @media screen and (max-width: 605px) {
            nav > ul > li .sub-menu li {
              border-bottom: 1px solid #eee; } }
          nav > ul > li .sub-menu li a {
            display: inline-block;
            box-sizing: border-box;
            width: 100%;
            height: 3rem;
            line-height: 3rem;
            padding: 0 1.5rem;
            font-size: 16px;
            color: #666;
            text-align: left;
            text-decoration: none; }
            nav > ul > li .sub-menu li a:hover {
              color: #ff9800; }
    nav > ul .nav-logo {
      vertical-align: top;
      background: #fff; }
      nav > ul .nav-logo li {
        padding: 0 0rem;
        border-left: none; }
      nav > ul .nav-logo img {
        height: 80%; }
    @media screen and (max-width: 1100px) {
      nav > ul .nav-search {
        flex-grow: 1;
        display: flex;
        justify-content: flex-end; } }
    @media screen and (max-width: 700px) {
      nav > ul .nav-search {
        display: none; } }
    nav > ul .nav-search form {
      padding-left: 1rem;
      width: 18rem;
      height: 4.5rem;
      display: flex;
      vertical-align: center;
      align-items: center;
      padding: 0 1rem;
      position: relative; }
      @media screen and (max-width: 1100px) {
        nav > ul .nav-search form {
          width: 100%;
          max-width: 20rem; } }
      nav > ul .nav-search form i {
        height: 2.5rem;
        line-height: 2.5rem;
        width: 2rem;
        color: #333;
        font-size: 15px;
        position: absolute;
        top: 1rem;
        left: 2.2rem;
        z-index: 10; }
      nav > ul .nav-search form input {
        background: #eee;
        height: 2.5rem;
        border: none;
        border-radius: 0;
        font-size: 16px;
        padding-left: 2rem;
        margin-left: 0.5rem;
        border-radius: 1.5rem; }
        @media screen and (max-width: 1100px) {
          nav > ul .nav-search form input {
            padding-left: 2.5rem; } }
  nav .nav-left {
    float: left;
    text-align: left;
    display: flex; }
    @media screen and (max-width: 1100px) {
      nav .nav-left {
        padding: 0 !important;
        float: none;
        text-align: center;
        display: flex;
        justify-content: space-between; }
        nav .nav-left .hamburger-wrapper {
          margin-right: 0.5rem !important; }
        nav .nav-left > li {
          border: none !important; }
          nav .nav-left > li:first-of-type {
            max-width: 40%; }
          nav .nav-left > li a, nav .nav-left > li form {
            padding: 0 0.5rem; }
          nav .nav-left > li a {
            padding-right: 0; }
          nav .nav-left > li i {
            margin-left: -12px; } }
    @media screen and (max-width: 700px) {
      nav .nav-left form {
        padding: 0; } }
  nav .nav-right {
    display: flex;
    align-items: center;
    justify-content: center; }
    @media screen and (max-width: 1100px) {
      nav .nav-right {
        justify-content: center;
        flex-wrap: wrap;
        visibility: hidden;
        height: 0;
        opacity: 0;
        transition: 0.2s all ease; }
        nav .nav-right ul {
          padding: 0; }
          nav .nav-right ul li {
            padding: 0; }
        nav .nav-right a {
          padding: 0 0.75rem;
          height: 3rem;
          line-height: 3rem; } }
    @media screen and (max-width: 600px) {
      nav .nav-right {
        min-width: 100vw; }
        nav .nav-right > li {
          border: none !important; } }

.current-user {
  background: #ff9800;
  padding: .4em 1em;
  color: #fff;
  font-weight: bold;
  text-align: right; }
  .current-user a {
    color: #fff;
    font-size: 1.2em; }

.description {
  text-align: left;
  background-color: rgba(255, 255, 255, 0);
  background-size: cover;
  background-position: center;
  padding: 2rem;
  overflow: auto; }
  .description h1 {
    padding-bottom: 2rem;
    font-size: 36px;
    color: #fff;
    color: inherit; }
  .description p {
    line-height: 1.5em;
    text-align: justify;
    font-size: 18px;
    opacity: 0.8;
    color: inherit; }
  .description h2 {
    padding: 0.5em 0;
    color: #fff; }
  .description ul {
    padding-left: 2em; }
    .description ul li {
      line-height: 1.5em;
      height: 1.5em;
      color: #fff; }
  .description a {
    color: #fff;
    opacity: 0.8; }
    .description a:hover {
      text-decoration: underline; }
  .description h3,
  .description h4,
  .description h5,
  .description h6 {
    color: inherit; }
  .description b {
    color: inherit; }
  .description i {
    color: inherit; }
  .description small, div, b, blockquote {
    color: inherit; }

.faq ul {
  padding-left: 2em; }
  .faq ul li {
    line-height: 1.5em;
    height: 1.5em;
    color: #333; }

#header-image {
  margin-bottom: 1.5rem !important;
  border-top: 2px solid #fff;
  width: 100%;
  max-width: inherit;
  margin: 0 auto;
  background-size: cover;
  border-bottom: 1px solid #eee; }
  #header-image iframe {
    width: 100%;
    height: 75vh;
    display: block; }
    @media screen and (max-width: 1000px) {
      #header-image iframe {
        height: 65vh; } }
    @media screen and (max-width: 700px) {
      #header-image iframe {
        height: 40vh; } }
  #header-image .container {
    position: absolute;
    bottom: 1.5rem;
    left: 0;
    right: 0;
    width: 1050px; }
    @media screen and (max-width: 1050px) {
      #header-image .container {
        width: 100%;
        max-height: 50vh; } }
    #header-image .container span {
      font-size: 12em;
      color: #616161;
      text-align: right;
      display: block;
      /* font-family: 'Trebuchet MS', Helvetica, sans-serif; */
      font-family: 'Open Sans', Helvetica, sans-serif;
      mix-blend-mode: difference; }
      @media screen and (max-width: 1050px) {
        #header-image .container span {
          font-size: 18vw; } }

.index {
  overflow: auto;
  padding-bottom: 2rem; }
  .index h1 {
    font-family: "Playfair Display"; }
  .index h4 {
    width: 100%;
    margin: 0;
    padding: 0 0.5rem;
    box-sizing: border-box; }
    .index h4 a {
      width: 100%;
      box-sizing: border-box;
      margin: 2rem 0 0;
      background: #f7f7f7;
      padding: 1rem 0.5rem;
      text-align: left;
      display: inline-block;
      color: #888;
      transition: 0.1s all ease; }
      .index h4 a:hover {
        transition: 0.1s all ease;
        background: #f0f0f0; }
  .index .category > a {
    padding: 0;
    margin: 1rem 0;
    display: block; }
    .index .category > a > h2 {
      display: inline-block;
      color: #222;
      font-family: "Playfair Display";
      font-size: 40px;
      margin: 0;
      padding-left: 1rem;
      box-sizing: border-box; }
      @media (max-width: 800px) {
        .index .category > a > h2 {
          font-size: 35px; } }
      @media (max-width: 600px) {
        .index .category > a > h2 {
          font-size: 30px; } }
    .index .category > a:hover h2 {
      text-decoration: underline; }
  .index .category .courses {
    width: 100%;
    display: flex;
    flex-wrap: wrap; }
    .index .category .courses .course-wrapper {
      box-sizing: border-box;
      width: calc(100%/3);
      padding: 1rem; }
      @media (max-width: 800px) {
        .index .category .courses .course-wrapper {
          padding: 0.5rem;
          padding-bottom: 0; } }
      @media screen and (max-width: 800px) {
        .index .category .courses .course-wrapper {
          width: calc(100% / 2); } }
      @media screen and (max-width: 600px) {
        .index .category .courses .course-wrapper {
          width: 100%; } }
      .index .category .courses .course-wrapper > a {
        width: 100%;
        position: relative;
        display: block; }
        .index .category .courses .course-wrapper > a .image-wrapper {
          min-height: calc(650px / 3.5);
          height: calc(650px / 3.5);
          background: #fff;
          border-radius: 0.25rem;
          margin-bottom: 0.5rem;
          position: relative;
          transition: 0.1s all ease; }
          .image-wrapper > .category-label {
            position: absolute;
            top: 10px;
            right: 0;
            color: #fff;
            padding: 2px 4px 2px 8px;
            border-radius: 6px 0px 0px 6px;
            font-size: 13px;
          }
        .index .category .courses .course-wrapper > a:hover {
          text-decoration: none !important; }
          .index .category .courses .course-wrapper > a:hover .image-wrapper {
            box-shadow: 0 20px 30px -20px rgba(0, 0, 0, 0.75); }
        .index .category .courses .course-wrapper > a .image {
          background-size: cover;
          background-position-x: center;
          position: relative;
          z-index: 0;
          width: 100%;
          min-height: 101%;
          opacity: 0.98;
          border-radius: 1rem 0 1rem 0; }
          @media screen and (max-width: 800px) {
            .index .category .courses .course-wrapper > a .image {
              height: calc(100vw/3); } }
        .index .category .courses .course-wrapper > a .course-info {
          text-align: left;
          position: relative;
          z-index: 0;
          margin-bottom: 1.5rem;
          padding-left: 0.25rem; }
          @media (max-width: 800px) {
            .index .category .courses .course-wrapper > a .course-info {
              margin-bottom: 1rem; } }
          @media (max-width: 600px) {
            .index .category .courses .course-wrapper > a .course-info {
              margin-bottom: 0.75rem; } }
          .index .category .courses .course-wrapper > a .course-info .info-title {
            max-width: 100%;
            color: #333;
            font-weight: bold;
            font-size: 20px;
            white-space: normal; }
            @media screen and (max-width: 800px) {
              .index .category .courses .course-wrapper > a .course-info .info-title {
                font-size: 18px; } }
            @media screen and (max-width: 600px) {
              .index .category .courses .course-wrapper > a .course-info .info-title {
                font-size: 17px; } }
          .index .category .courses .course-wrapper > a .course-info .info-subtitle {
            max-width: 100%;
            font-size: 16px;
            color: #666;
            white-space: normal; }
            @media screen and (max-width: 800px) {
              .index .category .courses .course-wrapper > a .course-info .info-subtitle {
                font-size: 15px; } }
            @media screen and (max-width: 600px) {
              .index .category .courses .course-wrapper > a .course-info .info-subtitle {
                font-size: 15px; } }

.category-info {
  margin-bottom: 4rem;
  box-shadow: 0 40px 30px -40px rgba(0, 0, 0, 0.15); }
  @media (max-width: 1200px) {
    .category-info {
      margin-bottom: 1rem; } }
  .category-info .description {
    text-align: center;
    color: inherit; }
    @media screen and (max-width: 800px) {
      .category-info .description {
        padding: 1rem; } }
    .category-info .description a {
      display: block;
      color: inherit;
      padding: 0; }
    .category-info .description h1 {
      font-size: 50px !important;
      padding: 0.75em 0 1em;
      color: inherit; }
      @media screen and (max-width: 800px) {
        .category-info .description h1 {
          font-size: 40px !important; } }
      @media screen and (max-width: 600px) {
        .category-info .description h1 {
          font-size: 30px !important; } }
    .category-info .description p, .category-info .description span {
      color: inherit; }
      @media screen and (max-width: 800px) {
        .category-info .description p {
          font-size: 16px; } }
      .category-info .description p a {
        display: inline; }
      .category-info .description p b {
        color: inherit; }
  .category-info .category-carer {
    text-align: center; }
    .category-info .category-carer img {
      width: 50px; }
    .category-info .category-carer a, .category-info .category-carer p {
      color: inherit; }

.conditions h2 {
  margin-top: 3em;
  margin-bottom: 1em; }
.conditions h3 {
  margin-top: 3em;
  margin-bottom: 1em;
  font-size: 20px; }
.conditions ul {
  padding: 0 2em;
  list-style-type: initial; }
.conditions ol {
  padding: 0 2em;
  list-style-type: decimal; }

.course h2 {
  margin: 1rem 0; }
.course .header {
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto; }
  .course .header img {
    height: 72vh;
    margin: 0 auto;
    display: block;
    box-shadow: 0 20px 20px -10px rgba(0, 0, 0, 0.3);
    margin: 0;
    z-index: 1; }
    @media screen and (max-width: 1100px) {
      .course .header img {
        height: 55vh; } }
    @media screen and (max-width: 900px) {
      .course .header img {
        width: 100%;
        height: auto; } }
    .course .header img:not(:last-of-type) {
      margin-right: 0; }
  .course .header #img-background {
    position: absolute;
    top: -2rem;
    left: -2rem;
    right: -2rem;
    bottom: -2rem;
    filter: blur(20px);
    width: 120%;
    height: 120%;
    z-index: 0; }
.course .title, .course .course-title {
  margin: 1.75rem 0; }
  .course .title .title-text, .course .course-title .title-text {
    text-align: center; }
  .course .title .course-category, .course .course-title .course-category {
    display: flex;
    align-items: center;
    justify-content: flex-end; }
  .course .title h1, .course .course-title h1 {
    text-align: center;
    font-size: 35px;
    margin: 0.5rem 0;
    font-family: "Playfair Display"; }
    @media screen and (max-width: 700px) {
      .course .title h1, .course .course-title h1 {
        font-size: 35px; } }
    @media screen and (max-width: 600px) {
      .course .title h1, .course .course-title h1 {
        font-size: 30px; } }
  @media screen and (max-width: 600px) {
    .course .title h2, .course .course-title h2 {
      font-size: 20px; } }
  .course .title h4, .course .course-title h4 {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1ex;
    padding: 0.4em 0.65em;
    border-radius: 2em;
    font-family: "TrebuchetMS";
    display: inline-block;
    background: #333;
    margin: 0 auto;
    margin-top: 0.15rem; }
    .course .title h4 a, .course .course-title h4 a {
      color: #fff;
      text-decoration: none; }
    @media screen and (max-width: 600px) {
      .course .title h4, .course .course-title h4 {
        font-size: 14px; } }
.course .course-title {
  margin: 0.75rem 0; }
  .course .course-title h1 {
    text-align: left;
    font-weight: bold; }
  .course .course-title .course-category h4 {
    text-align: right;
    justify-content: flex-end;
    margin: 0; }
    .course .course-title .course-category h4 a:hover::after {
      margin-left: 0.25em;
      opacity: 1;
      transition: 0.2s all ease; }
    .course .course-title .course-category h4 a:after {
      margin-left: -1em;
      opacity: 0;
      font-family: "Font Awesome 5 Free";
      content: "\f061";
      transition: 0.2s all ease; }
.course .course-description {
  background-color: white;
  background-image: linear-gradient(to bottom, #f7f7f7, white) !important;
  overflow: auto; }
  .course .course-description .col-sm-6 p b {
    width: 100%;
    display: block;
    text-transform: uppercase; }
  .course .course-description .col-sm-6 > h2:first-of-type {
    margin-top: 2rem; }
  .course .course-description .card-header > *:last-of-type {
    margin-bottom: 0; }
  .course .course-description .card-body > *:last-of-type {
    margin-bottom: 0; }
.course .appointments {
  background-color: white;
  background-image: linear-gradient(to bottom, #f7f7f7, white) !important;
  border-top: transparent;
  padding: 1rem;
  box-sizing: border-box;
  padding-bottom: 4rem; }
  @media screen and (max-width: 700px) {
    .course .appointments {
      padding: 0rem; } }
  .course .appointments .carer-img {
    height: 26px; }
  .course .appointments h2 {
    padding: 1rem 0;
    padding-top: 0;
    border-bottom: none; }
    @media screen and (max-width: 700px) {
      .course .appointments h2 {
        padding: 0rem; } }
  .course .appointments .table-wrapper {
    overflow: hidden;
    border-radius: 0.2rem;
    margin-bottom: 1.5rem;
    border: 1px solid #ddd; }
    .course .appointments .table-wrapper table tr td {
      text-align: left; }
  .course .appointments table tr td i {
    color: inherit; }
  .course .appointments table tr td:nth-of-type(1) {
    width: 2rem;
    text-align: center; }
  .course .appointments table .carers {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center; }
    .course .appointments table .carers > div {
      position: relative;
      cursor: pointer; }
      .course .appointments table .carers > div:hover > .tooltip {
        transition: 0.2s all ease;
        display: block;
        opacity: 1; }
    .course .appointments table .carers .tooltip {
      display: none;
      position: absolute;
      width: auto;
      margin: 0 auto;
      top: -2.5rem;
      transition: 0.2s all ease;
      opacity: 0;
      white-space: nowrap;
      left: 50%;
      transform: translateX(-50%); }
      .course .appointments table .carers .tooltip > div {
        white-space: nowrap;
        position: relative;
        background: #000;
        color: #fff;
        display: block;
        padding: 0.25em 0.5em;
        border-radius: 0.5rem;
        text-align: center; }
        .course .appointments table .carers .tooltip > div > img {
          margin: 0 auto;
          position: absolute;
          bottom: -0.95rem;
          left: 0;
          right: 0;
          height: 0.5rem; }
    .course .appointments table .carers img {
      height: 3rem;
      padding: 0.5rem; }

.category-description {
  padding: 2rem 1rem;
  overflow: auto; }
  .category-description h1 {
    margin-bottom: 1rem; }
  .category-description p {
    text-align: left; }

.course-details {
  margin-top: -5rem;
  margin-bottom: 5rem; }
  .course-details .container > div {
    background: #fff; }
  .course-details .course-info {
    margin: 0 0 2rem;
    padding: 1.5rem; }
  .course-details h3 {
    padding: 0.5rem; }
  .course-details ul {
    border: 1px solid #ddd;
    background: #f7f7f7;
    border-radius: 0.5rem;
    margin-bottom: 0.5rem; }
    .course-details ul li {
      padding: 0.3rem;
      vertical-align: top;
      line-height: 1.5rem;
      min-height: 1.5rem;
      height: auto;
      list-style-type: none; }
      .course-details ul li table {
        padding-left: 0.35rem; }
        .course-details ul li table tr td:first-of-type {
          padding-right: 1rem; }
      .course-details ul li .carers {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        position: relative;
        text-align: center; }
        .course-details ul li .carers > div {
          position: relative;
          cursor: pointer; }
          .course-details ul li .carers > div:hover > .tooltip {
            transition: 0.2s all ease;
            display: block;
            opacity: 1; }
        .course-details ul li .carers .tooltip {
          display: none;
          position: absolute;
          width: auto;
          margin: 0 auto;
          top: -2.5rem;
          transition: 0.2s all ease;
          opacity: 0;
          white-space: nowrap;
          left: 50%;
          transform: translateX(-50%); }
          .course-details ul li .carers .tooltip > div {
            white-space: nowrap;
            position: relative;
            background: #000;
            color: #fff;
            display: block;
            padding: 0.25em 0.5em;
            border-radius: 0.5rem;
            text-align: center; }
            .course-details ul li .carers .tooltip > div > img {
              margin: 0 auto;
              position: absolute;
              bottom: -0.95rem;
              left: 0;
              right: 0;
              height: 0.5rem; }
        .course-details ul li .carers img {
          height: 3rem;
          padding: 0.5rem; }
    .course-details ul .flex-left-right {
      display: flex;
      flex-grow: 1;
      justify-content: space-between; }
      .course-details ul .flex-left-right .add-button {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 1rem;
        box-sizing: border-box; }
        .course-details ul .flex-left-right .add-button img {
          height: 1.25rem;
          width: 1.25rem; }
        .course-details ul .flex-left-right .add-button a {
          min-width: 0;
          text-align: center; }

.info-container {
  width: 100%; }
  .info-container > form {
    margin-top: 1rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    column-count: 3; }
  .info-container .select-course-wrapper {
    padding: 3em;
    box-sizing: border-box;
    width: 100%;
    display: block; }
    .info-container .select-course-wrapper .category {
      margin: 2em auto; }
      .info-container .select-course-wrapper .category h2 {
        margin-bottom: 1em; }
    .info-container .select-course-wrapper table {
      width: 100%; }
    .info-container .select-course-wrapper table td {
      padding: .4em .4em; }
    .info-container .select-course-wrapper table td.selected {
      background: #00b874;
      transition: 0.2s all ease; }
    .info-container .select-course-wrapper table tr.divider td {
      background: #ddd; }
    @media screen and (max-width: 1000px) {
      .info-container .select-course-wrapper {
        width: calc(100% / 2);
        max-width: calc(100% / 2); } }
    @media screen and (max-width: 700px) {
      .info-container .select-course-wrapper {
        width: 100%;
        max-width: 100%; } }
  .info-container .select-course {
    width: 100%;
    border-radius: 0.2rem;
    overflow: hidden; }
  .info-container h2 {
    color: #444;
    font-family: "TrebuchetMS";
    font-weight: 100;
    font-size: 35px; }
  .info-container h4 {
    color: #888; }
  .info-container ul {
    background: #f7f7f7;
    width: 100%;
    padding: 0;
    margin-bottom: 1rem;
    overflow: hidden;
    box-sizing: border-box;
    border: 1px solid #ddd;
    box-shadow: 0px 10px 10px -5px rgba(0, 0, 0, 0.05);
    border-bottom-right-radius: 0.2rem;
    border-bottom-left-radius: 0.2rem; }
    .info-container ul h3 {
      padding: 0.5rem;
      display: block;
      color: #888;
      font-weight: normal;
      text-align: center; }
    .info-container ul li {
      vertical-align: top;
      line-height: 1.5rem;
      min-height: 1.5rem;
      height: auto;
      list-style-type: none;
      overflow: auto;
      border-top: 1px solid #ddd;
      text-align: center;
      position: relative;
      transition: 0.2s all ease;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center; }
      .info-container ul li img {
        width: 90%;
        height: auto;
        margin: 0 auto;
        display: none; }
      .info-container ul li:last-of-type {
        border-bottom: none; }
      .info-container ul li .carers {
        float: right; }
        .info-container ul li .carers img {
          height: 3rem; }
      .info-container ul li .input-wrapper {
        width: 40px;
        min-height: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        float: left;
        padding-right: 2.5px; }
        .info-container ul li .input-wrapper input {
          vertical-align: top;
          margin-right: 0; }
      .info-container ul li .info-wrapper {
        width: calc(100% - 50px);
        float: left;
        text-align: left;
        border-left: 1px solid #ddd;
        padding: 0.25rem 0; }
        .info-container ul li .info-wrapper label {
          line-height: 1.5rem;
          height: 1.5rem;
          font-size: 14px;
          vertical-align: top;
          margin: 0;
          display: block;
          float: none;
          width: 100%; }
          .info-container ul li .info-wrapper label > i {
            width: 1.75em;
            color: inherit;
            text-align: center;
            padding-right: 0.5rem; }
      .info-container ul li .error {
        display: inline-block;
        display: none; }
        .info-container ul li .error > label {
          color: red;
          line-height: 1.5rem;
          height: 1.5rem;
          font-size: 14px; }
          .info-container ul li .error > label > i {
            color: inherit;
            margin-right: 0.4em; }
      .info-container ul li .already, .info-container ul li .wait {
        display: none; }
    .info-container ul .selected {
      background: #00b874;
      transition: 0.2s all ease; }
      .info-container ul .selected label {
        color: #fff !important; }
        .info-container ul .selected label .warning {
          display: none; }
    .info-container ul .waiting-list {
      border-top: 1px solid #ddd;
      background: rgba(255, 152, 0, 0.5) !important; }
      .info-container ul .waiting-list label {
        color: #333 !important; }
    .info-container ul .hidden > label {
      color: #bbb; }
    .info-container ul .hidden .already {
      display: inline-block !important; }
      .info-container ul .hidden .already label {
        color: #bbb; }

#forms h2 {
  padding: 1rem 0;
  text-align: center; }

.monospace-text {
  font-family: monospace; }

.uppercase-text {
  text-transform: uppercase; }

.lowercase-text {
  text-transform: lowercase; }

.steps-form label {
  text-align: left;
  padding-right: 1em; }
.steps-form form > .col-sm-8 {
  margin: 0.5rem 0; }

.step-button-bar {
  margin: 1rem 0;
  width: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center; }
  .step-button-bar a, .step-button-bar input, .step-button-bar button {
    height: 2.5rem;
    max-width: 50%;
    min-width: 12rem;
    margin: 0 0.5rem; }

.input-connected div:not(:nth-of-type(1)):not(:nth-of-type(2)) input {
  margin-left: -1px;
  width: calc(100% + 1px); }

#check-forms {
  box-sizing: border-box;
  margin-top: 0; }
  #check-forms h2 {
    padding: 0;
    margin-top: 1rem; }
  #check-forms input {
    border: 1px solid #ddd; }
  #check-forms .checklist {
    border: 1px solid #ddd; }
    #check-forms .checklist * {
      color: #999; }

.step-4-header {
  background: rgba(0, 0, 0, 0.9);
  padding: 5rem 0;
  margin: 0 !important;
  position: relative;
  overflow: hidden; }
  .step-4-header h1 {
    font-style: italic;
    font-weight: bold;
    position: relative;
    z-index: 5;
    color: #fff;
    padding: 0.5em;
    font-size: 38px; }

.gradient-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 1000%;
  height: 100%;
  z-index: 2; }

#header-image-slider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 1000%;
  height: 100%;
  opacity: 0.3;
  z-index: 0; }
  #header-image-slider img {
    background-blend-mode: multiply;
    float: left;
    height: 100%;
    display: block; }

.popup-overlay {
  z-index: 30;
  background: rgba(0, 0, 0, 0.25);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center; }
  .popup-overlay .popup {
    background: #fff;
    border-radius: 0.2rem;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
    padding: 0.5rem;
    width: 30rem;
    max-width: 90%; }
    .popup-overlay .popup h3 {
      padding: 0.5rem 0.5rem;
      margin: 0; }
    .popup-overlay .popup p {
      padding: 1rem 0.5rem;
      margin: 0; }
    .popup-overlay .popup .popup-actions {
      padding: 0.5rem 0;
      text-align: center; }
      .popup-overlay .popup .popup-actions a {
        display: inline-block;
        margin: 0 auto;
        transition: none;
        min-width: 30%; }
        .popup-overlay .popup .popup-actions a:hover {
          transition: none;
          background: #f7f7f7;
          text-decoration: underline; }

#group {
  min-height: calc(100vh - 4rem); }

.register-participant {
  width: 100%;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
  padding: 2rem 0; }

.register-container-wrapper {
  background: #eee;
  padding: 2rem 0; }

.register-container {
  box-sizing: border-box;
  padding-bottom: 3rem;
  width: 800px;
  max-width: 100%;
  min-height: calc(100vh - 4rem);
  text-align: center;
  background: #fff;
  box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.1); }
  .register-container h2 {
    margin: 2rem 0 0;
    font-size: 40px;
    font-family: "TrebuchetMS";
    font-weight: 100; }
  .register-container form {
    display: inline-block;
    float: none;
    padding: 1rem 2rem 2rem;
    box-sizing: border-box; }
    @media screen and (max-width: 500px) {
      .register-container form {
        padding: 2rem 0; } }

.checkboxes {
  display: flex;
  align-items: center; }
  .checkboxes input {
    border: 1px solid #ff9800;
    display: inline-block; }
  .checkboxes label {
    display: inline-block !important;
    width: auto !important;
    margin: 0; }
    .checkboxes label a {
      text-decoration: underline;
      color: #ff9800; }

.contact {
  position: relative; }
  @media screen and (max-width: 750px) {
    .contact .col-sm-2 {
      width: 100%; }
      .contact .col-sm-2 label {
        text-align: left !important; } }

.final-step h2 {
  padding: 2rem !important; }

.form-group {
  box-sizing: border-box; }
  .form-group .row {
    display: flex;
    align-items: center;
    margin: 0.5rem 0; }
  .form-group label {
    line-height: 1rem;
    height: auto;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px; }
  .form-group input, .form-group select {
    font-size: 18px; }
    .form-group input input, .form-group select input {
      padding-left: 0.2em; }
    .form-group input:not(:first-of-type):not([type="checkbox"]), .form-group select:not(:first-of-type):not([type="checkbox"]) {
      border-left: none !important; }

.checklist {
  border: 1px solid #ccc;
  padding: 0.3rem 0.5rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  flex-wrap: wrap; }
  .checklist > span {
    width: calc(100% - 1rem);
    padding-left: 0.5rem; }

.summary-title {
  margin-top: 2.5rem;
  margin-bottom: 1rem; }

.already-registered-wrapper {
  padding-top: 2rem; }
  .already-registered-wrapper .already-registered {
    text-align: center;
    transition: 0.4s all ease;
    background: #f7f7f7;
    border: 1px solid transparent;
    padding: 2rem 1rem;
    box-sizing: border-box;
    overflow: auto; }
    .already-registered-wrapper .already-registered label a {
      color: inherit; }
      .already-registered-wrapper .already-registered label a:hover {
        text-decoration: underline; }
    .already-registered-wrapper .already-registered h3 {
      text-align: center;
      font-weight: normal;
      font-size: 18px;
      margin-bottom: 2rem; }
    .already-registered-wrapper .already-registered form {
      width: 80%;
      margin: 0 auto; }
    .already-registered-wrapper .already-registered label {
      color: #888; }
    .already-registered-wrapper .already-registered .error-div {
      padding-top: 0; }
      .already-registered-wrapper .already-registered .error-div .error {
        transition: 0.2s all ease;
        color: red;
        height: 1em;
        line-height: 1em;
        margin-bottom: 0.5em; }
      .already-registered-wrapper .already-registered .error-div .hidden {
        transition: 0.2s all ease;
        height: 0;
        margin-bottom: 0; }
    .already-registered-wrapper .already-registered .option {
      height: 2rem;
      padding-left: 1rem;
      box-sizing: border-box; }
      .already-registered-wrapper .already-registered .option a {
        margin: 0 auto; }
    .already-registered-wrapper .already-registered .options {
      padding-top: 1rem;
      text-align: center; }
      .already-registered-wrapper .already-registered .options a {
        display: inline-block; }
  .already-registered-wrapper .found-already-registered {
    transition: 0.4s all ease;
    background: #f7f7f7;
    border: 1px solid transparent;
    padding: 2rem 1rem;
    box-sizing: border-box; }
    .already-registered-wrapper .found-already-registered h3 {
      display: block;
      text-align: center; }
  .already-registered-wrapper .invisible {
    display: none;
    transition: 0.4s all ease;
    opacity: 0;
    height: 0;
    padding: 0;
    margin: 0; }

.about h2 {
  padding-top: 0.75rem; }
.about h3 {
  padding: 1em 0; }
.about p {
  color: #555;
  padding: 2rem 0 1.5rem;
  font-size: 18px;
  text-align: center; }

#office {
  box-sizing: border-box;
  width: 100%;
  text-align: center;
  overflow: auto;
  margin: 3rem 0; }
  #office .worker {
    box-sizing: border-box;
    text-align: left;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 1rem; }
    #office .worker .img-wrapper {
      width: 68px;
      height: 68px;
      background-size: cover;
      background-position: center;
      margin: 0;
      border-radius: 100%; }
    #office .worker .about-worker {
      margin-left: 1rem;
      display: inline-block;
      height: auto;
      font-size: 18px; }
      #office .worker .about-worker b {
        display: block; }
      #office .worker .about-worker label {
        display: block; }

.address {
  margin: 3rem 0; }
  .address address {
    background: #fff;
    border: 1px solid #ddd;
    padding: 0.25rem 0.45rem;
    border-radius: 0.25rem;
    font-size: 18px; }

.informations {
  margin: 3rem 0; }
  .informations input {
    border-radius: 0.25rem; }
  .informations .form-group {
    padding: 0;
    margin: 1rem 0;
    font-size: 18px; }

.info {
  background-color: white;
  background-image: linear-gradient(to bottom, #f7f7f7, white) !important;
  padding-top: 1.5rem; }
  @media screen and (max-width: 700px) {
    .info {
      padding: 1rem; } }
  .info .container {
    max-width: 900px;
    width: 100%; }
    .info .container > div {
      width: 100%;
      text-align: left; }
      .info .container > div h2 {
        font-size: 30px;
        text-align: center; }
        @media screen and (max-width: 605px) {
          .info .container > div h2 {
            font-size: 25px; } }
        .info .container > div h2:first-of-type {
          margin-top: 0; }
      .info .container > div p {
        font-size: 20px;
        color: #222;
        margin-bottom: 3rem; }
        @media screen and (max-width: 605px) {
          .info .container > div p {
            font-size: 18px; } }
      .info .container > div ul {
        margin-bottom: 3rem; }
        .info .container > div ul li {
          margin-left: 1.5rem;
          display: list-item;
          font-size: 20px;
          line-height: 1.5em;
          list-style-type: disc;
          list-style-position: outside; }
          @media screen and (max-width: 605px) {
            .info .container > div ul li {
              font-size: 18px; } }

.register-container h2 {
  padding-bottom: 1rem; }
.register-container .forgot-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0;
  padding-top: 40px;
  height: 4rem; }
  .register-container .forgot-bar div {
    display: flex;
    align-items: center;
    justify-content: center; }
  .register-container .forgot-bar a {
    width: auto; }

.tutorial-wrapper h2 {
  padding: 2rem 0;
  text-align: left; }
.tutorial-wrapper .video {
  width: 100%;
  min-height: 10rem; }

/*
=========================================
Footer Area CSS
=========================================
*/
.footer-area {
  background: #333;
  padding-top: 100px;
  /* background-image: url(../../assets/img/footer-bg.png); */
  background-position: center center;
  background-size: cover; }
  @media screen and (max-width: 605px) {
    .footer-area {
      padding-top: 70px; } }

.single-footer h3 {
  font-size: 22px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 25px;
  margin-top: -6px; }

.single-footer ul {
  list-style: none; }

.single-footer .footer-contact-info li {
  font-size: 15px;
  color: #c3c3c3;
  margin-top: 10px; }

.single-footer .footer-contact-info li:first-child {
  margin-top: 0; }

.single-footer .footer-contact-info li a {
  color: #c3c3c3; }

.single-footer .footer-contact-info li a:hover {
  color: #ff9800; }

.single-footer .social {
  margin-top: 20px; }

.single-footer .social li {
  font-size: 17px;
  color: #c3c3c3;
  display: inline-block;
  margin-right: 8px; }

.single-footer .social li a {
  color: #c3c3c3; }

.single-footer .social li a:hover {
  color: #ff9800; }

.single-footer .list li {
  font-size: 15px;
  color: #4a4a4a;
  margin-top: 8px; }

.single-footer .list li:first-child {
  margin-top: 0; }

.single-footer .list li a {
  color: #c3c3c3; }

.single-footer .list li a:hover {
  color: #ff9800; }

.footer-area .copyright-area {
  border-top: 1px solid #3A3A3A; }

.copyright-area {
  margin-top: 100px;
  padding: 40px 0; }
  @media screen and (max-width: 605px) {
    .copyright-area {
      margin-top: 50px; } }

.copyright-area p {
  color: #c3c3c3; }

.copyright-area ul {
  text-align: right; }

.copyright-area ul li {
  display: inline-block;
  font-size: 15px;
  border-left: 2px solid #3A3A3A;
  padding-right: 7px;
  padding-left: 7px;
  line-height: 1; }

.copyright-area ul li:first-child {
  padding-left: 0;
  border-left: none; }

.copyright-area ul li a {
  color: #c3c3c3; }

.copyright-area ul li a:hover {
  color: #ff9800; }

.cc_container {
  border-radius: 0 !important;
  border: 1px solid transparent !important;
  padding-bottom: 67px !important; }
  .cc_container p a {
    color: #888 !important; }
    .cc_container p a:hover {
      text-decoration: underline !important; }

.cc_logo {
  display: none !important; }

.cc_btn {
  bottom: 20px !important;
  background: #ff9800 !important;
  color: #fff !important;
  transition: 0.1s all ease-in-out; }
  .cc_btn:hover {
    transition: 0.1s all ease-in-out;
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2) !important; }

.select-courses-empty-title {
  text-align: center;
  font-family: "TrebuchetMS";
  font-weight: 100;
  height: 50vh;
  width: 100%;
  line-height: calc(100vh - 15rem);
  font-size: 35px; }

.select-courses label {
  display: inline-block !important;
  line-height: 1em !important;
  height: auto !important; }

.registration {
  min-height: 80vh; }
  .registration .title {
    text-align: center;
    margin-bottom: 2rem; }
    @media screen and (max-width: 700px) {
      .registration .title {
        margin-bottom: 1rem; } }
    .registration .title .title-text {
      margin: 0; }
    .registration .title h1 {
      margin: 0 auto;
      padding: 1.5rem 0; }
      @media screen and (max-width: 700px) {
        .registration .title h1 {
          font-size: 35px;
          padding-bottom: 0.3em; } }
    @media screen and (max-width: 700px) {
      .registration .title h3 {
        font-size: 18px; } }
  .registration form {
    display: block; }
  .registration h2 {
    margin-left: 1rem; }
  .registration table {
    margin: 1rem 0;
    margin-top: 0;
    border: 1px solid #eee; }
    .registration table label {
      margin: 0; }

.info-message {
  border-radius: 2rem;
  padding: 1.6em 2rem;
  text-align: left;
  box-sizing: border-box;
  margin: 0 auto;
  display: flex;
  position: relative; }
  .info-message .info-image {
    box-sizing: border-box;
    width: 50px;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem; }
    .info-message .info-image img {
      max-width: 35px;
      max-height: 35px; }

.top-warning {
  background: red;
  color: #fff;
  font-weight: bold;
  text-align: center;
  display: block;
  padding: 6px 4px;
  text-transform: uppercase; }

/*
=========================================
Login Area CSS
=========================================
*/
#login-form {
  overflow: hidden;
  position: relative;
  border-radius: 0.25rem;
  max-width: 750px;
  margin: 0 auto; }
  #login-form .heading {
    color: #ff9800;
    text-align: center;
    text-transform: uppercase;
    padding: 15px 0;
    background: #ff9800;
    font-weight: 600;
    font-size: 25px; }
  #login-form .left {
    width: 100%;
    padding: 30px; }
  #login-form .form-control {
    border: 1px solid #ccc; }
  #login-form .right {
    width: 100%;
    padding: 30px; }
    #login-form .right .connect {
      color: #777777;
      font-size: 20px; }
    #login-form .right a {
      font-size: 16px;
      color: #fff;
      padding: 8px 0;
      text-align: center;
      width: auto;
      margin: 8px 0; }
  #login-form .row {
    margin-bottom: 1rem; }
    #login-form .row:last-of-type {
      margin-bottom: 0; }
  #login-form .row > div:not(:last-of-type) .form-group {
    padding-bottom: 0; }
  #login-form .form-group {
    margin-bottom: 0; }

/*
=========================================
Register Area CSS
=========================================
*/
.register-content {
  padding: 25px;
  text-align: center;
  box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 700px;
  background-color: #fff;
  margin: 3em auto;
  margin-bottom: 6em;
  border-radius: 0.25rem; }
  .register-content .heading {
    color: #ff9800;
    text-align: left;
    text-transform: uppercase;
    padding: 15px 0;
    border-bottom: 1px solid #ff9800;
    baackground: #ff9800;
    font-weight: 600;
    font-size: 25px;
    margin-bottom: 30px; }
  .register-content .form-control {
    border: 1px solid #ccc; }
  .register-content .btn {
    display: block;
    width: 100%;
    text-transform: uppercase; }
  .register-content h4 {
    color: #777777;
    margin-top: 20px;
    font-size: 18px;
    font-weight: 400; }
    .register-content h4 a {
      text-decoration: underline; }

.card-header > *:last-of-type, .card-body > *:last-of-type, .card-footer > *:last-of-type {
  margin-bottom: 0; }
.card-header > *:first-of-type, .card-body > *:first-of-type, .card-footer > *:first-of-type {
  margin-top: 0; }

.card-footer form {
  display: inline-block; }

.search {
  margin-top: 1.5rem; }

.ajax-loading, .ajax-error {
  padding: 10vh 0;
  text-align: center;
  color: #888; }

@media screen and (max-width: 700px) {
  .conditions {
    height: 56vw !important;
    width: 100% !important; } }
@media screen and (max-width: 700px) {
  .conditions .container > span {
    font-size: 35px !important;
    font-weight: bold;
    text-align: left !important;
    text-shadow: 0px 0px 25px #fff; } }

.faq .card .collapse {
  border-bottom: 1px solid rgba(0, 0, 0, 0.125); }
.faq .card-header a {
  white-space: normal; }

.buorg {
  position: absolute;
  position: fixed;
  z-index: 111111;
  width: 100%;
  top: 0px;
  left: 0px;
  border-bottom: 1px solid #ccc !important;
  text-align: center;
  color: #000;
  background-color: #fff !important;
  font-family: "TrebuchetMS" !important;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  animation: 0.5s ease-out 0s buorgfly; }

.buorg-pad {
  padding: 9px;
  line-height: 1.7em; }

.buorg-buttons {
  display: block;
  text-align: center;
  margin: 0.5rem 0; }

#buorgig, #buorgul, #buorgpermanent {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 0 2px transparent !important;
  padding: 1px 10px;
  border-radius: 4px;
  font-weight: normal;
  background: #5ab400;
  background: #ff9800 !important;
  white-space: nowrap;
  margin: 0 2px;
  display: inline-block;
  border: none !important; }

#buorgig {
  background: #aaa !important; }

@media only screen and (max-width: 700px) {
  .buorg div {
    padding: 5px 12px 5px 9px;
    line-height: 1.3em; } }
@keyframes buorgfly {
  from {
    opacity: 0;
    transform: translateY(-50px); }
  to {
    opacity: 1;
    transform: translateY(0px); } }
.buorg-fadeout {
  transition: visibility 0s 8.5s, opacity 8s ease-out .5s; }

.buorg-icon {
  width: 22px;
  height: 16px;
  vertical-align: middle;
  position: relative;
  top: -0.05em;
  display: inline-block;
  background: no-repeat 0px center; }

/*# sourceMappingURL=main.css.map */

.appointment-carer {
  display: inline-block;
  background:#eee;
  padding: 4px 7px;
  border-radius: 6px;
  height: 48px;
}

.appointment-carer button.carer-name {
  box-shadow: none;
  border: none;
  position:relative; bottom: 12px;
  background: none;
  text-align: left;
}

.appointment-carer .carer-image {
  height: 40px; width: 40px; border-radius:100%;
  background-size: cover;display: inline-block; margin-right: 4px;
}

td.value-col {
  width: 80%;
}

@media only screen and (max-width: 800px) {
  .appointment-carer {
    display: block;
    margin: 8px 4px;
  }
}

@media only screen and (max-width: 600px) {
  .appointment-carer {
    background:#fff;
    padding: 0px;
    height: 30px;
  }

  .appointment-carer .carer-image {
    display: none;
  }
  .appointment-carer .carer-name {
    bottom: 0px;
  }

  td.label-col {
    display: none;
  }

  td.value-col {
    width: 90%!important;
  }
}

u {
  padding: 3px 7px 2px 7px;
  color: #fff;
  background: rgba(0,0,0,0.4);
}

.loader {
  border: 12px solid #fff; /* Light grey */
  border-top: 12px solid #ff9800; /* Blue */
  border-radius: 50%;
  width: 110px;
  height: 110px;
  animation: spin 2s linear infinite;
  position: fixed;
  top: 40%;
  z-index: 100;
  left: 50%;
  right: 50%;
  box-shadow: 0px 1px 2px #222;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

s {
  text-decoration: line-through
}
