#top-navigation {
  height: 64px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgb(255, 255, 255);
  box-shadow: 0 3px 6px #0003;
  display: flex;
  justify-content: stretch;
  z-index: 50;
}

#top-navigation>div {
  position: relative;
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(0, 0, 0);
  background-color: rgb(255, 255, 255);
}

#top-navigation label:hover {
  cursor: pointer;
}

#top-navigation a:link, #top-navigation a:visited {
  color: inherit;
  text-decoration: none;
}

#top-navigation #logo-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#top-navigation #right {
  justify-content: right;
  padding-right: 25px;
}

#top-navigation #center {
  justify-content: center;
}

#top-navigation #left {
  justify-content: left;
  padding-left: 25px;
}

#top-navigation #logo-image img {
  width: 100px;
}

#top-navigation>*>label {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  position: relative;
}

#top-navigation label::after {
  height: 0px;
  width: 100%;
  background: orange;
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: height 0.3s;
}

#top-navigation .expanded label::after {
  height: 3px;
}

#top-navigation .target {
  background: rgb(255, 255, 255);
  position: fixed;
  width: calc(100vw);
  height: calc(100vh - (64px * 2));
  left: 0;
  top: 64px;
  transition: transform 0.3s ease-out;
}

#top-navigation>div:nth-child(1) section {
  transform: translateX(100%);
}

#top-navigation>div:nth-child(3) section {
  transform: translateX(-100%);
}

#top-navigation .expanded .target {
  transform: translateX(0);
}

#top-navigation .show-all-link {
  display: flex;
  flex-direction: column;
}

#top-navigation .show-all-link .show-all-caption {
  font-size: 23px;
  color: #F0A928;
  font-weight: 800;
  text-shadow: 0 0 black;
  text-align: center;
}

/* catalogue  */
#catalogue-download-notif {
  position: sticky;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 10px;
  max-width: 900px;
  height: 30px;
  margin: 0 auto;
  /* background: rgba(0, 0, 0, 0.795); */
  background-color: rgb(240, 169, 40);
  box-shadow: 0 0 6px #0003;
  top: 70px;
  width: 100%;
  color: white;
  padding: 10px 25px;
  z-index: 200;
  margin-bottom: 10px;
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
}

#catalogue-download-notif a:link,
#catalogue-download-notif a:visited {
  color: white;
  font-weight: bold;
  text-decoration: none;
}

#catalogue-download-notif .download-link {
  margin-right: 30px;
}

.close-icon .one,
.close-icon .two {
  width: 15px;
  height: 3px;
  background: white;
  position: absolute;
  border-radius: 5px;
}

.close-icon .one {
  transform: rotate(45deg);
}

.close-icon .two {
  transform: rotate(-45deg);
}
