:root {
  --title-text: #333;
  --mid-gray: #808695;
  --light-gray: #ccc;
  --light-gray2: #e8eaec;
  --bg-dark: #3b3a3d;
  --topbanner-h: 70px;
  --theme-green: #28af74;
  --theme-red: #fa5f75;
  --theme-blue: #0b99fe;
  --theme-purple: #9746ff;
  --theme-warning: #ed4014;
  --animate-duration: .4s;
  --animate-delay: .4s;
  --animate-repeat: .4;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
  word-break: break-all;
  margin: 0px;
  background-color: #fff;
}

.menu_top_layer {
  width: 100%;
  position: sticky;
  top: 0px;
  z-index: 5;
}

.menu_banner {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}

.menu_icon_area {
  width: 60px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu_icon {
  width: 20px;
  height: 20px;
  background: url('../../../../public/images/mobile/menu_gray.png') no-repeat;
  background-size: contain;

}

.search_icon {
  width: 24px;
  height: 24px;
  background: url('../../../../public/images/mobile/search_gray.png') no-repeat;
  background-size: contain;
}

.nav_menu {
  flex-grow: 1;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.nav_menu a {
  color: var(--title-text);
  font-size: 17px;
  text-decoration: none;
  min-width: 80px;
  text-align: center;
  line-height: 57px;
  font-weight: 600;
  position: relative;
}

.bottom_green_line {
  border-bottom: 3px solid var(--mid-gray);
}

.bottom_transparent_line {
  border-bottom: 3px solid rgba(255, 255, 255, 0);
}

.pop_menu {
  background-color: #333333;
  width: 100%;
  height: auto;
  position: absolute;
  top: 0px;
  z-index: 10;
  padding-bottom: 20px;
}

.pop_menu_title {
  color: white;
  font-size: 21px;
  margin-left: 10px;
  margin-top: 16px;
  font-weight: 600;
}

.pop_menu_top_banner {
  width: 100%;
  height: 55px;
  margin-top: 15px;
}

.close_img {
  width: 16px;
  height: 16px;
  margin-left: 20px;
  margin-top: 18px;
}

.register_login_btn {
  width: calc(100% - 40px);
  height: 45px;
  background-color: #07BC72;
  text-align: center;
  margin: 15px auto;
  border-radius: 2px;
  color: white;
  font-size: 17px;
  vertical-align: middle;
  line-height: 45px;
  font-weight: 600;
}

.pop_menu_item {
  width: 100%;
  position: relative;
  height: 55px;
  border-top: 1px solid #4C4D4F;
}

.pop_menu_item span {
  font-size: 17px;
  color: #E0DBDB;
  position: absolute;
  left: 20px;
  top: 19px;
  font-weight: 600;
}

.pop_menu_item img {
  width: 6px;
  height: 12px;
  position: absolute;
  right: 20px;
  top: 22px;
}

.personal_info {
  width: 100%;
  position: relative;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.personal_info span {
  color: var(--light-gray2);
  font-size: 17px;
  max-width: 15em;
  padding-left: 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.personal_headicon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-left: 20px;
}

.arrow {
  width: 6px;
  height: 12px;
  position: absolute;
  right: 20px;
  top: 22px;
}

.logout {
  width: calc(100% - 40px);
  height: 45px;
  background-color: #07BC72;
  text-align: center;
  margin: 15px auto;
  border-radius: 2px;
  color: white;
  font-size: 17px;
  vertical-align: middle;
  line-height: 45px;
  font-weight: 600;
}