:root {
  --clr-primary: #001a37;
  --clr-secondary: #009fe0;
  /** applied new zeb color **/
  --clr-blue-light: #93d1e9;
  --clr-blue-light-2: #ebf6fb;
  --clr-blue-light-3: #d8edf8;
  --clr-blue-dark: #002b47;
  /** applied new zeb color **/
  --clr-grey-light-1: #dce0e8;
  --clr-grey-light-2: #d8d8d8;
  --clr-green: #94c047;
  /** applied new zeb color **/
  --clr-green-light: #c7d340;
  --clr-green-dark: #bdd691;
  --clr-orange: #fbc337;
  /** applied new zeb color **/
  --clr-orange-dark: #ed7d33;
  /** applied new zeb color **/
  --clr-red: #e53664;
  /** applied new zeb color **/
  --clr-yellow: #ffee34;
  /** applied new zeb color **/
  --clr-grey-dark: #456076;
  --clr-white: #fff;
  --clr-black: #000;
  --clr-crude-black: #1d1d1b;
  --line: 1px solid var(--color-grey-light-2);
  --shadow-dark: 0 2rem 6rem rgba(0, 0, 0, 0.3);
  --shadow-light: 0 2rem 5rem rgba(0, 0, 0, 0.06);
  --shadow-card: 0 1rem 1rem rgba(0, 0, 0, 0.05);
  --shadow-1: 0 3px 5px 0 rgba(0, 0, 0, 0.3);
  --shadow-1-inner: inset 0 5px 5px 0 rgba(0, 0, 0, 0.3);
  --shadow-2: 0 10px 20px 0 rgba(0, 0, 0, 0.3);
  --default-font-size: 2.2rem;
  --default-text-font-size: 1.6rem;
  --default-font-family: BrownStd-Regular;
  --grid-width: 140rem;
  --gutter-vertical: 8rem;
  --gutter-vertical-small: 4rem;
  --gutter-horizontal: 1.5rem;
  --side-menu-width: 6rem;
  --side-menu-element-height: 6rem;
  --footer-height: 3rem;
}

html {
  font-size: 62.5%;
  height: 100%;
}

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

body {
  box-sizing: border-box;
}

main {
  display: block;
  height: 100%;
}

figure {
  margin: 0;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
}

button {
  margin: 0;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
}

img {
  width: 100%;
}

::selection {
  background-color: #001a37;
  background-color: var(--clr-primary);
  color: #fff;
  color: var(--clr-white);
}

::-moz-selection {
  background-color: #001a37;
  background-color: var(--clr-primary);
  color: #fff;
  color: var(--clr-white);
}

.zebdshfixminheight-ie {
  width: 100%;
  display: flex;
}

.zebdshappframe {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.horizontal-header-line {
  height: 6rem;
  height: var(--side-menu-element-height);
  background-color: #fff;
  background-color: var(--clr-white);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-light);
  position: fixed;
  width: 100%;
  z-index: 1001;
  top: 0;
}

body {
  font-family: "BrownStd-Regular";
  font-size: 1.6rem;
  font-size: var(--default-text-font-size);
  color: #001a37;
  color: var(--clr-primary);
}

p {
  font-family: "BrownStd-Regular";
  font-size: 1.6rem;
  font-size: var(--default-text-font-size);
  line-height: 1.5;
  color: #001a37;
  color: var(--clr-primary);
  margin-bottom: 1.6rem;
}

b,
strong {
  font-family: "BrownStd-Bold";
  font-weight: normal;
  color: #001a37;
  color: var(--clr-primary);
}

ul {
  font-family: "BrownStd-Regular";
  font-size: 1.6rem;
  font-size: var(--default-text-font-size);
  line-height: 1.5;
  color: #001a37;
  color: var(--clr-primary);
  margin: 0 0 2rem 0;
  padding: 0 0 0 2.5rem;
  list-style: disc outside none;
}

ul li {
  font-family: "BrownStd-Regular";
  font-size: 1.6rem;
  font-size: var(--default-text-font-size);
  line-height: 1.5;
  color: #001a37;
  color: var(--clr-primary);
}

ol {
  font-family: "BrownStd-Regular";
  font-size: 1.6rem;
  font-size: var(--default-text-font-size);
  line-height: 1.5;
  color: #001a37;
  color: var(--clr-primary);
  margin: 0 0 2rem 0;
  padding: 0 0 0 2.5rem;
  list-style: decimal outside none;
}

ol li {
  font-family: "BrownStd-Regular";
  font-size: 1.6rem;
  font-size: var(--default-text-font-size);
  line-height: 1.5;
  color: #001a37;
  color: var(--clr-primary);
  display: list-item;
}

