/*
* strip-unit - Unit stripper [10px = 10]
* param - $num : the value with a unit suffix, E.g: 10px
* return - $result : the value without any suffix, E.g: 10
* E.g. strip-unit(100px) = 100
*/
/*
* pxToEM - Convert PX value to EM value [100px = 6.25em]
* param - $target : the value in px without 'px' suffix, E.g: 100
* return - $result : the value in em with 'em' suffix, E.g: 6.25em
* E.g. pxToEM(100) = 6.25em
*/
/*
* u - PX and REM constrictor
* param - $property : css property, E.g: padding
* param - $values... : list of values for the property, note values are multiplied by $pixelBase, E.g.: 10, 20, 30, 40
* return - $result : the css property with values applied in pixels
* E.g. @include u(padding, 10, 20, 30, 40) = padding: 100px, 200px, 300px, 400px;
*/
/*! Variables */
/*! Mixins */
/*! Theme */
@import url("https://use.typekit.net/lle3ogi.css");
body:not(.cke_editable) {
  font-family: 'proxima-nova', sans-serif !important; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'proxima-nova', sans-serif !important; }

@media (min-width: 1200px) {
  .container {
    max-width: 1300px; } }

body {
  background-color: #ffffff; }

h1, h2, h3, h4, h5, h6 {
  color: #0073a5;
  margin-bottom: 1.5rem; }

@media (max-width: 767px) {
  h1 {
    font-size: 2.2rem; }
  h2 {
    font-size: 1.8rem; }
  h3 {
    font-size: 1.55rem; }
  h4 {
    font-size: 1.3rem; }
  h5 {
    font-size: 1rem; }
  h6 {
    font-size: 0.8rem; } }

p, ul, li {
  color: rgba(0, 0, 0, 0.8); }

a {
  color: #0073a5; }
  a:hover {
    color: #0e527a;
    text-decoration: none; }

.c2-jumbo-text spam, .c2-jumbo-text li, .c2-jumbo-text p {
  font-size: 1.2rem;
  line-height: 1.6; }

.c2-jumbo-text h1 {
  font-size: 2.5rem; }
  @media (min-width: 767px) {
    .c2-jumbo-text h1 {
      font-size: 3rem; } }

.c2-jumbo-text h2 {
  font-size: 3rem; }

.c2-jumbo-text h3 {
  font-size: 2.5rem; }

.c2-jumbo-text h4 {
  font-size: 2rem; }

.c2-jumbo-text h5 {
  font-size: 1rem; }

.c2-jumbo-text h6 {
  font-size: 0.75rem; }

#main ul {
  list-style: none; }

#main ul li::before {
  content: "\25A0";
  color: #0073a5;
  font-weight: bold;
  display: inline-block;
  position: relative;
  top: -2px;
  line-height: 1rem;
  width: 1em;
  margin-left: -1.2em; }

/*! Header */
.header {
  background: #ffffff;
  z-index: 100;
  width: 100%;
  top: 0; }
  .header__strip {
    height: 1.9rem;
    background: #0073a5;
    background: -moz-linear-gradient(-45deg, #0073a5 0%, #232f5d 100%);
    background: -webkit-linear-gradient(-45deg, #0073a5 0%, #232f5d 100%);
    background: linear-gradient(135deg, #0073a5 0%, #232f5d 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$left', endColorstr='$right',GradientType=1 ); }
  @media (max-width: 1199px) {
    .header .container {
      max-width: 100% !important; } }

.nav {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 5;
  border-bottom: 0.08rem solid rgba(96, 96, 96, 0.25); }
  @media (max-width: 1199px) {
    .nav .container {
      max-width: 100% !important; } }

#languages-dropdown {
  position: relative;
  height: 1.8rem;
  white-space: nowrap; }
  @media (min-width: 768px) {
    #languages-dropdown {
      height: 3rem; } }
  #languages-dropdown .dropbtn {
    padding: 0;
    margin: 0;
    border: none;
    background-color: transparent;
    color: #606060;
    cursor: pointer;
    font-size: 1rem; }
    #languages-dropdown .dropbtn:focus {
      outline: none; }
    #languages-dropdown .dropbtn:after {
      content: "\f078";
      font-family: "Font Awesome 5 Pro";
      font-weight: 900;
      color: #e18911;
      padding: 0 5px; }
  #languages-dropdown .dropdown-content {
    display: none;
    position: absolute;
    background-color: #606060;
    min-width: 140px;
    z-index: 300;
    font-size: 12px;
    right: 0;
    top: 1.8rem; }
    @media (min-width: 768px) {
      #languages-dropdown .dropdown-content {
        top: 3rem; } }
    #languages-dropdown .dropdown-content a {
      color: #fff;
      display: block;
      line-height: 3rem;
      padding: 0 10px; }
      #languages-dropdown .dropdown-content a:hover {
        background-color: #7a7a7a; }
      #languages-dropdown .dropdown-content a img {
        display: inline-block;
        width: 12px;
        height: auto;
        margin-left: 5px;
        margin-bottom: 5px; }
  #languages-dropdown:hover .dropdown-content {
    display: block; }
    @media screen and (max-width: 599px) {
      #languages-dropdown:hover .dropdown-content {
        left: 0; } }

.sticky-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start; }
  .sticky-logo:not(.show) {
    display: none; }
  .sticky-logo span {
    height: 2rem;
    margin-right: 1rem; }
  .sticky-logo img {
    height: 2rem; }
  .sticky-logo a {
    margin-right: 0.5rem; }

.logo {
  height: 4rem; }
  @media (min-width: 768px) {
    .logo {
      height: 5rem; } }
  .logo:not(:last-of-type) {
    margin-left: 1rem; }
  .logo:first-of-type {
    margin-left: 1rem; }
  .logo span {
    font-size: 1.3rem;
    color: #606060;
    white-space: nowrap; }
  .logo a {
    height: 4rem;
    padding: 1rem 0;
    display: block; }
    @media (min-width: 768px) {
      .logo a {
        height: 5rem; } }
    .logo a img {
      height: 100%;
      width: auto; }

#nav > .container {
  position: relative; }
  #nav > .container > .d-flex {
    align-items: center; }

#main-menu {
  height: 1.8rem; }
  @media (min-width: 768px) {
    #main-menu {
      height: 3rem; } }
  #main-menu ul {
    list-style: none;
    padding: 0;
    margin: 0; }
  #main-menu li.cur a.lev1,
  #main-menu li.cur span.lev1, #main-menu li.poc a.lev1,
  #main-menu li.poc span.lev1 {
    color: #000000; }
  #main-menu li a,
  #main-menu li span {
    font-size: 1rem;
    text-decoration: none;
    color: #606060;
    display: block;
    background: #ffffff;
    transition: color .3s; }
    .german-page #main-menu li a, .german-page
    #main-menu li span {
      font-size: 0.9rem; }
    #main-menu li a:not(.cur):not(.poc):not(.lev2):hover,
    #main-menu li span:not(.cur):not(.poc):not(.lev2):hover {
      color: rgba(96, 96, 96, 0.25); }
  #main-menu ul.lev1 {
    display: flex;
    justify-content: flex-end; }
    #main-menu ul.lev1 li.lev1 > a,
    #main-menu ul.lev1 li.lev1 span {
      line-height: 1.8rem;
      padding: 0 1.1rem;
      position: relative; }
      @media (min-width: 768px) {
        #main-menu ul.lev1 li.lev1 > a,
        #main-menu ul.lev1 li.lev1 span {
          line-height: 3rem; } }
    #main-menu ul.lev1 li.lev1 ul.lev2 {
      columns: 3;
      position: absolute;
      z-index: 2;
      padding: 1rem 0;
      width: 100%;
      box-sizing: border-box;
      left: 0%; }
      #main-menu ul.lev1 li.lev1 ul.lev2:before {
        background: #ebebeb;
        position: absolute;
        width: 200vw;
        left: 50%;
        transform: translateX(-50%);
        height: 100%;
        content: "";
        top: 0; }
      #main-menu ul.lev1 li.lev1 ul.lev2 li.lev2 {
        position: relative;
        z-index: 10; }
        #main-menu ul.lev1 li.lev1 ul.lev2 li.lev2 a,
        #main-menu ul.lev1 li.lev1 ul.lev2 li.lev2 span {
          padding: 0 1.2rem;
          line-height: 1.8rem;
          font-size: 0.9rem;
          background: transparent;
          position: relative; }
          @media (min-width: 768px) {
            #main-menu ul.lev1 li.lev1 ul.lev2 li.lev2 a,
            #main-menu ul.lev1 li.lev1 ul.lev2 li.lev2 span {
              line-height: 3rem; } }
          #main-menu ul.lev1 li.lev1 ul.lev2 li.lev2 a:after,
          #main-menu ul.lev1 li.lev1 ul.lev2 li.lev2 span:after {
            content: "";
            bottom: 0;
            left: 0;
            height: 1px;
            width: 100%;
            position: absolute;
            border-bottom: 1px solid #d9d9d9; }
        #main-menu ul.lev1 li.lev1 ul.lev2 li.lev2:hover, #main-menu ul.lev1 li.lev1 ul.lev2 li.lev2.cur {
          background: #d9d9d9; }
    #main-menu ul.lev1 li.lev1:not(:hover) ul.lev2 {
      display: none; }
    #main-menu ul.lev1 li.lev1 > * {
      position: relative; }
    #main-menu ul.lev1 li.lev1.curlev1 > *:not(ul):after,
    #main-menu ul.lev1 li.lev1.poclev1 > *:not(ul):after,
    #main-menu ul.lev1 li.lev1:hover > *:not(ul):after {
      content: "";
      position: absolute;
      width: 60%;
      left: 50%;
      transform: translateX(-50%);
      height: 2px;
      display: block;
      background: #e18911;
      z-index: 3; }
  @media (max-width: 1199px) {
    #main-menu {
      display: none; } }

#menu-toggle {
  width: 1.8rem;
  height: 1.8rem; }
  @media (min-width: 768px) {
    #menu-toggle {
      width: 3rem; } }
  @media (min-width: 768px) {
    #menu-toggle {
      height: 3rem; } }
  #menu-toggle > div {
    width: 1.8rem;
    height: 1.8rem;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #606060; }
    @media (min-width: 768px) {
      #menu-toggle > div {
        width: 3rem; } }
    @media (min-width: 768px) {
      #menu-toggle > div {
        height: 3rem; } }
    #menu-toggle > div:hover {
      color: #ffffff;
      background: #0073a5; }
    #menu-toggle > div i {
      font-size: 2rem; }
  @media (min-width: 1200px) {
    #menu-toggle {
      display: none; } }

/*! Mobile Menu */
/*!
 * jQuery mmenu v7.3.3
 * @requires jQuery 1.7.0 or later
 *
 * mmenujs.com
 *	
 * Copyright (c) Fred Heusschen
 * www.frebsite.nl
 *
 * License: CC-BY-NC-4.0
 * https://creativecommons.org/licenses/by-nc/4.0/
 */
.mm-menu {
  --mm-line-height:20px;
  --mm-listitem-size:44px;
  --mm-navbar-size:44px;
  --mm-offset-top:0;
  --mm-offset-right:0;
  --mm-offset-bottom:0;
  --mm-offset-left:0;
  --mm-color-border:rgba(0, 0, 0, 0.1);
  --mm-color-button:rgba(0, 0, 0, 0.3);
  --mm-color-text:rgba(0, 0, 0, 0.75);
  --mm-color-text-dimmed:rgba(0, 0, 0, 0.3);
  --mm-color-background:#f3f3f3;
  --mm-color-background-highlight:rgba(0, 0, 0, 0.05);
  --mm-color-background-emphasis:rgba(255, 255, 255, 0.4);
  --mm-shadow:0 0 10px rgba( 0,0,0, 0.3 ); }

.mm-hidden {
  display: none !important; }

.mm-wrapper {
  overflow-x: hidden;
  position: relative; }

.mm-menu {
  background: #f3f3f3;
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.75);
  background: var(--mm-color-background);
  border-color: var(--mm-color-border);
  color: var(--mm-color-text);
  line-height: 20px;
  line-height: var(--mm-line-height);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  padding: 0;
  margin: 0;
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  top: var(--mm-offset-top);
  right: var(--mm-offset-right);
  bottom: var(--mm-offset-bottom);
  left: var(--mm-offset-left);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.mm-menu a, .mm-menu a:active, .mm-menu a:hover, .mm-menu a:link, .mm-menu a:visited {
  color: inherit;
  text-decoration: none; }

[dir=rtl] .mm-menu {
  direction: rtl; }

.mm-panels, .mm-panels > .mm-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0; }

.mm-panel, .mm-panels {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #f3f3f3;
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.75);
  background: var(--mm-color-background);
  border-color: var(--mm-color-border);
  color: var(--mm-color-text); }

.mm-panels {
  overflow: hidden; }

.mm-panel {
  -webkit-overflow-scrolling: touch;
  overflow: scroll;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  padding: 0 20px;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  -o-transition: transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease,-webkit-transform .4s ease; }

.mm-panel:not(.mm-hidden) {
  display: block; }

