body {
  position: relative;
  left: 0;
  width: 100%;
  overflow-x: hidden;
}
body.on {
  left: 260px;
  overflow: hidden;
}
body.on > *:not(header) {
  pointer-events: none;
}
/* break point 768 */
header {
  height: 70px;
  /* border-bottom: 1px solid #f3f3f3; */
  padding: 0 28px;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: #fff;
}
header > * {
  float: left;
}
header ul li {
  font-size: 17px;
  color: #515151;
}
#logo {
  margin-right: 28px;
  padding-top: 22px;
}
#logo a {
  display: block;
  height: 30px;
}
#logo img {
  height: 100%;
}
/* 모바일 hide */
.menu-box-mo,
.ham-btn {
  display: none;
}
.menu-box-pc {
  width: 100%;
}
/* category */
.menu-box-pc .gnb > li {
  float: left;
  position: relative;
}
.menu-box-pc .gnb > li.room-regis {
  cursor: pointer;
}
.menu-box-pc .gnb > li:hover > a {
  color: #6f64e8;
}
.menu-box-pc .gnb > li:hover > a:after {
  color: #515151;
}
.menu-box-pc .gnb > li > a {
  display: block;
  padding: 0 15px;
  line-height: 70px;
  transition: color 0.4s;
}
.menu-box-pc .gnb li.area:hover .depth2 {
  display: block;
}
.menu-box-pc .gnb .depth2 {
  border: 1px solid #e4eaec;
  padding: 10px 0;
  width: 140px;
  position: absolute;
  top: 60px;
  left: -6px;
  background: #fff;
  z-index: 1;
  display: none;
}
.menu-box-pc .gnb .depth2 a {
  display: block;
  line-height: 45px;
  text-indent: 20px;
}
.menu-box-pc .gnb .depth2 a:hover {
  background: #f1f3f7;
  color: #6f64e8;
}

/* user category */
.menu-box-pc .user-menu {
  float: right;
}
.menu-box-pc .user-menu > li {
  float: left;
}
.menu-box-pc .user-menu > li:hover > a {
  color: #6f64e8;
}
.menu-box-pc .user-menu > li > a {
  transition: color 0.4s;
}
.menu-box-pc .user-menu li a {
  display: block;
  line-height: 70px;
  padding: 0 15px;
  font-size: 16px;
  color: #6a7792;
}
.menu-box-pc .user-menu li.my-page {
  position: relative;
}
.menu-box-pc .user-menu li.my-page > a {
  position: relative;
  padding-right: 26px;
}
.menu-box-pc .user-menu li.my-page > a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-top-color: #6a7792;
}
.menu-box-pc .user-menu li.admin a {
  text-decoration: underline;
}
.menu-box-pc .user-menu li.res-schedule a {
  position: relative;
}
.menu-box-pc .user-menu li.res-schedule a:after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 10px;
  background: #ff78a0;
  border: 4px solid #ffdcf0;
  position: absolute;
  top: 20px;
  right: 0;
  animation: res-schedule 1.2s linear infinite;
}
@keyframes res-schedule {
  0% {
    border-color: #fff;
  }
  50% {
    border-color: #ffdcf0;
  }
  100% {
    border-color: #fff;
  }
}
.menu-box-pc .profile-pop {
  position: fixed;
  top: 60px;
  right: 40px;
  width: 240px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  padding: 20px 0 16px 0;
  transition: opacity 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
}
.menu-box-pc .profile-pop-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  display: none;
  pointer-events: none;
}
.menu-box-pc .profile-pop-bg.on {
  display: block;
}
.menu-box-pc .profile-pop.on {
  opacity: 1;
  visibility: visible;
}
.menu-box-pc .profile-pop ul li a {
  display: block;
  padding: 8px 24px;
  font-size: 15px;
  color: #545c70;
  line-height: 1.34;
}
.menu-box-pc .profile-pop ul li a:hover {
  background: #f1f3f7;
  color: #6f64e8;
}
.menu-box-pc .profile-pop .user-info {
  padding: 0 20px;
}
.menu-box-pc .profile-pop .user-info > * {
  display: inline-block;
  vertical-align: middle;
}
.user-info .user-img-box {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 6px;
}
.user-info .user-img-box img {
  width: 100%;
}
.profile-pop .user-info .user-name {
  font-size: 16px;
  font-weight: 500;
  margin-right: 4px;
}
.user-info .user-state {
  padding: 0 5px;
  font-size: 12px;
  border-radius: 4px;
  border: 1px solid #dce4f0;
  background: #f1f3f7;
  color: #8696b0;
  line-height: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: top;
  margin-top: 2px;
}
.menu-box-pc .profile-pop .user-id {
  font-size: 12px;
  color: #8696b0;
  padding: 0 20px;
  margin-top: 8px;
}
.user-btn {
  display: block;
  width: calc(100% - 40px);
  height: 36px;
  border-radius: 3px;
  margin: 18px auto;
  font-size: 14px;
  font-weight: 500;
  background: #8e88f5;
  color: #fff;
  border: none;
}
.user-btn .badge-count {
  background: #fff;
  color: #8e88f5;
  border-radius: 100px;
  padding: 0 7px;
  padding-bottom: 2px;
  font-size: 12px;
  display: inline-block;
  transform: translateY(-1px);
  margin-left: 1px;
}
.menu-box-pc .profile-pop .user-info-menu {
  border-top: 1px solid rgba(220, 228, 240, 0.75);
  padding: 10px 0;
}
.my-point span {
  font-size: 13px;
  font-weight: 500;
  color: #ff78a0;
}
.menu-box-pc .profile-pop .user-info-menu li.my-point span {
  float: right;
}
.my-point span i {
  font-style: normal;
  font-size: 11px;
  width: 17px;
  height: 17px;
  background: #ff78a0;
  color: #fff;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  line-height: 17px;
  margin-right: 4px;
}
.menu-box-pc .profile-pop .user-etc {
  padding-top: 10px;
  border-top: 1px solid rgba(220, 228, 240, 0.75);
}

