/* =========== Mobile ============ */
#header-MB {
  width: 20.9375rem;
  height: 4.17588rem;
  border-radius: 0.928rem;
  border-top-left-radius: 4rem;
  border-bottom-left-radius: 4rem;
  background: #fff;
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  display: flex;
  padding: 0.875rem;
  justify-content: end;
  align-items: center;
  filter: drop-shadow(0px 2.784px 37.119px rgba(214, 214, 221, 0.4));
  transition: top 0.4s ease-in-out;
}
#header-MB.hide {
  top: -6rem;
}
#header-MB .header-MB__logo {
  width: 4.625rem;
  height: 4.625rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
#header-MB .header-MB__logo img {
  width: 4.18313rem;
  height: 4.125rem;
  object-fit: contain;
}
#header-MB .header-MB__menu {
  width: 2.5rem;
  height: 2.5rem;
  position: relative;
  cursor: pointer;
}
#header-MB .header-MB__menu__icon {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  /*opacity: 0;*/
}
#header-MB .header-MB__menu__icon.menu {
  opacity: 1;
}
.header-MB__menu-content {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #fff;
  width: 100vw;
  height: 100vh;
  z-index: 9980;
  transform: translateX(100%);
  transition: all 0.3s ease-in-out;
  padding: 6rem 0.75rem 1.5rem;
  overflow: auto;
}
.header-MB__menu-content.active {
  transform: translateX(0);
}
.header-MB__nav {
  display: flex;
  flex-direction: column;
}
.header-MB__nav > * {
  padding: 1.375rem 0.875rem;
  display: flex;
  color: #2e2e2e;
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  line-height: 160%; /* 1.6rem */
  letter-spacing: -0.0625rem;
  text-transform: uppercase;
}
.header-MB__nav > *:not(:last-child) {
  border-bottom: 0.0625rem solid #dfe1f5;
}
.header-MB__nav > *.active {
  color: var(--Orange-03, #ff7a00);
}
.header-MB__menu-content .btn {
  width: 100%;
  margin-top: 0.75rem;
}
.header-MB__hotline {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  color: var(--Green-03, #043620);

  /* APP/BODY/14/14-R */
  font-family: Poppins;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 1.4rem */
  letter-spacing: -0.03125rem;
}
.header-MB__hotline img {
  width: 1rem;
  height: 1rem;
  object-fit: contain;
  margin-right: 0.5rem;
}
.header-MB__social {
  margin-top: 0.875rem;
  display: flex;
  justify-content: center;
}
.header-MB__social > *:not(:last-child) {
  margin-right: 1rem;
}
.header-MB__social img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}