.mm-panel:after, .mm-panel:before {
  content: '';
  display: block;
  height: 20px; }

.mm-panel_has-navbar {
  padding-top: 44px;
  padding-top: var(--mm-navbar-size); }

.mm-panel_opened {
  z-index: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.mm-panel_opened-parent {
  -webkit-transform: translate3d(-30%, 0, 0);
  transform: translate3d(-30%, 0, 0); }

.mm-panel_highest {
  z-index: 2; }

.mm-panel_noanimation {
  -webkit-transition: none !important;
  -o-transition: none !important;
  transition: none !important; }

.mm-panel_noanimation.mm-panel_opened-parent {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

[dir=rtl] .mm-panel:not(.mm-panel_opened) {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0); }

[dir=rtl] .mm-panel.mm-panel_opened-parent {
  -webkit-transform: translate3d(30%, 0, 0);
  transform: translate3d(30%, 0, 0); }

.mm-listitem_vertical > .mm-panel {
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
  display: none;
  width: 100%;
  padding: 10px 0 10px 10px; }

.mm-listitem_vertical > .mm-panel:after, .mm-listitem_vertical > .mm-panel:before {
  content: none;
  display: none; }

.mm-listitem_opened > .mm-panel {
  display: block; }

.mm-listitem_vertical > .mm-listitem__btn {
  height: 44px;
  height: var(--mm-listitem-size);
  bottom: auto; }

.mm-listitem_vertical .mm-listitem:last-child:after {
  border-color: transparent; }

.mm-listitem_opened > .mm-listitem__btn:after {
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
  right: 19px; }

.mm-btn {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 44px;
  padding: 0; }

.mm-btn:after, .mm-btn:before {
  border-color: rgba(0, 0, 0, 0.1);
  border-color: var(--mm-color-button);
  border-width: 2px;
  border-style: solid; }

.mm-btn_close:after, .mm-btn_close:before {
  content: '';
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  display: block;
  width: 5px;
  height: 5px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.mm-btn_close:before {
  border-right: none;
  border-bottom: none;
  right: 18px; }

.mm-btn_close:after {
  border-left: none;
  border-top: none;
  right: 25px; }

.mm-btn_next:after, .mm-btn_prev:before {
  content: '';
  border-bottom: none;
  border-right: none;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  display: block;
  width: 8px;
  height: 8px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0; }

.mm-btn_prev:before {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  left: 23px;
  right: auto; }

.mm-btn_next:after {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  right: 23px;
  left: auto; }

[dir=rtl] .mm-btn_next:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  left: 23px;
  right: auto; }

[dir=rtl] .mm-btn_prev:before {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  right: 23px;
  left: auto; }

[dir=rtl] .mm-btn_close:after, [dir=rtl] .mm-btn_close:before {
  right: auto; }

[dir=rtl] .mm-btn_close:before {
  left: 25px; }

[dir=rtl] .mm-btn_close:after {
  left: 18px; }

.mm-navbar {
  background: #f3f3f3;
  border-color: rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.3);
  background: var(--mm-color-background);
  border-color: var(--mm-color-border);
  color: var(--mm-color-text-dimmed);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  text-align: center;
  display: none;
  height: 44px;
  height: var(--mm-navbar-size);
  padding: 0 44px;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 1;
  -webkit-transition: opacity .4s ease;
  -o-transition: opacity .4s ease;
  transition: opacity .4s ease; }

.mm-navbar > * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  padding: 12px;
  padding: calc((var(--mm-navbar-size) - var(--mm-line-height)) * .5);
  padding-left: 0;
  padding-right: 0; }

.mm-navbar a, .mm-navbar a:hover {
  text-decoration: none; }

.mm-navbar__title {
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden; }

.mm-navbar__btn {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1; }

.mm-navbar__btn:first-child {
  text-align: left;
  left: 0; }

.mm-navbar__btn:last-child {
  text-align: right;
  right: 0; }

.mm-panel_has-navbar .mm-navbar {
  display: block; }

[dir=rtl] .mm-navbar__btn:first-child {
  text-align: right;
  right: 0;
  left: auto; }

[dir=rtl] .mm-navbar__btn:last-child {
  text-align: left;
  left: 0;
  right: auto; }

.mm-listitem, .mm-listview {
  list-style: none;
  display: block;
  padding: 0;
  margin: 0; }

.mm-listitem {
  color: rgba(0, 0, 0, 0.75);
  color: var(--mm-color-text);
  border-color: rgba(0, 0, 0, 0.1);
  border-color: var(--mm-color-border);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.mm-listitem:after {
  content: '';
  border-color: inherit;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  display: block;
  position: absolute;
  left: 20px;
  right: 0;
  bottom: 0; }

.mm-listitem a, .mm-listitem a:hover {
  text-decoration: none; }

.mm-listitem__btn, .mm-listitem__text {
  color: inherit;
  display: block;
  padding-top: 12px;
  padding-top: calc((var(--mm-listitem-size) - var(--mm-line-height))/ 2);
  padding-bottom: 12px;
  padding-bottom: calc((var(--mm-listitem-size) - var(--mm-line-height))/ 2); }

.mm-listitem__text {
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  padding-left: 20px;
  padding-right: 10px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 10%;
  flex-basis: 10%; }

.mm-listitem__btn {
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.4);
  tap-highlight-color: rgba(255, 255, 255, 0.4);
  -webkit-tap-highlight-color: var(--mm-color-background-emphasis);
  tap-highlight-color: var(--mm-color-background-emphasis);
  background: rgba(3, 2, 1, 0);
  border-color: inherit;
  width: auto;
  padding-right: 54px;
  position: relative; }

.mm-listitem__btn:not(.mm-listitem__text) {
  border-left-width: 1px;
  border-left-style: solid; }

.mm-listitem_selected > .mm-listitem__text {
  background: rgba(255, 255, 255, 0.4);
  background: var(--mm-color-background-emphasis); }

.mm-listitem_opened > .mm-listitem__btn, .mm-listitem_opened > .mm-panel {
  background: rgba(0, 0, 0, 0.05);
  background: var(--mm-color-background-highlight); }

.mm-panels > .mm-panel > .mm-listview {
  margin: 20px -20px; }

.mm-panels > .mm-panel > .mm-listview:first-child, .mm-panels > .mm-panel > .mm-navbar + .mm-listview {
  margin-top: -20px; }

.mm-listitem_divider {
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.05);
  background: var(--mm-color-background-highlight);
  font-size: 75%;
  text-transform: uppercase;
  min-height: 20px;
  min-height: var(--mm-line-height);
  padding: 6.5px;
  padding: calc(((var(--mm-listitem-size) * .75) - var(--mm-line-height)) * .5);
  padding-right: 10px;
  padding-left: 20px; }

.mm-listitem_spacer {
  padding-top: 44px;
  padding-top: var(--mm-listitem-size); }

.mm-listitem_spacer > .mm-btn_next {
  top: 44px;
  top: var(--mm-listitem-size); }

[dir=rtl] .mm-listitem:after {
  left: 0;
  right: 20px; }

[dir=rtl] .mm-listitem__text {
  padding-left: 10px;
  padding-right: 20px; }

[dir=rtl] .mm-listitem__btn {
  padding-left: 54px;
  border-left-width: 0;
  border-left-style: none; }

[dir=rtl] .mm-listitem__btn:not(.mm-listitem__text) {
  padding-right: 0;
  border-right-width: 1px;
  border-right-style: solid; }

.mm-page {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative; }

.mm-slideout {
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  -o-transition: transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease,-webkit-transform .4s ease;
  z-index: 1; }

.mm-wrapper_opened {
  overflow-x: hidden;
  position: relative; }

.mm-wrapper_background .mm-page {
  background: inherit; }

.mm-menu_offcanvas {
  display: none;
  position: fixed;
  right: auto;
  z-index: 0; }

.mm-menu_offcanvas.mm-menu_opened {
  display: block; }

.mm-menu_offcanvas {
  width: 80%;
  min-width: 240px;
  max-width: 440px; }

.mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate3d(80vw, 0, 0);
  transform: translate3d(80vw, 0, 0); }

@media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(240px, 0, 0);
    transform: translate3d(240px, 0, 0); } }

@media all and (min-width: 550px) {
  .mm-wrapper_opening .mm-menu_offcanvas.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(440px, 0, 0);
    transform: translate3d(440px, 0, 0); } }

.mm-wrapper__blocker {
  background: rgba(3, 2, 1, 0);
  overflow: hidden;
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2; }

.mm-wrapper_blocking {
  overflow: hidden; }

.mm-wrapper_blocking body {
  overflow: hidden; }

.mm-wrapper_blocking .mm-wrapper__blocker {
  display: block; }

.mm-sronly {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  width: 1px !important;
  min-width: 1px !important;
  height: 1px !important;
  min-height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  position: absolute !important; }

.mm-menu_autoheight {
  -webkit-transition: none .4s ease;
  -o-transition: none .4s ease;
  transition: none .4s ease;
  -webkit-transition-property: height,-webkit-transform;
  transition-property: height,-webkit-transform;
  -o-transition-property: transform,height;
  transition-property: transform,height;
  transition-property: transform,height,-webkit-transform; }

.mm-menu_autoheight:not(.mm-menu_offcanvas) {
  position: relative; }

.mm-menu_autoheight.mm-menu_position-bottom, .mm-menu_autoheight.mm-menu_position-top {
  max-height: 80%; }

.mm-menu_autoheight-measuring .mm-panel {
  display: block !important; }

.mm-menu_autoheight-measuring .mm-listitem_vertical:not(.mm-listitem_opened) .mm-panel {
  display: none !important; }

.mm-menu_autoheight-measuring .mm-panels > .mm-panel {
  bottom: auto !important;
  height: auto !important; }

[class*=mm-menu_columns-] {
  -webkit-transition-property: width;
  -o-transition-property: width;
  transition-property: width; }

[class*=mm-menu_columns-] .mm-panels > .mm-panel {
  right: auto;
  -webkit-transition-property: width,-webkit-transform;
  transition-property: width,-webkit-transform;
  -o-transition-property: width,transform;
  transition-property: width,transform;
  transition-property: width,transform,-webkit-transform; }

[class*=mm-menu_columns-] .mm-panels > .mm-panel_opened, [class*=mm-menu_columns-] .mm-panels > .mm-panel_opened-parent {
  display: block !important; }

[class*=mm-panel_columns-] {
  border-right: 1px solid;
  border-color: inherit; }

.mm-menu_columns-1 .mm-panel_columns-0, .mm-menu_columns-2 .mm-panel_columns-1, .mm-menu_columns-3 .mm-panel_columns-2, .mm-menu_columns-4 .mm-panel_columns-3 {
  border-right: none; }

[class*=mm-menu_columns-] .mm-panels > .mm-panel_columns-0 {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.mm-menu_columns-0 .mm-panels > .mm-panel {
  z-index: 0; }

.mm-menu_columns-0 .mm-panels > .mm-panel else {
  width: 100%; }

.mm-menu_columns-0 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0); }

.mm-menu_columns-0 {
  width: 80%;
  min-width: 240px;
  max-width: 0; }

.mm-wrapper_opening .mm-menu_columns-0.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate3d(80vw, 0, 0);
  transform: translate3d(80vw, 0, 0); }

@media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_columns-0.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(240px, 0, 0);
    transform: translate3d(240px, 0, 0); } }

@media all and (min-width: 0px) {
  .mm-wrapper_opening .mm-menu_columns-0.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

.mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate3d(-80vw, 0, 0);
  transform: translate3d(-80vw, 0, 0); }

@media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(-240px, 0, 0);
    transform: translate3d(-240px, 0, 0); } }

@media all and (min-width: 0px) {
  .mm-wrapper_opening .mm-menu_columns-0.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

[class*=mm-menu_columns-] .mm-panels > .mm-panel_columns-1 {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0); }

.mm-menu_columns-1 .mm-panels > .mm-panel {
  z-index: 1;
  width: 100%; }

.mm-menu_columns-1 .mm-panels > .mm-panel else {
  width: 100%; }

.mm-menu_columns-1 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
  -webkit-transform: translate3d(200%, 0, 0);
  transform: translate3d(200%, 0, 0); }

.mm-menu_columns-1 {
  width: 80%;
  min-width: 240px;
  max-width: 440px; }

.mm-wrapper_opening .mm-menu_columns-1.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate3d(80vw, 0, 0);
  transform: translate3d(80vw, 0, 0); }

@media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_columns-1.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(240px, 0, 0);
    transform: translate3d(240px, 0, 0); } }

@media all and (min-width: 550px) {
  .mm-wrapper_opening .mm-menu_columns-1.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(440px, 0, 0);
    transform: translate3d(440px, 0, 0); } }

.mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate3d(-80vw, 0, 0);
  transform: translate3d(-80vw, 0, 0); }

@media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(-240px, 0, 0);
    transform: translate3d(-240px, 0, 0); } }

@media all and (min-width: 550px) {
  .mm-wrapper_opening .mm-menu_columns-1.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(-440px, 0, 0);
    transform: translate3d(-440px, 0, 0); } }