/* 로그인 */
.menu-box-pc .login-box li.join a {
  height: 38px;
  line-height: 35px;
  border-radius: 100px;
  border: 2px solid #8e88f5;
  color: #6f64e8;
  margin-top: 17px;
  box-sizing: border-box;
  font-size: 14px;
}

/* 홈앤쇼핑 헤더 */
#hns_header {
  width: 100%;
  height: 90px;
  border-bottom: 3px solid #e51937;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: #fff;
}
#hns_header .headerCenter {
  width: 1200px;
  margin: auto;
}
#hns_header .headerCenter:after {
  content: "";
  display: block;
  clear: both;
}
#hns_header .headerCenter .logoZone {
  float: left;
  margin-top: 26px;
}
#hns_header .headerCenter .ServiceZone {
  float: right;
  margin-top: 35px;
}
#hns_header .headerCenter .ServiceZone ul {
  width: 354px;
  height: 20px;
  background: url("http://image.hnsmall.com/images/img2014/common/header_common_200317.png")
    no-repeat 0 -25px / cover;
}
#hns_header .headerCenter .ServiceZone ul li {
  float: left;
  height: 100%;
}
#hns_header .headerCenter .ServiceZone ul li a {
  display: block;
  width: 100%;
  text-indent: -9999px;
}
#hns_header .headerCenter .ServiceZone ul li:nth-child(1) {
  width: 50px;
}
#hns_header .headerCenter .ServiceZone ul li:nth-child(2) {
  width: 86px;
  margin-left: 24px;
}
#hns_header .headerCenter .ServiceZone ul li:nth-child(3) {
  width: 91px;
  margin-left: 25px;
}
#hns_header .headerCenter .ServiceZone ul li:nth-child(4) {
  width: 55px;
  margin-left: 23px;
}
/* 홈앤쇼핑으로 인한 미멘헤더 */
body.homeshop_body #main-slider {
  margin-top: 140px;
}
header.homeshop {
  top: 90px;
  height: 50px;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 calc((100% - 1228px) / 2);
}
header.homeshop .menu-box-pc {
  width: 100%;
}
header.homeshop .menu-box-pc > ul > li > a {
  line-height: 50px;
}
header.homeshop #logo,
header.homeshop .gnb {
  display: none;
}
header.homeshop .menu-box-pc .profile-pop {
  top: 42px;
  left: -130px;
}
header.homeshop .menu-box-pc .user-menu li.res-schedule a:after {
  top: 10px;
}
header.homeshop .menu-box-pc .login-box li.join a {
  height: 33px;
  line-height: 29px;
  margin-top: 10px;
}

