html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust:100%
}

.nml-nav {
  box-sizing: border-box;
  color: #222;
  font-size:62.5%
}

.nml-navbar {
}

.nml-container {
  display: grid;
  grid-template-columns: 1fr auto auto;
  grid-template-rows: 4rem;
  align-items: center;
  column-gap: 0.5rem;
  padding-top: 15px;
  padding-bottom: 15px;
}

.nml-navbar-logo  > div {
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 991px) {
  .nml-container {
      grid-template-columns: auto 1fr auto;
  }

  .nml-navbar-logo {
      grid-row: 1;
      grid-column-start: 2;
  }

  .nml-navbar-logo  > div {
      justify-content: center;
  }

  .nml-navbar-one {
      grid-row: 1;
      grid-column-start: 1;
  }

  .nml-navbar-three {
      grid-row: 1;
      grid-column-start: 3;
  }
}


@media (min-width: 992px) {
.nml-container {
  grid-template-columns: auto 1fr auto auto;
}
.nml-navbar-one {
  grid-column-start: 2;
}
}


@media all and (max-width: 768px) {
  .nml-nav {
     font-size:62.5%
  }
}

@media all and (max-width: 320px) {
  .nml-nav {
      font-size:50%
  }
}

#skip-to-content-link {
  position: absolute;
  overflow: hidden;
  z-index: 100;
  top: 0;
  left: 30%;
  width: 40%;
  padding: .5em;
  font-size: 1.5em;
  transform: translateY(-800%);
  transition: transform .3s;
  background: #fff;
  border-bottom: 1px solid #eee;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .3);
  text-align: center;
  text-decoration: underline;
  color:blue
}

#skip-to-content-link:focus {
  transform:translateY(0)
}

header {
  /* position: fixed;
  top: 0;
  left: 0; */
  width: 100%;
  height: 3.125rem;
  z-index: 5;
  padding: 0 1.35rem;
  background: #fed226;
  color: #002A4D;
}

.header {
  display: flex;
  justify-content: space-between;
  max-width: 1500px;
  margin: 0 auto;
  height:100%
}

.header__logotype {
  display: flex;
  flex-grow: 1;
  align-items: center;
  padding: 0 .5rem;
  justify-content:flex-start
}

@media all and (max-width: 768px) {
  .header__logotype {
      justify-content:center
  }
}

.header__logotype img {
  position: absolute;
  top:0;
  left:0;
  height: 6rem;
  width:auto
}

.header__button {
  display: flex;
  position: relative;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  margin: .75rem .25rem;
  padding: 0.5rem 1rem;
  /* border-radius: .25rem; */
  background-color: rgb(5, 80, 137);
  /* color: rgb(254, 210, 38); */
  color: white;
  transition: background-color .3s;
  -webkit-tap-highlight-color:rgba(200, 200, 200, .2)
}

.header__button:hover {
  background-color: rgb(5, 80, 137, .9);
  /* color: rgb(254, 210, 38); */
  color: white;
}

.header__button:active {
  background-color: rgb(5, 80, 137, .8);
  /* color: rgb(254, 210, 38); */
  color: white;
}

.header__button svg, .header__button img {
  width: 1.5rem;
  height: 1.5rem;
  vertical-align:middle
}

.header__button--categories {
/*    order:-1 */
}

@media all and (max-width: 768px) {
  .header__button > span {
      display:none
  }
}

.header__button > sup {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 2rem;
  height: 2rem;
  border-radius: 1rem;
  font-size: 1.3rem;
  line-height: 1.9rem;
  padding: .05rem 0 0 .05rem;
  background: rgba(244, 18, 109, .83);
  text-align: center;
  color: #fff;
  font-weight:400
}

.header__button > sup.hidden {
  display:none
}

.header__button > sup.pulse {
  animation-duration: 1s;
  animation-name:pulse
}

@keyframes pulse {
  from {
      box-shadow:0 0 0 .375rem rgba(244, 18, 109, .83)
  }

  to {
      box-shadow:0 0 0 0 rgba(244, 18, 109, .83)
  }
}


