body.container > header {
  padding-left: .75rem;
  padding-right: .75rem;
}

header {
  position: sticky;
  top: 0;
  margin-top: 0;
  width: 100%;
  font-size: clamp(0.825rem, 2.5vw, .925rem);
  background: var(--header);
  z-index: 2;
}

header.fix {
  box-shadow: 0 5px 15px rgba(50, 50, 50, .1);
}




/* logo */

.navbar-brand svg,
.logo svg {
  max-width: 100%;
  color: #ee3e3d;
}

body .navbar-brand {
  display: none;
}

@media (max-width: 992px) {
  body.respo .navbar-brand {
    display: block;
  }
}




/* Header TOP */
#top {
  padding: .25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#subnavigation {
  font-weight: 500;
  font-size: 1rem;
/*
  display: flex;
  align-items: center;
  justify-content: space-between;
*/  
}


#subnavigation ul {
  display: flex;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}

#subnavigation ul li {
  display: inline-flex;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 25%;
}
/*
#subnavigation ul li:after {
  content: " ";
  margin-right: .5rem;
}

#subnavigation ul li + li:before {
  content: "|";
  padding-right: .5rem;
  padding-top: .375rem;
}
*/

@media (max-width: 992px) {
  .menu-top:not(.show) #subnavigation {
    display: none;
  }

  .menu-top #subnavigation {
    position: relative;
    background: transparent;
    padding-right: 1px;
    justify-content: center;
    width: 100%;
    border-radius: 0;
    z-index: 1100;
  }

  .menu-top #subnavigation > nav {
    border-bottom: 1px solid var(--border6);
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

}



#navigation {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

#navigation > *:not(.menu-top) {
  margin-left: .5rem;
}




body.display #toggle {
	display: none;
}

@media (max-width: 992px) {
  #subnavigation  {
    font-size: .875rem;
  }

	body.navi #toggle {
		display: block;
	}
}

@media (max-width: 768px) {
  #subnavigation  {
    font-size: .75rem;
  }

  nav.m-top>ul>[data-level="1"] a {
    padding: .375rem .5rem;
  }
}

@media (max-width: 576px) {
  #subnavigation ul li {
    width: 24%;
  }
}


/* dodatki */
a.search-link {
  display: inline-block;
  background-color: var(--bkg7);
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0 !important;
  border: none !important;
}
a.search-link:hover {
  color: var(--color2);
  background-color: var(--bkg6);
}
a.search-link i {
  font-size: 1.625rem;
}

button#wcag-link {
  display: inline-block;
  background-color: var(--bkg7);
  color: white;
  width: 3rem;
  height: 3rem;
  margin-left: 6px;
  border: none;
}
button#wcag-link:hover {
  background-color: var(--bkg6);
}

button#wcag-link i {
  font-size: 1.625rem;
}

button#toggle {
  background-color: var(--bkg8);
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  z-index: 3;
}

button#toggle i {
  font-size: 1.625rem;
}




/* pokrywka menu */
#toggle-menu-input {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}