.menu-box-pc .gnb > li.accom_regis_inqury a {
  padding-left: 21px;
  background: url(https://d4x5yybe1iyrp.cloudfront.net/public/assets/v2/icons/accom_regis_inqury_ico.svg)
    no-repeat left center;
  margin-left: 15px;
}
.menu-box-mo ul > li.accom_regis_inqury {
  padding-left: 24px;
}
.menu-box-mo ul > li.accom_regis_inqury a {
  padding-left: 21px;
  background: url(https://d4x5yybe1iyrp.cloudfront.net/public/assets/v2/icons/accom_regis_inqury_ico.svg)
    no-repeat left center;
}

@media (max-width: 1200px) {
  /* header */
  header {
    height: 60px;
  }
  .ham-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    display: block;
  }
  .ham-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: #76838f;
    border-radius: 100px;
    margin: 0 auto;
    transition: all 0.3s;
  }
  .ham-btn span:nth-child(2) {
    margin: 4px auto;
  }
  .ham-btn.on span:nth-child(1) {
    transform: rotate(45deg) translateY(-1px);
    transform-origin: left top;
  }
  .ham-btn.on span:nth-child(2) {
    opacity: 0;
  }
  .ham-btn.on span:nth-child(3) {
    transform: rotate(-45deg) translateY(1px);
    transform-origin: left bottom;
  }
  .menu-box-pc {
    display: none;
  }
  .menu-box-mo {
    display: block;
    position: fixed;
    top: 60px;
    left: -260px;
    width: 260px;
    height: calc(100% - 60px);
    background: #fff;
    overflow: hidden;
    overflow-y: scroll;
    transition: left 0.3s;
  }
  .menu-box-mo .dim {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 60px;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: right 0.3s;
  }
  .menu-box-mo.on .dim {
    right: -260px;
    opacity: 1;
    visibility: visible;
  }
  body.on header {
    left: 0;
  }
  .menu-box-mo.on {
    left: 0;
  }
  #logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
    margin: 0;
    padding-top: 5px;
  }
  .menu-box-mo ul li a:hover {
    color: #6f64e8;
  }
  .menu-box-mo > ul > li > a {
    display: block;
    width: 100%;
    padding: 12px 24px;
    box-sizing: border-box;
    line-height: 1.25;
  }
  .menu-box-mo > ul > li {
    font-size: 16px;
  }
  .menu-box-mo .login-box {
    border-bottom: 1px solid rgba(220, 228, 240, 0.75);
    padding-bottom: 10px;
  }
  .menu-box-mo .login-box .login-alert {
    color: #6f64e8;
    background: rgba(142, 136, 245, 0.1);
    border: 1px dashed rgba(142, 136, 245, 0.35);
    padding: 12px 12px;
    font-size: 14px;
    border-radius: 4px;
    margin: 14px;
    letter-spacing: -0.02em;
  }
  .menu-box-mo .login-box .login i {
    font-size: 13px;
    vertical-align: middle;
    margin-top: -3px;
    margin-right: 7px;
  }
  .menu-box-mo .user-info {
    padding: 20px;
    padding-bottom: 0;
    border-bottom: 1px solid rgba(220, 228, 240, 0.75);
  }
  .menu-box-mo .user-info .user-img-box {
    width: 48px;
    height: 48px;
    float: left;
  }
  .menu-box-mo .user-info .user-img-con {
    float: left;
  }
  .menu-box-mo .user-info .my-point {
    margin-top: 2px;
  }
  .menu-box-mo .user-info .user-btn {
    width: 100%;
  }
  .menu-box-mo .user-menu {
    padding: 10px 0;
    border-bottom: 1px solid rgba(220, 228, 240, 0.75);
  }
  .menu-box-mo .depth1 > a i {
    float: right;
    color: #b4c0d4;
    font-size: 12px;
    line-height: 1.8;
    transition: all 0.3s;
  }
  .menu-box-mo .depth1 {
    transition: all 0.3s;
  }
  .menu-box-mo .depth2 li a {
    padding: 10px 24px;
    color: #545c70;
    font-size: 15px;
    line-height: 1.34;
    display: block;
  }
  .menu-box-mo .depth2 {
    height: 0;
    overflow: hidden;
    transition: all 0.3s;
  }
  .menu-box-mo .depth1.on {
    background: #f1f3f7;
    padding: 10px 0;
  }
  .menu-box-mo .depth1.on > a {
    color: #6f64e8;
  }
  .menu-box-mo .depth1.on > a i {
    color: #6f64e8;
    transform: rotate(90deg);
  }
  .menu-box-mo .depth1.area.on .depth2 {
    height: 120px;
  }
  .menu-box-mo .gnb {
    padding: 10px 0;
    border-bottom: 1px solid rgba(220, 228, 240, 0.75);
  }
  .menu-box-mo .user-etc {
    padding: 10px 0;
  }
  .menu-box-mo .site-warning {
    padding: 12px 16px;
    background: #f1f3f7;
    color: #8696b0;
    font-size: 12px;
  }

  /* 홈앤쇼핑 헤더 */
  body.homeshop_body #main-slider {
    margin-top: 0;
  }
  header.homeshop {
    transform: none;
    top: 0;
    height: 52px;
    left: 0;
    box-shadow: 0 2px 4px rgb(0 0 0 / 8%);
  }
  header.homeshop .menu-box-mo {
    top: 52px;
    box-shadow: inset 0 2px 4px rgb(0 0 0 / 8%);
  }
  header.homeshop .ham-btn {
    height: 52px;
  }
  body.homeshop_body #nav_shopType1_m {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 50%;
    z-index: 100;
  }
  body.homeshop_body #nav_shopType1_m .modu_header {
    width: 100%;
    height: 52px;
    box-sizing: border-box;
    text-align: center;
  }
  body.homeshop_body #nav_shopType1_m .logo_box {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  body.homeshop_body #nav_shopType1_m .mm_hs_logo {
    height: 28px;
  }
  body.homeshop_body #nav_shopType1_m .logo_box a {
    position: absolute;
    height: 100%;
    top: 0;
  }
  body.homeshop_body #nav_shopType1_m .logo_box a.mm_logo {
    width: 107px;
    left: 0;
  }
  body.homeshop_body #nav_shopType1_m .logo_box a.hs_logo {
    width: 55px;
    right: 0;
  }
  body.homeshop_body #nav_shopType1_m .back {
    background: url("/assets/images/back_btn.png") 0 0 / cover;
    position: fixed;
    top: 70px;
    left: 16px;
    width: 40px;
    height: 40px;
    z-index: 100;
  }
}