[class*=mm-menu_columns-] .mm-panels > .mm-panel_columns-2 {
  -webkit-transform: translate3d(200%, 0, 0);
  transform: translate3d(200%, 0, 0); }

.mm-menu_columns-2 .mm-panels > .mm-panel {
  z-index: 2;
  width: 50%; }

.mm-menu_columns-2 .mm-panels > .mm-panel else {
  width: 100%; }

.mm-menu_columns-2 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
  -webkit-transform: translate3d(300%, 0, 0);
  transform: translate3d(300%, 0, 0); }

.mm-menu_columns-2 {
  width: 80%;
  min-width: 240px;
  max-width: 880px; }

.mm-wrapper_opening .mm-menu_columns-2.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate3d(80vw, 0, 0);
  transform: translate3d(80vw, 0, 0); }

@media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_columns-2.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(240px, 0, 0);
    transform: translate3d(240px, 0, 0); } }

@media all and (min-width: 1100px) {
  .mm-wrapper_opening .mm-menu_columns-2.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(880px, 0, 0);
    transform: translate3d(880px, 0, 0); } }

.mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate3d(-80vw, 0, 0);
  transform: translate3d(-80vw, 0, 0); }

@media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(-240px, 0, 0);
    transform: translate3d(-240px, 0, 0); } }

@media all and (min-width: 1100px) {
  .mm-wrapper_opening .mm-menu_columns-2.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(-880px, 0, 0);
    transform: translate3d(-880px, 0, 0); } }

[class*=mm-menu_columns-] .mm-panels > .mm-panel_columns-3 {
  -webkit-transform: translate3d(300%, 0, 0);
  transform: translate3d(300%, 0, 0); }

.mm-menu_columns-3 .mm-panels > .mm-panel {
  z-index: 3;
  width: 33.34%; }

.mm-menu_columns-3 .mm-panels > .mm-panel else {
  width: 100%; }

.mm-menu_columns-3 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
  -webkit-transform: translate3d(400%, 0, 0);
  transform: translate3d(400%, 0, 0); }

.mm-menu_columns-3 {
  width: 80%;
  min-width: 240px;
  max-width: 1320px; }

.mm-wrapper_opening .mm-menu_columns-3.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate3d(80vw, 0, 0);
  transform: translate3d(80vw, 0, 0); }

@media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_columns-3.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(240px, 0, 0);
    transform: translate3d(240px, 0, 0); } }

@media all and (min-width: 1650px) {
  .mm-wrapper_opening .mm-menu_columns-3.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(1320px, 0, 0);
    transform: translate3d(1320px, 0, 0); } }

.mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate3d(-80vw, 0, 0);
  transform: translate3d(-80vw, 0, 0); }

@media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(-240px, 0, 0);
    transform: translate3d(-240px, 0, 0); } }

@media all and (min-width: 1650px) {
  .mm-wrapper_opening .mm-menu_columns-3.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(-1320px, 0, 0);
    transform: translate3d(-1320px, 0, 0); } }

[class*=mm-menu_columns-] .mm-panels > .mm-panel_columns-4 {
  -webkit-transform: translate3d(400%, 0, 0);
  transform: translate3d(400%, 0, 0); }

.mm-menu_columns-4 .mm-panels > .mm-panel {
  z-index: 4;
  width: 25%; }

.mm-menu_columns-4 .mm-panels > .mm-panel else {
  width: 100%; }

.mm-menu_columns-4 .mm-panels > .mm-panel:not(.mm-panel_opened):not(.mm-panel_opened-parent) {
  -webkit-transform: translate3d(500%, 0, 0);
  transform: translate3d(500%, 0, 0); }

.mm-menu_columns-4 {
  width: 80%;
  min-width: 240px;
  max-width: 1760px; }

.mm-wrapper_opening .mm-menu_columns-4.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate3d(80vw, 0, 0);
  transform: translate3d(80vw, 0, 0); }

@media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_columns-4.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(240px, 0, 0);
    transform: translate3d(240px, 0, 0); } }

@media all and (min-width: 2200px) {
  .mm-wrapper_opening .mm-menu_columns-4.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(1760px, 0, 0);
    transform: translate3d(1760px, 0, 0); } }

.mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate3d(-80vw, 0, 0);
  transform: translate3d(-80vw, 0, 0); }

@media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(-240px, 0, 0);
    transform: translate3d(-240px, 0, 0); } }

@media all and (min-width: 2200px) {
  .mm-wrapper_opening .mm-menu_columns-4.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(-1760px, 0, 0);
    transform: translate3d(-1760px, 0, 0); } }

[class*=mm-menu_columns-].mm-menu_position-bottom, [class*=mm-menu_columns-].mm-menu_position-top {
  width: 100%;
  max-width: 100%;
  min-width: 100%; }

.mm-wrapper_opening [class*=mm-menu_columns-].mm-menu_position-front {
  -webkit-transition-property: width,min-width,max-width,-webkit-transform;
  transition-property: width,min-width,max-width,-webkit-transform;
  -o-transition-property: width,min-width,max-width,transform;
  transition-property: width,min-width,max-width,transform;
  transition-property: width,min-width,max-width,transform,-webkit-transform; }

.mm-counter {
  color: rgba(0, 0, 0, 0.3);
  color: var(--mm-color-text-dimmed);
  text-align: right;
  display: block;
  min-width: 44px;
  float: right; }

.mm-listitem_nosubitems > .mm-counter {
  display: none; }

[dir=rtl] .mm-counter {
  text-align: left;
  float: left; }

.mm-listitem_divider {
  opacity: 1;
  -webkit-transition: opacity .4s ease;
  -o-transition: opacity .4s ease;
  transition: opacity .4s ease; }

.mm-menu_dividers-light .mm-listitem_divider {
  background: inherit;
  font-size: inherit;
  color: rgba(0, 0, 0, 0.3);
  color: var(--mm-color-text-dimmed);
  padding-top: 18px;
  padding-top: calc((var(--mm-listitem-size) - var(--mm-line-height)) * .75);
  padding-bottom: 6px;
  padding-bottom: calc((var(--mm-listitem-size) - var(--mm-line-height)) * .25); }

.mm-menu_border-none .mm-listitem_divider {
  border-top-width: 1px;
  border-top-style: solid; }

.mm-listview_fixeddivider {
  background: inherit;
  display: none;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10; }

.mm-listview_fixeddivider:after {
  content: none !important;
  display: none !important; }

.mm-panel_dividers .mm-listview_fixeddivider {
  display: block; }

.mm-wrapper_opened.mm-dragging .mm-menu, .mm-wrapper_opened.mm-dragging .mm-slideout {
  -webkit-transition-duration: 0s;
  -o-transition-duration: 0s;
  transition-duration: 0s; }

.mm-menu_dropdown {
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  height: 80%;
  overflow: visible; }

.mm-wrapper_dropdown .mm-slideout {
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
  z-index: 0; }

.mm-wrapper_dropdown .mm-wrapper__blocker {
  -webkit-transition-delay: 0s !important;
  -o-transition-delay: 0s !important;
  transition-delay: 0s !important;
  z-index: 1; }

.mm-wrapper_dropdown .mm-menu_dropdown {
  z-index: 2; }

.mm-wrapper_dropdown.mm-wrapper_opened:not(.mm-wrapper_opening) .mm-menu_dropdown {
  display: none; }

[class*=mm-menu_tip-]:before {
  content: '';
  background: inherit;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  z-index: 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

.mm-menu_tip-left:before {
  left: 22px; }

.mm-menu_tip-right:before {
  right: 22px; }

.mm-menu_tip-top:before {
  top: -8px; }

.mm-menu_tip-bottom:before {
  bottom: -8px; }

.mm-menu {
  --mm-iconbar-size:44px; }

.mm-iconbar {
  color: rgba(0, 0, 0, 0.3);
  color: var(--mm-color-text-dimmed);
  border: 0 solid rgba(0, 0, 0, 0.1);
  border-color: var(--mm-color-border);
  border-right-width: 1px;
  text-align: center;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 44px;
  width: var(--mm-iconbar-size);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 2; }

.mm-menu_iconbar .mm-navbars_bottom, .mm-menu_iconbar .mm-navbars_top, .mm-menu_iconbar .mm-panels {
  left: 44px;
  left: var(--mm-iconbar-size); }

.mm-iconbar__bottom, .mm-iconbar__top {
  width: inherit;
  position: absolute; }

.mm-iconbar__bottom > *, .mm-iconbar__top > * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  padding: 11px 0; }

.mm-iconbar__bottom a, .mm-iconbar__bottom a:hover, .mm-iconbar__top a, .mm-iconbar__top a:hover {
  text-decoration: none; }

.mm-iconbar__top {
  top: 0; }

.mm-iconbar__bottom {
  bottom: 0; }

.mm-iconbar__tab_selected {
  background: rgba(255, 255, 255, 0.4);
  background: var(--mm-color-background-emphasis); }

.mm-menu_keyboardfocus a:focus, .mm-menu_keyboardfocus.mm-menu_opened ~ .mm-wrapper__blocker a:focus {
  outline: 0;
  background: rgba(255, 255, 255, 0.4);
  background: var(--mm-color-background-emphasis); }

.mm-wrapper__blocker .mm-tabstart {
  cursor: default;
  display: block;
  width: 100%;
  height: 100%; }

.mm-wrapper__blocker .mm-tabend {
  opacity: 0;
  position: absolute;
  bottom: 0; }

.mm-menu {
  --mm-iconpanel-size:44px; }

.mm-panel_iconpanel-1, .mm-panel_iconpanel-1.mm-panel_opened ~ .mm-listview_fixeddivider {
  width: calc(100% - (44px * 1));
  width: calc(100% - (var(--mm-iconpanel-size) * 1)); }

.mm-panel_iconpanel-2, .mm-panel_iconpanel-2.mm-panel_opened ~ .mm-listview_fixeddivider {
  width: calc(100% - (44px * 2));
  width: calc(100% - (var(--mm-iconpanel-size) * 2)); }

.mm-panel_iconpanel-3, .mm-panel_iconpanel-3.mm-panel_opened ~ .mm-listview_fixeddivider {
  width: calc(100% - (44px * 3));
  width: calc(100% - (var(--mm-iconpanel-size) * 3)); }

.mm-panel_iconpanel-first ~ .mm-panel, .mm-panel_iconpanel-first ~ .mm-panel_opened ~ .mm-listview_fixeddivider {
  width: calc(100% - 44px);
  width: calc(100% - var(--mm-iconpanel-size)); }

.mm-menu_iconpanel .mm-panels > .mm-listview_fixeddivider, .mm-menu_iconpanel .mm-panels > .mm-panel {
  left: auto;
  -webkit-transition-property: width,-webkit-transform;
  transition-property: width,-webkit-transform;
  -o-transition-property: transform,width;
  transition-property: transform,width;
  transition-property: transform,width,-webkit-transform; }

.mm-menu_iconpanel .mm-panels > .mm-panel:not(.mm-panel_iconpanel-first):not(.mm-panel_iconpanel-0) {
  border-left-width: 1px;
  border-left-style: solid; }

.mm-menu_iconpanel .mm-panels > .mm-panel_opened, .mm-menu_iconpanel .mm-panels > .mm-panel_opened-parent {
  display: block !important; }

.mm-menu_iconpanel .mm-panels > .mm-panel_opened-parent {
  overflow-y: hidden;
  -webkit-transform: unset;
  -ms-transform: unset;
  transform: unset; }

.mm-menu_hidedivider .mm-panel_opened-parent .mm-listitem_divider, .mm-menu_hidenavbar .mm-panel_opened-parent .mm-navbar {
  opacity: 0; }

.mm-panel__blocker {
  background: inherit;
  opacity: 0;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 3;
  -webkit-transition: opacity .4s ease;
  -o-transition: opacity .4s ease;
  transition: opacity .4s ease; }

.mm-panel_opened-parent .mm-panel__blocker {
  opacity: .6;
  bottom: -100000px; }

[dir=rtl] .mm-menu_iconpanel .mm-panels > .mm-listview_fixeddivider, [dir=rtl] .mm-menu_iconpanel .mm-panels > .mm-panel {
  left: 0;
  right: auto;
  -webkit-transition-property: width,-webkit-transform;
  transition-property: width,-webkit-transform;
  -o-transition-property: transform,width;
  transition-property: transform,width;
  transition-property: transform,width,-webkit-transform; }

[dir=rtl] .mm-menu_iconpanel .mm-panels > .mm-panel:not(.mm-panel_iconpanel-first):not(.mm-panel_iconpanel-0) {
  border-left: none;
  border-right: 1px solid;
  border-color: inherit; }

.mm-navbars_bottom, .mm-navbars_top {
  background: inherit;
  border-color: inherit;
  border-width: 0;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1; }

.mm-navbars_bottom > .mm-navbar, .mm-navbars_top > .mm-navbar {
  border-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative; }

.mm-navbars_bottom > .mm-navbar:not(.mm-navbar_has-btns), .mm-navbars_top > .mm-navbar:not(.mm-navbar_has-btns) {
  padding: 0; }

.mm-navbars_bottom > .mm-navbar > :not(img):not(.mm-btn), .mm-navbars_top > .mm-navbar > :not(img):not(.mm-btn) {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1; }