.application-map ul li {
  margin: 0;
}

.application-map__menu {
  padding-right: 0 !important;
  position: fixed;
  top: 0;
  top: calc(-1 * var(--side-menu-element-height));
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  height: 0vh;
  z-index: 1210;
  width: 765px;
  background: #fff;
}

@media (max-width: 48em) {
  .application-map__menu {
    width: 100vw;
  }
}

@media (max-width: 37em) {
  .application-map__menu {
    width: 100vw;
  }
}

.application-map--is-opened .application-map__menu {
  transform: translateX(0);
  height: 100vh;
}

.application-map__inner-content {
  padding: 20px 20px 20px 60px;
  overflow-y: auto;
  max-height: 100vh;
  height: 100%;
  text-align: left;
}

.application-map__body {
  flex-direction: column;
  align-items: flex-end;
  margin-top: 95px;
  border: none;
  max-height: 65vh;
  height: 100%;
}

.application-map__apps {
  float: left;
  width: 45%;
  display: block;
}

.application-map__apps .nav-link:hover {
  text-decoration: underline;
  color: #009fe0;
  color: var(--clr-secondary);
}

.application-map__apps-mobile {
  display: none;
}

@media (max-width: 37em) {
  .application-map__apps-mobile {
    display: block;
  }
}

@media (max-width: 37em) {
  .application-map__apps {
    display: none;
  }
}

.application-map__category-container {
  display: none;
}

.application-map__category-container--is-visible {
  display: block;
}

.application-map__header {
  display: flex;
  justify-content: space-between;
}

.application-map__buttonbar {
  z-index: 999;
}

.application-map__buttonbar-item {
  cursor: pointer;
  display: inline-block;
}

.application-map .navbar-top {
  float: left;
  display: block;
  width: 45%;
}

.application-map .title {
  color: #000;
  font-family: "LinetoBrownProBold", Arial, sans-serif;
  font-size: 28px;
  letter-spacing: -0.5px;
  line-height: 34px;
  text-align: left;
}

@media (max-width: 37em) {
  .application-map__current-user td {
    display: block;
  }
  .application-map__current-user td:nth-child(2) {
    padding-left: 1rem;
  }
}

.application-map .navbar-top ul li:before,
.application-map .application-map__apps ul li:before {
  display: none;
}

.application-map__category-container.application-map--is-visible {
  display: block;
}

.application-map__category-container .nav-link {
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #000;
  color: var(--clr-black);
  text-decoration: none;
  padding: 10px 0;
  font-family: "LinetoBrownProRegular", Arial, sans-serif;
}

.application-map .application-map__category {
  font-family: "LinetoBrownProBold", Arial, sans-serif;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #000;
  color: var(--clr-black);
  font-size: 22px;
  text-decoration: none;
  line-height: 1;
  padding: 10px 0;
  cursor: pointer;
}

.application-map .application-map__category.application-map--is-selected,
.application-map .application-map__category:hover {
  color: #93d1e9;
  color: var(--clr-blue-light);
}

.application-map--is-opened .application-map__menu ~ .application-map__shadow {
  background-color: #009fe0;
  background-color: var(--clr-secondary);
  display: block;
  opacity: 0.5;
  transition: all 0.5s ease;
}

.application-map .application-map__shadow {
  background-color: transparent;
  opacity: 0;
  z-index: 99;
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  top: calc(-1 * var(--side-menu-element-height));
  transition: all 0.5s ease;
  display: none;
}

.application-map-nav__item--icon {
  left: 50%;
  width: auto;
}

.application-map-nav__item--icon:hover, .application-map-nav__item--icon:active, .application-map-nav__item--icon:focus {
  filter: invert(75%) sepia(31%) saturate(446%) hue-rotate(159deg) brightness(104%) contrast(83%);
}

.application-map .login-button {
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
  font-size: 1.4rem;
  background-color: #93d1e9;
  background-color: var(--clr-blue-light);
  color: #001a37;
  color: var(--clr-primary);
  padding: 0.6rem 1.5rem;
  margin: 0.5rem 0.5rem 0.5rem 0rem;
  width: 16rem;
  font-family: "BrownStd-Regular";
  text-transform: none;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  position: relative;
  border: none;
  cursor: pointer;
}

@media (max-width: 48em) {
  .application-map .login-button {
    padding: 1rem 1.5rem;
  }
}

.application-map .login-button:hover {
  color: #fff;
  color: var(--clr-white);
  background-color: #009fe0;
  background-color: var(--clr-secondary);
}

.application-map .login-button:disabled {
  color: #fff;
  color: var(--clr-white);
  background-color: #d8d8d8;
  background-color: var(--clr-grey-light-2);
  cursor: default;
}

