header {
  height: 45px;
  width: 100%;
  position: fixed;
  display: grid;
  grid-template-columns: 45px auto auto;
  gap: 8px;
  align-items: center;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.4);
  color: #252732;
  background-color: #96a4ad;
  font-size: 18px;
  font-family: blok-pro;
}
header a, header a:hover, header a:focus, header a:active {
  text-decoration: none;
  color: inherit;
}
header a:hover, header a:hover:hover, header a:focus:hover, header a:active:hover {
  color: #f9f9f9;
}
header #menu-icon {
  background: url("../images/menu.svg");
  background-size: cover;
  display: block;
  width: 45px;
  height: 45px;
}
header #menu-icon:hover {
  display: block;
  width: 45px;
  height: 45px;
  background: url("../images/menu-active.svg");
  background-size: cover;
}
header .opening-link {
  justify-self: end;
  padding-right: 10px;
}

#opening-container-small {
  min-width: 100px;
  height: 0;
  position: fixed;
  top: 45px;
  right: 0px;
  padding-right: 10px;
  padding-left: 10px;
  overflow: hidden;
  text-align: right;
  background-color: #96a4ad;
  transition: height 0.5s;
  font-size: 15px;
}
#opening-container-small.open {
  height: auto;
  padding-top: 10px;
  padding-bottom: 10px;
}

#navigation-container-small {
  min-width: 300px;
  height: 0px;
  position: absolute;
  top: 45px;
  left: 0px;
  overflow: hidden;
  background-color: #96a4ad;
  transition: height 0.5s;
}
#navigation-container-small.open {
  height: 100%;
}

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