/* ============================== */
/* 목록 리스트 페이지 스타일 - 모바일 */
/* 해당 페이지는 모바일 페이지에서만 사용되는 페이지입니다. */
/* CSS도 모바일 페이지에서만 사용되는 페이지입니다. */
/* ============================== */
#nav-list-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #ebebeb;
}

#nav-list-logo-img {
  width: 120px;
  height: 22px;
  margin-left: -3px;
  margin-bottom: 0px;
}


#nav-list-prev-icon {
  width: 18px;
  height: 18px;
}

#nav-list-main {
  flex: 1;
}

#nav-list-search-container {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #eee;
  padding: 8px;
  margin: 20px 37px;
}

#nav-list-nav {
  margin: 0 10px;
}

#nav-list-container {
  list-style: none;
  padding: 0;
  margin: 0;
}

#nav-list-container li {
  padding: 0px;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #ebebeb;
}

#nav-list-container li.active {
  border-bottom: 2px solid #ff5f5f;
}

#nav-list-container a {
  padding: 20px;
  color: #111111;
}

.nav-list-search-icon {
  color: black;
}

#nav-list-footer {
  position: fixed;
  bottom: 0px;
  width: 100%;
}

#nav-list-footer-inner {
  display: flex;
  align-items: center;
}

#nav-list-footer-title {
  font-family: pretendard;
  padding: 20px;
  flex: 1;
  font-size: 14px;
  margin: 0px;
  border-top: 1px solid #eee;
}

#nav-list-footer-btn-container {
  flex: 1;
  height: 100%;
  display: flex;
  font-size: 18px;
}

.nav-list-footer-btn {
  font-family: pretendard;
  flex: 1;
  height: 100%;
  border: none;
  background-color: transparent;
  padding: 20px 30px;
  font-size: 18px;
  background-color: #ebebeb;
  color: #999;
  cursor: pointer;
}

.nav-list-footer-btn.active {
  background-color: #000;
  color: #fff;
  cursor: default;
}
