* {
  user-select: none;
  transition: all 0.35s ease;
}

.disable-transition * {
  transition: none;
}

#menu-mobile-btn-container {
  width: 100%;
  height: 120px;
  display: inline-block;
}

#menu-mobile-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  right: 35px;
  top: 35px;
  cursor: pointer;
  position: fixed;
  z-index: 3;
  background-color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.page-container {
  background-color: white;
  position: fixed;
  white-space: nowrap;
  top: 0;
  right: 0;
  overflow: hidden;
  height: 100vh;
  width: 0vw;
  max-width: 400px;
  padding-top: 120px;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  z-index: 2;

}

.page-container a {
  display: flex;
  padding: 10px;
  color: #282829;
  text-decoration: none;
  margin: 6px 6px 6px 15px;
  border-radius: 10px;
  font-family: Inter, sans-serif;
  font-weight: 550;

}


.page-active {
  background-color: #e4e5e7;
  min-width: 90%;
}

.page-container a:hover {
  background-color: #e1e4e1;
}

.page-active:hover {
  background-color: #dadbdc;
}