
.menu {
  width: 300px;
  height: 0px;
  background-color: #888;
  position: absolute;
  top: var(--barHeight);
  right: 10px;
  overflow: hidden;
  z-index: 900;
  box-shadow: 3px 3px 8px #0006;

  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  scroll-behavior: smooth;

  transition: 250ms ease-in-out;
}

.menu_page {
  width: 300px;
  height: 0px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  position: absolute;
  top: 0px;
  left: 0px;
}

.menu_flag_entry {
  width: 300px;

  background: var(--sygpurple);
  background: linear-gradient(180deg, rgba(186, 1, 210, 1) 0%, rgba(158, 14, 180, 1) 100%);
  
  border-bottom: 1px solid #3335;
  padding: 10px 10px;

  user-select: none;

  text-align: center;
  
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  font-size: 20px;
  font-weight: 600;
  text-shadow: 0px 0px 2px #666;
  color: #fff;
}

.menu_entry {
  width: 100%;
  height: 50px;
  min-height: 50px;
  max-height: 50px;
  
  background-color: rgb(245, 245, 245);
  
  border-bottom: 1px solid #3331;
  padding: 0px 0px;

  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;

  font-size: 18px;
  font-weight: 600;
  text-shadow: 0px 0px 2px #ddd;
  color: #272727;
}

.menu_entry i {
  font-size: 20px;
  position: relative;
  top: -2px;
}

.menu_entry img {
  margin-right: 10px;
  position: relative;
  top: -2px;
  max-height: 30px;
  max-width: 29px;
}

.menu_entry img[src$=".svg"] {
  left: -2px;
}

.menu_entry:hover {
  background-color: #ddd;
  color: #333;
}

.menu_entry_children div {
  position: absolute;
  top: 8px;
  right: 10px;
}

.menu_entry_back i {
  position: absolute;
  top: 25px;
  left: 14px;
}

.menu_entry .entry_icon {
  border-radius: 200px;
  width: 38px;
  text-align: center;
}

.menu_entry .entry_text {
  width: 100px;
  text-align: left;
  margin: 0;
  padding: 0;
}

.menu_entry_content {
  width: 190px;
}

/* ######################################################################### */
/* ############################################################ MQ: 720px ## */
/* ######################################################################### */
@media (max-width: 1024px) {

  .menu {
    right: 0px;
  }
}