/* 워케이션으로 진입한 유저가 로그인 또는 예약 시도 시 팝업 */
#workcation_login_popup {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2002;
  pointer-events: initial;
}
#workcation_login_popup article {
  width: 450px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  padding: 35px 30px 0 30px;
  box-sizing: border-box;
  background: #f0f3fa;
  overflow: hidden;
}
#workcation_login_popup .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
}
#workcation_login_popup .title h2 {
  color: #506185;
  font-size: 19px;
  font-weight: 800;

  display: flex;
  align-items: center;
}
#workcation_login_popup .title h2 img {
  margin-right: 9px;
}
#workcation_login_popup .title .busan_work_logo {
}
#workcation_login_popup .title .busan_work_logo img {
  width: 73px;
  height: auto;
}
#workcation_login_popup .con {
}
#workcation_login_popup .con p {
  font-size: 14px;
  color: #202a3e;
}
#workcation_login_popup .con p {
  margin-bottom: 11px;
}
#workcation_login_popup .con p a {
  text-decoration: underline !important;
  color: #0959d1;
}
#workcation_login_popup .con p a:hover {
  text-decoration: none;
}
#workcation_login_popup .con p b {
  color: #0959d1;
  font-weight: 700;
}
#workcation_login_popup .con .noti {
  margin-top: 32px;
  background: #d8dfed;
  border-radius: 4px;
  padding: 10px;
  box-sizing: border-box;
  font-size: 12px;
  color: #394865;
}
#workcation_login_popup .con .tel {
  margin-top: 12px;
  margin-bottom: 16px;
  text-align: center;
  color: #8496ba;
  font-size: 14px;
}
#workcation_login_popup .con .tel b {
  font-weight: 500;
}
#workcation_login_popup .wk_close {
  height: 50px;
  width: calc(100% + 60px);
  margin-left: -30px;
  background: #fff;
  font-size: 15px;
}

@media (max-width: 768px) {
  /* 워케이션 로그인 */
  #workcation_login_popup article {
    max-width: 450px;
    width: calc(100% - 40px);
    /* margin-left:30px; */
  }
  #workcation_login_popup article .con p br {
    display: none;
  }
}