.application-map .login-button:active, .application-map .login-button:focus {
  outline: none;
}

.application-map .login-button::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
}

.menu-right {
  position: fixed;
  z-index: 100;
}

.menu-right--menu {
  transition: transform 0.5s;
  z-index: 200;
  width: 765px;
  position: fixed;
  top: 0;
  right: 0;
  border: 0;
  transform: translateX(765px);
  min-height: 100vh;
  height: 100vh;
}

@media screen and (max-width: 520px) {
  .menu-right--menu {
    -webkit-background-size: 100% 100%;
    background-size: 100% 100%;
  }
}

@media (max-width: 37em) {
  .menu-right--menu {
    max-width: 100%;
  }
}

.menu-right--menu:after {
  content: "";
  position: absolute;
  top: 0;
  right: calc(-100% - 220px);
  width: 100%;
  height: 100%;
  -webkit-transform: skew(23deg);
  -ms-transform: skew(23deg);
  transform: skew(23deg);
  background: #fff;
  z-index: -1;
}

@media (max-width: 48em) {
  .menu-right--menu:after {
    -webkit-transform: skew(0deg);
    -ms-transform: skew(0deg);
    transform: skew(0deg);
  }
}

.menu-right--menu.isOpened {
  transform: translateX(0);
  z-index: 1201;
}

.menu-right--menu.isOpened:after {
  right: -320px;
}

@media (max-width: 37em) {
  .menu-right--menu.isOpened:after {
    left: 0;
  }
}

.menu-right__header {
  display: flex;
  justify-content: space-between;
}

.menu-right__close {
  z-index: 999;
  cursor: pointer;
  padding-left: 2rem;
}

.menu-right__close-icon {
  width: auto;
}

.menu-right__close-icon:hover, .menu-right__close-icon:active, .menu-right__close-icon:focus {
  filter: invert(75%) sepia(31%) saturate(446%) hue-rotate(159deg) brightness(104%) contrast(83%);
}

.menu-right__shadow {
  background-color: transparent;
  opacity: 0;
  z-index: 99;
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  transition: all 0.5s ease;
  display: none;
}

.menu-right__shadow.isOpenedShadow {
  background-color: #009ed6;
  display: block;
  opacity: 0.5;
  transition: all 0.5s ease;
}

.menu-right .title {
  color: #000;
  font-family: "LinetoBrownProBold", Arial, sans-serif;
  font-size: 2.8rem;
  letter-spacing: -0.5px;
  line-height: 3.4rem;
  text-align: right;
}

.menu-right .menu-right__inner {
  width: 590px;
  float: right;
}

.menu-right .menu-right__inner--content {
  padding: 20px 60px 20px 20px;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 100vh;
  height: 100%;
  text-align: right;
}

@media (max-width: 48em) {
  .menu-right .menu-right__inner {
    width: 470px;
  }
}

@media (max-width: 37em) {
  .menu-right .menu-right__inner {
    width: 100%;
  }
}

.menu-right nav.navbar {
  padding: 0;
}

.menu-right nav.navbar-top {
  flex-direction: column;
  align-items: flex-end;
  margin-top: 95px;
  border: none;
}

.menu-right nav.navbar-top ul {
  display: block;
  margin-bottom: 45px;
  font-family: "Milo Serif W04 Regular";
  font-size: 2.2rem;
  font-size: var(--default-font-size);
  line-height: 3.4rem;
  color: #001a37;
  color: var(--clr-primary);
}

.menu-right nav.navbar-top ul li {
  font-family: "Milo Serif W04 Regular";
  font-size: 2.2rem;
  font-size: var(--default-font-size);
  line-height: 3.4rem;
  color: #001a37;
  color: var(--clr-primary);
  margin: 0.5rem 0 0.5rem 2.5rem;
  list-style: none;
}

.menu-right nav.navbar-top ul li a {
  font-family: "LinetoBrownProBold", Arial, sans-serif;
  font-style: normal;
  font-stretch: normal;
  line-height: normal;
  letter-spacing: normal;
  color: #000;
  color: var(--clr-black);
  font-size: 2.2rem;
  text-decoration: none;
  line-height: 1;
  padding: 1rem 0;
}

.menu-right nav.navbar-top ul li a:hover {
  color: #93d1e9;
  color: var(--clr-blue-light);
}

.menu-right nav.navbar-top ul li::before {
  display: None;
}

.menu-right nav.navbar-top ul .nav-item__active a {
  color: var(--clr-blue);
}

.logo {
  width: 7rem;
  height: auto;
  position: fixed;
  top: 3rem;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 997;
}

