header {
  display: grid;
  position: sticky;
  position: -webkit-sticky; /* ! */
  z-index: 80;
  top: 0;
  grid-template-columns: 50px auto;
  background: #2d2d2d;
  padding: 0.2rem 0 0 0;
  width: 100%;
  height: 60px;
  font-size: 1rem;
  border-bottom: 0.1rem solid #aaa;
}


.menu-toggle {
  display: flex;
  z-index: 81;
  cursor: pointer;
  justify-self: center;
  align-self: center;
}


/* iskalnik  '''''''''''''''''''''''''''''''''''''''''' */
#dig {
  display: flex;
  align-items: flex-end;
  padding: 0 1rem 0.5rem 0;
}

#dig .lupica {
  all: unset;
  margin-bottom: -0.4rem;
}

#dig .input
 {
  border: solid 1px #515151;
  height: 2.5rem;
  width: 60vw;
  max-width: 20rem;
  border-radius: 3px;
  background: #2D2D2D;
  font-size: 1rem; /* ne manjšat, drgač je zoom na mobilnikih */
  color: #8b8989;
  text-indent: 5px;
  margin: .3rem 0 0 .5rem;
}
/* iskalnik  '''''''''''''''''''''''''''''''''''''''''' */







nav {
  /* display: block; */
  position: fixed;
  z-index: 10;
  width: 100%;
  max-width: 300px;
  min-height: 100vh;
  max-height: 100%;
  overflow-y: scroll;
  top:60px;
  left: -100vw;
  transition: 0.5s;
  font-size: 1rem;
  background: linear-gradient(#111, #2D2D2D);
}
nav.active {
  left: 0;
}
nav a:visited {
  color: #aaa
}
nav ul {
  display: block;
  padding: 0;
  list-style-type: none;
}

nav ul li {
  position: relative;
}
nav ul li a {
  display: block;
  line-height: 40px;
  padding-left: 1rem;
}
nav ul li a:hover,

nav ul li a:focus {
  color: #bec5cc;
  background: maroon;
  border-top: solid 1px #aaa;
  border-bottom: solid 1px #aaa;
  margin-top: -1px;
  margin-bottom: -1px;
}

nav ul li.active ul {
  display: block;
  position: relative;
  background: #333;
}

nav ul li.sub-menu:before {
  content: url(/images/meni-arrow-down-w.png);
  position: absolute;
  right: 10px;
  top: 15px;
}
nav ul li.active.sub-menu:before {
  content: url(/images/meni-arrow-up-w.png);
}

nav ul li ul {
  position: absolute;
  margin-top: 0;
  left: 0;
  display: none;
  border-bottom: 1px solid #aaa;
  border-top: 1px solid #4C4C4C;
}

nav ul li ul li {
  display: block;
  font-size: 0.9rem;
  margin-right: 2rem;
  margin-left: 1rem;
  border-top: 1px solid #4C4C4C;
}
nav ul li ul li:first-child {
  border-top: none;
}
nav ul li ul li a {
line-height: 35px;
}

nav ul li ul li a:hover,
nav ul li ul li a.active,
nav ul li ul li a:focus {
  border-top: none;
  border-bottom: none;
  margin-top: 0;
  margin-bottom: 0;
}

.body_fixed{
  height:100%;
  overflow:hidden;
}










@media (min-width: 800px) {
  header {
    position: fixed;
    margin: unset;
    /* width: 100%; */
    max-width: inherit;
  }
  nav {
    overflow-y: unset;
  }
  #dig .input {
    width: 20rem;
  }
}