.slideout-left__content ul {
  list-style-type: none;
}

.sortbar ul li
{
display: inline-block;
}

@media (min-width: 992px) {
  .sortbar ul {
    font-size: .6rem;
}
}

@media (min-width: 1020px) {
.sortbar ul {
    font-size: .6rem;
}
}

@media (min-width: 1080px) {
.sortbar ul {
    font-size: .7rem;
}
}

@media (min-width: 1250px) {
.sortbar ul {
    font-size: .9rem;
}
}

@media (min-width: 1400px) {
.sortbar ul {
  font-size: 1rem;
}
}


.category_box {
  position: relative;
  overflow:hidden; 
}

.category_box li > a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin:1rem 0 1rem 0
}

.category_box li > a.open {
  font-weight:600
}

.category_box .Level2 {
  padding-left:20px;
  border-left: 5px solid #002A4D;
}

.slideout-dimmer {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background-color: rgba(0, 0, 0, .5);
  opacity: 0;
  pointer-events: none;
  transition:opacity .75s
}

.slideout-dimmer {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1040;
  background-color: rgba(0, 0, 0, .5);
  opacity: 0;
  pointer-events: none;
  transition:opacity .75s
}

.slideout-dimmer--open {
  pointer-events: all;
  opacity:1
}

.slideout-left {
  position: fixed;
  display: grid;
  grid-template-rows: 3.125rem 1fr;
  left: 0;
  top: 0;
  transform: translateX(-100%);
  z-index: 1050;
  height: 100%;
  font-size: 1.6em;
  background: #FFFFFF;
  color: #000000;
  transition: transform .5s ease-in-out, box-shadow .3s;
  max-width: 100%;
  width:40em
}

@media all and (max-width: 550px) {
  .slideout-left {
      width:90%
  }
}

@media (prefers-reduced-motion) {
  .slideout-left {
      transition: opacity .3s;
      opacity:0
  }
}

.slideout-left a {
  color:var(--color-blue);
}

.slideout-left--open {
  transform: translateX(0);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .4);
  transition:transform .3s cubic-bezier(0.18, 0.89, 0.35, 1.06), box-shadow .3s
}

@media (prefers-reduced-motion) {
  .slideout-left--open {
      transition: opacity .3s;
      opacity:1
  }
}

.slideout-left__header {
  display: flex;
  justify-content: space-between;
  padding: 0 1em;
  z-index: 30;
  font-weight: 800;
  box-shadow:0 5px 5px -5px rgba(0, 0, 0, .4);
  background-color: rgb(255, 255, 255);
}

.slideout-left__header > span {
  display: flex;
  justify-content: center;
  align-items: center;
  color:var(--color-blue);
}

.slideout-left__close-button {
  margin: .75em .25em;
  padding: 0 .5em;
  cursor: pointer;
  border-radius: .25em;
  background-color: rgba(200, 200, 200, .1);
  transition:background-color .3s
}

.slideout-left__close-button:hover {
  color: #000;
  background-color:rgba(200, 200, 200, .2)
}

.slideout-left__close-button:active {
  color: #000;
  background-color:rgba(200, 200, 200, .2)
}

.slideout-left__close-button svg {
  width: 1.5em;
  height:1.5em
}

.slideout-left__content {
  padding: .1em 1em 0 1em;
  line-height: 2em;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior:contain;
  display: flex;
  flex-direction: column;
}

.slideout-left__content::-webkit-scrollbar {
  width: 0;
  background:0 0
}

.slideout-left__content .search-box {
  margin-top: 20px;
}

.slideout-left__content .link-box {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: flex-end;
  padding-bottom: 20px;
  font-size: 0.9rem;
}

.slideout-left__content .language-box {
  display: flex;
  color: #002A4D;
  margin-top: 5px;
}

.slideout-left__content .language-selector-icon-container .input-group-text {
  background-color: #FFCE00;
  padding: 0;
  margin-right: 5px;
}

.slideout-left__content .language-selector {
  color: #002A4D;
}