@media (max-width: 48em) {
  .logo {
    width: 5rem;
    height: auto;
    top: 3rem;
  }
}

@media (max-width: 37em) {
  .logo {
    position: absolute;
  }
}

.zebdshappframe .logo {
  display: none;
}

.breadcrumb {
  display: none;
}

.zebdshappframe .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  position: fixed;
  left: 7rem;
  top: 0;
  height: 6rem;
  animation-name: move-logo;
  animation-duration: 2s;
  z-index: 100;
}

.zebdshappframe .breadcrumb__logo {
  padding-left: 4px;
  border-radius: 4px;
  padding-right: 4px;
  display: inline-flex;
  align-items: center;
}

.zebdshappframe .breadcrumb__logo img {
  width: 5rem;
  padding-bottom: 4px;
}

.zebdshappframe .breadcrumb__entry {
  display: flex;
  flex-wrap: nowrap;
}

.zebdshappframe .breadcrumb__entry > div {
  display: inline-flex;
  align-items: center;
}

.zebdshappframe .breadcrumb__entry img {
  width: 2.4rem;
  height: 2.4rem;
  animation: invisible 2s 0s, make-visible 0.01s 2s, rotate-arrow 0.5s 2s;
}

.zebdshappframe .breadcrumb__entry a {
  display: inline-flex;
  text-decoration: none;
}

.zebdshappframe .breadcrumb__entry span {
  font-size: 1.8rem;
  line-height: 2.4rem;
  height: 2rem;
  font-family: BrownStd-Bold;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  max-width: 60rem;
}

@media (max-width: 48em) {
  .zebdshappframe .breadcrumb__entry span {
    max-width: 25rem;
  }
}

@media (max-width: 37em) {
  .zebdshappframe .breadcrumb__entry span {
    max-width: 15rem;
  }
}

.zebdshappframe .breadcrumb__label {
  animation: invisible 2.5s 0s, make-visible 0.01s 2.5s;
}

@keyframes rotate-arrow {
  from {
    transform: rotate(90deg);
  }
  to {
    transform: rotate(0deg);
  }
}

@keyframes move-logo {
  from {
    top: 0;
    left: 50%;
  }
  to {
    top: 0;
    left: 7rem;
  }
}

@keyframes invisible {
  from {
    transform: translateY(-100px);
  }
  to {
    transform: translateY(-100px);
  }
}

@keyframes make-visible {
  from {
    transform: translateY(-100px);
  }
  to {
    transform: translateY(0px);
  }
}

.logo-no-prod-env {
  display: none;
}

.logo-replacement {
  height: auto;
  position: fixed;
  top: 3rem;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 997;
  color: #e53664;
  color: var(--clr-red);
  border-width: 1px;
  border-style: solid;
}

.topnav {
  height: 5rem;
  position: fixed;
  display: flex;
  top: 0.4rem;
  right: 0;
  flex-direction: column;
  justify-content: flex-end;
  flex-wrap: nowrap;
  z-index: 998;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .topnav {
    /** for IE **/
    height: 0;
  }
}

.topnav__nav {
  height: 3.5rem;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  flex-wrap: nowrap;
}

.topnav__nav--item {
  fill: #009fe0;
  fill: var(--clr-secondary);
}

.topnav__nav--item, .topnav__nav--item:link, .topnav__nav--item:visited {
  fill: #009fe0;
  fill: var(--clr-secondary);
  cursor: pointer;
}

.topnav__nav--item:hover, .topnav__nav--item:focus {
  fill: #001a37;
  fill: var(--clr-primary);
}

.navbar-right {
  display: flex;
  justify-content: space-between;
  margin: auto 0;
}

.navbar-right .navbar-right-element {
  padding-left: 0.8rem;
}

.navbar-right .navbar-toggler {
  color: #007bff;
  border: none;
  padding: 7px 10px 2px 10px;
  font-family: "LinetoBrownProBoldalt";
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
}

.navbar-right .navbar-toggler:not(:disabled):not(.disabled) {
  cursor: pointer;
  margin-right: 0 !important;
}

.navbar-right .navbar-toggler span {
  display: block;
  width: 22px;
  height: 3px;
  background-color: black;
  margin-bottom: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
}

.navbar-right .navbar-toggler span:nth-child(1) {
  width: 22px;
}

.navbar-right .navbar-toggler span:nth-child(2) {
  width: 16px;
}

.navbar-right .navbar-toggler span:nth-child(3) {
  width: 10px;
}

.navbar-right .navbar-toggler:hover span {
  width: 22px;
  background-color: #009ed6;
}

.side-nav {
  height: 6rem;
  height: var(--side-menu-element-height);
  width: 6rem;
  width: var(--side-menu-width);
  position: fixed;
  display: flex;
  top: 0px;
  left: 0px;
  justify-content: flex-start;
  z-index: 2;
  flex-wrap: wrap;
}