.mm-navbars_top {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  top: 0;
  bottom: auto; }

.mm-menu_navbar_top-1 .mm-panels {
  top: 44px;
  top: calc(var(--mm-navbar-size) * 1); }

.mm-menu_navbar_top-2 .mm-panels {
  top: 88px;
  top: calc(var(--mm-navbar-size) * 2); }

.mm-menu_navbar_top-3 .mm-panels {
  top: 132px;
  top: calc(var(--mm-navbar-size) * 3); }

.mm-menu_navbar_top-4 .mm-panels {
  top: 176px;
  top: calc(var(--mm-navbar-size) * 4); }

.mm-navbars_bottom {
  border-top-style: solid;
  border-top-width: 1px;
  bottom: 0;
  top: auto; }

.mm-menu_navbar_bottom-1 .mm-panels {
  bottom: 44px;
  bottom: calc(var(--mm-navbar-size) * 1); }

.mm-menu_navbar_bottom-2 .mm-panels {
  bottom: 88px;
  bottom: calc(var(--mm-navbar-size) * 2); }

.mm-menu_navbar_bottom-3 .mm-panels {
  bottom: 132px;
  bottom: calc(var(--mm-navbar-size) * 3); }

.mm-menu_navbar_bottom-4 .mm-panels {
  bottom: 176px;
  bottom: calc(var(--mm-navbar-size) * 4); }

.mm-navbar_size-2 {
  height: 88px;
  height: calc(var(--mm-navbar-size) * 2); }

.mm-navbar_size-3 {
  height: 132px;
  height: calc(var(--mm-navbar-size) * 3); }

.mm-navbar_size-4 {
  height: 176px;
  height: calc(var(--mm-navbar-size) * 4); }

.mm-navbar__breadcrumbs {
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  overflow-x: auto;
  text-align: left;
  padding: 0 0 0 20px; }

.mm-navbar__breadcrumbs > * {
  display: inline-block;
  padding-right: 6px;
  padding-top: 12px;
  padding-top: calc((var(--mm-navbar-size) - var(--mm-line-height)) * .5);
  padding-bottom: 12px;
  padding-bottom: calc((var(--mm-navbar-size) - var(--mm-line-height)) * .5); }

.mm-navbar__breadcrumbs > a {
  text-decoration: underline; }

.mm-navbar_has-btns .mm-navbar__breadcrumbs {
  margin-left: -44px; }

.mm-navbar_has-btns .mm-btn:not(.mm-hidden) + .mm-navbar__breadcrumbs {
  margin-left: 0;
  padding-left: 0; }

.mm-navbar__tab_selected {
  background: inherit !important;
  color: inherit !important;
  border-width: 1px;
  border-style: solid;
  border-color: inherit; }

.mm-navbar__tab_selected:first-child {
  border-left: none; }

.mm-navbar__tab_selected:last-child {
  border-right: none; }

.mm-navbars_top.mm-navbars_has-tabs .mm-navbar_tabs, .mm-navbars_top.mm-navbars_has-tabs .mm-navbar_tabs ~ .mm-navbar {
  background: inherit !important;
  color: inherit !important; }

.mm-navbars_top .mm-navbar_tabs:not(:last-child) {
  border-bottom-width: 1px;
  border-bottom-style: solid; }

.mm-navbars_top .mm-navbar__tab_selected {
  border-bottom: none;
  margin-bottom: -1px; }

.mm-navbars_top .mm-navbar_tabs:first-child .mm-navbar__tab_selected {
  border-top: none; }

.mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar {
  background: inherit;
  color: inherit; }

.mm-navbars_bottom .mm-navbar_tabs:not(:first-child) {
  border-top-width: 1px;
  border-top-style: solid; }

.mm-navbars_bottom .mm-navbar__tab_selected {
  border-top: none;
  margin-top: -1px; }

.mm-navbars_bottom .mm-navbar_tabs:last-child .mm-navbar__tab_selected {
  border-bottom: none; }

.mm-navbar_tabs > a:not(.mm-navbar__tab_selected), .mm-navbars_bottom.mm-navbars_has-tabs .mm-navbar_tabs ~ .mm-navbar, .mm-navbars_top.mm-navbars_has-tabs > .mm-navbar:not(.mm-navbar_tabs) {
  background: rgba(255, 255, 255, 0.4);
  background: var(--mm-color-background-emphasis);
  color: rgba(0, 0, 0, 0.3);
  color: var(--mm-color-text-dimmed); }

.mm-searchfield {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 44px;
  height: var(--mm-navbar-size);
  padding: 0;
  overflow: hidden; }

.mm-searchfield input {
  border: none !important;
  outline: 0 !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.05);
  background: var(--mm-color-background-highlight);
  color: rgba(0, 0, 0, 0.75);
  color: var(--mm-color-text);
  font: inherit;
  font-size: inherit;
  line-height: 35.2px;
  line-height: calc(var(--mm-navbar-size) * .7);
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  height: 24px;
  height: calc(var(--mm-navbar-size) * .7);
  min-height: unset;
  max-height: unset;
  margin: 0;
  padding: 0 10px; }

.mm-searchfield input::-ms-clear {
  display: none; }

.mm-searchfield__input {
  padding: 6.6px 10px 0 10px;
  padding-top: calc(var(--mm-navbar-size) * .15);
  position: relative; }

.mm-panel__noresultsmsg {
  color: rgba(0, 0, 0, 0.3);
  color: var(--mm-color-text-dimmed);
  text-align: center;
  font-size: 150%;
  padding: 44px 0; }

.mm-searchfield__btn {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0; }

.mm-panel_search {
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  border-left: none !important; }

.mm-searchfield__input {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%; }

.mm-searchfield__cancel {
  line-height: 44px;
  line-height: var(--mm-navbar-size);
  text-decoration: none;
  display: block;
  padding-right: 10px;
  margin-right: -100px;
  -webkit-transition: margin .4s ease;
  -o-transition: margin .4s ease;
  transition: margin .4s ease; }

.mm-searchfield__cancel-active {
  margin-right: 0; }

.mm-panel > .mm-searchfield {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0; }

.mm-panel_has-searchfield {
  padding-top: 44px;
  padding-top: var(--mm-navbar-size); }

.mm-panel_has-navbar.mm-panel_has-searchfield {
  padding-top: 88px;
  padding-top: calc(var(--mm-navbar-size) * 2); }

.mm-panel_has-navbar.mm-panel_has-searchfield > .mm-searchfield {
  top: 44px;
  top: var(--mm-navbar-size); }

.mm-listitem_nosubitems > .mm-listitem__btn {
  display: none; }

.mm-listitem_nosubitems > .mm-listitem__text {
  padding-right: 10px; }

.mm-sectionindexer {
  background: inherit;
  text-align: center;
  font-size: 12px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -20px;
  z-index: 15;
  -webkit-transition: right .4s ease;
  -o-transition: right .4s ease;
  transition: right .4s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly; }

.mm-sectionindexer a {
  color: rgba(0, 0, 0, 0.3);
  color: var(--mm-color-text-dimmed);
  line-height: 1;
  text-decoration: none;
  display: block; }

.mm-sectionindexer ~ .mm-panels {
  -webkit-transition: right .4s ease;
  -o-transition: right .4s ease;
  transition: right .4s ease; }

.mm-menu_has-sectionindexer .mm-sectionindexer {
  right: 0; }

.mm-menu_has-sectionindexer .mm-panels {
  right: 20px; }

.mm-menu_navbar_top-1 .mm-sectionindexer {
  top: 46px;
  top: calc((var(--mm-navbar-size) * 1) + 2px); }

.mm-menu_navbar_top-2 .mm-sectionindexer {
  top: 90px;
  top: calc((var(--mm-navbar-size) * 2) + 2px); }

.mm-menu_navbar_top-3 .mm-sectionindexer {
  top: 134px;
  top: calc((var(--mm-navbar-size) * 3) + 2px); }

.mm-menu_navbar_top-4 .mm-sectionindexer {
  top: 178px;
  top: calc((var(--mm-navbar-size) * 4) + 2px); }

.mm-menu_navbar_bottom-1 .mm-sectionindexer {
  bottom: 46px;
  bottom: calc((var(--mm-navbar-size) * 1) + 2px); }

.mm-menu_navbar_bottom-2 .mm-sectionindexer {
  bottom: 90px;
  bottom: calc((var(--mm-navbar-size) * 2) + 2px); }

.mm-menu_navbar_bottom-3 .mm-sectionindexer {
  bottom: 134px;
  bottom: calc((var(--mm-navbar-size) * 3) + 2px); }

.mm-menu_navbar_bottom-4 .mm-sectionindexer {
  bottom: 178px;
  bottom: calc((var(--mm-navbar-size) * 4) + 2px); }

.mm-menu_selected-hover .mm-listitem > .mm-listitem__btn, .mm-menu_selected-hover .mm-listitem > .mm-listitem__text, .mm-menu_selected-parent .mm-listitem > .mm-listitem__btn, .mm-menu_selected-parent .mm-listitem > .mm-listitem__text {
  -webkit-transition: background .4s ease;
  -o-transition: background .4s ease;
  transition: background .4s ease; }

.mm-menu_selected-hover .mm-listview:hover > .mm-listitem_selected .mm-listitem__text {
  background: 0 0; }

.mm-menu_selected-hover .mm-listitem__btn:hover, .mm-menu_selected-hover .mm-listitem__text:hover {
  background: rgba(255, 255, 255, 0.4);
  background: var(--mm-color-background-emphasis); }

.mm-menu_selected-parent .mm-panel_opened-parent .mm-listitem:not(.mm-listitem_selected-parent) .mm-listitem__text {
  background: 0 0; }

.mm-menu_selected-parent .mm-listitem_selected-parent > .mm-listitem__btn, .mm-menu_selected-parent .mm-listitem_selected-parent > .mm-listitem__text {
  background: rgba(255, 255, 255, 0.4);
  background: var(--mm-color-background-emphasis); }

.mm-menu, .mm-slideout {
  --mm-sidebar-collapsed-size:44px;
  --mm-sidebar-expanded-size:440px; }

.mm-wrapper_sidebar-collapsed body, .mm-wrapper_sidebar-expanded body {
  position: relative; }

.mm-wrapper_sidebar-collapsed .mm-slideout, .mm-wrapper_sidebar-expanded .mm-slideout {
  -webkit-transition-property: width,-webkit-transform;
  transition-property: width,-webkit-transform;
  -o-transition-property: width,transform;
  transition-property: width,transform;
  transition-property: width,transform,-webkit-transform; }

.mm-wrapper_sidebar-collapsed .mm-page, .mm-wrapper_sidebar-expanded .mm-page {
  background: inherit;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 100vh; }

.mm-wrapper_sidebar-collapsed .mm-menu_sidebar-collapsed, .mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded {
  display: block !important;
  top: 0 !important;
  right: auto !important;
  bottom: 0 !important;
  left: 0 !important; }

.mm-wrapper_sidebar-collapsed:not(.mm-wrapper_opening) .mm-menu_hidedivider .mm-listitem_divider, .mm-wrapper_sidebar-collapsed:not(.mm-wrapper_opening) .mm-menu_hidenavbar .mm-navbar {
  opacity: 0; }

.mm-wrapper_sidebar-collapsed .mm-slideout {
  width: calc(100% - 44px);
  width: calc(100% - var(--mm-sidebar-collapsed-size));
  -webkit-transform: translate3d(44px, 0, 0);
  transform: translate3d(44px, 0, 0);
  -webkit-transform: translate3d(var(--mm-sidebar-collapsed-size), 0, 0);
  transform: translate3d(var(--mm-sidebar-collapsed-size), 0, 0); }

.mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded {
  border-right-width: 1px;
  border-right-style: solid;
  min-width: 0 !important;
  max-width: 100000px !important; }

.mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded.mm-menu_pageshadow:after {
  content: none;
  display: none; }

.mm-wrapper_sidebar-expanded.mm-wrapper_blocking, .mm-wrapper_sidebar-expanded.mm-wrapper_blocking body {
  overflow: visible; }

.mm-wrapper_sidebar-expanded .mm-wrapper__blocker {
  display: none !important; }

.mm-wrapper_sidebar-expanded:not(.mm-wrapper_sidebar-closed) .mm-menu_sidebar-expanded.mm-menu_opened ~ .mm-slideout {
  width: calc(100% - 440px);
  width: calc(100% - var(--mm-sidebar-expanded-size));
  -webkit-transform: translate3d(440px, 0, 0);
  transform: translate3d(440px, 0, 0);
  -webkit-transform: translate3d(var(--mm-sidebar-expanded-size), 0, 0);
  transform: translate3d(var(--mm-sidebar-expanded-size), 0, 0); }

.mm-wrapper_sidebar-expanded .mm-menu_sidebar-expanded {
  width: 440px;
  width: var(--mm-sidebar-expanded-size); }

.mm-menu__blocker {
  background: rgba(3, 2, 1, 0);
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3; }

.mm-menu_opened .mm-menu__blocker {
  display: none; }

