/* 2021.09.28 GJ */
/* 레이아웃(헤더, 푸터, 사이드바 등) 템플릿 스타일 정의 */

/*---------------------------
header
---------------------------*/
header {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 60px;
  max-width: 767px;
  background-color: #fff;
}

.header {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 767px;
  height: 100%;
  padding: 0 2%;
  margin: 0 auto;
}

/* .header .menu_btn{
    float: left;
} */

.header .menu_btn .fa-bars {
  font-size: 24px;
}

.header .logo {
  position: absolute;
  left: 50%;
  top: 0;
  height: 60px;
  line-height: 60px;
  transform: translateX(-50%);
  text-align: center;
}

/* .header .header_sns{
    float: right;
} */

.header .header_sns li {
  float: left;
  width: 28px;
  height: 28px;
  margin-right: 5px;
}

.header .header_sns li:last-child {
  margin-right: 0;
}

.header .header_sns li img {
  width: 100%;
}

.home_btn {
  color: #222;
  font-size: 18px;
}

/*---------------------------
헤더 햄버거 메뉴 클릭 시 관련
---------------------------*/
/* .menu_wrap {
  position: fixed;
  top: 0;
  /* left: 50%; */
/* left: 0; */
/* transform: translateX(-50%);
  z-index: 120;
  width: 100%;
  max-width: 767px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  opacity: 0;
  transition: opacity 1000ms ease-in;
}

.menu_wrap.d_block .menu_box {
  left: 0;
  transition: left 300ms ease-in-out;
}
.menu_wrap.d_block {
  opacity: 1;
} */

/* 2021.10.12 edit GJ : menu_wbox 추가 */
.menu_wbox {
  display: none;
  width: 100%;
  max-width: 767px;
  height: 100%;
  position: fixed;
  top: 0;
  z-index: 120;
  background-color: rgba(0, 0, 0, 0.5);
  overflow: hidden;
  opacity: 0;
  transition: opacity 1000ms ease-in;
}
.menu_wbox.active {
  display: block;
  opacity: 1;
}

.menu_box {
  /* position: relative; */
  position: absolute;
  left: -70%;
  width: 60%;
  height: 100%;
  padding: 10px;
  background-color: #fff;
  padding-top: 60px;
  z-index: 130;
  transition: left 300ms ease-in-out;
}
.menu_box.active {
  left: 0;
}

.close_btn {
  position: absolute;
  right: 10px;
  top: 10px;

  font-size: 24px;
}

/* 로그인 전 */
.menu_list.login_yet {
  width: 100%;
  text-align: center;
}

.menu_list.login_yet li .login_yet_cont {
  width: 100%;
  margin-bottom: 20px;
}

.login_yet_cont .gnb_img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: cadetblue;
  margin: 0 auto;
  margin-bottom: 16px;
  overflow: hidden;
}

.login_yet_cont .gnb_img img {
  width: 100%;
}

.login_yet_cont .gnb_cap {
  /* 2021.10.07 edit GJ : 폰트사이즈 수정 */
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.login_yet_cont .gnb_txt {
  /* 2021.10.07 edit GJ : 폰트사이즈 수정 */
  font-size: 1.3rem;
}

.menu_list.login_yet li:nth-child(2) button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  height: 38px;
  border-radius: 10px;

  /* 2021.10.07 edit GJ : bg컬러 수정 */
  /* background-color: #99D9EA; */
  background-color: #df3131;
  color: #fff;
  font-size: 1.6rem;

  margin: 0 auto;
}

/* 로그인 후 */
.menu_list.login_done li {
  text-align: center;
}

.menu_list.login_done li .login_yet_cont {
  padding: 30px;
  border-bottom: 5px solid #df3131;
}

.menu_list.login_done .menu_gnb_list {
  text-align: left;
  margin-top: 20px;
  padding: 0 10px;
}

.menu_list.login_done .menu_gnb_list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 36px;
  font-size: 1.4rem;
  border-bottom: 1px solid #df3131;
  cursor: pointer;
}
.nc-icon::before {
  color: #df3131;
}
.nc-icon span {
  padding-left: 10px;
}

/*---------------------------
하단 메뉴탭
---------------------------*/
.bottom_tab {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;

  width: 100%;
  max-width: 767px;
  /* height: 100px; */
}

.bottom_tab_btn {
  width: 100%;
  height: 50px;
  border-radius: 16px 16px 0 0;
  /* 단색배경 */
  /* background-color: #99D9EA; */

  /* 2021.10.07 edit GJ : 컬러수정 */
  background-color: #df3131;

  /* 그라데이션 배경 */
}

.bottom_tab_btn button {
  width: 100%;
  height: 100%;
  line-height: 50px;
  text-align: center;

  /* 2021.10.07 edit GJ : 폰트사이즈 컬러 수정 */
  font-size: 1.6rem;
  /* font-weight: 700; */
  color: #fff;
}

.bottom_tab_list {
  display: flex;
  justify-content: space-between;
  width: 100%;

  /* 2021.10.07 edit GJ : 높이 수정 */
  height: 60px;
  background-color: #fff;
}

.bottom_tab_list li {
  width: 33.33%;
  height: 100%;
}

.bottom_tab_list li button {
  width: 100%;
  height: 100%;
  color: #747792;

  /* 2021.10.07 edit GJ : 컬러 수정 */
  /* color: #99D9EA; */
  /* color: #DF3131; */
}

/* .bottom_tab_list li button.avtive_btn{
    color: #DF3131!important;
} */

/* 2021.10.07 edit GJ : 추가 */
.bottom_tab_list li button i {
  font-size: 26px;
}

.active_btn {
  color: #df3131 !important;
}

/* 2021.10.14 NJH*/
/* my_information_edit.html 비밀번호 변경 버튼 생성 및 비밀번호 변경 box */
.pw_box_btn {
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 20px;
  background-color: #df3131;
  color: #fff;
  font-size: 1.4rem;
  border-radius: 10px;
  cursor: pointer;
}
.pw_box_btn.inactive {
  display: none;
}
.pw_change_box.inactive {
  display: none;
}
.pw_change_box {
  display: block;
}
/* 2021.10.14 NJH: index.html 사이드메뉴에 관리자 로그인 버튼 추가*/
.admin_login_btn {
  padding: 10px 20px;
  margin-top: 10px;
  background-color: #df3131;
  color: #fff;
  font-size: 1.4rem;
  border-radius: 10px;
  cursor: pointer;
}

/* 2021.10.18 NJH: index.html 사이드메뉴 상단에 포인트 추가 */
.point_item {
  display: block;
  font-family: 'NanumGothic', sans-serif;
  font-weight: 400;
  color: #df3131;
}
@media screen and (max-width: 390px) {
  .login_yet_cont .gnb_cap {
    font-size: 1.4rem;
  }
}