.side-nav--is-opened {
  height: auto;
}

.side-nav__item, .side-nav__item:link, .side-nav__item:visited {
  position: relative;
  width: 6rem;
  width: var(--side-menu-width);
  height: 6rem;
  height: var(--side-menu-width);
  background-color: #fff;
  background-color: var(--clr-white);
  transition: all 0.4s;
  cursor: pointer;
  z-index: 100;
}

@media (max-width: 48em) {
  .side-nav__item, .side-nav__item:link, .side-nav__item:visited {
    height: 6rem;
    height: var(--side-menu-width);
  }
}

@media (max-width: 48em) {
  .side-nav__item, .side-nav__item:link, .side-nav__item:visited {
    width: 5rem;
  }
}

.side-nav__item:hover, .side-nav__item:focus {
  background-color: #009fe0;
  background-color: var(--clr-secondary);
}

.side-nav__item--icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3.5rem;
  height: 3.5rem;
  fill: #0b9cd4;
}

@media (max-width: 48em) {
  .side-nav__item--icon {
    width: 3rem;
    height: 3rem;
  }
}

.side-nav__menu {
  /** added by zeb for nav menu on mobile **/
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  transition: transform 0.1s ease-out, display 0s;
  z-index: 99;
}

.side-nav--is-opened {
  height: auto;
}

.side-nav--is-opened > .side-nav__menu {
  /** added by zeb for nav menu on mobile **/
  display: flex;
  z-index: 101;
  transform: translateY(0px);
  transition: transform 0.4s ease-out, display 4s ease-out, z-index 0.1s 0.5s;
}

.side-nav__toggle {
  /** added by zeb for nav menu on mobile **/
  display: block;
}

@media (max-width: 48em) {
  .side-nav {
    height: auto;
    width: 5rem;
  }
}

@media (max-width: 37em) {
  .side-nav {
    height: auto;
    /** added by zeb for nav menu on mobile **/
    width: 5rem;
    /** added by zeb for nav menu on mobile **/
    /** display: none; **/
    /** removed by zeb for nav menu on mobile **/
  }
}

.side-nav__item--icon {
  filter: invert(42%) sepia(86%) saturate(511%) hue-rotate(150deg) brightness(104%) contrast(99%);
  fill: #0b9cd4;
}

.side-nav__item:hover > .side-nav__item--icon,
.side-nav__item:focus > .side-nav__item--icon {
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(250deg) brightness(102%) contrast(106%);
}

.side-nav-phone {
  height: auto;
  width: 6rem;
  width: var(--side-menu-width);
  position: fixed;
  display: flex;
  top: 0px;
  left: 0px;
  flex-direction: column;
  justify-content: flex-start;
  flex-wrap: wrap;
  z-index: 999;
}

.side-nav-phone__item, .side-nav-phone__item:link, .side-nav-phone__item:visited {
  position: relative;
  width: 100%;
  height: 6rem;
  height: var(--side-menu-width);
  background-color: transparent;
  transition: all 0.4s;
  cursor: pointer;
}

@media (max-width: 48em) {
  .side-nav-phone__item, .side-nav-phone__item:link, .side-nav-phone__item:visited {
    height: 6rem;
  }
}

.side-nav-phone__item:hover, .side-nav-phone__item:focus {
  background-color: transparent;
}

.side-nav-phone__item--icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3.5rem;
  height: 3.5rem;
  fill: #0b9cd4;
}

@media (max-width: 48em) {
  .side-nav-phone__item--icon {
    width: 3rem;
    height: 3rem;
  }
}

@media (max-width: 48em) {
  .side-nav-phone {
    visibility: hidden;
  }
}

@media (max-width: 37em) {
  .side-nav-phone {
    height: auto;
    width: 5rem;
    visibility: visible;
  }
}

.bottom-nav {
  height: 7rem;
  width: 100%;
  position: fixed;
  display: flex;
  bottom: 0px;
  left: 0px;
  flex-direction: row;
  justify-content: space-between;
  visibility: hidden;
  z-index: 999;
}

.bottom-nav__item, .bottom-nav__item:link, .bottom-nav__item:visited {
  position: relative;
  width: 100%;
  height: 6rem;
  height: var(--side-menu-width);
  background-color: #fff;
  background-color: var(--clr-white);
  transition: all 0.4s;
  cursor: pointer;
}

@media (max-width: 48em) {
  .bottom-nav__item, .bottom-nav__item:link, .bottom-nav__item:visited {
    height: 6rem;
  }
}

