/* 워케이션으로 진입한 유저가 로그인 또는 예약 시도 시 팝업 */
#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 !important;
}
#workcation_login_popup .con p a:hover {
  text-decoration: none;
}
#workcation_login_popup .con p b {
  color: #0959d1 !important;
  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;
  border: none;
}

@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;
  }
}
