﻿@charset "UTF-8";
@font-face {
  font-family: "Sansa";
  src: url("/assets/Sansa/Sansa-Normal.woff2") format("woff2"), url("/assets/Sansa/Sansa-Normal.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Sansa";
  src: url("/assets/Sansa/Sansa-Light.woff2") format("woff2"), url("/assets/Sansa/Sansa-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Sansa";
  src: url("/assets/Sansa/Sansa-SemiBold.woff2") format("woff2"), url("/assets/Sansa/Sansa-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Sansa";
  src: url("/assets/Sansa/Sansa-BoldItalic.woff2") format("woff2"), url("/assets/Sansa/Sansa-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
}
html {
  border: 0;
  box-sizing: border-box;
  font-size: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  image-rendering: -webkit-optimize-contrast;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  background-color: #FFFFFF;
  color: #041F2F;
  font-family: "ff-tisa-sans-web-pro", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 15px;
  height: 100%;
  line-height: 1;
  margin: 0;
  padding: 0;
}

@media (min-width: 900px) {
  .noscroll {
    overflow: hidden;
    position: fixed;
  }
}

.wrapper {
  position: relative;
  width: 100%;
}

.container {
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 1240px) {
  .container {
    width: 1200px;
  }
}

.flex {
  display: flex;
  flex-flow: row wrap;
}

.space-between {
  justify-content: space-between;
}

.items-end {
  align-items: flex-end;
}

.items-center {
  align-items: center;
}

.flex-col {
  flex-direction: column;
}

.flex-80 {
  flex: 0 0 100%;
  max-width: 100%;
}
@media (min-width: 900px) {
  .flex-80 {
    flex: 0 0 80%;
    max-width: 80%;
  }
}

.flex-70 {
  flex: 0 0 100%;
  max-width: 100%;
}
@media (min-width: 900px) {
  .flex-70 {
    flex: 0 0 70%;
    max-width: 70%;
  }
}

.flex-60 {
  flex: 0 0 100%;
  max-width: 100%;
}
@media (min-width: 900px) {
  .flex-60 {
    flex: 0 0 calc(60% - 15px);
    max-width: calc(60% - 15px);
  }
}

.flex-50 {
  flex: 0 0 100%;
  max-width: 100%;
}
@media (min-width: 900px) {
  .flex-50 {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}

.flex-40 {
  flex: 0 0 100%;
  max-width: 100%;
}
@media (min-width: 900px) {
  .flex-40 {
    flex: 0 0 calc(40% - 15px);
    max-width: calc(40% - 15px);
  }
}

.flex-33 {
  flex: 0 0 100%;
  max-width: 100%;
}
@media (min-width: 600px) {
  .flex-33 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 900px) {
  .flex-33 {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}

.flex-30 {
  flex: 0 0 100%;
  max-width: 100%;
}
@media (min-width: 900px) {
  .flex-30 {
    flex: 0 0 30%;
    max-width: 30%;
  }
}

.flex-25 {
  flex: 0 0 100%;
  max-width: 100%;
}
@media (min-width: 600px) {
  .flex-25 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 900px) {
  .flex-25 {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}
@media (min-width: 1240px) {
  .flex-25 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

.flex-20 {
  flex: 0 0 100%;
  max-width: 100%;
}
@media (min-width: 400px) {
  .flex-20 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 600px) {
  .flex-20 {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}
@media (min-width: 900px) {
  .flex-20 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
@media (min-width: 1240px) {
  .flex-20 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

.pad {
  padding: 20px;
}

.justify-end {
  justify-content: end;
}

.the-content > figure {
  margin: 0 auto;
}
.the-content > figure img {
  max-width: 100%;
}

.breadcrumbs {
  padding: 20px;
  background-color: #f8f8f8;
  font-family: "Sansa", sans-serif;
}
.breadcrumbs .container a {
  margin-left: -6px;
  color: #041F2F;
  display: inline-block;
}
.breadcrumbs .container a .title {
  font-weight: bold;
  padding-right: 15px;
}
@media (min-width: 600px) {
  .breadcrumbs .container a .title {
    padding-right: 30px;
  }
}
@media (min-width: 1240px) {
  .breadcrumbs .container a .title {
    padding-right: 60px;
  }
}
.breadcrumbs .container a.active {
  color: #091F2E;
  pointer-events: none;
}
.breadcrumbs .line {
  margin-top: 10px;
  width: 100%;
  height: 1px;
  background-color: #dfe4e5;
  position: relative;
  margin: 10px 0;
}
.breadcrumbs .line.hidden {
  background-color: transparent;
}
.breadcrumbs .line.hidden:before {
  background-color: #091F2E;
}
.breadcrumbs .line:before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: #dfe4e5;
  position: absolute;
  left: 0;
  border-radius: 5px;
  top: -2px;
}

.gradient {
  background: #cdd3d3;
  background: linear-gradient(34deg, #cdd3d3 0%, #f4f8f8 100%);
}

@media (min-width: 800px) {
  .mobile {
    display: none;
  }
}

.bg-white {
  background: white !important;
  color: #041F2F;
}

.font-bold {
  font-weight: 600;
}

h1, h2, h3, h4, h5 {
  font-family: "Sansa", sans-serif;
  word-wrap: break-word;
}

h1 {
  font-weight: 300;
  font-style: inherit;
  font-size: 2.1rem;
  line-height: 1.4;
  margin-top: 0;
  margin-bottom: 15px;
  max-width: 590px;
  text-transform: uppercase;
}
@media (min-width: 600px) {
  h1 {
    font-size: 2.5rem;
  }
}
@media (min-width: 900px) {
  h1 {
    font-size: 55px;
  }
}

h2 {
  font-weight: 300;
  font-style: inherit;
  font-size: 1.6rem;
  line-height: 2rem;
  margin-top: 0;
  margin-bottom: 20px;
  max-width: 590px;
  text-transform: uppercase;
  color: #041F2F;
}
@media (min-width: 600px) {
  h2 {
    font-size: 28px;
    line-height: 1;
  }
}

h3 {
  font-weight: 400;
  font-style: inherit;
  font-size: 1.3rem;
  line-height: 1.32;
  margin-top: 0;
  margin-bottom: 20px;
  max-width: 590px;
}
@media (min-width: 600px) {
  h3 {
    font-size: 21px;
  }
}

h4 {
  font-weight: 600;
  font-style: inherit;
  font-size: 19px;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 0;
  max-width: 590px;
}

h5 {
  font-weight: 600;
  font-style: inherit;
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 0;
  max-width: 590px;
}

p, ul, ol, pre, blockquote {
  line-height: 1.8;
  margin-top: 0;
  margin-bottom: 20px;
  max-width: 590px;
}
p a, ul a, ol a, pre a, blockquote a {
  text-decoration: underline;
}

span {
  line-height: 1.5;
  margin-top: 0;
  max-width: 590px;
}

ul, ol {
  padding-left: 25px;
}

ul ul, ol ol, ul ol, ol ul {
  margin-top: 0;
  margin-bottom: 0;
}

hr {
  border: 1px solid;
  margin: -1px 0;
}

b, strong, em, small, code {
  line-height: 1;
}

sup {
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

a {
  color: inherit;
  cursor: pointer;
  position: relative;
  text-decoration: none;
}

.lead {
  font-size: 1.15rem;
  line-height: 1.5;
  white-space: pre-line;
}
@media (min-width: 600px) {
  .lead {
    font-size: 1.3rem;
  }
}

.light-text {
  color: #ffffff;
}

.dark-text {
  color: #333333;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

a img {
  border: none;
  max-width: 100%;
  max-height: 100%;
}

img, svg, figure {
  display: block;
  margin: 0;
  padding: 0;
  max-width: 100%;
}

figcaption {
  padding: 0;
}

figure {
  margin: 0;
  padding: 0;
}
figure > img {
  margin: 0;
  padding: 0;
}

.one-vid {
  width: 100%;
  height: 100%;
  display: block;
}

.video-text {
  width: 100%;
  text-align: center;
  margin: 20px 0;
}

.button-row {
  margin: 2rem 0 1rem 0;
}

.btn {
  border: 1px solid #091F2E;
  border-radius: 64px;
  color: #333333;
  cursor: pointer;
  display: inline-block;
  font-family: "Sansa", sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.5px;
  outline: none;
  margin: 0 15px 15px 0;
  padding: 8px 16px;
  text-decoration: none;
  transition: all 200ms;
}
.btn > .icon {
  fill: white;
}
.btn:last-child {
  margin: 0;
}

.mute {
  opacity: 0.5;
  pointer-events: none;
}

.btn-normal {
  background-color: #FFFFFF;
  color: #091F2E;
}
.btn-normal:hover {
  background-color: #091F2E;
  color: #FFFFFF;
}

.btn-action {
  background-color: #00A3E0;
}
.btn-action:hover {
  background-color: #007ead;
}

.btn-small {
  padding: 5px 6px;
}

.btn-big {
  padding: 21px 68px 20px;
  font-size: 23px;
}

.no-btn {
  color: #091F2E;
  padding: 20px 20px 20px 0;
}
.no-btn:hover {
  text-decoration: underline;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  margin-top: 0;
  margin-bottom: 30px;
  max-width: 730px;
  display: block;
  overflow-x: auto;
}
table > caption {
  border-bottom: 1px solid #ccc;
  font-weight: 600;
  padding: 12px 0;
}

th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ccc;
}

th:first-child,
td:first-child {
  padding-left: 0;
}

th:last-child,
td:last-child {
  padding-right: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
}

.form-section {
  padding: 50px 0 20px 0;
}
@media (min-width: 600px) {
  .form-section {
    padding: 60px 0 20px 0;
  }
}
@media (min-width: 900px) {
  .form-section {
    padding: 65px 0 50px 0;
  }
}
@media (min-width: 1240px) {
  .form-section {
    padding: 80px 0 50px 0;
  }
}

.aventoform {
  padding: 0 20px;
}

.form-row {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -10px 20px -10px;
}

.form-col-full {
  flex: 0 0 100%;
  padding: 0 10px;
  max-width: 100%;
  position: relative;
}

.form-col-half {
  flex: 0 0 50%;
  padding: 0 10px;
  max-width: 50%;
  position: relative;
}

label {
  font-size: 15px;
  display: block;
  margin: 10px 0;
  opacity: 0.9;
}

input[type=text], input[type=email], textarea, select {
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 2px;
  font-family: "Sansa", sans-serif;
  font-size: 16px;
  outline: none;
  padding: 10px 12px;
  width: 100%;
}
input[type=text]:focus, input[type=email]:focus, textarea:focus, select:focus {
  box-shadow: 0 0 5px 0px rgba(0, 0, 0, 0.3);
}
input[type=text].parsley-error, input[type=email].parsley-error, textarea.parsley-error, select.parsley-error {
  border: 1px solid rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.6);
}

input[type=search] {
  width: 100%;
  padding: 10px 12px;
  border-radius: 39px;
  border: 1px solid #091F2E;
}
input[type=search]:focus {
  outline: none;
}

input[type=checkbox], input[type=radio] {
  transform: translateY(2px);
  height: 16px;
  width: 16px;
}

select:hover {
  cursor: pointer;
}

input[type=file] {
  position: relative;
  width: 100%;
}

.form-status {
  margin: 20px 0 20px 0;
  max-width: 800px;
}

.parsley-errors-list {
  display: inline-block;
  flex: 0 0 auto;
  list-style: none;
  margin: 0;
  padding: 0;
}
.parsley-errors-list > li {
  background-color: rgba(0, 0, 0, 0.6);
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  font-size: 13.5px;
  margin: 0 0 0 7px;
  padding: 5px 15px;
}

.sub-nav {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
}
.sub-nav.off {
  display: none;
}

.sub-nav-branch {
  flex: 0 0 25%;
  padding: 20px;
}

.sub-nav-link {
  display: block;
  text-decoration: none;
  line-height: 1.5;
}
.sub-nav-link[data-level="3"] {
  font-weight: 600;
}
.sub-nav-link[data-level="5"] {
  margin-left: 20px;
}
.sub-nav-link[data-level="6"] {
  font-size: 14px;
  margin-left: 30px;
}

.sub-nav-toggle {
  padding: 0 20px 20px 0;
}
.sub-nav-toggle > svg {
  fill: #222;
}
.sub-nav-toggle > svg > polygon {
  opacity: 0;
}
.sub-nav-toggle.active > svg > polygon {
  opacity: 1;
}
.sub-nav-toggle.active > svg > rect {
  opacity: 0;
}

.site-header {
  background-color: transparent;
  border-bottom: none;
  margin: 0 auto;
  padding: 0px;
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
}
.site-header.open {
  background-color: #041F2F;
}
.site-header .site-wrap {
  width: 100%;
  border-bottom: 1px solid #FFFFFF;
}
@media (min-width: 1400px) {
  .site-header .site-wrap {
    max-width: calc(100% - 80px);
    width: calc(100% - 80px);
    margin: 0 auto;
  }
}

.site-logo {
  display: block;
  position: relative;
  z-index: 999;
  margin-left: 20px;
}
@media (min-width: 1400px) {
  .site-logo {
    margin-left: 0;
    margin-top: 4px;
  }
}
.site-logo > .img {
  display: block;
  margin: 0;
  padding: 0;
}

.hamburger {
  position: relative;
  z-index: 999;
}

.site-nav, .mobile-menu {
  width: 100%;
}
.site-nav > .link, .mobile-menu > .link {
  color: #041F2F;
  display: block;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 20px;
  margin-top: 10px;
  text-transform: uppercase;
  font-family: "Sansa";
}
.site-nav > .link.open.cyan, .site-nav > .link:hover.cyan, .mobile-menu > .link.open.cyan, .mobile-menu > .link:hover.cyan {
  background-color: #43b7e0;
}
.site-nav > .link.open.blue, .site-nav > .link:hover.blue, .mobile-menu > .link.open.blue, .mobile-menu > .link:hover.blue {
  background-color: #005a6e;
}
.site-nav > .link.open.yellow, .site-nav > .link:hover.yellow, .mobile-menu > .link.open.yellow, .mobile-menu > .link:hover.yellow {
  background-color: #e4c901;
}
.site-nav > .link .lefttop-color, .mobile-menu > .link .lefttop-color {
  left: 20px;
  top: 10px;
}
@media (max-width: 1400px) {
  .site-nav > .link, .mobile-menu > .link {
    text-align: right;
  }
}
@media (max-width: 1400px) {
  .site-nav, .mobile-menu {
    background-color: white;
    padding-top: 90px;
    /*.language {
        position: absolute;
        bottom: 0px;
        left: 0;
        width: calc(100% - 40px);
        margin: 20px;
        text-align: center;
        display: flex;
        justify-content: center;
        padding: 20px 0 10px;
        opacity: 0.5;
    }*/
  }
  .site-nav .lang-sep, .mobile-menu .lang-sep {
    display: none;
  }
}
@media (min-width: 1400px) {
  .site-nav, .mobile-menu {
    display: block;
    width: auto;
  }
  .site-nav > .link, .mobile-menu > .link {
    display: inline-block;
    padding: 36px 22px;
    font-size: 18px;
  }
}

.mobile-off {
  display: none;
}
@media (min-width: 1400px) {
  .mobile-off {
    display: flex;
    width: auto;
    align-items: center;
  }
}

.toggle-menu {
  display: block;
  margin: 20px 0;
  padding: 10px;
}
.toggle-menu > .hamburger-box {
  display: inline-block;
  fill: #333333;
  margin: 0 5px 0 0;
}
.toggle-menu.active > .menubars > rect {
  opacity: 0;
}
.toggle-menu.active > .menubars > polygon {
  opacity: 1;
}
@media (min-width: 1400px) {
  .toggle-menu {
    display: none;
  }
}

.site-footer {
  background-color: #052144;
  color: #FFFFFF;
  padding: 44px 30px;
}
.site-footer h3 {
  border-bottom: 1px solid #091F2E;
  margin-right: 30px;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.site-footer .site-logo {
  margin-left: 0;
}

.site-info {
  padding: 30px 0;
}
.site-info p {
  margin-bottom: 0px;
}
.site-info h5 {
  margin-bottom: 20px;
}
.site-info img {
  display: inline-block;
  margin-right: 10px;
}
.site-info a {
  text-decoration: none;
}

.footer-submenu a h5 {
  font-size: 15px;
  margin-bottom: 30px;
  font-weight: 400;
}

.colophon {
  padding: 20px;
}

.seperator {
  width: 100%;
  height: 1px;
  background-color: #FFFFFF;
}
@media (min-width: 1400px) {
  .seperator {
    height: 30px;
    width: 1px;
  }
}

.language {
  padding: 0 20px;
  color: #041F2F;
  font-size: 15px;
  display: flex;
  flex-flow: row;
  align-items: center;
  position: absolute;
  right: 36px;
  top: 15px;
}
@media (max-width: 1400px) {
  .language {
    right: 0px;
    top: 20px;
  }
}
.language > * {
  margin: 0 3px;
}
.language .seperator {
  height: 11px;
  width: 1px;
}

.submenu {
  display: none;
  position: absolute;
  width: calc(100% + 40px);
  margin-left: -20px;
  left: 0;
  top: calc(100% + 1px);
  padding: 40px;
  background-color: #041F2F;
  color: #FFFFFF;
}
@media (max-width: 1400px) {
  .submenu {
    position: relative;
    width: 100%;
    margin-left: 0px;
    padding: 20px;
    top: 0;
  }
  .submenu .flex-50:first-child {
    display: none;
  }
  .submenu .flex-50:nth-child(2) {
    padding-left: 0 !important;
    flex-flow: column;
    display: flex;
  }
}
.submenu.open {
  display: block;
}
@media (max-width: 1400px) {
  .submenu.open {
    display: flex;
  }
}
.submenu .container {
  display: flex;
  align-items: center;
}
.submenu .container .flex-50:nth-child(1) {
  border-right: 1px solid #FFFFFF;
  position: relative;
  padding: 40px 100px 40px 0;
}
.submenu .container .flex-50:nth-child(1) h2 {
  padding-bottom: 15px;
  border-bottom: 1px solid #091F2E;
  position: relative;
}
.submenu .container .flex-50:nth-child(1) h2:after {
  content: "";
  background-image: url(/assets/img/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  width: 17px;
  height: 10px;
  top: 5px;
}
.submenu .container .flex-50:nth-child(2) {
  padding-left: 100px;
  column-count: 2;
}
.submenu .container .submenu-link h4 {
  font-size: 16px;
  font-weight: 300;
  line-height: 2.88;
}
.submenu h2 {
  color: #FFFFFF !important;
}
.submenu a {
  text-decoration: none;
}

.plus {
  display: inline-block;
  width: 11px;
  height: 11px;
  background-image: url(/assets/img/plus.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-left: 10px;
}

.hasSub.open .plus {
  background-image: url(/assets/img/minus.svg);
}

.bottom-footer {
  padding: 30px 0px;
  background-color: #091F2E;
  color: white;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
}
.bottom-footer i {
  margin: 0 8px;
}
.bottom-footer .bottom-content {
  padding: 0 30px;
}
.bottom-footer .bottom-content span {
  flex: 1 1 50%;
  margin-bottom: 20px;
}
@media (min-width: 600px) {
  .bottom-footer .bottom-content {
    padding: 0;
  }
  .bottom-footer .bottom-content span {
    flex: none;
    margin-bottom: 0;
  }
}
.bottom-footer .personvern {
  justify-content: flex-start;
}
@media (min-width: 600px) {
  .bottom-footer .personvern {
    justify-content: flex-end;
  }
}
.bottom-footer .personvern a {
  margin-right: 20px;
}
@media (min-width: 600px) {
  .bottom-footer .personvern a {
    justify-content: flex-end;
  }
}

.mobile-menu {
  position: absolute;
  padding-top: 90px;
  background: white;
  left: 0;
  min-height: 100vh;
  position: relative;
  width: 100vw;
  color: #041F2F;
}
@media (min-width: 1400px) {
  .mobile-menu {
    display: none !important;
  }
}

body.fancybox-active {
  overflow: hidden;
}

body.fancybox-iosfix {
  position: fixed;
  left: 0;
  right: 0;
}

.fancybox-is-hidden {
  position: absolute;
  top: -9999px;
  left: -9999px;
  visibility: hidden;
}

.fancybox-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99992;
  -webkit-tap-highlight-color: transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.fancybox-outer {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.87;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption-wrap {
  position: absolute;
  direction: ltr;
  z-index: 99997;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0s linear 0.25s;
  box-sizing: border-box;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption-wrap {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s, visibility 0s;
}

.fancybox-infobar {
  top: 0;
  left: 0;
  font-size: 13px;
  padding: 0 10px;
  height: 44px;
  min-width: 44px;
  line-height: 44px;
  color: #ccc;
  text-align: center;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: subpixel-antialiased;
  mix-blend-mode: exclusion;
}

.fancybox-toolbar {
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
}

.fancybox-stage {
  overflow: hidden;
  direction: ltr;
  z-index: 99994;
  -webkit-transform: translate3d(0, 0, 0);
}

.fancybox-is-closing .fancybox-stage {
  overflow: visible;
}

.fancybox-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: auto;
  outline: none;
  white-space: normal;
  box-sizing: border-box;
  text-align: center;
  z-index: 99994;
  -webkit-overflow-scrolling: touch;
  display: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
}

.fancybox-slide::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block;
}

.fancybox-slide--image {
  overflow: visible;
}

.fancybox-slide--image::before {
  display: none;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--video iframe {
  background: #000;
}

.fancybox-slide--map .fancybox-content,
.fancybox-slide--map iframe {
  background: #E5E3DF;
}

.fancybox-slide--next {
  z-index: 99995;
}

.fancybox-slide > * {
  display: inline-block;
  position: relative;
  padding: 24px;
  margin: 44px 0 44px;
  border-width: 0;
  vertical-align: middle;
  text-align: left;
  background-color: #fff;
  overflow: auto;
  box-sizing: border-box;
}

.fancybox-slide > title,
.fancybox-slide > style,
.fancybox-slide > meta,
.fancybox-slide > link,
.fancybox-slide > script,
.fancybox-slide > base {
  display: none;
}

.fancybox-slide .fancybox-image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  border: 0;
  z-index: 99995;
  background: transparent;
  cursor: default;
  overflow: visible;
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
}

.fancybox-can-zoomOut .fancybox-image-wrap {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-image-wrap {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.fancybox-can-drag .fancybox-image-wrap {
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox-is-dragging .fancybox-image-wrap {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox-image,
.fancybox-spaceball {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  max-width: none;
  max-height: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--iframe .fancybox-content {
  padding: 0;
  width: 80%;
  height: 80%;
  max-width: calc(100% - 100px);
  max-height: calc(100% - 88px);
  overflow: visible;
  background: #fff;
}

.fancybox-iframe {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}

.fancybox-error {
  margin: 0;
  padding: 40px;
  width: 100%;
  max-width: 380px;
  background: #fff;
  cursor: default;
}

.fancybox-error p {
  margin: 0;
  padding: 0;
  color: #444;
  font-size: 16px;
  line-height: 20px;
}

/* Buttons */
.fancybox-button {
  box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 10px;
  border: 0;
  border-radius: 0;
  background: rgba(30, 30, 30, 0.6);
  transition: color 0.3s ease;
  cursor: pointer;
  outline: none;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc;
}

.fancybox-button:focus,
.fancybox-button:hover {
  color: #fff;
}

.fancybox-button[disabled] {
  color: #ccc;
  cursor: default;
  opacity: 0.6;
}

.fancybox-button svg {
  display: block;
  position: relative;
  overflow: visible;
  shape-rendering: geometricPrecision;
}

.fancybox-button svg path {
  fill: currentColor;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 3;
}

.fancybox-button--share svg path {
  stroke-width: 1;
}

.fancybox-button--play svg path:nth-child(2) {
  display: none;
}

.fancybox-button--pause svg path:nth-child(1) {
  display: none;
}

.fancybox-button--zoom svg path {
  fill: transparent;
}

/* Navigation arrows */
.fancybox-navigation {
  display: none;
}

.fancybox-show-nav .fancybox-navigation {
  display: block;
}

.fancybox-navigation button {
  position: absolute;
  top: 50%;
  margin: -50px 0 0 0;
  z-index: 99997;
  background: transparent;
  width: 60px;
  height: 100px;
  padding: 17px;
}

.fancybox-navigation button:before {
  content: "";
  position: absolute;
  top: 30px;
  right: 10px;
  width: 40px;
  height: 40px;
  background: rgba(30, 30, 30, 0.6);
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
}

.fancybox-navigation .fancybox-button--arrow_right {
  right: 0;
}

/* Close button on the top right corner of html content */
.fancybox-close-small {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  z-index: 10;
  cursor: pointer;
}

.fancybox-close-small:after {
  content: "×";
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
  font: 20px/30px Arial, "Helvetica Neue", Helvetica, sans-serif;
  color: #888;
  font-weight: 300;
  text-align: center;
  border-radius: 50%;
  border-width: 0;
  background-color: transparent;
  transition: background-color 0.25s;
  box-sizing: border-box;
  z-index: 2;
}

.fancybox-close-small:focus {
  outline: none;
}

.fancybox-close-small:focus:after {
  outline: 1px dotted #888;
}

.fancybox-close-small:hover:after {
  color: #555;
  background: #eee;
}

.fancybox-slide--image .fancybox-close-small,
.fancybox-slide--iframe .fancybox-close-small {
  top: 0;
  right: -44px;
}

.fancybox-slide--image .fancybox-close-small:after,
.fancybox-slide--iframe .fancybox-close-small:after {
  font-size: 35px;
  color: #aaa;
}

.fancybox-slide--image .fancybox-close-small:hover:after,
.fancybox-slide--iframe .fancybox-close-small:hover:after {
  color: #fff;
  background: transparent;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-drag .fancybox-close-small {
  display: none;
}

/* Caption */
.fancybox-caption-wrap {
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 2vw 0 2vw;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.6) 80%, rgba(0, 0, 0, 0.8) 100%);
  pointer-events: none;
}

.fancybox-caption {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 14px;
  color: #fff;
  line-height: 20px;
  -webkit-text-size-adjust: none;
}

.fancybox-caption a,
.fancybox-caption button,
.fancybox-caption select {
  pointer-events: all;
  position: relative;
  /* Fix IE11 */
}

.fancybox-caption a {
  color: #fff;
  text-decoration: underline;
}

/* Loading indicator */
.fancybox-slide > .fancybox-loading {
  border: 6px solid rgba(100, 100, 100, 0.4);
  border-top: 6px solid rgba(255, 255, 255, 0.6);
  border-radius: 100%;
  height: 50px;
  width: 50px;
  -webkit-animation: fancybox-rotate 0.8s infinite linear;
  animation: fancybox-rotate 0.8s infinite linear;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
  z-index: 99999;
}

@-webkit-keyframes fancybox-rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fancybox-rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
/* Transition effects */
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  opacity: 0;
}

.fancybox-fx-slide.fancybox-slide--next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  opacity: 0;
}

.fancybox-fx-slide.fancybox-slide--current {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  -webkit-transform: scale3d(1.5, 1.5, 1.5);
  transform: scale3d(1.5, 1.5, 1.5);
  opacity: 0;
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  -webkit-transform: scale3d(0.5, 0.5, 0.5);
  transform: scale3d(0.5, 0.5, 0.5);
  opacity: 0;
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  opacity: 1;
}

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  -webkit-transform: rotate(-360deg);
  -ms-transform: rotate(-360deg);
  transform: rotate(-360deg);
  opacity: 0;
}

.fancybox-fx-rotate.fancybox-slide--next {
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
  opacity: 0;
}

.fancybox-fx-rotate.fancybox-slide--current {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  opacity: 1;
}

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
  opacity: 0;
}

.fancybox-fx-circular.fancybox-slide--next {
  -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
  opacity: 0;
}

.fancybox-fx-circular.fancybox-slide--current {
  -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  opacity: 1;
}

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  -webkit-transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  -webkit-transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
}

/* Share */
.fancybox-share {
  padding: 30px;
  border-radius: 3px;
  background: #f4f4f4;
  max-width: 90%;
}

.fancybox-share h1 {
  color: #222;
  margin: 0 0 20px 0;
  font-size: 33px;
  font-weight: 700;
  text-align: center;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
  text-align: center;
}

.fancybox-share p:first-of-type {
  margin-right: -10px;
}

.fancybox-share_button {
  display: inline-block;
  text-decoration: none;
  margin: 0 10px 10px 0;
  padding: 10px 20px;
  border: 0;
  border-radius: 3px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16);
  background: #fff;
  white-space: nowrap;
  font-size: 16px;
  line-height: 23px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  min-width: 140px;
  color: #707070;
  transition: all 0.2s;
}

.fancybox-share_button:focus,
.fancybox-share_button:hover {
  text-decoration: none;
  color: #333;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.3);
}

.fancybox-share_button svg {
  margin-right: 5px;
  width: 20px;
  height: 20px;
  vertical-align: text-bottom;
}

.fancybox-share input {
  box-sizing: border-box;
  width: 100%;
  margin: 5px 0 0 0;
  padding: 10px 15px;
  border: 1px solid #d7d7d7;
  border-radius: 3px;
  background: #ebebeb;
  color: #5d5b5b;
  font-size: 14px;
  outline: none;
}

/* Thumbs */
.fancybox-thumbs {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 212px;
  margin: 0;
  padding: 2px 2px 4px 2px;
  background: #fff;
  -webkit-tap-highlight-color: transparent;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  box-sizing: border-box;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-y: hidden;
  overflow-x: auto;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs > ul {
  list-style: none;
  position: absolute;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  font-size: 0;
  white-space: nowrap;
}

.fancybox-thumbs-x > ul {
  overflow: hidden;
}

.fancybox-thumbs-y > ul::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y > ul::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y > ul::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs > ul > li {
  float: left;
  overflow: hidden;
  padding: 0;
  margin: 2px;
  width: 100px;
  height: 75px;
  max-width: calc(50% - 4px);
  max-height: calc(100% - 8px);
  position: relative;
  cursor: pointer;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  box-sizing: border-box;
}

li.fancybox-thumbs-loading {
  background: rgba(0, 0, 0, 0.1);
}

.fancybox-thumbs > ul > li > img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: none;
  max-height: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-thumbs > ul > li:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 4px solid #4ea7f9;
  z-index: 99991;
  opacity: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fancybox-thumbs > ul > li.fancybox-thumbs-active:before {
  opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 800px) {
  .fancybox-thumbs {
    width: 110px;
  }

  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }

  .fancybox-thumbs > ul > li {
    max-width: calc(100% - 10px);
  }
}
.user-manual-index .container {
  margin: 40px auto;
  padding: 0 20px;
}
.user-manual-index .breadcrumbs .container {
  margin: 0 auto;
}
@media (min-width: 900px) {
  .user-manual-index .user-manual-list {
    display: flex;
    flex-wrap: wrap;
  }
}
.user-manual-index .user-manual-list .user-manual-list-item {
  padding: 15px;
  text-align: center;
  margin: 0;
}
@media (min-width: 900px) {
  .user-manual-index .user-manual-list .user-manual-list-item {
    padding: 20px;
    flex: 50% 0 0;
    width: 50%;
  }
}
.user-manual-index .user-manual-list .user-manual-list-item a {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  padding: 20px;
  display: block;
  transition: all ease 0.5s;
  text-transform: uppercase;
}
@media (min-width: 900px) {
  .user-manual-index .user-manual-list .user-manual-list-item a {
    font-size: 36px;
    padding: 40px 20px;
  }
}
.user-manual-index .user-manual-list .user-manual-list-item a:hover {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
  background: #fcfcfc;
}
.user-manual-index .search-container {
  text-align: center;
}
.user-manual-index .search-container input {
  width: auto;
  margin-bottom: 20px;
  background: url("/assets/img/icon_search.svg") left 5px center;
  background-size: 28px;
  background-repeat: no-repeat;
  padding-left: 40px;
}
.user-manual-index .search-results {
  text-align: left;
  max-width: 600px;
  margin: 0 auto 20px;
}
.user-manual-index .search-results a {
  font-size: 16px;
  line-height: 1.5;
  text-transform: uppercase;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
}
.user-manual-index .search-results a span {
  display: block;
  font-weight: bold;
  margin-top: 7px;
  font-size: 10px;
  text-transform: uppercase;
}

.user-manual {
  padding-bottom: 30px;
  /*h3{
      font-weight: bold;
  }*/
  /*.text-section {
      @media (min-width: 1240px) {
          padding: 30px 0;
      }
  }*/
}
@media (min-width: 1240px) {
  .user-manual .chapter {
    padding: 30px 0;
  }
  .user-manual .chapter:last-of-type {
    padding-bottom: 0;
  }
}
.user-manual .chapter .chapter-header {
  padding-bottom: 0;
}
.user-manual .chapter .chapter-header h2 {
  font-size: 30px;
  margin: 0 auto;
  line-height: 1.33;
  margin-bottom: 15px;
}
@media (min-width: 900px) {
  .user-manual .chapter .chapter-header h2 {
    font-size: 40px;
  }
}
@media (min-width: 800px) {
  .user-manual .chapter .chapter-header .text-section {
    padding: 30px 0;
  }
}
@media (min-width: 800px) {
  .user-manual .text-section {
    padding: 30px 0;
  }
}
.user-manual .text-section .section-header {
  padding: 0;
}
@media (min-width: 600px) {
  .user-manual .text-section .section-header {
    padding-bottom: 20px;
  }
}
.user-manual .text-section .section-header h2 {
  margin-bottom: 15px;
  line-height: 1.33;
  text-transform: none;
}
.user-manual ul, .user-manual ol {
  margin-left: auto;
  margin-right: auto;
}
.user-manual .the-content {
  padding: 0;
}
@media (min-width: 600px) {
  .user-manual .the-content {
    padding: 0 20px;
  }
}
.user-manual .the-content figure {
  margin: 0 auto;
  display: block;
  text-align: center;
  /*display: flex;
  flex-wrap: wrap;
  justify-content: center;


  @media(min-width: $mobile-menu-break) {
      flex-wrap: nowrap;
  }*/
  /*img {
      width: auto !important;

      @media(max-width: $mobile-menu-break - 1) {
          flex: 100%;
          height: auto !important;
      }
  }*/
}
.user-manual .the-content figure img {
  display: inline-block;
}
.user-manual .the-content figure figcaption {
  font-style: italic;
  font-size: 15px;
  margin-top: 4px;
}
.user-manual .the-content table {
  /*max-width: 590px;*/
  margin: 20px auto;
  line-height: 1.33;
  width: 100%;
}
@media (min-width: 800px) {
  .user-manual .the-content table {
    display: table;
  }
}
.user-manual .the-content table figure {
  text-align: left;
}
.user-manual .the-content table thead td, .user-manual .the-content table th {
  font-weight: bold;
}
.user-manual .the-content table td, .user-manual .the-content table th {
  vertical-align: top;
}
.user-manual .the-content h4 {
  max-width: none;
}
@media (min-width: 800px) {
  .user-manual .the-content h4 {
    max-width: 590px;
  }
}

.table-of-contents {
  /*background: #eaf0f5;*/
}
.table-of-contents.collapse {
  display: none;
}
@media (min-width: 800px) {
  .table-of-contents.collapse {
    display: block;
  }
}
.table-of-contents .content-list, .table-of-contents .figure-list {
  padding: 40px 30px 20px;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.3;
  font-size: 16px;
}
@media (max-width: 800px) {
  .table-of-contents .content-list h2, .table-of-contents .figure-list h2 {
    font-size: 1.5rem;
  }
}
.table-of-contents .content-list a, .table-of-contents .figure-list a {
  text-decoration: none;
}
.table-of-contents .content-list .content-list-chapter, .table-of-contents .content-list .figure-list-element, .table-of-contents .figure-list .content-list-chapter, .table-of-contents .figure-list .figure-list-element {
  margin: 10px 0;
  font-weight: bold;
}
.table-of-contents .content-list .content-list-section, .table-of-contents .figure-list .content-list-section {
  padding-left: 20px;
  margin: 10px 0;
  font-weight: normal;
}

.user-manual-controls {
  margin: 20px 0;
  text-align: center;
}
@media (max-width: 800px) {
  .user-manual-controls {
    display: none;
  }
}
.user-manual-controls a {
  text-decoration: none;
}

.sticky-mobile {
  background: white;
}
@media (max-width: 800px) {
  .sticky-mobile.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99;
    width: 100%;
    max-height: 100%;
    overflow-y: scroll;
  }
}

.user-manual-mobile-controls {
  padding: 20px 0;
  background: #fafafa;
  text-align: center;
}
@media (min-width: 800px) {
  .user-manual-mobile-controls {
    display: none;
  }
}

.scroll-to-toc {
  opacity: 0;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99;
  background: white;
  transition: opacity ease-in-out 0.3s;
}
@media (min-width: 800px) {
  .scroll-to-toc.visible {
    opacity: 1;
  }
}

.section-base {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.section-header {
  padding: 20px;
}
@media (min-width: 1240px) {
  .section-header {
    padding: 0;
  }
}
.section-header.padded {
  padding-top: 20px;
}
@media (min-width: 600px) {
  .section-header.padded {
    padding-top: 50px;
  }
}
@media (min-width: 900px) {
  .section-header.padded {
    padding-top: 70px;
  }
}
@media (min-width: 1240px) {
  .section-header.padded {
    padding-top: 90px;
  }
}

.top {
  padding-bottom: 20px;
  border-bottom: 1px solid #091F2E;
  position: relative;
  margin-bottom: 20px;
}
.top.arrow:after {
  content: "";
  background-image: url(/assets/img/arrow_blue.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  width: 17px;
  height: 10px;
  top: 10px;
}

.bottom .lead {
  margin-top: 30px;
  font-size: 15px;
  line-height: 1.8;
  font-family: "ff-tisa-sans-web-pro", sans-serif;
  font-weight: 300;
}

.content {
  padding: 0px;
}
@media (min-width: 1240px) {
  .content {
    padding: 60px 0;
  }
}

.line {
  width: 100%;
  height: 1px;
  background-color: rgba(0, 52, 66, 0.4);
  margin: 15px 0;
}
@media (min-width: 600px) {
  .line {
    margin: 30px 0;
  }
}
@media (min-width: 600px) {
  .line.w270 {
    max-width: 270px;
  }
}
.line.cyan {
  margin: 15px 0 30px;
  background-color: #00A3E0;
}

.smallbold-title {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.banner-section {
  padding: 120px 20px;
}
@media (min-width: 800px) {
  .banner-section {
    padding: 120px 20px;
  }
}
@media (min-width: 1240px) {
  .banner-section {
    padding: 120px 0;
  }
}

.banner-content {
  max-width: 850px;
}
.banner-content.center {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .banner-content.center {
    padding-top: 97px;
  }
}

.banner-top-title {
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 19px;
  text-transform: uppercase;
  margin-bottom: 50px;
}

.banner-title {
  display: block;
  margin-bottom: 20px;
}
.banner-title > .title {
  display: inline;
  text-transform: uppercase;
}

.banner-lead {
  display: block;
}
.banner-lead > .lead {
  display: inline;
}

.overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.7;
}

.container {
  position: relative;
  z-index: 2;
}

.segments {
  padding: 20px;
  background-color: #091F2E;
}
@media (min-width: 800px) {
  .segments {
    padding: 33px 20px;
  }
}
@media (min-width: 1240px) {
  .segments {
    padding: 33px 0;
  }
}
.segments .container {
  justify-content: space-between;
}

.segment {
  color: white;
  position: relative;
}
.segment h2 {
  margin-bottom: 0px;
  font-weight: 300;
  border-bottom: 2px solid #68E7B2;
  color: white;
  display: inline-block;
  padding-bottom: 5px;
}
@media (max-width: 800px) {
  .segment {
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
  }
}

.lefttop-color {
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 7px;
}

.bannerfrontpage-section {
  padding: 60px 20px;
  object-fit: cover;
}
@media (min-width: 800px) {
  .bannerfrontpage-section {
    padding: 120px 20px;
  }
}
@media (min-width: 1240px) {
  .bannerfrontpage-section {
    padding: 167px 0;
  }
}
.bannerfrontpage-section .banner-content {
  max-width: 470px;
}

.banner-gradient {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-flow: row nowrap;
}
@media (min-width: 800px) {
  .banner-gradient {
    width: 50%;
  }
}
.banner-gradient .solid {
  background: rgba(9, 35, 66, 0.8);
  flex-grow: 1;
}
@media (min-width: 800px) {
  .banner-gradient .solid {
    background: #092342;
  }
}
.banner-gradient .gradient {
  display: none;
  width: 476px;
  background: #092342;
}
@media (min-width: 800px) {
  .banner-gradient .gradient {
    display: block;
    background: linear-gradient(90deg, #092342 0%, rgba(9, 35, 66, 0.991157) 12.53%, rgba(9, 35, 66, 0.965884) 22.85%, rgba(9, 35, 66, 0.926066) 31.29%, rgba(9, 35, 66, 0.873589) 38.15%, rgba(9, 35, 66, 0.810338) 43.75%, rgba(9, 35, 66, 0.738198) 48.41%, rgba(9, 35, 66, 0.659054) 52.45%, rgba(9, 35, 66, 0.574792) 56.17%, rgba(9, 35, 66, 0.487297) 59.89%, rgba(9, 35, 66, 0.398453) 63.94%, rgba(9, 35, 66, 0.310147) 68.62%, rgba(9, 35, 66, 0.224264) 74.25%, rgba(9, 35, 66, 0.142688) 81.15%, rgba(9, 35, 66, 0.0673048) 89.63%, rgba(9, 35, 66, 0) 100%);
  }
}

.contacts-section {
  padding: 20px;
}
@media (min-width: 800px) {
  .contacts-section {
    padding: 60px 20px;
  }
}
@media (min-width: 1240px) {
  .contacts-section {
    padding: 60px 0;
  }
}
.contacts-section .content {
  padding: 20px 0;
}

.contacts {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}

.contact {
  display: flex;
  background-color: white;
  margin-bottom: 30px;
}

.contact-content {
  padding: 10px;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
}
@media (min-width: 600px) {
  .contact-content {
    padding: 30px;
  }
}
.contact-content .top {
  border-bottom: none;
  margin-bottom: 0;
}
@media (min-width: 600px) {
  .contact-content .top {
    margin-bottom: 20px;
  }
}
.contact-content .top h4 {
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media (max-width: 800px) {
  .contact-content .mail, .contact-content .phone, .contact-content .position {
    font-size: 13px;
  }
  .contact-content h4 {
    font-size: 15px;
  }
}

.contact-image {
  padding: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 800px) {
  .contact-image {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 600px) {
  .contact-image {
    padding: 0;
  }
}
.contact-image img {
  height: auto;
  max-width: 100%;
  width: 86px;
}
@media (min-width: 600px) {
  .contact-image img {
    /*height: 100%;*/
    width: 175px;
  }
}

.position {
  font-size: 15px;
  color: #A6A8AA;
}

.mail, .phone, .fax {
  margin: 10px 0;
}
.mail > *, .phone > *, .fax > * {
  display: inline-block;
}

.map-contacts.open {
  display: block;
}
.map-contacts .container {
  display: block;
}
.map-contacts .container.active {
  display: block;
}
.map-contacts .container p {
  max-width: 100%;
}
.map-contacts .content {
  padding: 0;
}

.map-label {
  margin-bottom: 15px;
}

.employee-wrap {
  padding: 0px;
}
@media (min-width: 800px) {
  .employee-wrap {
    padding: 60px 20px;
  }
}
@media (min-width: 1240px) {
  .employee-wrap {
    padding: 60px 0;
  }
}

.filter {
  background-color: white;
  padding: 20px;
}
@media (min-width: 800px) {
  .filter {
    max-width: calc(30% - 30px);
    flex: 0 0 calc(30% - 30px);
    margin-right: 30px;
    padding: 30px;
  }
}
.filter label {
  display: inline-block;
}

.employees {
  background-color: white;
  padding: 30px;
}

.employee .flex-50 {
  display: flex;
  align-items: center;
}
@media (max-width: 800px) {
  .employee .flex-50 {
    justify-content: space-between;
  }
}
.employee .flex-50.buttons {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
}
@media (min-width: 800px) {
  .employee .flex-50.buttons {
    align-items: flex-end;
  }
}
.employee .flex-50.buttons .mail img, .employee .flex-50.buttons .phone img, .employee .flex-50.buttons .fax img {
  margin-left: 15px;
}
@media (max-width: 800px) {
  .employee .flex-50.buttons .mail, .employee .flex-50.buttons .phone {
    display: flex;
  }
  .employee .flex-50.buttons .mail img, .employee .flex-50.buttons .phone img {
    order: 1;
    margin-left: 0;
    margin-right: 15px;
  }
  .employee .flex-50.buttons .mail span, .employee .flex-50.buttons .phone span {
    order: 2;
  }
}
@media (max-width: 800px) {
  .employee .flex-50 .emp-img {
    order: 2;
  }
  .employee .flex-50 .emp-info {
    order: 1;
    padding-left: 0;
  }
}
.employee .line {
  margin: 5px 0;
}
.employee > .flex {
  flex-flow: row nowrap;
}

.emp-info {
  display: flex;
  flex-flow: column;
  padding: 10px 10px 10px 30px;
}
.emp-info h3 {
  margin-bottom: 5px;
}

.location {
  margin-left: 24px;
}

.employee {
  display: flex;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.employee.hidden {
  display: none;
}

@media (min-width: 800px) {
  .divloc {
    padding: 80px 0 0;
  }
}
.divloc p {
  margin-bottom: 0;
}
.divloc .address {
  margin: 20px 0;
}

.address {
  white-space: pre-line;
}

@media (max-width: 800px) {
  .filters {
    display: none;
    margin-top: 30px;
  }
  .filters.open {
    display: block;
  }
}

.filter-top h3 {
  margin-bottom: 0;
}
.filter-top .expand {
  font-size: 24px;
}

.noimage {
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #ececec;
}

/*! Flickity v2.0.5
http://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: none;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: white;
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  /* vertically center */
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.flickity-prev-next-button:hover {
  background: white;
}

.flickity-prev-next-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #09F;
}

.flickity-prev-next-button:active {
  opacity: 0.6;
}

.flickity-prev-next-button.previous {
  left: 10px;
}

.flickity-prev-next-button.next {
  right: 10px;
}

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.flickity-prev-next-button svg {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

.flickity-prev-next-button .arrow {
  fill: #333;
}

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

.carousel-cell {
  height: 100vw;
}
@media (min-width: 600px) {
  .carousel-cell {
    height: 400px;
  }
}
@media (min-width: 900px) {
  .carousel-cell {
    height: 500px;
  }
}
.carousel-cell > img {
  display: block;
  position: relative;
}
@media (max-width: 600px) {
  .carousel-cell > img {
    height: auto;
    width: 100vw;
  }
}
.carousel-cell > header {
  color: white;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 5px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
@media (min-width: 600px) {
  .carousel-cell > header {
    padding: 30px;
  }
}

.flickity-caption {
  margin: 0;
}
@media (max-width: 600px) {
  .flickity-caption {
    font-size: 11px;
    line-height: 1.1;
  }
}

.flatpickr-calendar {
  background: transparent;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  text-align: center;
  padding: 0;
  animation: none;
  direction: ltr;
  border: 0;
  font-size: 14px;
  line-height: 24px;
  border-radius: 5px;
  position: absolute;
  width: 315px;
  box-sizing: border-box;
  background: #fff;
  box-shadow: 1px 0 0 #e6e6e6, -1px 0 0 #e6e6e6, 0 1px 0 #e6e6e6, 0 -1px 0 #e6e6e6, 0 3px 13px rgba(0, 0, 0, 0.08);
}

.flatpickr-calendar.open,
.flatpickr-calendar.inline {
  opacity: 1;
  visibility: visible;
  overflow: visible;
  max-height: 640px;
}

.flatpickr-calendar.open {
  display: inline-block;
  animation: flatpickrFadeInDown 300ms cubic-bezier(0, 1, 0.5, 1);
  z-index: 99999;
}

.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px;
}

.flatpickr-calendar.static {
  position: absolute;
  top: calc(100% + 2px);
}

.flatpickr-calendar.static.open {
  z-index: 999;
  display: block;
}

.flatpickr-calendar.hasWeeks {
  width: auto;
}

.flatpickr-calendar.showTimeInput.hasTime .flatpickr-time {
  height: 40px;
  border-top: 1px solid #e6e6e6;
}

.flatpickr-calendar.noCalendar.hasTime .flatpickr-time {
  height: auto;
}

.flatpickr-calendar:before,
.flatpickr-calendar:after {
  position: absolute;
  display: block;
  pointer-events: none;
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  left: 22px;
}

.flatpickr-calendar.rightMost:before,
.flatpickr-calendar.rightMost:after {
  left: auto;
  right: 22px;
}

.flatpickr-calendar:before {
  border-width: 5px;
  margin: 0 -5px;
}

.flatpickr-calendar:after {
  border-width: 4px;
  margin: 0 -4px;
}

.flatpickr-calendar.arrowTop:before,
.flatpickr-calendar.arrowTop:after {
  bottom: 100%;
}

.flatpickr-calendar.arrowTop:before {
  border-bottom-color: #e6e6e6;
}

.flatpickr-calendar.arrowTop:after {
  border-bottom-color: #fff;
}

.flatpickr-calendar.arrowBottom:before,
.flatpickr-calendar.arrowBottom:after {
  top: 100%;
}

.flatpickr-calendar.arrowBottom:before {
  border-top-color: #e6e6e6;
}

.flatpickr-calendar.arrowBottom:after {
  border-top-color: #fff;
}

.flatpickr-wrapper {
  position: relative;
  display: inline-block;
}

.flatpickr-month {
  background: transparent;
  color: rgba(0, 0, 0, 0.9);
  fill: rgba(0, 0, 0, 0.9);
  height: 28px;
  line-height: 24px;
  text-align: center;
  position: relative;
  user-select: none;
}

.flatpickr-prev-month,
.flatpickr-next-month {
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 10px;
  height: 16px;
  line-height: 16px;
}

.flatpickr-prev-month i,
.flatpickr-next-month i {
  position: relative;
}

.flatpickr-prev-month.flatpickr-prev-month,
.flatpickr-next-month.flatpickr-prev-month {
  /*
          /*rtl:begin:ignore*/
  /*
          */
  left: calc(3.57% - 1.5px);
  /*
          /*rtl:end:ignore*/
  /*
          */
}

/*
        /*rtl:begin:ignore*/
/*
        /*rtl:end:ignore*/
.flatpickr-prev-month.flatpickr-next-month,
.flatpickr-next-month.flatpickr-next-month {
  /*
          /*rtl:begin:ignore*/
  /*
          */
  right: calc(3.57% - 1.5px);
  /*
          /*rtl:end:ignore*/
  /*
          */
}

/*
        /*rtl:begin:ignore*/
/*
        /*rtl:end:ignore*/
.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
  color: #959ea9;
}

.flatpickr-prev-month:hover svg,
.flatpickr-next-month:hover svg {
  fill: #f64747;
}

.flatpickr-prev-month svg,
.flatpickr-next-month svg {
  width: 14px;
}

.flatpickr-prev-month svg path,
.flatpickr-next-month svg path {
  transition: fill 0.1s;
  fill: inherit;
}

.numInputWrapper {
  position: relative;
  height: auto;
}

.numInputWrapper input,
.numInputWrapper span {
  display: inline-block;
}

.numInputWrapper input {
  width: 100%;
}

.numInputWrapper span {
  position: absolute;
  right: 0;
  width: 14px;
  padding: 0 4px 0 2px;
  height: 50%;
  line-height: 50%;
  opacity: 0;
  cursor: pointer;
  border: 1px solid rgba(57, 57, 57, 0.05);
  box-sizing: border-box;
}

.numInputWrapper span:hover {
  background: rgba(0, 0, 0, 0.1);
}

.numInputWrapper span:active {
  background: rgba(0, 0, 0, 0.2);
}

.numInputWrapper span:after {
  display: block;
  content: "";
  position: absolute;
  top: 33%;
}

.numInputWrapper span.arrowUp {
  top: 0;
  border-bottom: 0;
}

.numInputWrapper span.arrowUp:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(57, 57, 57, 0.6);
}

.numInputWrapper span.arrowDown {
  top: 50%;
}

.numInputWrapper span.arrowDown:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(57, 57, 57, 0.6);
}

.numInputWrapper span svg {
  width: inherit;
  height: auto;
}

.numInputWrapper span svg path {
  fill: rgba(0, 0, 0, 0.5);
}

.numInputWrapper:hover {
  background: rgba(0, 0, 0, 0.05);
}

.numInputWrapper:hover span {
  opacity: 1;
}

.flatpickr-current-month {
  font-size: 135%;
  line-height: inherit;
  font-weight: 300;
  color: inherit;
  position: absolute;
  width: 75%;
  left: 12.5%;
  top: 5px;
  display: inline-block;
  text-align: center;
}

.flatpickr-current-month span.cur-month {
  font-family: inherit;
  font-weight: 700;
  color: inherit;
  display: inline-block;
  margin-left: 7px;
  padding: 0;
}

.flatpickr-current-month span.cur-month:hover {
  background: rgba(0, 0, 0, 0.05);
}

.flatpickr-current-month .numInputWrapper {
  width: 6ch;
  width: 7ch\0 ;
  display: inline-block;
}

.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: rgba(0, 0, 0, 0.9);
}

.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: rgba(0, 0, 0, 0.9);
}

.flatpickr-current-month input.cur-year {
  background: transparent;
  box-sizing: border-box;
  color: inherit;
  cursor: default;
  padding: 0 0 0 0.5ch;
  margin: 0;
  display: inline;
  font-size: inherit;
  font-family: inherit;
  font-weight: 300;
  line-height: inherit;
  height: initial;
  border: 0;
  border-radius: 0;
  vertical-align: initial;
}

.flatpickr-current-month input.cur-year:focus {
  outline: 0;
}

.flatpickr-current-month input.cur-year[disabled],
.flatpickr-current-month input.cur-year[disabled]:hover {
  font-size: 100%;
  color: rgba(0, 0, 0, 0.5);
  background: transparent;
  pointer-events: none;
}

.flatpickr-weekdays {
  background: transparent;
  text-align: center;
  overflow: hidden;
}

.flatpickr-days,
.flatpickr-weeks {
  padding: 1px 0 0 0;
}

.flatpickr-days {
  padding: 0;
  outline: 0;
  text-align: left;
  width: 315px;
  box-sizing: border-box;
  display: inline-block;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -ms-flex-pack: justify;
  justify-content: space-around;
}

.flatpickr-day {
  background: none;
  border: 1px solid transparent;
  border-radius: 150px;
  box-sizing: border-box;
  color: #393939;
  cursor: pointer;
  font-weight: 400;
  width: 14.2857143%;
  flex-basis: 14.2857143%;
  max-width: 40px;
  height: 40px;
  line-height: 40px;
  margin: 0;
  display: inline-block;
  position: relative;
  justify-content: center;
  text-align: center;
}

.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange,
.flatpickr-day:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover,
.flatpickr-day:focus,
.flatpickr-day.prevMonthDay:focus,
.flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #e6e6e6;
  border-color: #e6e6e6;
}

.flatpickr-day.today {
  border-color: #959ea9;
}

.flatpickr-day.today:hover,
.flatpickr-day.today:focus {
  border-color: #959ea9;
  background: #959ea9;
  color: #fff;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
  background: #569ff7;
  color: #fff;
  border-color: #569ff7;
}

.flatpickr-day.selected.startRange,
.flatpickr-day.startRange.startRange,
.flatpickr-day.endRange.startRange {
  border-radius: 50px 0 0 50px;
}

.flatpickr-day.selected.endRange,
.flatpickr-day.startRange.endRange,
.flatpickr-day.endRange.endRange {
  border-radius: 0 50px 50px 0;
}

.flatpickr-day.selected.startRange.endRange,
.flatpickr-day.startRange.startRange.endRange,
.flatpickr-day.endRange.startRange.endRange {
  border-radius: 50px;
}

.flatpickr-day.inRange {
  border-radius: 0;
  box-shadow: -5px 0 0 #e6e6e6, 5px 0 0 #e6e6e6;
}

.flatpickr-day.disabled,
.flatpickr-day.disabled:hover {
  pointer-events: none;
}

.flatpickr-day.disabled,
.flatpickr-day.disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay,
.flatpickr-day.notAllowed,
.flatpickr-day.notAllowed.prevMonthDay,
.flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(57, 57, 57, 0.3);
  background: transparent;
  border-color: transparent;
  cursor: default;
}

span.flatpickr-weekday {
  cursor: default;
  font-size: 90%;
  color: rgba(0, 0, 0, 0.54);
  height: 27.3333333333px;
  line-height: 24px;
  margin: 0;
  background: transparent;
  text-align: center;
  display: block;
  float: left;
  width: 14.28%;
  font-weight: bold;
  margin: 0;
  padding-top: 3.3333333333px;
}

.rangeMode .flatpickr-day {
  margin-top: 1px;
}

.flatpickr-weekwrapper {
  display: inline-block;
  float: left;
}

.flatpickr-weekwrapper .flatpickr-weeks {
  padding: 1px 12px 0 12px;
  box-shadow: 1px 0 0 #e6e6e6;
}

.flatpickr-weekwrapper .flatpickr-weekday {
  float: none;
  width: 100%;
}

.flatpickr-weekwrapper span.flatpickr-day {
  display: block;
  width: 100%;
  max-width: none;
}

.flatpickr-innerContainer {
  display: block;
  display: flex;
  box-sizing: border-box;
  overflow: hidden;
}

.flatpickr-rContainer {
  display: inline-block;
  padding: 0;
  box-sizing: border-box;
}

.flatpickr-time {
  text-align: center;
  outline: 0;
  display: block;
  height: 0;
  line-height: 40px;
  max-height: 40px;
  box-sizing: border-box;
  overflow: hidden;
  transition: height 0.33s cubic-bezier(0, 1, 0.5, 1);
  display: flex;
}

.flatpickr-time:after {
  content: "";
  display: table;
  clear: both;
}

.flatpickr-time .numInputWrapper {
  flex: 1;
  width: 40%;
  height: 40px;
  float: left;
}

.flatpickr-time .numInputWrapper span.arrowUp:after {
  border-bottom-color: #393939;
}

.flatpickr-time .numInputWrapper span.arrowDown:after {
  border-top-color: #393939;
}

.flatpickr-time.hasSeconds .numInputWrapper {
  width: 26%;
}

.flatpickr-time.time24hr .numInputWrapper {
  width: 49%;
}

.flatpickr-time input {
  background: transparent;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  text-align: center;
  margin: 0;
  padding: 0;
  height: inherit;
  line-height: inherit;
  cursor: pointer;
  color: #393939;
  font-size: 14px;
  position: relative;
  box-sizing: border-box;
}

.flatpickr-time input.flatpickr-hour {
  font-weight: bold;
}

.flatpickr-time input.flatpickr-minute,
.flatpickr-time input.flatpickr-second {
  font-weight: 400;
}

.flatpickr-time input:focus {
  outline: 0;
  border: 0;
}

.flatpickr-time .flatpickr-time-separator,
.flatpickr-time .flatpickr-am-pm {
  height: inherit;
  display: inline-block;
  float: left;
  line-height: inherit;
  color: #393939;
  font-weight: bold;
  width: 2%;
  user-select: none;
}

.flatpickr-time .flatpickr-am-pm {
  outline: 0;
  width: 18%;
  cursor: pointer;
  text-align: center;
  font-weight: 400;
}

.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time .flatpickr-am-pm:focus {
  background: #f0f0f0;
}

.hasWeeks .flatpickr-days,
.hasTime .flatpickr-days {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.hasWeeks .flatpickr-days {
  border-left: 0;
}

@media all and (-ms-high-contrast: none) {
  .flatpickr-month {
    padding: 0;
  }

  .flatpickr-month svg {
    top: 0 !important;
  }
}
.flatpickr-input[readonly] {
  cursor: pointer;
}

@-moz-keyframes flatpickrFadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes flatpickrFadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@-o-keyframes flatpickrFadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes flatpickrFadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.gallery-section {
  padding: 0;
}

.gallery {
  display: flex;
  flex-flow: row wrap;
  margin: 0 auto;
  width: 100%;
}

.gallery-item {
  flex: 0 0 50%;
  outline: none;
  position: relative;
}
@media (min-width: 600px) {
  .gallery-item {
    flex: 0 0 33.33%;
  }
}
@media (min-width: 900px) {
  .gallery-item {
    flex: 0 0 25%;
  }
}
@media (min-width: 1240px) {
  .gallery-item {
    flex: 0 0 20%;
  }
}

.gallery-img {
  width: 100%;
}

.gallery-caption {
  background-color: rgba(0, 0, 0, 0.65);
  align-items: flex-end;
  color: white;
  cursor: zoom-in;
  display: flex;
  opacity: 0;
  padding: 30px;
  position: absolute;
  transition: all 200ms;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  max-width: 100%;
}
@media (min-width: 900px) {
  .gallery-caption:hover {
    opacity: 1;
  }
}

.expander-icon {
  position: absolute;
  top: 20px;
  right: 20px;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
        * Remove all paddings around the image on small screen
        */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.fullwidth-figure {
  background-color: white;
  position: relative;
}
.fullwidth-figure > img {
  height: auto;
  width: 100%;
}
.fullwidth-figure:after {
  content: "";
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.65) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.65) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.65) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#a6000000",GradientType=0 );
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.fullwidth-figcaption {
  color: #FFFFFF;
  position: absolute;
  bottom: 20px;
  left: 30px;
  line-height: 1.5;
  max-width: 500px;
  z-index: 500;
}

.containedimage-section {
  padding: 50px 0 20px 0;
}
@media (min-width: 600px) {
  .containedimage-section {
    padding: 60px 0 20px 0;
  }
}
@media (min-width: 900px) {
  .containedimage-section {
    padding: 65px 0 50px 0;
  }
}
@media (min-width: 1240px) {
  .containedimage-section {
    padding: 80px 0 50px 0;
  }
}

.contained-figure {
  display: block;
}
.contained-figure > img {
  height: auto;
  margin-bottom: 20px;
  width: 100%;
}

.centeredimg-section {
  height: 300px;
  position: relative;
  padding: 30px 0 30px 0;
  text-align: center;
}
@media (min-width: 600px) {
  .centeredimg-section {
    height: 350px;
    padding: 50px 0 50px 0;
  }
}
@media (min-width: 900px) {
  .centeredimg-section {
    height: 400px;
  }
}
@media (min-width: 1660px) {
  .centeredimg-section {
    height: 450px;
  }
}

.centered-figure {
  height: 100%;
}
.centered-figure > img {
  height: 100%;
  width: 100%;
}

.iconcards-section {
  padding: 50px 0 20px 0;
}
@media (min-width: 600px) {
  .iconcards-section {
    padding: 60px 0 20px 0;
  }
}
@media (min-width: 900px) {
  .iconcards-section {
    padding: 65px 0 50px 0;
  }
}
@media (min-width: 1240px) {
  .iconcards-section {
    padding: 80px 0 50px 0;
  }
}

.cards {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
}

.card-article {
  padding: 20px;
}

.card-icon {
  margin-bottom: 20px;
}
.card-icon > .img {
  display: inline-block;
}

.iconlinks-section {
  padding: 50px 0 20px 0;
}
@media (min-width: 600px) {
  .iconlinks-section {
    padding: 60px 0 20px 0;
  }
}
@media (min-width: 900px) {
  .iconlinks-section {
    padding: 65px 0 50px 0;
  }
}
@media (min-width: 1240px) {
  .iconlinks-section {
    padding: 80px 0 50px 0;
  }
}

.icon-link {
  align-items: flex-start;
  display: flex;
  text-decoration: none;
}
.icon-link > .icon {
  display: block;
  padding: 20px;
  width: 85px;
  vertical-align: middle;
}
.icon-link > .title {
  display: block;
  padding: 20px;
  vertical-align: middle;
}

.image-grid-section .image-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 730px;
  margin: 0 auto;
}
.image-grid-section .image-grid figure {
  padding: 20px;
  flex: 100% 0 0;
  text-align: center;
}
.image-grid-section .image-grid figure img {
  width: auto;
  margin: 0 auto 5px;
}
.image-grid-section .image-grid figure .image-text {
  font-style: italic;
  font-size: 15px;
}
@media (min-width: 600px) {
  .image-grid-section .image-grid figure.flex-50 {
    flex: 50% 0 0;
  }
}
.image-grid-section .the-content {
  padding: 0 20px;
}
.image-grid-section .print-only {
  display: none;
}

.imgandtext-section {
  margin: 20px;
}
@media (min-width: 800px) {
  .imgandtext-section {
    margin: 60px 20px;
  }
}
@media (min-width: 1240px) {
  .imgandtext-section {
    margin: 40px 0;
  }
}
.imgandtext-section .flex-50 > img, .imgandtext-section .flex-40 > img {
  padding: 20px;
}
@media (min-width: 800px) {
  .imgandtext-section .flex-50 > img, .imgandtext-section .flex-40 > img {
    padding: 40px;
  }
}
.imgandtext-section .flex-60 {
  padding: 20px;
}
@media (min-width: 800px) {
  .imgandtext-section .flex-60 {
    padding: 0;
  }
}
.imgandtext-section .lead {
  font-size: 1rem;
  max-width: initial;
}
.imgandtext-section .arrow:after {
  content: "";
  background-image: url(/assets/img/arrow_blue.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  width: 17px;
  height: 10px;
  top: 24px;
}
.imgandtext-section.wordandtext {
  padding-top: 20px;
}

.flex-image, .flex-title {
  padding: 20px;
  flex: 0 0 100%;
  max-width: 100%;
}
@media (min-width: 600px) {
  .flex-image, .flex-title {
    flex: 0 0 40%;
    max-width: 40%;
  }
}
.flex-image > .img, .flex-title > .img {
  height: auto;
  width: 100%;
}

.flex-content {
  max-width: 100%;
  padding: 20px;
}
@media (min-width: 600px) {
  .flex-content {
    flex: 0 0 60%;
    max-width: 60%;
  }
}

.normal-order {
  order: 0;
}

.alt-order {
  order: 0;
}
@media (min-width: 800px) {
  .alt-order {
    order: 1;
  }
}

.text-section {
  padding: 20px;
}
@media (min-width: 800px) {
  .text-section {
    padding: 60px 20px;
  }
}
@media (min-width: 1240px) {
  .text-section {
    padding: 60px 0;
  }
}
.text-section .section-header h2, .text-section .section-header p {
  margin: 0 auto 30px;
}

.the-content {
  padding: 0 20px;
  width: 100%;
}
.the-content p, .the-content div, .the-content ul, .the-content ol {
  margin: 0px auto 30px;
}
.the-content table, .the-content h1, .the-content h2, .the-content h3, .the-content h4, .the-content h5 {
  margin: 0 auto 20px;
  max-width: 590px;
}
.the-content > figure {
  max-width: 730px !important;
  width: 100% !important;
}
.the-content > figure img {
  height: auto !important;
  /*width: 100% !important;*/
}

.wrapper > section .the-content > figure {
  /*max-width: 730px !important;
  width: 100% !important;*/
}
.wrapper > section .the-content > figure img {
  height: auto !important;
  width: 100% !important;
}

.textblocks {
  max-width: 590px;
  margin: 0 auto;
}

.textblock {
  width: 100%;
  margin: 30px 0 60px;
}
.textblock p {
  white-space: pre-line;
}

.quote {
  padding: 30px 0;
  max-width: 628px;
  margin: 0 auto;
}

.quote-text {
  font-size: 22px;
  color: #00A3E0;
  font-weight: 600;
  font-style: italic;
  line-height: 1.55;
  text-align: center;
}

.quote-person {
  padding: 40px 0;
  white-space: pre-line;
  font-family: "ff-tisa-sans-web-pro", sans-serif;
  font-size: 14px;
  line-height: 1.64;
  text-align: center;
}

.quote-image {
  max-height: 60px;
  width: auto;
  text-align: center;
}
.quote-image img {
  max-height: 60px;
  margin: 0 auto;
}

.quote-content {
  font-size: 16px;
  line-height: 28px;
}

.videoembed-section {
  padding: 50px 20px 20px 20px;
}
@media (min-width: 600px) {
  .videoembed-section {
    padding: 60px 20px 20px 20px;
  }
}
@media (min-width: 900px) {
  .videoembed-section {
    padding: 65px 20px 50px 20px;
  }
}
@media (min-width: 1240px) {
  .videoembed-section {
    padding: 80px 20px 50px 20px;
  }
}

.map-section {
  display: block;
  width: 100%;
}

#map {
  height: 300px;
}
@media (min-width: 600px) {
  #map {
    height: 400px;
  }
}
@media (min-width: 900px) {
  #map {
    height: 500px;
  }
}
@media (min-width: 1240px) {
  #map {
    height: 600px;
  }
}

.feeds {
  display: flex;
  flex-flow: row wrap;
}
.feeds .feed {
  flex: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
@media (min-width: 600px) {
  .feeds .feed {
    flex: 50%;
    max-width: 50%;
    padding: 20px;
  }
}
@media (min-width: 900px) {
  .feeds .feed {
    flex: 33.33%;
    max-width: 33.33%;
  }
}

.keynumbers-section {
  padding: 50px 0 20px 0;
}
@media (min-width: 600px) {
  .keynumbers-section {
    padding: 60px 0 20px 0;
  }
}
@media (min-width: 900px) {
  .keynumbers-section {
    padding: 65px 0 50px 0;
  }
}
@media (min-width: 1240px) {
  .keynumbers-section {
    padding: 80px 0 50px 0;
  }
}

.number-item {
  padding: 20px;
}

.number {
  display: block;
  font-family: "ff-tisa-sans-web-pro", sans-serif;
  font-size: 2.7rem;
  font-style: italic;
}

.number-text {
  display: block;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 10px 10px;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  text-transform: none;
  overflow: visible;
}
.hamburger:focus {
  outline: none;
}
.hamburger .text {
  line-height: 1;
}

.hamburger-box {
  width: 35px;
  height: 19px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -0.5px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 35px;
  height: 1px;
  background-color: #041F2F;
  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: -9px;
}
.hamburger-inner::after {
  bottom: -9px;
}

/*
 * 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);
}

.news-section {
  padding: 20px;
}
@media (min-width: 800px) {
  .news-section {
    padding: 60px 20px;
  }
}
@media (min-width: 1240px) {
  .news-section {
    padding: 60px 0;
  }
}
.news-section .section-header {
  border-bottom: 1px solid #091F2E;
  margin-bottom: 40px;
}
.news-section .newsitems > .flex-50, .news-section .newsitems > .flex-30 {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  margin-bottom: 30px;
}
.news-section .newsitems:after {
  content: "";
  flex: 0 0 30%;
  max-width: 30%;
}

.news-listitem {
  background-color: #FFFFFF;
  display: flex;
  flex-flow: wrap;
}

.news-listheader {
  padding: 30px;
  flex: 1;
}
.news-listheader .date {
  margin-bottom: 20px;
}

@media (max-width: 800px) {
  .news-listimage {
    width: 100%;
  }
}
.news-listimage img {
  width: 100%;
}

.article-section .post-header {
  background-color: #041F2F;
  position: relative;
  color: white;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 40px 20px;
}
@media (min-width: 800px) {
  .article-section .post-header {
    padding: 80px 20px;
  }
}
@media (min-width: 1240px) {
  .article-section .post-header {
    padding: 120px 0;
  }
}
.article-section .overlay {
  background: rgba(9, 35, 66, 0.8);
}
.article-section .newsitems > .flex-50, .article-section .newsitems > .flex-30 {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  margin-bottom: 30px;
}
.article-section h1 {
  max-width: 616px;
  margin: 0 auto;
  text-align: center;
  font-size: 42px;
  text-transform: initial;
  line-height: 1.25;
}
.article-section .lead {
  max-width: 616px;
  margin: 1rem auto;
  text-align: center;
}

.post-content {
  max-width: 570px;
  margin: 50px auto;
  font-size: 1.3rem;
}

.post-article {
  max-width: 100%;
  padding: 0 20px;
}
@media (min-width: 800px) {
  .post-article {
    padding: 0;
  }
}

.post-main {
  margin: 50px auto 0;
}

.social-icon {
  color: #041F2F;
  margin-right: 10px;
  font-size: 20px;
}

.CTA-section {
  padding: 20px;
}
@media (min-width: 800px) {
  .CTA-section {
    padding: 60px 20px;
  }
}
@media (min-width: 1240px) {
  .CTA-section {
    padding: 60px 0;
  }
}
.CTA-section .content .flex-50 {
  display: flex;
  justify-content: center;
}

.shortcut-section {
  padding: 20px;
}
@media (min-width: 800px) {
  .shortcut-section {
    padding: 60px 20px;
  }
}
@media (min-width: 1240px) {
  .shortcut-section {
    padding: 60px 0;
  }
}

.shortcut {
  margin-bottom: 30px;
}

.shortcut-content {
  flex: 1;
}
@media (min-width: 1240px) {
  .shortcut-content {
    flex: 0.8;
  }
}
.shortcut-content h2 {
  text-transform: uppercase;
}

.shortcut-icon {
  margin-right: 40px;
  width: 40px;
  height: auto;
  display: none;
}
@media (min-width: 800px) {
  .shortcut-icon {
    display: block;
  }
}

.jobs {
  padding: 60px 0;
}

.job-wrap {
  margin: 0 1.5%;
  margin-bottom: 30px;
}

.job {
  display: block;
  padding: 30px;
  background-color: #FFFFFF;
}
.job h3 {
  font-size: 26px;
}

.division {
  position: relative;
  width: 100%;
  display: block;
}
.division .color {
  width: 30px;
  height: 7px;
}
.division .name {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin: 20px 0 30px;
}
.division .arrow {
  position: absolute;
  right: 0;
  top: 0;
}

@media (min-width: 600px) {
  .definitions {
    margin-top: 30px;
  }
}
@media (min-width: 600px) {
  .definitions .container {
    column-count: 3;
    column-gap: 0;
  }
}
.definitions .definition {
  margin: 0 auto 30px;
  max-width: 590px;
  font-size: 15px;
  line-height: 1.8;
  page-break-inside: avoid;
  padding: 0 15px;
}
@media (min-width: 600px) {
  .definitions .definition {
    padding: 0 15px;
  }
}
.definitions .definition .definition-key {
  font-weight: bold;
}
.definitions .definition .definition-value {
  white-space: pre-line;
}

.produktvelger-section {
  margin: 20px;
}
.produktvelger-section .title {
  margin-top: 4rem;
}

.product-fiftyfifty-section {
  margin: 20px;
}
@media (min-width: 800px) {
  .product-fiftyfifty-section {
    margin: 60px 20px;
  }
}
@media (min-width: 1240px) {
  .product-fiftyfifty-section {
    margin: 40px 0;
  }
}
.product-fiftyfifty-section .flex {
  align-items: center;
}
.product-fiftyfifty-section .image-box img {
  padding: 40px;
}
.product-fiftyfifty-section .content-box {
  padding: 20px;
}
@media (min-width: 800px) {
  .product-fiftyfifty-section .content-box {
    padding: 0;
  }
}

.productlist-section {
  /*margin: 20px;

  @media(min-width:$mobile-menu-break) {
      margin: 60px 20px;
  }

  @media(min-width:$break-l) {
      margin: 40px 0;
  }*/
  padding: 30px 0 70px;
}
.productlist-section .product-image {
  padding: 40px;
}
.productlist-section .product-short-text {
  font-weight: 600;
  font-style: normal;
  font-size: 12px;
  text-align: center;
  margin-bottom: 12px;
}
.productlist-section .product-text {
  padding: 0 20px;
}
@media (max-width: 900px) {
  .productlist-section .product-text h1, .productlist-section .product-text h2, .productlist-section .product-text h3, .productlist-section .product-text h4 {
    margin: 0 auto;
  }
}

.usp-section {
  margin: 40px 0 72px 0;
}
@media (min-width: 800px) {
  .usp-section {
    margin: 60px 20px;
  }
}
@media (min-width: 1240px) {
  .usp-section {
    margin: 80px 0;
  }
}
.usp-section .flex {
  justify-content: center;
  margin-bottom: 64px;
}
.usp-section .usp-item {
  display: flex;
  flex-flow: column nowrap;
  text-align: center;
  margin-bottom: 36px;
}
@media (min-width: 800px) {
  .usp-section .usp-item {
    padding: 0 10px;
  }
}
.usp-section .usp-item img {
  margin: auto;
}
.usp-section .short-text {
  color: #43AC42;
  margin-bottom: 12px;
}
.usp-section hr {
  width: 100%;
  color: #DFE4E5;
  margin: 0 auto;
}