.bottom-nav__item:hover, .bottom-nav__item:focus {
  background-color: #009fe0;
  background-color: var(--clr-secondary);
}

.bottom-nav__item--icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3.5rem;
  height: 3.5rem;
  fill: #0b9cd4;
}

@media (max-width: 37em) {
  .bottom-nav__item--icon {
    width: 3rem;
    height: 3rem;
  }
}

@media (max-width: 37em) {
  .bottom-nav {
    visibility: visible;
  }
}

.sub-nav-container {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 6rem;
  height: var(--side-menu-width);
  z-index: 1000;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-light);
  background-color: #fff;
  background-color: var(--clr-white);
  /*@include respond(md) {
    display: none;
  }*/
}

.sub-nav {
  background: var(--clr-white);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  height: 6rem;
  height: var(--side-menu-width);
  padding-right: 8rem;
  /*@include respond(sm) {
    display: none;
  }*/
}

@media (max-width: 80em) {
  .sub-nav {
    /** added by zeb to be able to align the list elements vertically **/
    height: auto;
    min-height: 6rem;
    min-height: var(--side-menu-width);
  }
}

@media (max-width: 62em) {
  .sub-nav {
    height: auto;
    /** added by zeb to be able to align the list elements vertically **/
    min-height: 6rem;
    min-height: var(--side-menu-width);
  }
}

@media (max-width: 48em) {
  .sub-nav {
    height: auto;
    /** changed by zeb to be able to align the list elements vertically **/
    min-height: 6rem;
    min-height: var(--side-menu-width);
  }
}

.sub-nav a:link,
.sub-nav a:visited {
  text-decoration: none;
  color: #001a37;
  color: var(--clr-primary);
  transition: all 0.4s;
}

.sub-nav a:hover,
.sub-nav a:focus {
  color: #009fe0;
  color: var(--clr-secondary);
}

.sub-nav ul {
  margin-bottom: 0;
  /*@include respond(md) {
      display: none;
    }

    @include respond(sm) {
      display: none;
    }*/
}

@media (max-width: 62em) {
  .sub-nav ul {
    /** added by zeb **/
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    padding-left: 0;
  }
}

.sub-nav ul li {
  font-family: "BrownStd-Regular";
  font-size: 1.6rem;
  margin: 1rem 3.5rem 0 0rem;
  color: #001a37;
  color: var(--clr-primary);
  list-style: none;
  letter-spacing: 0;
  overflow: hidden;
  float: left;
  line-height: 4rem;
}

@media (max-width: 62em) {
  .sub-nav ul li {
    /** added by zeb **/
    line-height: normal;
    margin: 0;
    padding: 7px 10px;
  }
}

.sub-nav ul li::before {
  display: none;
}

.sub-nav__btn-right {
  height: 3.5rem;
}

.dropdown-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: flex-end;
  margin-right: 10rem;
}

@media (max-width: 48em) {
  .dropdown-wrapper {
    margin-right: 6rem;
  }
}

@media (max-width: 37em) {
  .dropdown-wrapper {
    display: none;
  }
}

.dropdown-title {
  font-family: "BrownStd-Regular";
  font-size: 1.8rem;
  transform: translateY(1.5rem);
}

@media (max-width: 48em) {
  .dropdown-title {
    font-size: 1.5rem;
    transform: translateY(1.8rem);
  }
}

@media (max-width: 37em) {
  .dropdown-title {
    display: none;
  }
}

.dropdown-nav {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 10px;
}

@media (max-width: 48em) {
  .dropdown-nav {
    margin: 0;
  }
}

@media (max-width: 37em) {
  .dropdown-nav {
    display: none;
  }
}

.dropdown-nav select {
  background-color: #fff;
  background-color: var(--clr-white);
  color: #009fe0;
  color: var(--clr-secondary);
  font-size: 1.8rem;
  line-height: 2.6rem;
  font-family: "BrownStd-Regular";
  padding: 0.5em;
  padding-right: 2.5rem;
  border: 0;
  margin: 0;
  border-radius: 3px;
  text-indent: 0.01px;
  text-overflow: "";
  -webkit-appearance: button;
}

@media (max-width: 48em) {
  .dropdown-nav select {
    font-size: 1.5rem;
    transform: translateY(1.2rem);
  }
}

.dropdown-nav::before,
.dropdown-nav::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.dropdown-nav::after {
  content: "\25BC";
  height: 1em;
  font-size: 1.4rem;
  line-height: 1;
  right: 1.2em;
  top: 50%;
  margin-top: -0.5rem;
}

.dropdown-nav::before {
  width: 2em;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 0 3px 3px 0;
}

.dropdown-nav select[disabled] {
  color: rgba(0, 0, 0, 0.3);
}

