/*
header {
  display: flex;
  justify-content: space-between;
}
*/
#desktop-menu {
  display: flex;
  gap: 1.5rem;
}
#mobile-menu-btn-show {
  display: none;
  cursor: pointer;
}
#mobile-menu-btn-close {
  width: fit-content;
  cursor: pointer;
}
#mobile-menu {
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
  inset: unset;
  top: 0;
  right: 0;
  background-color: #fff;
  border: none;
  padding: 1rem 0.25rem 0 1.5rem;
	padding: 2em;
	display: none;
}
#mobile-menu:popover-open {
  display: flex;
	left: 0;
	width: 96%;
}
#mobile-menu::backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}
#mobile-menu a {
  width: fit-content;
}
@media (max-width: 7680px) {
  #desktop-menu {
    display: none;
  }
  #mobile-menu-btn-show {
    display: flex;
		display: block;
  }
}