/* BASIC css start */
#header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  min-width: 320px;
  max-width: 850px;
  height: 53px;
  margin: 0 auto;
  z-index: 10;
  transition: background-color 0.6s;
  background-color: rgba(255, 255, 255, 0.55);
}

#header.bg {
  background-color: rgba(255, 255, 255, 0.55);
}

.head_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 3%;
  position: relative;
}

/* Logo Centered */
h1.logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

h1.logo a {
  font-family: 'Branch Regular';
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #000;
}


.main-logo {
  width: 90px;
  height: auto;
}


/* Hamburger Icon */
.ham a img {
  transform: scale(0.66);
}

/* User Icons */
.user_icon ul {
  display: flex;
  align-items: center;
}

.user_icon ul li {
  margin-left: 10px;
}

.user_icon ul li a {
  display: block;
}

.user_icon ul li a img {
  transform: scale(0.66);
}

/* Search Icon */
.li_search {
  width: 21px;
  height: 21px;
  background: url(/design/murmure01/mobile/img/search_bl.png) no-repeat center;
  background-size: contain;
}

.li_search a {
  text-indent: -9999px;
}

.li_search input {
  display: none;
}

/* Cart Icon */
.li_cart a {
  position: relative;
}

.li_cart a span {
  position: absolute;
  top: 3px;
  right: -3px;
  width: 14px;
  height: 14px;
  background-color: #000;
  color: #fff;
  border-radius: 50%;
  font-size: 9px;
  line-height: 13px;
  text-align: center;
}

/* === Aside Styles === */
.as_bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.28);
  opacity: 0;
  transition: all 1s;
  z-index: 11;
}

.as_bg.show {
  display: block;
  opacity: 1;
}

aside {
  position: fixed;
  top: 0;
  left: -100%;
  width: 75%;
  max-width: 630px;
  min-width: 320px;
  height: 100%;
  background-color: #fff;
  overflow-y: auto;
  transition: all 0.6s;
  z-index: 12;
}

aside.show {
  left: 0;
}

.as_inner {
  padding: 7% 7% 30px;
}

.as_top {
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
  padding-bottom: 10px;
}

.as_logo {
  margin-top: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #222;
}

.as_logo a {
  display: block;
  width: 155px;
}

.as_logo img {
  width: 100%;
}

nav > ul > li {
  margin: 15px 0;
}

nav > ul > li > a {
  font-family: 'Yantramanav','Noto Sans KR',sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #000;
  display: block;
  line-height: 15px;
}

/* Submenu Toggle Button */
.asi_li_shop span {
  float: right;
  width: 15px;
  height: 15px;
  position: relative;
  cursor: pointer;
}

.asi_li_shop span::before,
.asi_li_shop span::after {
  content: "";
  position: absolute;
  background-color: #000;
  left: 50%;
  transform: translateX(-50%);
}

.asi_li_shop span::before {
  width: 1px;
  height: 15px;
  top: 0;
}

.asi_li_shop span::after {
  width: 15px;
  height: 1px;
  top: 49%;
  transform: translate(-50%, -50%);
}

.asi_li_shop span.rotate::before {
  transform: rotate(90deg);
  transform-origin: center;
}

/* Submenu */
.sub_m {
  display: none;
  margin-top: 10px;
}

.sub_m li {
  padding: 6px 5px 6px 15px;
}

.sub_m li:first-child {
  padding-top: 12px;
}

.sub_m li:last-child {
  padding-bottom: 14px;
}

.sub_m li a {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  display: block;
}

.sub_m li:hover > a {
  text-decoration: underline;
}

/* Aside Middle Section */
.as_middle {
  border-bottom: 1px solid #eee;
  margin-bottom: 24px;
}

.user_m ul {
  display: flex;
  flex-wrap: wrap;
}

.user_m ul li {
  width: 50%;
  margin-bottom: 20px;
}

.user_m ul li a {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.sns ul li {
  display: inline-block;
  width: 34px;
  height: 34px;
  margin-right: 5px;
}

.sns ul li a img {
  width: 100%;
}

/* Aside Bottom Section */
.as_bottom > div {
  margin-bottom: 30px;
}

.as_bottom h5 {
  font-family: 'Lato', sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.as_bottom li {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: #888;
  font-weight: 500;
  letter-spacing: 0.8px;
}

.as_bottom li span {
  color: #4b4b4b;
}

.as_bottom .copy {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #888;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

/* Media Query for Tablet+ */
@media screen and (min-width: 768px) {
  #header #menu,
  .headerTop,
  .search .btn_search {
    width: 85px;
  }

  .search {
    padding-right: 85px;
  }

  .search .searchBox input {
    width: 95%;
  }
}
/* BASIC css end */