.dropdown-nav select[disabled]::after {
  color: rgba(0, 0, 0, 0.1);
}

.dropdown-nav::before {
  background-color: #fff;
  background-color: var(--clr-white);
  color: #009fe0;
  color: var(--clr-secondary);
}

.dropdown-nav::after {
  background-color: #fff;
  background-color: var(--clr-white);
  color: #009fe0;
  color: var(--clr-secondary);
}

.social {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.social .d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.social ul {
  margin-bottom: 86px;
}

.social ul li {
  margin-right: 24px;
}

.social ul li img {
  width: 22px;
  height: 22px;
  cursor: pointer;
}

.social ul li img:hover,
.social ul li img :focus {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(304deg) brightness(106%) contrast(101%);
}

.language-selector {
  position: relative;
  width: 3rem;
  height: 3rem;
}

.language-selector img {
  max-height: 20px;
  max-width: 20px;
  width: auto;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.language-selector:hover {
  cursor: pointer;
}

.language-selector:hover img {
  filter: invert(53%) sepia(83%) saturate(2747%) hue-rotate(164deg) brightness(91%) contrast(101%);
}

.language-selector--is-opened {
  background-color: #eee;
}

.language-selector--is-opened img {
  filter: invert(53%) sepia(83%) saturate(2747%) hue-rotate(164deg) brightness(91%) contrast(101%);
}

.language-menu {
  position: relative;
}

.language-menu--is-opened {
  background-color: #eee;
}

.language-menu--is-opened .language-menu__items {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.language-menu__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 5px 23px 2px 23px;
  background-color: #eee;
  position: absolute;
  top: 100%;
  right: 0;
  -webkit-transform: translateY(-150%);
  -ms-transform: translateY(-150%);
  transform: translateY(-150%);
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.language-menu__item {
  position: relative;
  padding-left: 43px;
  text-decoration: none;
  background-color: transparent;
  font-size: 1.6rem;
  font-family: "BrownStd-Regular";
  padding: 15px 0 15px 43px;
  color: #000;
}

.language-menu__item:first-child {
  border-bottom: 1px solid #ebebeb;
}

.language-menu__item:hover {
  text-decoration: underline;
}

.language-menu__item > img {
  width: 30px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.footer {
  padding: 10rem 0 0 0;
  margin: auto 0 0 0;
  font-size: 1.4rem;
  color: #009fe0;
  color: var(--clr-secondary);
  background-color: #93d1e9;
  background-color: var(--clr-blue-light);
}

.footer ul,
.footer li {
  font-family: "BrownStd-Regular";
  font-size: 1.6rem;
  line-height: 1.2;
  color: #001a37;
  color: var(--clr-primary);
  margin-bottom: 1rem;
  margin-left: 0;
  list-style: none;
  letter-spacing: 0;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .footer ul,
  .footer li {
    /** for IE **/
    list-style-position: outside;
    overflow: hidden;
  }
}

.footer ul a:link,
.footer ul a:visited,
.footer li a:link,
.footer li a:visited {
  text-decoration: none;
  color: #001a37;
  color: var(--clr-primary);
  transition: all 0.4s;
}

.footer ul a:hover,
.footer ul a:focus,
.footer li a:hover,
.footer li a:focus {
  color: #fff;
  color: var(--clr-white);
}

.footer .social ul li img {
  width: 22px;
  height: 22px;
  cursor: pointer;
}

.footer .row {
  max-width: 140rem;
  max-width: var(--grid-width);
  margin: 0 auto;
  height: auto;
}

.footer .row--invisible {
  display: none;
}

.footer .row:not(:last-child) {
  margin-bottom: 3rem;
}

@media (max-width: 37em) {
  .footer .row:not(:last-child) {
    margin-bottom: 1rem;
  }
}

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

.footer .row [class^="col-"] {
  float: left;
}

.footer .row [class^="col-"]:not(:last-child) {
  margin-right: 1.5rem;
  margin-right: var(--gutter-horizontal);
}

@media (max-width: 37em) {
  .footer .row [class^="col-"]:not(:last-child) {
    margin-right: 0;
    margin-bottom: 4rem;
    margin-bottom: var(--gutter-vertical-small);
  }
}

.footer .row .col-1-of-4 {
  padding: 0 10px;
  width: calc((100% - 3 * 1.5rem) / 4);
  width: calc((100% - 3 * var(--gutter-horizontal)) / 4);
}

@media (max-width: 37em) {
  .footer .row .col-1-of-4 {
    width: 100%;
  }
}

@media (max-width: 37em) {
  .footer .row {
    padding-left: 10px;
  }
}

.footer__socialnav {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  width: 100%;
  height: 3.5rem;
  margin-bottom: 6rem;
}

.footer__socialnav--item {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 1.5rem 0 1.5rem;
  transition: all 0.4s;
}

.footer__socialnav--item, .footer__socialnav--item:link, .footer__socialnav--item:visited {
  fill: #001a37;
  fill: var(--clr-primary);
  cursor: pointer;
}

.footer__socialnav--item:hover, .footer__socialnav--item:focus {
  fill: #fff;
  fill: var(--clr-white);
}

.footer__bottomline {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 100%;
  height: 6rem;
  padding: 2rem 2rem;
  background-color: #001a37;
  background-color: var(--clr-primary);
}

.footer__bottomline--copyright {
  font-family: "BrownStd-Regular";
  font-size: 1.4rem;
  line-height: 1.2;
  height: 3rem;
  color: #fff;
  color: var(--clr-white);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.footer__bottomline--links {
  color: #fff;
  color: var(--clr-white);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
}

.footer__bottomline--links a:link,
.footer__bottomline--links a:visited {
  font-family: "BrownStd-Regular";
  font-size: 1.4rem;
  line-height: 1.2;
  text-decoration: none;
  color: #fff;
  color: var(--clr-white);
  margin: 0 1rem;
  transition: all 0.4s;
}

.footer__bottomline--links a:hover,
.footer__bottomline--links a:focus {
  text-decoration: underline;
  cursor: pointer;
}

.zebdshbrowserunsupported {
  background-color: #009fe0;
  /** use hard-coded values to correctly show message on OLD browsers instead of: var(--clr-secondary); **/
  top: 0;
  bottom: initial;
}

.zebdshscriptwarning {
  background-color: #fbc337;
  /** use hard-coded values to correctly show message on OLD browsers **/
  top: initial;
  bottom: 0;
}

.zebdshscripterror {
  background-color: #e53664;
  /** use hard-coded values to correctly show message on OLD browsers **/
  top: initial;
  bottom: 0;
}

.zebdshbrowserunsupported,
.zebdshscripterror,
.zebdshscriptwarning {
  font-family: "LinetoBrownProBold", "Arial", sans-serif;
  position: absolute;
  color: #fff;
  /** use hard-coded values to correctly show message on OLD browsers instead of: var(--clr-white); **/
  display: none;
  overflow: hidden;
  left: 0;
  position: fixed;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  z-index: 9999999;
  padding: 0 24px 24px 0;
}

.zebdshbrowserunsupported .verticalcenter,
.zebdshscripterror .verticalcenter,
.zebdshscriptwarning .verticalcenter {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}

.zebdshbrowserunsupported h1,
.zebdshscripterror h1,
.zebdshscriptwarning h1 {
  font-size: 25px;
  line-height: 25px;
  margin: 12px 0;
}

.zebdshbrowserunsupported p,
.zebdshscripterror p,
.zebdshscriptwarning p {
  font-size: 12px;
  line-height: 12px;
  margin: 0;
}

.zebdshbrowserunsupported .right,
.zebdshscripterror .right,
.zebdshscriptwarning .right {
  height: 20px;
  position: absolute;
  right: 70px;
  top: 10px;
  width: auto;
  display: inline-table;
}

.zebdshbrowserunsupported .right [dir="rtl"],
.zebdshscripterror .right [dir="rtl"],
.zebdshscriptwarning .right [dir="rtl"] {
  left: 25px !important;
  right: auto !important;
}

.zebdshbrowserunsupported .buttonclose,
.zebdshscripterror .buttonclose,
.zebdshscriptwarning .buttonclose {
  color: #fff;
  /** use hard-coded values to correctly show message on OLD browsers instead of: var(--clr-white); */
  display: block;
  font-size: 36px;
  height: 100%;
  line-height: 36px;
  position: relative;
  text-decoration: none;
  width: 100%;
}

.zebdshbrowserunsupported .mailtosupportsimple,
.zebdshscripterror .mailtosupportsimple,
.zebdshscriptwarning .mailtosupportsimple {
  display: inline;
  margin-left: 0.5em;
}

.zebdshbrowserunsupported .mailtosupportbtn,
.zebdshscripterror .mailtosupportbtn,
.zebdshscriptwarning .mailtosupportbtn {
  display: inline;
  margin-left: 0.5em;
  cursor: pointer;
  background-color: #fff2;
  padding: 8px;
}

.zebdshbrowserunsupported .mailtosupportbtn:hover,
.zebdshscripterror .mailtosupportbtn:hover,
.zebdshscriptwarning .mailtosupportbtn:hover {
  background-color: #fff3;
}

/*# sourceMappingURL=main.css.map */