[dir=rtl].mm-wrapper_sidebar-collapsed .mm-slideout {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

[dir=rtl].mm-wrapper_sidebar-expanded .mm-slideout {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

[dir=rtl].mm-wrapper_sidebar-expanded:not(.mm-wrapper_sidebar-closed) .mm-menu_sidebar-expanded.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

label.mm-toggle {
  border-radius: 34px;
  min-width: 58px;
  width: 58px;
  height: 34px;
  margin: 0 10px;
  margin-top: 5px;
  margin-top: calc((var(--mm-listitem-size) - 34px)/ 2); }

label.mm-toggle:before {
  content: '';
  display: block;
  border-radius: 34px;
  width: 32px;
  height: 32px;
  margin: 1px; }

input.mm-toggle {
  position: absolute;
  left: -10000px; }

input.mm-toggle:checked ~ label.mm-toggle:before {
  float: right; }

label.mm-toggle {
  background: rgba(0, 0, 0, 0.1);
  background: var(--mm-color-border); }

label.mm-toggle:before {
  background: #f3f3f3;
  background: var(--mm-color-background); }

input.mm-toggle:checked ~ label.mm-toggle {
  background: #4bd963; }

label.mm-check {
  width: 34px;
  height: 34px; }

label.mm-check:before {
  border-color: rgba(0, 0, 0, 0.75);
  border-color: var(--mm-color-text);
  content: '';
  display: block;
  border-left: 3px solid;
  border-bottom: 3px solid;
  width: 40%;
  height: 20%;
  margin: 25% 0 0 20%;
  opacity: .1;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg); }

input.mm-check {
  position: absolute;
  left: -10000px; }

input.mm-check:checked ~ label.mm-check:before {
  opacity: 1; }

[dir=rtl] input.mm-toggle:checked ~ label.mm-toggle:before {
  float: left; }

.mm-menu_border-none .mm-listitem:after, .mm-panel_border-none .mm-listitem:after {
  content: none; }

.mm-menu_border-full .mm-listitem:after, .mm-panel_border-full .mm-listitem:after {
  left: 0 !important; }

.mm-menu_border-offset .mm-listitem:after, .mm-panel_border-offset .mm-listitem:after {
  right: 20px; }

.mm-menu_fx-menu-zoom {
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  -o-transition: transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease,-webkit-transform .4s ease; }

.mm-wrapper_opened .mm-menu_fx-menu-zoom {
  -webkit-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center; }

.mm-wrapper_opening .mm-menu_fx-menu-zoom {
  -webkit-transform: scale(1, 1) translate3d(0, 0, 0);
  transform: scale(1, 1) translate3d(0, 0, 0); }

.mm-wrapper_opened .mm-menu_fx-menu-zoom.mm-menu_position-right {
  -webkit-transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  transform: scale(0.7, 0.7) translate3d(30%, 0, 0);
  -webkit-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center; }

.mm-wrapper_opening .mm-menu_fx-menu-zoom.mm-menu_position-right {
  -webkit-transform: scale(1, 1) translate3d(0, 0, 0);
  transform: scale(1, 1) translate3d(0, 0, 0); }

.mm-menu_fx-menu-slide {
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  -o-transition: transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease,-webkit-transform .4s ease; }

.mm-wrapper_opened .mm-menu_fx-menu-slide {
  -webkit-transform: translate3d(-30%, 0, 0);
  transform: translate3d(-30%, 0, 0); }

.mm-wrapper_opening .mm-menu_fx-menu-slide {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.mm-wrapper_opened .mm-menu_fx-menu-slide.mm-menu_position-right {
  -webkit-transform: translate3d(30%, 0, 0);
  transform: translate3d(30%, 0, 0); }

.mm-wrapper_opening .mm-menu_fx-menu-slide.mm-menu_position-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.mm-menu_fx-menu-fade {
  opacity: 0;
  -webkit-transition: opacity .4s ease;
  -o-transition: opacity .4s ease;
  transition: opacity .4s ease; }

.mm-wrapper_opening .mm-menu_fx-menu-fade {
  opacity: 1; }

.mm-menu_fx-panels-none .mm-panel, .mm-panel_fx-none {
  -webkit-transition-property: none;
  -o-transition-property: none;
  transition-property: none; }

.mm-menu_fx-panels-none .mm-panel.mm-panel_opened-parent, .mm-panel_fx-none.mm-panel_opened-parent {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.mm-menu_fx-panels-zoom .mm-panel, .mm-panel_fx-zoom {
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform: scale(1.5, 1.5) translate3d(100%, 0, 0);
  transform: scale(1.5, 1.5) translate3d(100%, 0, 0); }

.mm-menu_fx-panels-zoom .mm-panel.mm-panel_opened, .mm-panel_fx-zoom.mm-panel_opened {
  -webkit-transform: scale(1, 1) translate3d(0, 0, 0);
  transform: scale(1, 1) translate3d(0, 0, 0); }

.mm-menu_fx-panels-zoom .mm-panel.mm-panel_opened-parent, .mm-panel_fx-zoom.mm-panel_opened-parent {
  -webkit-transform: scale(0.7, 0.7) translate3d(-30%, 0, 0);
  transform: scale(0.7, 0.7) translate3d(-30%, 0, 0); }

.mm-menu_fx-panels-slide-0 .mm-panel_opened-parent, .mm-panel_fx-slide-0.mm-panel_opened-parent {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.mm-menu_fx-panels-slide-100 .mm-panel_opened-parent, .mm-panel_fx-slide-100.mm-panel_opened-parent {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0); }

.mm-menu_fx-panels-slide-up .mm-panel, .mm-panel_fx-slide-up {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0); }

.mm-menu_fx-panels-slide-up .mm-panel_opened, .mm-menu_fx-panels-slide-up .mm-panel_opened-parent, .mm-panel_fx-slide-up.mm-panel_opened {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.mm-menu_fx-panels-slide-right .mm-panel, .mm-panel_fx-slide-right {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0); }

.mm-menu_fx-panels-slide-right .mm-panel_opened, .mm-menu_fx-panels-slide-right .mm-panel_opened-parent, .mm-panel_fx-slide-right.mm-panel_opened {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

[class*=mm-menu_fx-listitems-] .mm-listitem {
  -webkit-transition: none .4s ease;
  -o-transition: none .4s ease;
  transition: none .4s ease; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(1) {
  -webkit-transition-delay: 50ms;
  -o-transition-delay: 50ms;
  transition-delay: 50ms; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(2) {
  -webkit-transition-delay: .1s;
  -o-transition-delay: .1s;
  transition-delay: .1s; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(3) {
  -webkit-transition-delay: 150ms;
  -o-transition-delay: 150ms;
  transition-delay: 150ms; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(4) {
  -webkit-transition-delay: .2s;
  -o-transition-delay: .2s;
  transition-delay: .2s; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(5) {
  -webkit-transition-delay: 250ms;
  -o-transition-delay: 250ms;
  transition-delay: 250ms; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(6) {
  -webkit-transition-delay: .3s;
  -o-transition-delay: .3s;
  transition-delay: .3s; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(7) {
  -webkit-transition-delay: 350ms;
  -o-transition-delay: 350ms;
  transition-delay: 350ms; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(8) {
  -webkit-transition-delay: .4s;
  -o-transition-delay: .4s;
  transition-delay: .4s; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(9) {
  -webkit-transition-delay: 450ms;
  -o-transition-delay: 450ms;
  transition-delay: 450ms; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(10) {
  -webkit-transition-delay: .5s;
  -o-transition-delay: .5s;
  transition-delay: .5s; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(11) {
  -webkit-transition-delay: 550ms;
  -o-transition-delay: 550ms;
  transition-delay: 550ms; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(12) {
  -webkit-transition-delay: .6s;
  -o-transition-delay: .6s;
  transition-delay: .6s; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(13) {
  -webkit-transition-delay: 650ms;
  -o-transition-delay: 650ms;
  transition-delay: 650ms; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(14) {
  -webkit-transition-delay: .7s;
  -o-transition-delay: .7s;
  transition-delay: .7s; }

[class*=mm-menu_fx-listitems-] .mm-listitem:nth-child(15) {
  -webkit-transition-delay: 750ms;
  -o-transition-delay: 750ms;
  transition-delay: 750ms; }

.mm-menu_fx-listitems-slide .mm-listitem {
  -webkit-transition-property: opacity,-webkit-transform;
  transition-property: opacity,-webkit-transform;
  -o-transition-property: transform,opacity;
  transition-property: transform,opacity;
  transition-property: transform,opacity,-webkit-transform;
  -webkit-transform: translate3d(50%, 0, 0);
  transform: translate3d(50%, 0, 0);
  opacity: 0; }

.mm-wrapper_opening .mm-menu_fx-listitems-slide .mm-panel_opened .mm-listitem {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1; }

.mm-menu_fx-listitems-fade .mm-listitem {
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  opacity: 0; }

.mm-wrapper_opening .mm-menu_fx-listitems-fade .mm-panel_opened .mm-listitem {
  opacity: 1; }

.mm-menu_fx-listitems-drop .mm-listitem {
  -webkit-transition-property: opacity,top;
  -o-transition-property: opacity,top;
  transition-property: opacity,top;
  opacity: 0;
  top: -25%; }

.mm-wrapper_opening .mm-menu_fx-listitems-drop .mm-panel_opened .mm-listitem {
  opacity: 1;
  top: 0; }

.mm-menu_fullscreen {
  width: 100%;
  min-width: 140px;
  max-width: 10000px; }

.mm-wrapper_opening .mm-menu_fullscreen.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate3d(100vw, 0, 0);
  transform: translate3d(100vw, 0, 0); }

@media all and (max-width: 140px) {
  .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(140px, 0, 0);
    transform: translate3d(140px, 0, 0); } }

@media all and (min-width: 10000px) {
  .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(10000px, 0, 0);
    transform: translate3d(10000px, 0, 0); } }

.mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate3d(-100vw, 0, 0);
  transform: translate3d(-100vw, 0, 0); }

@media all and (max-width: 140px) {
  .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(-140px, 0, 0);
    transform: translate3d(-140px, 0, 0); } }

@media all and (min-width: 10000px) {
  .mm-wrapper_opening .mm-menu_fullscreen.mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(-10000px, 0, 0);
    transform: translate3d(-10000px, 0, 0); } }

.mm-menu_fullscreen.mm-menu_position-top {
  height: 100vh;
  min-height: 140px;
  max-height: 10000px; }

.mm-menu_fullscreen.mm-menu_position-bottom {
  height: 100vh;
  min-height: 140px;
  max-height: 10000px; }

.mm-menu_listview-justify .mm-panels > .mm-panel:after, .mm-menu_listview-justify .mm-panels > .mm-panel:before, .mm-panels > .mm-panel_listview-justify:after, .mm-panels > .mm-panel_listview-justify:before {
  content: none;
  display: none; }

.mm-menu_listview-justify .mm-panels > .mm-panel .mm-listview, .mm-panels > .mm-panel_listview-justify .mm-listview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  margin-top: 0;
  margin-bottom: 0; }

.mm-menu_listview-justify .mm-panels > .mm-panel .mm-listitem, .mm-panels > .mm-panel_listview-justify .mm-listitem {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  min-height: 44px; }

.mm-menu_listview-justify .mm-panels > .mm-panel .mm-listitem:not(.mm-listitem_divider), .mm-panels > .mm-panel_listview-justify .mm-listitem:not(.mm-listitem_divider) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }

.mm-menu_listview-justify .mm-panels > .mm-panel .mm-listitem__text, .mm-panels > .mm-panel_listview-justify .mm-listitem__text {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

.mm-listview_inset {
  list-style: inside disc;
  width: 100%;
  padding: 0 30px 15px 30px;
  margin: 0; }

.mm-listview_inset .mm-listitem {
  padding: 5px 0; }

.mm-menu_multiline .mm-listitem__text, .mm-panel_multiline .mm-listitem__text {
  -o-text-overflow: clip;
  text-overflow: clip;
  white-space: normal; }

[class*=mm-menu_pagedim].mm-menu_opened ~ .mm-wrapper__blocker {
  opacity: 0; }

.mm-wrapper_opening [class*=mm-menu_pagedim].mm-menu_opened ~ .mm-wrapper__blocker {
  opacity: .3;
  -webkit-transition: opacity .4s ease .4s;
  -o-transition: opacity .4s ease .4s;
  transition: opacity .4s ease .4s; }

.mm-menu_opened.mm-menu_pagedim ~ .mm-wrapper__blocker {
  background: inherit; }

.mm-menu_opened.mm-menu_pagedim-black ~ .mm-wrapper__blocker {
  background: #000; }

.mm-menu_opened.mm-menu_pagedim-white ~ .mm-wrapper__blocker {
  background: #fff; }

.mm-menu_popup {
  -webkit-transition: opacity .4s ease;
  -o-transition: opacity .4s ease;
  transition: opacity .4s ease;
  opacity: 0;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  height: 80%;
  min-height: 140px;
  max-height: 880px;
  top: 50%;
  left: 50%;
  bottom: auto;
  right: auto;
  z-index: 2;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0); }

.mm-menu_popup.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
  z-index: 0; }

.mm-menu_popup.mm-menu_opened ~ .mm-wrapper__blocker {
  -webkit-transition-delay: 0s !important;
  -o-transition-delay: 0s !important;
  transition-delay: 0s !important;
  z-index: 1; }

.mm-wrapper_opening .mm-menu_popup {
  opacity: 1; }

.mm-menu_position-right {
  left: auto;
  right: 0; }

.mm-wrapper_opening .mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: translate3d(-80vw, 0, 0);
  transform: translate3d(-80vw, 0, 0); }

@media all and (max-width: 300px) {
  .mm-wrapper_opening .mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(-240px, 0, 0);
    transform: translate3d(-240px, 0, 0); } }

@media all and (min-width: 550px) {
  .mm-wrapper_opening .mm-menu_position-right.mm-menu_opened ~ .mm-slideout {
    -webkit-transform: translate3d(-440px, 0, 0);
    transform: translate3d(-440px, 0, 0); } }

.mm-menu_position-bottom, .mm-menu_position-front, .mm-menu_position-top {
  -webkit-transition: -webkit-transform .4s ease;
  transition: -webkit-transform .4s ease;
  -o-transition: transform .4s ease;
  transition: transform .4s ease;
  transition: transform .4s ease,-webkit-transform .4s ease; }

.mm-menu_position-bottom.mm-menu_opened, .mm-menu_position-front.mm-menu_opened, .mm-menu_position-top.mm-menu_opened {
  z-index: 2; }

.mm-menu_position-bottom.mm-menu_opened ~ .mm-slideout, .mm-menu_position-front.mm-menu_opened ~ .mm-slideout, .mm-menu_position-top.mm-menu_opened ~ .mm-slideout {
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
  z-index: 0; }

.mm-menu_position-bottom.mm-menu_opened ~ .mm-wrapper__blocker, .mm-menu_position-front.mm-menu_opened ~ .mm-wrapper__blocker, .mm-menu_position-top.mm-menu_opened ~ .mm-wrapper__blocker {
  z-index: 1; }

.mm-menu_position-front {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0); }

.mm-menu_position-front.mm-menu_position-right {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0); }

.mm-menu_position-bottom, .mm-menu_position-top {
  width: 100%;
  min-width: 100%;
  max-width: 100%; }

.mm-menu_position-top {
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0); }

.mm-menu_position-top {
  height: 80vh;
  min-height: 140px;
  max-height: 880px; }

.mm-menu_position-bottom {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  top: auto; }

.mm-menu_position-bottom {
  height: 80vh;
  min-height: 140px;
  max-height: 880px; }

.mm-wrapper_opening .mm-menu_position-bottom, .mm-wrapper_opening .mm-menu_position-front, .mm-wrapper_opening .mm-menu_position-top {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.mm-menu_shadow-page:after {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: var(--mm-shadow);
  box-shadow: var(--mm-shadow);
  content: "";
  display: block;
  width: 20px;
  height: 120%;
  position: absolute;
  left: 100%;
  top: -10%;
  z-index: 100;
  -webkit-clip-path: polygon(-20px 0, 0 0, 0 100%, -20px 100%);
  clip-path: polygon(-20px 0, 0 0, 0 100%, -20px 100%); }

.mm-menu_shadow-page.mm-menu_position-right:after {
  left: auto;
  right: 100%;
  -webkit-clip-path: polygon(20px 0, 40px 0, 40px 100%, 20px 100%);
  clip-path: polygon(20px 0, 40px 0, 40px 100%, 20px 100%); }

.mm-menu_shadow-page.mm-menu_position-front:after {
  content: none;
  display: none; }

.mm-menu_shadow-menu {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: var(--mm-shadow);
  box-shadow: var(--mm-shadow); }

.mm-menu_shadow-panels .mm-panels > .mm-panel {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: var(--mm-shadow);
  box-shadow: var(--mm-shadow); }

.mm-menu_theme-white {
  --mm-color-border:rgba( 0,0,0, 0.1 );
  --mm-color-button:rgba( 0,0,0, 0.3 );
  --mm-color-text:rgba( 0,0,0, 0.7 );
  --mm-color-text-dimmed:rgba( 0,0,0, 0.3 );
  --mm-color-background:#fff;
  --mm-color-background-highlight:rgba( 0,0,0, 0.06 );
  --mm-color-background-emphasis:rgba( 0,0,0, 0.03 );
  --mm-shadow:0 0 10px rgba( 0,0,0, 0.2 ); }

.mm-menu_theme-dark {
  --mm-color-border:rgba( 0,0,0, 0.3 );
  --mm-color-button:rgba( 255,255,255, 0.4 );
  --mm-color-text:rgba( 255,255,255, 0.85 );
  --mm-color-text-dimmed:rgba( 255,255,255, 0.4 );
  --mm-color-background:#333;
  --mm-color-background-highlight:rgba( 255,255,255, 0.08 );
  --mm-color-background-emphasis:rgba( 0,0,0, 0.1 );
  --mm-shadow:0 0 20px rgba( 0,0,0, 0.5 ); }

.mm-menu_theme-black {
  --mm-color-border:rgba( 255,255,255, 0.25 );
  --mm-color-button:rgba( 255,255,255, 0.4 );
  --mm-color-text:rgba( 255,255,255, 0.75 );
  --mm-color-text-dimmed:rgba( 255,255,255, 0.4 );
  --mm-color-background:#000;
  --mm-color-background-highlight:rgba( 255,255,255, 0.2 );
  --mm-color-background-emphasis:rgba( 255,255,255, 0.15 );
  --mm-shadow:none; }

.mm-menu_tileview .mm-listview, .mm-panel_tileview .mm-listview {
  margin: 0 !important; }

.mm-menu_tileview .mm-listview:after, .mm-panel_tileview .mm-listview:after {
  content: '';
  display: block;
  clear: both; }

.mm-menu_tileview .mm-listitem, .mm-panel_tileview .mm-listitem {
  padding: 0;
  float: left;
  position: relative;
  width: 50%;
  height: 0;
  padding-top: 50%; }

.mm-menu_tileview .mm-listitem:after, .mm-panel_tileview .mm-listitem:after {
  left: 0;
  top: 0;
  border-right-width: 1px;
  border-right-style: solid;
  z-index: -1; }

.mm-menu_tileview .mm-listitem.mm-tile-xs, .mm-panel_tileview .mm-listitem.mm-tile-xs {
  width: 12.5%;
  padding-top: 12.5%; }

.mm-menu_tileview .mm-listitem.mm-tile-s, .mm-panel_tileview .mm-listitem.mm-tile-s {
  width: 25%;
  padding-top: 25%; }

.mm-menu_tileview .mm-listitem.mm-tile-l, .mm-panel_tileview .mm-listitem.mm-tile-l {
  width: 75%;
  padding-top: 75%; }

.mm-menu_tileview .mm-listitem.mm-tile-xl, .mm-panel_tileview .mm-listitem.mm-tile-xl {
  width: 100%;
  padding-top: 100%; }

.mm-menu_tileview .mm-listitem__text, .mm-panel_tileview .mm-listitem__text {
  line-height: 1px;
  text-align: center;
  padding: 50% 10px 0 10px;
  margin: 0;
  position: absolute;
  top: 0;
  right: 1px;
  bottom: 1px;
  left: 0; }

.mm-menu_tileview .mm-listitem__btn, .mm-panel_tileview .mm-listitem__btn {
  width: auto; }

.mm-menu_tileview .mm-listitem__btn:after, .mm-menu_tileview .mm-listitem__btn:before, .mm-panel_tileview .mm-listitem__btn:after, .mm-panel_tileview .mm-listitem__btn:before {
  content: none;
  display: none; }

.mm-menu_tileview .mm-listitem_divider, .mm-panel_tileview .mm-listitem_divider {
  display: none; }

.mm-menu_tileview .mm-panel, .mm-panel_tileview {
  padding-left: 0;
  padding-right: 0; }

.mm-menu_tileview .mm-panel:after, .mm-menu_tileview .mm-panel:before, .mm-panel_tileview:after, .mm-panel_tileview:before {
  content: none;
  display: none; }

body.modal-open .mm-slideout {
  z-index: unset; }

/* POSITION
.mm-menu_position-right{left:auto;right:0}.mm-wrapper_opening .mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-80vw,0,0);transform:translate3d(-80vw,0,0)}@media all and (max-width:300px){.mm-wrapper_opening .mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-240px,0,0);transform:translate3d(-240px,0,0)}}@media all and (min-width:550px){.mm-wrapper_opening .mm-menu_position-right.mm-menu_opened~.mm-slideout{-webkit-transform:translate3d(-440px,0,0);transform:translate3d(-440px,0,0)}}.mm-menu_position-bottom,.mm-menu_position-front,.mm-menu_position-top{-webkit-transition:-webkit-transform .4s ease;transition:-webkit-transform .4s ease;-o-transition:transform .4s ease;transition:transform .4s ease;transition:transform .4s ease,-webkit-transform .4s ease}.mm-menu_position-bottom.mm-menu_opened,.mm-menu_position-front.mm-menu_opened,.mm-menu_position-top.mm-menu_opened{z-index:2}.mm-menu_position-bottom.mm-menu_opened~.mm-slideout,.mm-menu_position-front.mm-menu_opened~.mm-slideout,.mm-menu_position-top.mm-menu_opened~.mm-slideout{-webkit-transform:none!important;-ms-transform:none!important;transform:none!important;z-index:0}.mm-menu_position-bottom.mm-menu_opened~.mm-wrapper__blocker,.mm-menu_position-front.mm-menu_opened~.mm-wrapper__blocker,.mm-menu_position-top.mm-menu_opened~.mm-wrapper__blocker{z-index:1}.mm-menu_position-front{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.mm-menu_position-front.mm-menu_position-right{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.mm-menu_position-bottom,.mm-menu_position-top{width:100%;min-width:100%;max-width:100%}.mm-menu_position-top{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}.mm-menu_position-top{height:80vh;min-height:140px;max-height:880px}.mm-menu_position-bottom{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);top:auto}.mm-menu_position-bottom{height:80vh;min-height:140px;max-height:880px}.mm-wrapper_opening .mm-menu_position-bottom,.mm-wrapper_opening .mm-menu_position-front,.mm-wrapper_opening .mm-menu_position-top{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)} */
/*! Images */
img {
  max-width: 100%;
  height: auto; }

/*! Buttons */
.btn-primary {
  background: #0073a5;
  border-color: #0073a5;
  color: #ffffff;
  padding-left: 1rem;
  padding-right: 1rem; }
  .btn-primary:hover {
    background: #0e527a;
    border-color: #0e527a; }

.btn, .btn--cta {
  color: #ffffff;
  background-size: 300% 100%;
  background-image: -moz-linear-gradient(135deg, #0073a5 0%, #232f5d 50%, #0073a5 100%);
  background-image: -webkit-linear-gradient(135deg, #0073a5 0%, #232f5d 50%, #0073a5 100%);
  background-image: linear-gradient(135deg, #0073a5 0%, #232f5d 50%, #0073a5 100%);
  moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out; }
  .btn:hover, .btn--cta:hover {
    color: #ffffff;
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out; }
  .btn.outline, .btn--cta.outline {
    background: rgba(0, 115, 165, 0.1);
    color: #0073a5; }

/*! Grid */
.row > *:not([class*="col"]) {
  max-width: 100%;
  flex: 0 0 100%;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px; }

.c2-main > .row > *:last-child {
  margin-bottom: 3rem; }

/*! Footer */
.footer {
  background: #0073a5;
  background: -moz-linear-gradient(-45deg, #0073a5 0%, #232f5d 100%);
  background: -webkit-linear-gradient(-45deg, #0073a5 0%, #232f5d 100%);
  background: linear-gradient(135deg, #0073a5 0%, #232f5d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$left', endColorstr='$right',GradientType=1 );
  color: #ffffff; }
  .footer #footer-columns h5 {
    color: #ffffff;
    font-weight: 500;
    font-size: 1.6rem; }
    @media (min-width: 767px) {
      .footer #footer-columns h5 {
        font-size: 1.25rem; } }
  .footer #footer-columns ul {
    list-style: none;
    padding: 0;
    margin: 0; }
    .footer #footer-columns ul li {
      padding: 0.2rem 0;
      position: relative; }
      @media (min-width: 767px) {
        .footer #footer-columns ul li {
          padding: 0.5rem 0; } }
      .footer #footer-columns ul li:hover:after {
        content: "\f105";
        position: absolute;
        font-family: "Font Awesome 5 Pro";
        color: #e18911;
        font-weight: 900;
        margin-left: 1.5rem;
        font-size: 22px;
        top: 50%;
        transform: translate(0%, -47%); }
        @media (max-width: 1199px) {
          .footer #footer-columns ul li:hover:after {
            content: ""; } }
      .footer #footer-columns ul li a {
        color: rgba(255, 255, 255, 0.75);
        text-decoration: none;
        font-size: 18px; }
        @media (min-width: 767px) {
          .footer #footer-columns ul li a {
            font-size: 14px; } }
        .footer #footer-columns ul li a:hover {
          color: #ffffff; }
  .footer #footer-columns .footer-company-detials h5 {
    margin-bottom: 0; }
  .footer #footer-columns .footer-company-detials p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px; }
    @media (min-width: 767px) {
      .footer #footer-columns .footer-company-detials p {
        font-size: 14px; } }
  .footer #footer-columns .footer-company-detials__logos {
    margin-bottom: 1rem; }
    .footer #footer-columns .footer-company-detials__logos a {
      height: 3.5rem;
      margin-right: 0.5rem;
      display: inline-block; }
      .footer #footer-columns .footer-company-detials__logos a img {
        height: 100%;
        width: auto; }
  .footer .container-fluid {
    border-top: 4px solid #e18911; }
  .footer #copyright {
    height: 8rem;
    background: transparent; }
    .footer #copyright > .row {
      width: 100%; }
    .footer #copyright p {
      margin-bottom: 0;
      color: #ffffff; }
    .footer #copyright ul {
      list-style: none;
      padding: 0;
      margin: 0; }
      .footer #copyright ul li {
        display: inline-block; }
        .footer #copyright ul li a {
          color: rgba(255, 255, 255, 0.75);
          text-decoration: none;
          font-size: 14px;
          padding: 0 .5rem; }
          .footer #copyright ul li a:hover {
            color: #ffffff; }
    .footer #copyright .topLogo {
      z-index: 6;
      background-size: auto 34px;
      background-repeat: no-repeat;
      background-position: center;
      padding: 0px 10px;
      width: 3.5rem;
      height: 3.5rem;
      background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 59.42'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%23fff;%7D%3C/style%3E%3C/defs%3E%3Ctitle%3EAsset 4%3C/title%3E%3Cg id='Layer_2' data-name='Layer 2'%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Cpath class='cls-1' d='M60,29.8a30,30,0,0,0-60,0A29.74,29.74,0,0,0,25,59.19l1.4.23V57l-1-.16A27.36,27.36,0,0,1,30,2.42a27.36,27.36,0,0,1,6.48,54l-.5.12v-26H24V33h9.54V59.42L35,59.19A29.74,29.74,0,0,0,60,29.8Z'/%3E%3Cpath class='cls-1' d='M30,14.44a6.47,6.47,0,0,0-6.47,6.47A6.58,6.58,0,0,0,30,27.43a6.5,6.5,0,0,0,6.47-6.52A6.4,6.4,0,0,0,30,14.44ZM30,25a4.08,4.08,0,0,1,0-8.15,4,4,0,0,1,4,4.05A4.08,4.08,0,0,1,30,25Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      border: 0;
      cursor: pointer;
      -webkit-transition: -webkit-transform 0.8s ease-in-out;
      -ms-transition: -ms-transform 0.8s ease-in-out;
      transition: transform 0.8s ease-in-out; }
      .footer #copyright .topLogo:hover {
        transform: rotate(-360deg);
        -ms-transform: rotate(-360deg);
        -webkit-transform: rotate(-360deg); }

