.header_wrap {
  display: flex;
  position: relative;
  padding: 0 5px;
  height: 46px;
  align-items: center;
  background: #ff7a00;
  color: #fff;
}

.header_inner {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
}

.btn_menu {
  padding: 5px;
  width: 24px;
  height: 20px;
  background: url(/assets/images/common/ico_menu.png) no-repeat center / 19px auto;
}

.header_logo,
.sidebar_logo {
  margin: -5px 0 0 20px;
  width: 91px;
  height: 28px;
  background: url(/assets/images/common/logo.png) no-repeat center / 100% auto;
}

.menu_title {
  padding-left: 10px;
  font-size: 16px;
  font-weight: 350;
  line-height: 1;
}

.header_info {
  margin-left: auto;
  display: flex;
  gap: 15px;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.header_info .area_item {
  display: flex;
  gap: 5px;
  align-items: center;
}

.header_info .area_item:nth-child(1) img {
  width: 17px;
  height: 15px;
}

.header_info .area_item:nth-child(2) img {
  width: 14px;
  height: 15px;
}

.header_info .area_item:nth-child(3) img {
  width: 17px;
  height: 17px;
}

.header_info .area_item .item_value {
  font-weight: 350;
}

@media (min-width: 480px) {
  .header_wrap {
    padding: 0 10px;
  }

  .menu_title {
    padding-left: 15px;
    font-size: 18px;
  }
}

/* sidebar css */

.sidebar::-webkit-scrollbar {
  display: none;
}

.sidebar {
  position: absolute;
  top: 0;
  right: 100%;
  bottom: 0;
  width: 100%;
  height: calc(100vh - 50px);
  background: #fff;
  z-index: 98;
  transition: 0.2s;
  overflow: scroll;
}

.sidebar.active {
  right: 0;
}

.sidebar_header {
  position: relative;
  display: flex;
  width: 100%;
  height: 46px;
  justify-content: space-between;
  align-items: center;
  background: #ff7a00;
}

.sidebar_header .btn_close {
  margin-right: 20px;
  width: 25px;
  height: 25px;
  background: url(/assets/images/header/ico_close.png) no-repeat center / 16px 16px;
}

.sidebar_list {
  position: relative;
  height: calc(100vh - 97px);
  padding: 0 20px 50px 20px;
}

.sidebar_list .sidebar_item {
  border-bottom: 1px solid #dedede;
}

.sidebar_list .sidebar_item > button {
  display: block;
  width: 100%;
  height: 100%;
  text-align: left;
  background: url(/assets/images/header/ico_arrow.png) no-repeat 100% center/ 10px auto;
}

.sidebar_list .sidebar_item .txt_list {
  padding: 26px 30px;
  display: block;
  font-size: 18px;
  font-weight: 500;
}

.sidebar_list .sidebar_item:nth-child(1) .txt_list {
  background: url(/assets/images/header/ico_notice.png) no-repeat 0 50% / 19px auto;
}

.sidebar_list .sidebar_item:nth-child(2) .txt_list {
  background: url(/assets/images/header/ico_event.png) no-repeat 0 50% / 20px auto;
}

.sidebar_list .sidebar_item:nth-child(3) .txt_list {
  background: url(/assets/images/header/ico_info.png) no-repeat 0 50% / 17px auto;
}

.sidebar_list .sidebar_item:nth-child(4) .txt_list {
  background: url(/assets/images/header/ico_inquiry.png) no-repeat 0 50% / 19px auto;
}

.sidebar_list .sidebar_item:nth-child(5) .txt_list {
  background: url(/assets/images/header/ico_tos.png) no-repeat 0 50% / 18px auto;
}

.btns_inquiry {
  display: flex;
  padding-left: 32px;
  margin-bottom: 26px;
  flex-wrap: wrap;
  gap: 20px 0;
}

.btns_inquiry > a {
  width: 50%;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
}

.btns_account {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.btns_account > button {
  margin: 0 auto;
  padding: 12px 0;
  width: 100%;
  font-size: 15px;
  border-radius: 5px;
  text-align: center;
}

.btns_account .btn_login {
  color: #fff;
  background: #ff7a00;
}

.btns_account .btn_cancel {
  color: #424448;
  background: #eaeef3;
}

@media (max-width: 640px) {
  .sidebar_list {
    padding: 0 10px;
  }

  .sidebar_list .sidebar_item .txt_list {
    padding: 18px 25px;
  }
}
/* //sidebar css */

/* modal */
.modal_backdrop.modal_user_cancel {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 999;
}

.modal_backdrop.modal_user_cancel.active {
  display: block;
}

.modal_user_cancel .modal_inner {
  padding: 50px 35px 23px;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 620px;
  width: 70%;
  background: #fff;
  border-radius: 5px;
  text-align: center;
  z-index: 9999;
}

.modal_user_cancel .modal_inner .txt_color_main {
  margin-bottom: 14px;
  display: block;
  font-size: 17px;
  font-weight: 500;
  color: #ff7a00;
}

.modal_user_cancel .modal_inner .txt_color_gray {
  margin-bottom: 33px;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 350;
  word-break: keep-all;
}

.modal_user_cancel .modal_inner input[type="checkbox"] {
  display: none;
}

.modal_user_cancel .modal_inner .label_cancel {
  position: relative;
  padding-left: 27px;
  display: inline-block;
  font-size: 14px;
  font-weight: 350;
  color: #646464;
}

.modal_user_cancel .modal_inner .label_cancel::after {
  content: "";
  display: block;
  position: absolute;
  top: 1px;
  left: 0;
  width: 20px;
  height: 20px;
  background: url(/assets/images/header/ico_chkbox_off.png) no-repeat center / 100%;
}

.modal_user_cancel .modal_inner input[type="checkbox"]:checked ~ .label_cancel::after {
  background: url(/assets/images/header/ico_chkbox_on.png) no-repeat center / 100%;
}

.modal_user_cancel .modal_inner .btn_area {
  margin-top: 30px;
  display: block;
}

.modal_user_cancel .modal_inner .btn_area button {
  padding: 12px 0;
  width: 50%;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: #ff7a00;
  border-radius: 5px;
}

.modal_user_cancel .btn_close {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 35px;

  background: url(/assets/images/common/ico_close.png) no-repeat center / 100% 100%;
}

@media (max-width: 640px) {
  .modal_user_cancel .modal_inner .btn_area button {
    width: 80%;
  }

  .modal_user_cancel .modal_inner {
    width: 90%;
  }

  .modal_user_cancel .modal_inner .label_cancel {
    text-align: left;
  }

  .modal_user_cancel .modal_inner .label_cancel {
    padding-left: 20px;
  }

  .modal_user_cancel .modal_inner .label_cancel::after {
    top: 3px;
    width: 15px;
    height: 15px;
  }
}

/* .modal_user_cancel .modal_inner .modal_content {
  position: relative;
  width: 100%;
  height: 100%;
} */
/* //modal */

.mydaily_logo {
  position: absolute;
  bottom: 5px;
}

.mydaily_logo img {
  width: 75px;
  float: left;
}

.mydaily_logo .txt_mydaily {
  padding-top: 10px;
  margin-left: 77px;
  font-size: 8pt;
}

@media (max-height: 650px) {
  .mydaily_logo {
    position: relative;
    margin-top: 50px;
  }
}