/* --- MOBILE VIEW --- */
.start_menu {
  display: none;
  flex-direction: row;
  position: fixed;
  top: auto;
  bottom: 5%;
  left: 0;
  height: 70vh;
  width: 60%;
  background-color: var(--start_bg);
  border: 3px outset var(--window_border);
  z-index: 10;
  border-radius: 0 10px 10px 0;
  overflow: hidden;
}

.start_menu.active {
  display: flex;
}

/* Blue side bar inside menu */
.start_side {
  position: relative;
  width: 15%;
  height: 100%;
  background: linear-gradient(to top, #080081, #1e12c9);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.start_side_1 {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%) rotate(-90deg);
  font-family: 'arial';
  font-size: 1.5rem;
  color: white;
  white-space: nowrap;
  margin: 0;
  padding: 0;
}

.start_menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  width: 80%;
  margin: 0;
  padding: 0;
  gap: 1rem;
}

.start_item {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-family: "new_regular";
  font-size: 1rem;
  padding: 0.75rem 1rem;
  width: 100%;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.05);
  transition: background-color 0.2s;
}

.start_item:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.start_item img {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  flex-shrink: 0;
}

.start_item span {
  flex-grow: 1;
}

@media screen and (min-width: 800px) {
  .start_menu {
    height: 500px;
    width: 300px;
    margin-left: 5px;
  }

  .start_side {
  position: relative;
  width: 12%;
  height: 100%;
  background: linear-gradient(to top, #080081, #1e12c9);
}

  .start_item {
    font-size: 1rem;
    justify-content: space-between;
  }

  .start_item img {
    width: 15%;
    height: 15%;
  }
  
  .start_menu li {
    cursor: pointer;
  }

  .start_menu li:hover {
    color: white;
    background-color: #818181;
  }

  .arrow {
    display: unset;
  }
}