/*! Hero */
body {
  overflow-x: hidden; }

.c2-hero {
  width: 100%;
  position: relative;
  height: 50vh;
  z-index: 1; }
  .c2-hero--half-height {
    height: 40vh; }
    @media (min-width: 768px) {
      .c2-hero--half-height {
        height: 30vh; } }
  .c2-hero__inner {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    justify-content: center; }
  .c2-hero .c2-hero__article__Cont {
    display: inline-block; }
  .c2-hero.x-left .c2-hero__article .container {
    text-align: left; }
  .c2-hero.x-right .c2-hero__article .container {
    text-align: right; }
  .c2-hero.x-centre .c2-hero__article .container {
    text-align: center; }
  .c2-hero.y-top .c2-hero__inner {
    justify-content: flex-start; }
  .c2-hero.y-bottom .c2-hero__inner {
    justify-content: flex-end; }
  .c2-hero__article {
    position: relative;
    z-index: 10; }
    .c2-hero__article__Cont {
      background: #0073a5;
      background: -moz-linear-gradient(-45deg, #0073a5 0%, #232f5d 100%);
      background: -webkit-linear-gradient(-45deg, #0073a5 0%, #232f5d 100%);
      background: linear-gradient(135deg, #0073a5 0%, #232f5d 100%);
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$left', endColorstr='$right',GradientType=1 );
      border-bottom: 5px solid #e18911; }
      @media (min-width: 1200px) {
        .c2-hero__article__Cont {
          max-width: 65%; } }
      .c2-hero__article__Cont p {
        color: #ffffff;
        font-size: 1.5rem;
        margin: 0;
        line-height: 1.2; }
        @media (min-width: 768px) {
          .c2-hero__article__Cont p {
            font-size: 2rem; } }
        @media (min-width: 1200px) {
          .c2-hero__article__Cont p {
            font-size: 2.5rem; } }
        .c2-hero__article__Cont p.larger {
          font-size: 1.8rem;
          letter-spacing: .1rem; }
          @media (min-width: 768px) {
            .c2-hero__article__Cont p.larger {
              font-size: 2.2rem; } }
          @media (min-width: 1200px) {
            .c2-hero__article__Cont p.larger {
              font-size: 3rem; } }
  .c2-hero:after {
    position: absolute;
    width: 100vw;
    height: 50vh;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    z-index: 1;
    margin: 0;
    content: "";
    background: rgba(255, 255, 255, 0.3); }
  .c2-hero__image {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    z-index: 0;
    margin: 0;
    border-bottom: 5px solid #e18911; }
    .c2-hero__image > * {
      position: relative;
      width: 100%;
      height: 100%;
      margin: 0;
      padding: 0; }
    .c2-hero__image img {
      object-fit: cover;
      width: 100%;
      height: 100%;
      max-height: 100%;
      max-width: 100%; }
  .c2-hero--full-width .c2-hero__image {
    width: 100vw; }

/*! Helpers */
.div {
  max-height: none; }

@media (min-width: 1200px) {
  .pad-in-text > * {
    max-width: 85%;
    /* Used instead of 0 auto 
			 *   so it doesn't remove margin bottom from h1.. and p.. tags */
    margin-left: auto;
    margin-right: auto; } }

.accent-strip {
  border-bottom: 5px solid #e18911; }

/*! Contact Forms */
.contact-forms__list > *:not(.active) {
  display: none; }

.contact-forms__filter {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 2rem; }
  .contact-forms__filter .btn {
    margin-right: 1rem; }

.bffsfield {
  display: none; }

.c2form_zero .c2form_fieldset {
  width: 100%;
  max-width: 100% !important; }
  .c2form_zero .c2form_fieldset > .c2form_fields {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
    .c2form_zero .c2form_fieldset > .c2form_fields > .c2form_row {
      width: 100%; }
      @media (min-width: 767px) {
        .c2form_zero .c2form_fieldset > .c2form_fields > .c2form_row:not(:last-child) {
          width: 48%; } }

.c2form_zero select:not(.form-control),
.c2form_zero textarea:not(.form-control),
.c2form_zero input[type="tel"]:not(.form-control),
.c2form_zero input[type="email"]:not(.form-control),
.c2form_zero input[type="text"]:not(.form-control) {
  width: 100% !important;
  font-size: 1rem;
  background: #fff;
  box-sizing: border-box;
  padding: 0.5rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc; }

.c2form_zero label,
.c2form_zero .c2form_reqfields {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 0.5rem; }

.c2form_zero.search-results form > div {
  display: flex;
  align-items: middle;
  padding-bottom: 2rem; }
  @media screen and (max-width: 768px) {
    .c2form_zero.search-results form > div {
      flex-wrap: wrap; }
      .c2form_zero.search-results form > div > * {
        width: 100%; } }
  .c2form_zero.search-results form > div .slitext {
    display: none; }
  .c2form_zero.search-results form > div select,
  .c2form_zero.search-results form > div input {
    margin: 0; }

.FormFieldErrorText {
  margin: 0 0 1rem 0; }

.MsgPriority {
  display: none; }

.MsgText,
.MsgHead {
  padding-left: 16px; }

.FormFieldErrorText,
.MsgText {
  color: rgba(244, 54, 54, 0.8); }

.c2form_buttons {
  text-align: left; }

/*! Lists */
.c2-list--social-links {
  justify-content: space-around; }
  .c2-list--social-links .c2-social-link {
    position: relative;
    font-size: 1.4rem;
    background: #ffffff;
    border-radius: 50%;
    height: 2.5rem;
    width: 2.5rem; }
    .c2-list--social-links .c2-social-link i {
      color: #232f5d;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
    .c2-list--social-links .c2-social-link:hover {
      background: rgba(255, 255, 255, 0.8); }
  @media (min-width: 768px) {
    .c2-list--social-links {
      justify-content: flex-start; }
      .c2-list--social-links .c2-social-link {
        font-size: 1.4rem;
        margin-right: 1rem; } }

.c2-list--call-to-action .c2-call-to-action {
  position: relative;
  padding: 2rem;
  width: 100%;
  cursor: pointer; }
  @media (min-width: 767px) {
    .c2-list--call-to-action .c2-call-to-action {
      width: 50%; } }
  @media (min-width: 1199px) {
    .c2-list--call-to-action .c2-call-to-action {
      width: 25%;
      padding: 1rem; } }
  .c2-list--call-to-action .c2-call-to-action a {
    text-align: center; }
  .c2-list--call-to-action .c2-call-to-action__image {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding-top: 56.25%;
    width: 100%;
    display: block; }
  .c2-list--call-to-action .c2-call-to-action__text {
    position: absolute;
    bottom: -3%;
    left: 50%;
    width: 75%;
    height: 30%;
    border-bottom: 5px solid #e18911;
    transform: translate(-50%, 0%); }
    @media (min-width: 767px) {
      .c2-list--call-to-action .c2-call-to-action__text {
        height: 34%;
        bottom: -6%; } }
    .c2-list--call-to-action .c2-call-to-action__text p {
      color: rgba(255, 255, 255, 0.75);
      letter-spacing: 0.05rem;
      font-size: 1.4rem;
      margin: 0;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100%; }
  .c2-list--call-to-action .c2-call-to-action:hover .btn--cta {
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out; }

@media (min-width: 768px) {
  .c2-featured-articles {
    height: 600px;
    width: 100%;
    overflow: hidden;
    position: relative; } }

.c2-featured-articles .c2-featured-article {
  background: #ccc;
  position: relative;
  cursor: pointer; }
  @media (max-width: 767px) {
    .c2-featured-articles .c2-featured-article {
      height: 300px;
      margin-bottom: 2rem; } }
  @media (min-width: 768px) {
    .c2-featured-articles .c2-featured-article {
      overflow: hidden; } }
  .c2-featured-articles .c2-featured-article:hover a:after {
    margin-left: 1.8rem; }
  .c2-featured-articles .c2-featured-article__image img {
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .c2-featured-articles .c2-featured-article__text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 1rem;
    border: 1px solid rgba(96, 96, 96, 0.25); }
    .c2-featured-articles .c2-featured-article__text .c2-summary__date {
      color: rgba(0, 0, 0, 0.5);
      text-transform: uppercase;
      font-weight: 600;
      font-size: 0.8rem; }
      .c2-featured-articles .c2-featured-article__text .c2-summary__date sup {
        top: 0;
        font-size: 100%; }
    .c2-featured-articles .c2-featured-article__text p {
      margin: 0; }
    .c2-featured-articles .c2-featured-article__text a {
      position: relative;
      color: rgba(0, 0, 0, 0.5);
      text-transform: uppercase;
      font-weight: 600;
      font-size: 0.8rem; }
      .c2-featured-articles .c2-featured-article__text a:after {
        content: "\f105";
        position: absolute;
        font-family: "Font Awesome 5 Pro";
        color: #e18911;
        font-weight: 900;
        margin-left: .8rem;
        font-size: 19px;
        top: 50%;
        transform: translate(0%, -47%);
        transition: margin-left .6s; }
  @media (min-width: 768px) {
    .c2-featured-articles .c2-featured-article:first-child {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 60%;
      border-top-left-radius: 10px;
      border-bottom-left-radius: 10px; }
      .c2-featured-articles .c2-featured-article:first-child p {
        max-width: 50%; }
    .c2-featured-articles .c2-featured-article:not(:first-child):not(:last-child) {
      position: absolute;
      right: 0;
      top: 0;
      height: 48%;
      width: 37%;
      border-top-right-radius: 10px; }
    .c2-featured-articles .c2-featured-article:last-child {
      position: absolute;
      bottom: 0;
      right: 0;
      height: 48%;
      width: 37%;
      border-bottom-right-radius: 10px; } }

/*! Testimonials */
.c2-testimonials {
  position: relative;
  z-index: 0; }
  .c2-testimonials__testimonial__text {
    position: relative;
    padding: 1rem 2rem;
    text-align: center; }
    .c2-testimonials__testimonial__text p {
      font-size: 1.2rem;
      font-style: italic; }
    .c2-testimonials__testimonial__text i {
      position: absolute; }
      .c2-testimonials__testimonial__text i:first-child {
        top: 0;
        left: 0; }
      .c2-testimonials__testimonial__text i:last-child {
        bottom: 0;
        right: 0; }
  .c2-testimonials__testimonial__source {
    font-weight: 700;
    font-size: 1.2rem;
    font-style: italic;
    text-align: center;
    display: block;
    width: 100%; }
  .c2-testimonials > div {
    z-index: 10;
    position: relative;
    color: #0073a5;
    width: 100%;
    overflow: hidden;
    min-height: 50vh; }
    @media screen and (min-width: 500px) {
      .c2-testimonials > div {
        min-height: 40vh; } }
    @media screen and (min-width: 768px) {
      .c2-testimonials > div {
        min-height: 30vh; } }
    .c2-testimonials > div > article {
      position: absolute;
      top: 50%;
      transform: translateY(-50%); }
      .c2-testimonials > div > article:nth-child(1) {
        left: 0; }
      .c2-testimonials > div > article:nth-child(2) {
        left: 100%; }
      .c2-testimonials > div > article:nth-child(3) {
        left: 200%; }
      .c2-testimonials > div > article:nth-child(4) {
        left: 300%; }
      .c2-testimonials > div > article:nth-child(5) {
        left: 400%; }
  .c2-testimonials:before {
    position: absolute;
    width: 100vw;
    height: 50vh;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    z-index: 1;
    content: "";
    margin: 0;
    background: white; }

/*! Item Styles */
.c2-primary-bg {
  background: #0073a5; }
  .c2-primary-bg .c2-text-and-image > div {
    background: #0073a5; }

.c2-light-text {
  color: #ffffff; }
  .c2-light-text * {
    color: #ffffff; }

/*! Text and Image */
.c2-summary {
  margin-bottom: 3rem; }
  .c2-summary--list-article {
    box-shadow: 0px 20px 20px -10px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.5s;
    border: 1px solid rgba(96, 96, 96, 0.25);
    border-bottom: 5px solid #e18911; }
    .c2-summary--list-article:hover {
      box-shadow: 0px 20px 20px 16px rgba(0, 0, 0, 0.2); }

.c2-text-and-image {
  min-height: 21vw !important;
  position: relative !important;
  padding: 0 !important;
  flex: unset !important;
  margin: 3.5rem 1rem;
  box-shadow: 0px 20px 20px -10px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.5s; }
  .c2-text-and-image:hover {
    box-shadow: 0px 20px 20px 16px rgba(0, 0, 0, 0.2); }
  .c2-text-and-image:last-of-type {
    margin-bottom: 7rem; }
  .c2-text-and-image div {
    flex-wrap: wrap;
    display: flex; }
    .c2-text-and-image div figure,
    .c2-text-and-image div article {
      border: 1px solid rgba(96, 96, 96, 0.25); }
    .c2-text-and-image div article {
      padding: 2rem;
      border-bottom: 5px solid #e18911; }
    @media (max-width: 767px) {
      .c2-text-and-image div {
        padding: 0 !important; }
        .c2-text-and-image div article {
          order: 1; }
        .c2-text-and-image div figure,
        .c2-text-and-image div article {
          width: 100%;
          margin: 0; }
          .c2-text-and-image div figure p,
          .c2-text-and-image div article p {
            margin: 0; }
          .c2-text-and-image div figure img,
          .c2-text-and-image div article img {
            width: 100%; } }
    @media (min-width: 768px) {
      .c2-text-and-image div {
        width: 100%;
        height: 100%;
        display: flex; }
        .c2-text-and-image div figure,
        .c2-text-and-image div article {
          margin: 0; }
        .c2-text-and-image div figure {
          position: relative;
          width: 40%; } }
    @media (min-width: 768px) and (min-width: 1199px) {
      .c2-text-and-image div figure {
        width: 60%; } }
    @media (min-width: 768px) {
          .c2-text-and-image div figure img {
            max-width: 100%;
            max-height: 100%;
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover; }
          .c2-text-and-image div figure:after {
            position: absolute;
            width: 100%;
            height: 100%;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            z-index: 1;
            margin: 0;
            content: "";
            background: rgba(0, 0, 0, 0.1); }
        .c2-text-and-image div article {
          display: flex;
          flex-direction: column;
          width: 60%;
          padding: 3rem; } }
    @media (min-width: 768px) and (min-width: 1199px) {
      .c2-text-and-image div article {
        width: 40%;
        padding: 4rem; } }
    @media (min-width: 768px) {
          .c2-text-and-image div article h4 {
            margin-bottom: 1.8rem; }
          .c2-text-and-image div article p {
            font-size: 1.2rem; } }
  .c2-text-and-image--reverse .c2-text-and-image__image {
    order: -1; }
  .c2-text-and-image--image-aside {
    min-height: 20vw !important; }
    @media (min-width: 768px) {
      .c2-text-and-image--image-aside > div figure {
        width: 30%; }
      .c2-text-and-image--image-aside > div article {
        width: 70%; } }
  @media (min-width: 768px) {
    .c2-text-and-image--full-width > div {
      width: 100vw; } }

/*! Aside Content */
#main .side-menu {
  border-bottom: 5px solid #e18911; }
  #main .side-menu ul {
    list-style: none;
    padding: 0;
    padding-left: 1rem;
    margin: 0; }
    #main .side-menu ul li {
      position: relative; }
      #main .side-menu ul li:not(.headpage) {
        padding-left: 1.5rem; }
      #main .side-menu ul li.cur a,
      #main .side-menu ul li.cur span {
        color: #000000; }
      #main .side-menu ul li a,
      #main .side-menu ul li span {
        font-size: 1.2rem;
        text-decoration: none;
        color: rgba(0, 0, 0, 0.5);
        display: block;
        background: #ffffff;
        transition: color 0.3s;
        line-height: 2.4rem; }
        #main .side-menu ul li a:not(.cur):hover,
        #main .side-menu ul li span:not(.cur):hover {
          color: rgba(96, 96, 96, 0.25); }
        #main .side-menu ul li a:not(.headpage):before,
        #main .side-menu ul li span:not(.headpage):before {
          content: "\f105";
          position: absolute;
          font-family: "Font Awesome 5 Pro";
          color: #e18911;
          font-weight: 900;
          left: 4px;
          font-size: 22px;
          top: 50%;
          transform: translate(0%, -50%); }

/*! Tabs (Bootstrap Overrides) */
.tab-content > .tab-pane {
  padding: 1rem 0; }

.nav-tabs {
  border-color: #0073a5; }
  .nav-tabs .nav-item.nav-link:hover, .nav-tabs .nav-item.nav-link:focus {
    border-color: #0097d8 #0097d8 #0073a5; }
  .nav-tabs .nav-item.nav-link.active {
    border-color: #0073a5 #0073a5 #fff; }

/*! Search */
.site-search {
  font-size: 1.2rem;
  position: relative;
  height: 40px;
  line-height: 40px; }
  .site-search .SearchBox label,
  .site-search .SearchBoxSubmit {
    display: none; }
  .site-search .searchBoxInput {
    max-width: 0;
    opacity: 0;
    border: 0;
    height: 40px;
    background: #eee;
    transition: all 1s ease;
    box-sizing: border-box;
    padding-left: 10px; }
  .site-search .fas {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer; }
  .site-search.opened .fas + .search-form .searchBoxInput {
    max-width: 200px;
    border: 0;
    opacity: 1; }

.sspagelinks .PageLinksContainer {
  margin: 1rem 0;
  width: 100%;
  display: flex; }
  .sspagelinks .PageLinksContainer .PageLinksResponsive {
    display: none; }
  .sspagelinks .PageLinksContainer > span {
    padding: 0 1rem;
    background: #eee;
    line-height: 2rem; }

.sssearchform .slitext {
  display: none; }

.sssearchform input {
  padding: 0.375rem 0.75rem !important;
  font-size: 1rem;
  line-height: 1.5; }

.sssearchform select {
  padding: 0.46rem 0.75rem !important;
  line-height: 2; }

.ssmatchtitle {
  font-size: 0; }

.ssmatchlink {
  font-size: 1.25rem;
  display: inline-block; }

.ssmatchtext {
  margin-bottom: 1rem; }

/*! Vacancies */
.job-vacancies {
  margin-top: 3rem; }

.job-vacancy > div {
  padding: 2rem;
  box-shadow: 0px 20px 20px -10px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.5s;
  border: 1px solid rgba(96, 96, 96, 0.25);
  border-bottom: 5px solid #e18911;
  margin-bottom: 3rem; }
  .job-vacancy > div:hover {
    box-shadow: 0px 20px 20px 16px rgba(0, 0, 0, 0.2); }

.job-vacancy span {
  display: block; }

/*! Messages */
#messages {
  z-index: 9999;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 90vw;
  max-width: 320px;
  background: #0073a5;
  background: -moz-linear-gradient(-45deg, #0073a5 0%, #232f5d 100%);
  background: -webkit-linear-gradient(-45deg, #0073a5 0%, #232f5d 100%);
  background: linear-gradient(135deg, #0073a5 0%, #232f5d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$left', endColorstr='$right',GradientType=1 );
  padding: 1rem;
  border-bottom: 5px solid #e18911; }
  #messages * {
    color: white; }
  #messages h2 {
    margin: 0;
    padding: 0; }
  #messages td {
    margin: 0;
    padding: 0.25rem 0; }
  #messages hr {
    display: none; }

/*! Catalogue Search */
.c2-bearing-catalogue .c2form_reqfields, .c2-bearing-catalogue .LegendHide {
  display: none; }

.c2-bearing-catalogue__filters > div {
  margin-bottom: 1rem; }

.c2-bearing-catalogue__filters > div:nth-child(5) {
  margin-right: 50%; }

.c2-bearing-catalogue__filters__label {
  display: none; }

.c2-bearing-catalogue .c2form_fldname {
  font-weight: 700; }

.c2-bearing-catalogue .c2form_code {
  display: flex;
  align-items: baseline; }
  .c2-bearing-catalogue .c2form_code input {
    margin-right: 0.5rem; }

.c2-bearing-catalogue .c2form_footer {
  margin-top: 1rem; }

@media screen and (max-width: 768px) {
  .c2-bearing-catalogue--listing .c2-bearing-catalogue__filters {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out; }
    .c2-bearing-catalogue--listing .c2-bearing-catalogue__filters__label {
      display: block; } }

.c2-bearing-catalogue--listing ~ * .ldic_Tota,
.c2-bearing-catalogue--listing ~ * .ldic_Noun {
  display: inline-block;
  margin-right: 0.3em; }

.c2-bearing-catalogue--listing ~ * .ldic_Page .LegendHide {
  display: none; }

.c2-bearing-catalogue--listing ~ * .ldic_Page .c2form_fldname {
  display: inline; }

.c2-bearing-catalogue--listing ~ * .ldic_Page .c2form_input {
  display: inline-block; }
  .c2-bearing-catalogue--listing ~ * .ldic_Page .c2form_input select {
    margin: 0; }

.c2-rotate-phone-prompt {
  left: 0;
  visibility: visible;
  -webkit-animation: fadeOut 0.5s ease 2s forwards;
  animation: fadeOut 0.5s ease 2s forwards; }
  @media screen and (min-width: 768px) {
    .c2-rotate-phone-prompt {
      display: none; } }

@-webkit-keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    visibility: hidden; } }

@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    visibility: hidden; } }

/*! Pagination */
.c2pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.25rem;
  margin-bottom: 0; }

.c2page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #0073a5;
  background-color: #fff;
  border: 1px solid #dee2e6; }

.c2page-link:hover {
  z-index: 2;
  color: #0056b3;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6; }

.c2page-link:focus {
  z-index: 2;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }

.c2page-item:first-child .c2page-link {
  margin-left: 0;
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem; }

.c2page-item:last-child .c2page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem; }

.c2page-item.active .c2page-link {
  z-index: 1;
  color: #fff;
  background-color: #0073a5;
  border-color: #0073a5; }

.c2page-item.disabled .c2page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6; }

.c2page-item:not(.show):not(.active) {
  display: none; }
  @media screen and (min-width: 1200px) {
    .c2page-item:not(.show):not(.active) {
      display: inherit; } }

.c2page-item:first-child,
.c2page-item:last-child {
  display: inherit !important; }

.c2page-item:before {
  display: none !important; }

/*! Cookie Banner */
.c2cookiebody {
  margin: 0 0 0 -925px; }
  .c2cookiebody a {
    display: inline-block;
    padding: 0;
    letter-spacing: 0;
    color: #0073a5;
    border: 0; }
  .c2cookiebody .c2form_row {
    width: 100% !important; }

/*! CustomerSurvey */
.c2form_zero .c2form_fieldset .FullWidthField {
  width: 100% !important; }

.hiddenfield {
  display: none; }

.SurveyRadio {
  margin: 1rem auto; }
  .SurveyRadio > label {
    margin-bottom: 1rem; }

.c2form_row.FullWidthField {
  margin: 1rem auto; }

.SurveyRadio .c2form_radio input {
  display: none; }

.SurveyRadio .c2form_radio label {
  width: 100%;
  background-color: white;
  color: black;
  margin: 5px;
  padding: 15px;
  border: 1px solid #cecece;
  border-radius: 6px; }

.SurveyRadio .c2form_radio label:hover, .SurveyRadio .c2form_radio label.selected {
  background-color: #e18911;
  color: #fff; }