/***** Main ***************************************/
.MenuItem {
  position: relative;
  height: 35px;
  padding: 0 10px;
  cursor: pointer;
  border-radius: 8px;
  border: 1px solid transparent;
  display: flex;
  gap: 5px;
  align-items: center;
}
.MenuItem:hover {
  background-color: #0001;
}
.MenuItem:hover .MenuItem_Svg {
  fill: #e30a0b;
}
.MenuItem_Svg {
  width: 20px;
  height: 20px;
  fill: #333;
}
.MenuItem-selected .MenuItem_Svg {
  fill: #e30a0b;
}
.MenuItem-top {
  font-size: 20px;
}
@media (max-width: 480px), (max-height: 480px) {
  .MenuItem-top {
    flex-direction: column;
    font-size: 10px;
    padding: 0 5px;
  }
}
.MenuItem-left {
  width: 100%;
  font-size: 16px;
}
.MenuItem_Alert {
  border-color: #ea6060;
}
.TopBar {
  position: absolute;
  display: flex;
  top: 0;
  left: 0;
  right: 0;
  height: 61px;
  background-color: #fef5f5;
  border-bottom: 1px solid lightgray;
}
.TopBar_BurgerMenu {
  position: absolute;
  top: 20px;
  left: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.TopBar_BurgerMenu_Svg {
  fill: #333;
}
.TopBar_Logo {
  position: absolute;
  left: 20px;
  top: 8px;
  width: 160px;
  height: 40px;
  cursor: pointer;
}
@media (max-width: 480px), (max-height: 480px) {
  .TopBar_Logo {
    display: none;
  }
}
.TopBar_Buttons {
  position: absolute;
  left: 240px;
  top: 10px;
  height: 40px;
  display: flex;
  gap: 20px;
  align-items: center;
}
@media (max-width: 480px), (max-height: 480px) {
  .TopBar_Buttons {
    left: 50px;
    gap: 0px;
  }
}
.TopBar_Right {
  position: absolute;
  right: 20px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 480px), (max-height: 480px) {
  .TopBar_Right {
    right: 10px;
    gap: 10px;
  }
}
.TopBar_Right_Login {
  cursor: pointer;
  height: 26px;
  padding: 20px 10px;
  border-radius: 8px;
  display: flex;
  gap: 5px;
  align-items: center;
  font-size: 16px;
}
.TopBar_Right_Login_Svg {
  width: 14px;
}
.TopBar_Right_Login:hover {
  background-color: #eee;
}
.TopBar_Right_QRCode {
  width: 26px;
  height: 26px;
  cursor: pointer;
  transition: all 0.2s;
}
@media (max-width: 480px), (max-height: 480px) {
  .TopBar_Right_QRCode {
    width: 20px;
    height: 20px;
  }
}
.TopBar_Right_QRCode:hover {
  transform: scale(1.2);
}
.TopBar_Right_Language {
  width: 40px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
}
@media (max-width: 480px), (max-height: 480px) {
  .TopBar_Right_Language {
    width: 30px;
    height: 20px;
  }
}
.TopBar_Right_Language:hover {
  transform: scale(1.2);
}
.TopBar_Title {
  display: flex;
  margin: 0 auto;
  justify-content: center;
  align-self: center;
  font-size: 16px;
  font-weight: bold;
}
.MenuLeft {
  position: absolute;
  left: 0;
  width: 200px;
  top: 61px;
  bottom: 0;
  padding: 8px 10px 8px 10px;
  background-color: #fef5f5;
  border-right: 1px solid lightgray;
  overflow: hidden;
  transition: left 200ms;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.MenuLeft_Head {
  position: relative;
  margin: 10px 0 0 10px;
  font-size: 1.1em;
}
.MenuLeft_Line {
  position: relative;
  width: 100%;
  height: 1px;
  margin: 20px 0;
  background-color: lightgray;
}
.Panel {
  position: absolute;
  left: 0;
  top: 61px;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
}
.QRCode {
  position: absolute;
  right: 80px;
  top: 20px;
  width: 20px;
  height: 20px;
  transition: all 0.5s;
}
