@charset "UTF-8";
/* login.html 00_login */
/* common style group */
/* forward */
/* base.scss */
* {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  text-decoration: none;
  list-style: none;
  vertical-align: middle;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

i, img, span {
  border: 0;
}

img, video, embed {
  max-width: 100%;
  backface-visibility: none;
}

ul, li {
  list-style: none;
}

table {
  border-collapse: separate;
  border-spacing: 0;
}

caption {
  display: none;
}

fieldset {
  border: 0 none;
}

legend {
  width: 0;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  font-size: 0;
}

select {
  cursor: pointer;
}
select::-ms-expand {
  display: none;
}

textarea {
  outline: none;
}

button {
  overflow: visible;
  border: none;
  background: none;
  background: transparent;
  font-family: inherit;
  white-space: nowrap;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
}

input, select, button {
  display: inline-block;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: 0.3s;
}

a {
  text-decoration: none;
  border: none;
  outline: none;
  color: #000;
  cursor: pointer;
  transition: 0.3s;
}

/* typo */
@font-face {
  font-family: "HDSans";
  font-weight: 400;
  src: url(../fonts/HyundaiSans/HyundaiSansTextPro-Regular.woff) format("woff"), url(../fonts/HyundaiSans/HyundaiSansTextPro-Regular.woff2) format("woff2");
}
@font-face {
  font-family: "HDSans";
  font-weight: 500;
  src: url(../fonts/HyundaiSans/HyundaiSansTextPro-Medium.woff) format("woff"), url(../fonts/HyundaiSans/HyundaiSansTextPro-Medium.woff2) format("woff2");
}
@font-face {
  font-family: "HDSans";
  font-weight: 700;
  src: url(../fonts/HyundaiSans/HyundaiSansTextPro-Bold.woff) format("woff"), url(../fonts/HyundaiSans/HyundaiSansTextPro-Bold.woff2) format("woff2");
}
@font-face {
  font-family: "HDSansHead";
  font-weight: 300;
  src: url(../fonts/HyundaiSans/HyundaiSansHeadPro-Light.woff) format("woff"), url(../fonts/HyundaiSans/HyundaiSansHeadPro-Light.woff2) format("woff2");
}
@font-face {
  font-family: "HDSansHead";
  font-weight: 500;
  src: url(../fonts/HyundaiSans/HyundaiSansHeadPro-Medium.woff) format("woff"), url(../fonts/HyundaiSans/HyundaiSansHeadPro-Medium.woff2) format("woff2");
}
/* color palette */
/* mixin */
/* mixin */
*::-webkit-search-cancel-button {
  -webkit-appearance: searchfield-cancel-button;
}

/* animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
@keyframes showUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes showDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes pop-showUp {
  0% {
    opacity: 0;
    transform: translate(-50%, 30px);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0px);
  }
}
@keyframes pop-hideDown {
  0% {
    opacity: 1;
    transform: translate(-50%, 0px);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 30px);
    display: none;
  }
}
@keyframes showScaleY {
  0% {
    opacity: 0;
    transform: scaleY(50%) translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: scaleY(100%) translateY(0px);
  }
}
@keyframes hideScaleY {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scaleY(100%) translateY(0px);
  }
  100% {
    opacity: 0;
    transform: scaleY(50%) translateY(-30px);
  }
}
@keyframes showScale {
  0% {
    opacity: 0;
    transform: scale(30%);
  }
  100% {
    opacity: 1;
    transform: scale(100%);
  }
}
@keyframes lToR {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
/* component */ /* button 스타일 */
/* button */
.btn-wrap {
  padding: 0 6.25%;
}

button {
  width: 100%;
  height: 48px;
  font-size: 1.4rem;
  font-weight: 500;
  color: #555;
  background-color: #fff;
  border: 1px solid #999;
  border-radius: 8px;
}

[class*=icoBtn-] {
  width: 24px;
  height: 24px;
  border: none;
  text-indent: -9999px;
}

.btn-base {
  color: #757575;
  border: 1px solid #CECCCC;
  background-color: #EFEDED;
}

.btn-confirm {
  color: #fff;
  border: none;
  background-color: #B38E7D;
}
.btn-confirm:disabled {
  background-color: #CECCCC;
  cursor: auto;
}

.btn-close {
  width: 20px;
  height: 20px;
  background: url("../images/ico-close.svg") no-repeat;
  background-size: contain;
  border: none;
}

.btn-wrap.double:after {
  content: "";
  display: block;
  clear: both;
}
.btn-wrap.double .fl-left {
  float: left;
}
.btn-wrap.double .fl-right {
  float: right;
}
.btn-wrap.double button {
  float: left;
  width: calc(50% - 4px);
}
.btn-wrap.double button:first-child {
  margin-right: 8px;
}

.btn-md {
  padding: 8px 20px;
  width: auto;
  height: auto;
  line-height: 2rem;
  color: #fff;
  background-color: #B38E7D;
  border: none;
  border-radius: 20px;
}
.btn-md.base {
  padding: 4px 12px;
  color: #555;
  background-color: #fff;
  border: 1px solid #999;
}
.btn-md:disabled {
  background-color: #CECCCC;
  cursor: auto;
}

.btn-text {
  display: inline-block;
  padding: 0;
  width: auto;
  height: auto;
  font-size: 1.2rem;
  line-height: 1.6rem;
  color: #757575;
  border: none;
  background-color: transparent;
  text-align: left;
}

.btn-home {
  display: inline-block;
  padding: 9px 20px 7px;
  padding-left: 44px;
  width: auto;
  height: 36px;
  font-size: 1.4rem;
  line-height: 1.6rem;
  color: #fff;
  background: #7A92B7 url(../images/ico-home.svg) no-repeat;
  background-size: 20px;
  background-position: 20px center;
  border: none;
  border-radius: 20px;
}

.icoBtn-alert {
  background: url(../images/ico-alert-gold.svg) no-repeat;
  background-size: contain;
}
.icoBtn-alert.new {
  position: relative;
}
.icoBtn-alert.new:after {
  content: "";
  position: absolute;
  top: 0;
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: #FF5470;
  border-radius: 50%;
}
.icoBtn-alert.new:after {
  top: 0;
  right: 0px;
}

.icoBtn-back {
  background: url(../images/ico-back.svg) no-repeat;
  background-size: contain;
}

.icoBtn-next {
  border: none;
  width: 24px;
  height: 24px;
  background: url(../images/ico-arrow-right.svg) no-repeat;
  background-size: contain;
}

.icoBtn-img {
  width: 48px;
  height: 48px;
  background: #7A92B7 url(../images/ico-imgFile-white.svg) no-repeat;
  background-size: 24px;
  background-position: center;
  border-radius: 50%;
}

@keyframes rotate360 {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0);
  }
}
.icoBtn-renew {
  position: fixed;
  z-index: 500;
  bottom: 72px;
  right: 6.25%;
  width: 40px;
  height: 40px;
  background: url("../images/ico-renew.svg") no-repeat;
  background-size: contain;
  background-position: center;
}
.icoBtn-renew:active {
  animation: rotate360 0.3s forwards;
}

/* 로딩 */
@keyframes loadingDot {
  0% {
    opacity: 1;
    transform: translateY(0px);
  }
  20% {
    opacity: 0;
    transform: translateY(-8px);
  }
  50% {
    opacity: 1;
    transform: translateY(0);
  }
  70% {
    transform: translateY(-1px);
  }
  80% {
    transform: translateY(0px);
  }
}
.loading {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(1px);
  transition: 0.3s;
}
.loading span {
  position: absolute;
  top: calc(50% - 4px);
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #4C6893;
  border-radius: 50%;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
}
.loading span:nth-child(1) {
  left: calc(50% - 18px);
  animation: loadingDot 1.2s infinite forwards linear;
}
.loading span:nth-child(2) {
  left: calc(50% - 4px);
  animation: loadingDot 1.2s 0.1s infinite forwards linear;
}
.loading span:nth-child(3) {
  left: calc(50% + 10px);
  animation: loadingDot 1.2s 0.2s infinite forwards linear;
}

/* img-box */
.img-box {
  position: relative;
  padding: 0;
  overflow: hidden;
}
.img-box div {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: translate(50%, 50%);
  -ms-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
}
.img-box div img {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 200%;
  max-height: 200%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.img-box > img {
  width: 100%;
  border-radius: 8px;
}
.img-box .btn-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background-color: rgba(255, 255, 255, 0.7);
}

/* filter */
.filter-wrap ul:after {
  content: "";
  display: block;
  clear: both;
}
.filter-wrap ul .fl-left {
  float: left;
}
.filter-wrap ul .fl-right {
  float: right;
}
.filter-wrap li {
  float: left;
  margin-left: 4px;
  margin-bottom: 8px;
  padding: 4px 8px;
  max-width: 100%;
  height: 28px;
  font-size: 1.4rem;
  line-height: 2rem;
  color: #333;
  background-color: #F5F5F5;
  border: 1px solid #DDDBDB;
  border-radius: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
}
.filter-wrap li.on {
  font-weight: 500;
  color: #fff;
  background-color: #B38E7D;
  border: 1px solid #B38E7D;
}

.filterBox {
  padding: 0px 6.25% 12px;
}
.filterBox [class*=btn-] {
  float: left;
  margin-right: 8px;
  padding: 6px 12px;
  width: auto;
  height: 24px;
  border: none;
  height: 32px;
  text-indent: 0;
  background-color: #B38E7D;
  border: 1px solid #B38E7D;
  border-radius: 16px;
}
.filterBox .btn-all {
  color: #757575;
  background-color: #CECCCC;
  border: 2px solid #CECCCC;
  cursor: default;
}
.filterBox .btn-all.active {
  color: #555;
  background-color: #fff;
  border: 2px solid #555;
  cursor: pointer;
}
.filterBox .btn-filter {
  color: #fff;
  background-color: #7A92B7;
  border: 2px solid #7A92B7;
}
.filterBox li {
  position: relative;
  margin-bottom: 8px;
  padding: 6px 24px 6px 12px;
  max-width: 100%;
  height: 32px;
  line-height: 2rem;
  color: #333;
  background-color: #f4f2f1;
  border-radius: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.filterBox li i {
  position: absolute;
  top: calc(50% - 10px);
  right: 4px;
  margin-left: 4px;
  width: 20px;
  height: 20px;
  vertical-align: top;
  background: url("../images/ico-filter-x.svg") no-repeat;
  background-size: contain;
}

/* tabMenu */
.tabMenu {
  background-color: #fff;
}
.tabMenu ul:after {
  content: "";
  display: block;
  clear: both;
}
.tabMenu ul .fl-left {
  float: left;
}
.tabMenu ul .fl-right {
  float: right;
}
.tabMenu li {
  float: left;
  font-size: 1.6rem;
  font-weight: 500;
  color: #999;
  text-align: center;
  transition: 0.3s;
  cursor: pointer;
}
.tabMenu li.active {
  font-weight: 700;
}
.tabMenu .depth1 li {
  padding: 14px 10px;
  width: 50%;
  height: 48px;
  line-height: 2rem;
  background-color: #fff;
  border-bottom: 1px solid #BFADA5;
  transition: 0.3s;
}
.tabMenu .depth1 li.active {
  color: #fff;
  background-color: #BFADA5;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.tabMenu .depth2 {
  padding: 0px 20px;
  box-shadow: 0 0 8px rgba(100, 100, 100, 0.1);
}
.tabMenu .depth2 li {
  position: relative;
  padding: 16px 8px 8px;
  font-size: 1.4rem;
  line-height: 1.6rem;
}
.tabMenu .depth2 li.active {
  color: #B38E7D;
}
.tabMenu .depth2 li.active:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #B38E7D;
  border-radius: 1px;
}

.subTabMenu ul {
  display: flex;
  margin: 0 auto;
  width: fit-content;
  justify-content: center;
  border: 1px solid #B38E7D;
  border-radius: 10px;
  overflow: hidden;
}
.subTabMenu li {
  padding: 5px 28px 3px;
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #757575;
  cursor: pointer;
}
.subTabMenu li.active {
  color: #fff;
  font-weight: 500;
  background-color: #B38E7D;
}

/* status 스타일 */
.status {
  display: inline-block;
  padding: 4px 8px;
  font-size: 1.1rem;
  line-height: 1.2rem;
  color: #fff;
  font-weight: 500;
  border-radius: 10px;
}
.status.using {
  background-color: #FF5470;
}
.status.avlbl {
  background-color: #5ca5ff;
}
.status.notAvlbl {
  color: #aaa;
  background-color: #EFEDED;
  border: 1px solid #DDDBDB;
}
.status.base {
  color: #757575;
  background-color: #fafafa;
  border: 1px solid #CECCCC;
}
.status.finish {
  background-color: #757575;
}
.status.wait {
  color: #757575;
  background-color: #fafafa;
  border: 1px solid #CECCCC;
}
.status.answered {
  color: #fff;
  background-color: #757575;
}

.flt-box:after {
  content: "";
  display: block;
  clear: both;
}
.flt-box .fl-left {
  float: left;
}
.flt-box .fl-right {
  float: right;
}
.flt-box > * {
  float: left;
}
.flt-box .fl-right {
  float: right;
}

.flex-box {
  display: flex;
}

.list-box {
  margin: 0 auto 12px;
  padding: 12px 0px 12px;
  width: 87.5%;
  font-size: 1.2rem;
  line-height: 1.6rem;
  color: #555;
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0 0px 4px rgba(0, 0, 0, 0.3);
}
.list-box:last-child {
  margin-bottom: 0;
}
.list-box > div {
  padding: 0px 12px;
}
.list-box.using {
  padding: 12px 0px 0;
}
.list-box.using .alert-box {
  display: block;
}
.list-box p {
  max-width: 100%;
  font-size: 1.6rem;
  line-height: 2rem;
  font-weight: 500;
}
.list-box .tit-box {
  margin: 8px 0 0;
}
.list-box .tit-box p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.list-box .tit-box span {
  margin: 2px 0;
  font-size: 1.4rem;
  word-break: break-all;
}
.list-box .alert-box {
  display: none;
  margin-top: 12px;
  padding: 12px;
  color: #757575;
  background-color: #f4f2f1;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
.list-box .alert-box b {
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: 400;
  word-break: break-all;
}
.list-box .alert-box b:before {
  content: "";
  display: inline-block;
  margin-right: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #44C487;
  vertical-align: middle;
}
.list-box .alert-box label {
  color: #757575;
}
.list-box .alert-box label span {
  margin-right: 4px;
}
.list-box .btn-favorite {
  width: 20px;
  height: 20px;
  border: none;
  background: url("../images/ico-favorite-off.svg") no-repeat;
  background-size: 20px;
  transition: 0s;
  text-indent: -9999px;
}
.list-box .btn-favorite.on {
  background: url("../images/ico-favorite-on.svg") no-repeat;
  background-size: 20px;
}

.txtInfo-box {
  margin: 16px 0;
  font-size: 1.2rem;
  line-height: 1.6rem;
  color: #333;
}
.txtInfo-box b {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}
.txtInfo-box p {
  margin: 4px 0;
}
.txtInfo-box p:before {
  content: "- ";
}
.txtInfo-box p span {
  color: #555;
  font-weight: 500;
}

/* settingList 설정 관련 리스트 */
.settingList {
  padding: 20px 6.25%;
}
.settingList > li {
  margin-bottom: 20px;
}
.settingList li {
  display: flex;
}
.settingList li:last-child {
  margin-bottom: 0;
}
.settingList li .txt-box {
  margin-right: 8px;
  min-width: calc(100% - 60px);
  word-break: keep-all;
}
.settingList b {
  display: block;
  margin-bottom: 4px;
  font-size: 1.4rem;
  line-height: 1.6rem;
  color: #333;
  font-weight: 500;
  overflow-wrap: break-word;
  word-break: keep-all;
}
.settingList span {
  font-size: 1.2rem;
  line-height: 1.6rem;
  color: #757575;
  overflow-wrap: break-word;
  word-break: keep-all;
}

/* popup */
.popup-wrap {
  display: none;
  z-index: 9000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
}
.popup-wrap.on {
  display: block;
}
.popup-wrap.full {
  background-color: #fff;
}
.popup-wrap.full .popup-layer {
  top: 0;
  left: 50%;
  padding: 20px 0 16px;
  width: 100%;
  max-width: 768px;
  height: 100%;
  max-height: 100%;
  background: #fff;
  border-radius: 0px;
  transform: translateX(-50%);
  box-shadow: none;
}

.popup-layer {
  position: absolute;
  top: 25%;
  left: 6.25%;
  padding: 20px 20px 16px;
  width: 87.5%;
  max-height: 65%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  overflow: auto;
  scrollbar-3dLight-Color: #CECCCC;
  scrollbar-arrow-color: #CECCCC;
  scrollbar-base-color: #EFEDED;
  scrollbar-Face-Color: #CECCCC;
  scrollbar-Track-Color: #EFEDED;
  scrollbar-DarkShadow-Color: #CECCCC;
  scrollbar-Highlight-Color: #CECCCC;
  scrollbar-Shadow-Color: #CECCCC;
}
.popup-layer::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.popup-layer::-webkit-scrollbar-thumb {
  background-color: #CECCCC;
  border-radius: 6px;
}
.popup-layer::-webkit-scrollbar-track {
  background-color: #EFEDED;
  width: 6px;
  height: 6px;
  border-radius: 6px;
}
.popup-layer h2 {
  padding-right: 24px;
  font-size: 1.8rem;
  line-height: 2.4rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.popup-layer .btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
  display: block;
  width: 24px;
  height: 24px;
}
.popup-layer .pop-head {
  margin-bottom: 12px;
  padding: 0 20px;
}
.popup-layer .pop-cont {
  padding: 0 20px;
  height: calc(100% - 32px);
  overflow: auto;
  font-size: 1.4rem;
  line-height: 2rem;
  scrollbar-3dLight-Color: #CECCCC;
  scrollbar-arrow-color: #CECCCC;
  scrollbar-base-color: #EFEDED;
  scrollbar-Face-Color: #CECCCC;
  scrollbar-Track-Color: #EFEDED;
  scrollbar-DarkShadow-Color: #CECCCC;
  scrollbar-Highlight-Color: #CECCCC;
  scrollbar-Shadow-Color: #CECCCC;
}
.popup-layer .pop-cont::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.popup-layer .pop-cont::-webkit-scrollbar-thumb {
  background-color: #CECCCC;
  border-radius: 6px;
}
.popup-layer .pop-cont::-webkit-scrollbar-track {
  background-color: #EFEDED;
  width: 6px;
  height: 6px;
  border-radius: 6px;
}
.popup-layer .pop-cont h3 {
  margin-bottom: 12px;
  font-size: 1.6rem;
  font-weight: 500;
  color: #333;
  overflow-wrap: break-word;
}
.popup-layer .pop-cont .info-box {
  padding: 20px 0;
}
.popup-layer .pop-cont .info-detail {
  padding: 12px 0;
  width: 100%;
  border-top: 1px solid #DDDBDB;
  overflow-wrap: break-word;
}
.popup-layer .slideImg-box {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.popup-layer .slideImg-box ul:after {
  content: "";
  display: block;
  clear: both;
}
.popup-layer .slideImg-box ul .fl-left {
  float: left;
}
.popup-layer .slideImg-box ul .fl-right {
  float: right;
}
.popup-layer .slideImg-box ul li {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
  text-align: center;
  background-color: #f4f2f1;
  transition: 0.3s;
}
.popup-layer .slideImg-box img {
  max-height: 100%;
}
.popup-layer .slideImg-box .pager {
  position: absolute;
  bottom: 0px;
  right: 0px;
  z-index: 1000;
  padding: 2px 8px 1px;
  font-size: 1.2rem;
  color: #bbb;
  background-color: rgba(0, 0, 0, 0.7);
  border-top-left-radius: 4px;
  border-bottom-right-radius: 8px;
  vertical-align: top;
}
.popup-layer .slideImg-box .pager .now {
  color: #fff;
}
.popup-layer .btn-wrap {
  margin-top: 20px;
  padding: 0;
  text-align: right;
}
.popup-layer .btn-wrap button {
  display: inline-block;
  padding: 4px;
  width: auto;
  min-width: 60px;
  height: 32px;
  font-size: 1.2rem;
  line-height: 2rem;
  font-weight: 500;
  border-radius: 16px;
  vertical-align: middle;
}
.popup-layer .btn-wrap .btn-confirm {
  border: none;
  background-color: #7A92B7;
}
.popup-layer .btn-wrap.double button {
  float: unset;
  width: auto;
}
.popup-layer .btn-wrap.double button:first-child {
  margin-right: 4px;
}

.botSheet-wrap {
  z-index: 9000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  -webkit-animation: fadeOut 0.5s forwards;
  animation: fadeOut 0.5s forwards;
}
.botSheet-wrap .botSheet-layer {
  transform: translateX(-50%);
  -webkit-animation: pop-hideDown 0.3s forwards;
  animation: pop-hideDown 0.3s forwards;
}
.botSheet-wrap.off {
  display: none;
}
.botSheet-wrap.on {
  display: block !important;
  -webkit-animation: fadeIn 0.3s backwards;
  animation: fadeIn 0.3s backwards;
}
.botSheet-wrap.on .botSheet-layer {
  transform-origin: -50% bottom;
  -webkit-animation: pop-showUp 0.5s backwards;
  animation: pop-showUp 0.5s backwards;
}

.botSheet-layer {
  position: absolute;
  bottom: 0%;
  left: 50%;
  z-index: 5000;
  padding: 20px 20px 12px;
  width: 100%;
  max-width: 768px;
  max-height: 100%;
  color: #333;
  background: #fff;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  transition: 0.6s;
}
.botSheet-layer h2 {
  margin: 0 0px 20px;
  width: 100%;
  font-size: 1.8rem;
  line-height: 2.4rem;
  font-weight: 500;
}
.botSheet-layer h2 .btn-close {
  float: right;
  width: 24px;
  height: 24px;
}
.botSheet-layer .cont {
  margin-bottom: 8px;
  max-height: calc(100vh - 144px);
  overflow: auto;
  font-size: 1.4rem;
  line-height: 2rem;
}
.botSheet-layer .btn-wrap {
  margin-top: 20px;
  margin-top: clamp(20px, 6.25vw, 32px);
  padding: 0;
}
.botSheet-layer .btn-wrap .btn-confirm {
  border: none;
  background-color: #7A92B7;
}
.botSheet-layer .btn-wrap .btn-confirm:disabled {
  background-color: #CECCCC;
}

.popup-layer .subContList,
.botSheet-layer .subContList {
  padding: 0;
}
.popup-layer .subContList li,
.botSheet-layer .subContList li {
  border: none;
}
.popup-layer .cont,
.botSheet-layer .cont {
  margin-top: 20px;
  font-size: 1.4rem;
  line-height: 2rem;
}
.popup-layer .c_point,
.botSheet-layer .c_point {
  margin-bottom: 8px;
  font-weight: 500;
  color: #9D6848;
}
.popup-layer .c_point span,
.botSheet-layer .c_point span {
  display: block;
}
.popup-layer .txt-box,
.botSheet-layer .txt-box {
  font-size: 1.4rem;
  line-height: 2rem;
  color: #333;
  word-break: keep-all;
}

/* 토스트 팝업 */
.toast-message {
  display: inline-block;
  position: fixed;
  top: 5%;
  left: 50%;
  z-index: 9000;
  padding: 8px 12px;
  width: 200px;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.6rem;
  text-align: center;
  font-weight: 400;
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 12px;
  opacity: 0;
  transform: translateX(-50%);
  transition: opacity 0.3s ease-in-out;
  word-break: keep-all;
  white-space: normal;
  overflow-wrap: break-word;
}

.toast-message.show {
  opacity: 1;
}

@media screen and (min-width: 360px) {
  .popup-layer .slideImg-box ul li {
    height: 200px;
  }
}
@media screen and (min-width: 500px) {
  .popup-layer .slideImg-box ul li {
    height: 360px;
  }
}
@media screen and (min-width: 768px) {
  .popup-layer {
    left: calc((100% - 500px) / 2);
    width: 500px;
  }
  .popup-layer .slideImg-box ul li {
    height: 480px;
  }
}
/* form 스타일 */
.form-wrap b {
  display: block;
  font-size: 1.2rem;
  line-height: 1.6rem;
  color: #333;
  text-align: right;
  font-weight: 500;
}
.form-wrap .altTxt {
  display: inline-block;
  margin-top: 4px;
  padding: 0 12px;
  font-size: 1.2rem;
}
.form-wrap .c_point {
  color: #FF5470;
  font-style: normal;
}
.form-wrap i.c_point {
  margin: 0 2px;
}
.form-wrap .inputBox {
  margin-bottom: 20px;
}
.form-wrap .inputBox label {
  display: block;
  margin-bottom: 8px;
  font-size: 1.4rem;
  line-height: 1.6rem;
  font-weight: 500;
  color: #555;
}
.form-wrap .inputBox.full input {
  padding: 13px 20px 11px;
  width: 100%;
  font-size: 1.4rem;
  line-height: 2rem;
  color: #333;
  background-color: #F7F5F5;
  border-radius: 22px;
}
.form-wrap .inputBox.full input::-webkit-input-placeholder {
  font-size: 1.2rem;
  color: #999;
}
.form-wrap .inputBox.full input::-moz-placeholder {
  font-size: 1.2rem;
  color: #999;
}
.form-wrap .inputBox.full input:-ms-input-placeholder {
  font-size: 1.2rem;
  color: #999;
}
.form-wrap .inputBox.full input::-ms-input-placeholder {
  font-size: 1.2rem;
  color: #999;
}
.form-wrap .inputBox.full input::placeholder {
  font-size: 1.2rem;
  color: #999;
}
.form-wrap .inputBox.full input[readonly] {
  color: #757575;
}
.form-wrap .inputBox.withBtn div {
  background-color: #F7F5F5;
  border-radius: 22px;
}
.form-wrap .inputBox.withBtn div:after {
  content: "";
  display: block;
  clear: both;
}
.form-wrap .inputBox.withBtn div .fl-left {
  float: left;
}
.form-wrap .inputBox.withBtn div .fl-right {
  float: right;
}
.form-wrap .inputBox.withBtn input {
  float: left;
  padding: 12px 20px;
  width: calc(100% - 68px);
  font-size: 1.4rem;
  line-height: 2rem;
  color: #333;
  background-color: transparent;
}
.form-wrap .inputBox.withBtn input::-webkit-input-placeholder {
  font-size: 1.2rem;
  color: #999;
}
.form-wrap .inputBox.withBtn input::-moz-placeholder {
  font-size: 1.2rem;
  color: #999;
}
.form-wrap .inputBox.withBtn input:-ms-input-placeholder {
  font-size: 1.2rem;
  color: #999;
}
.form-wrap .inputBox.withBtn input::-ms-input-placeholder {
  font-size: 1.2rem;
  color: #999;
}
.form-wrap .inputBox.withBtn input::placeholder {
  font-size: 1.2rem;
  color: #999;
}
.form-wrap .inputBox.withBtn input + button {
  float: right;
  margin: 4px;
  padding: 8px 12px;
  width: 60px;
  height: auto;
  font-size: 1.2rem;
  line-height: 2rem;
  color: #fff;
  font-weight: 500;
  background-color: #7A92B7;
  border: none;
  border-radius: 20px;
}
.form-wrap .btn-wrap.final {
  position: fixed;
  left: 6.25%;
  bottom: 16px;
  width: 87.5%;
}

.switchBtn {
  position: relative;
  display: inline-block;
}
.switchBtn input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.switchBtn input + b {
  display: block;
  padding: 0 4px;
  width: 52px;
  height: 28px;
  background-color: #aaa;
  border-radius: 14px;
}
.switchBtn input + b:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}
.switchBtn input + b span {
  display: block;
  padding: 5px 2px 3px;
  font-size: 1rem;
  line-height: 2rem;
  color: #fff;
}
.switchBtn input + b .off {
  display: block;
  text-align: right;
}
.switchBtn input + b .on {
  display: none;
}
.switchBtn input:checked + b {
  background-color: #7A92B7;
}
.switchBtn input:checked + b:after {
  top: 4px;
  left: calc(100% - 24px);
}
.switchBtn input:checked + b .off {
  display: none;
}
.switchBtn input:checked + b .on {
  display: block;
}
.switchBtn input:disabled {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  background-color: transparent;
}
.switchBtn input:disabled + b {
  background-color: #CECCCC;
}

/* textarea */
.textareaBox {
  min-height: 300px;
}

textarea {
  padding: 12px 20px;
  width: 100%;
  min-height: 300px;
  font-size: 1.4rem;
  line-height: 2rem;
  color: #333;
  overflow: hidden;
  resize: none;
  border: 1px solid #DDDBDB;
  border-radius: 16px;
  overflow: hidden;
}
textarea::-webkit-input-placeholder {
  font-size: 1.2rem;
  color: #999;
}
textarea::-moz-placeholder {
  font-size: 1.2rem;
  color: #999;
}
textarea:-ms-input-placeholder {
  font-size: 1.2rem;
  color: #999;
}
textarea::-ms-input-placeholder {
  font-size: 1.2rem;
  color: #999;
}
textarea::placeholder {
  font-size: 1.2rem;
  color: #999;
}

/* select */
.select-box {
  position: relative;
}
.select-box .select {
  padding: 13px 20px 11px;
  height: 44px;
  font-size: 1.4rem;
  line-height: 1.6rem;
  text-align: left;
  border: 1px solid #DDDBDB;
  border-radius: 22px;
}
.select-box .select .ico-arrow-down {
  float: right;
  position: relative;
  margin-left: 4px;
  width: 20px;
  height: 20px;
}
.select-box .tit {
  display: inline-block;
  max-width: calc(100% - 24px);
  vertical-align: text-bottom;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.select-box .optionList {
  display: none;
  position: absolute;
  top: calc(100% - 4px);
  left: 0;
  z-index: 10;
  padding: 8px 0;
  width: 100%;
  font-size: 1.4rem;
  line-height: 1.6rem;
  background: #fff;
  border: 1px solid #DDDBDB;
  border-radius: 16px;
  transition: 0.3s;
  opacity: 0;
  overflow: hidden;
  transform-origin: top center;
  -webkit-animation: hideScaleY 0.3s forwards;
  animation: hideScaleY 0.3s forwards;
}
.select-box .optionList ul {
  max-height: 200px;
  overflow-y: scroll;
  scrollbar-3dLight-Color: #CECCCC;
  scrollbar-arrow-color: #CECCCC;
  scrollbar-base-color: #EFEDED;
  scrollbar-Face-Color: #CECCCC;
  scrollbar-Track-Color: #EFEDED;
  scrollbar-DarkShadow-Color: #CECCCC;
  scrollbar-Highlight-Color: #CECCCC;
  scrollbar-Shadow-Color: #CECCCC;
}
.select-box .optionList ul::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.select-box .optionList ul::-webkit-scrollbar-thumb {
  background-color: #CECCCC;
  border-radius: 6px;
}
.select-box .optionList ul::-webkit-scrollbar-track {
  background-color: #EFEDED;
  width: 6px;
  height: 6px;
  border-radius: 6px;
}
.select-box .optionList li {
  padding: 4px 20px;
}
.select-box .optionList li:first-child {
  color: #4c6893;
  font-weight: 500;
}
.select-box .optionList li span {
  display: inline-block;
  width: 100%;
  font-size: 1.4rem;
  line-height: 2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.select-box.on .select {
  border: 1px solid #DDDBDB;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: none;
}
.select-box.on .optionList {
  display: block;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-top: 1px solid #EFEDED;
  -webkit-animation: showScaleY 0.3s forwards;
  animation: showScaleY 0.3s forwards;
  cursor: pointer;
}
.select-box.sm {
  margin-right: 10px;
  max-width: calc(100% - 110px);
}
.select-box.sm .optionList li {
  margin: 8px 12px;
}
.select-box.sm .select {
  padding: 9px 8px 7px 12px;
  height: 40px;
}
.select-box.sm .ico-arrow-down span {
  width: 8px;
}
.select-box.sm .ico-arrow-down span:nth-child(1) {
  left: 3px;
}

.ico-arrow-down span {
  display: inline-block;
  position: absolute;
  top: 8px;
  width: 10px;
  height: 1.6px;
  background-color: #757575;
  border-radius: 2px;
  transition: 0.3s;
}
.ico-arrow-down span:nth-child(1) {
  transform: rotate(45deg);
  left: 1px;
}
.ico-arrow-down span:nth-child(2) {
  transform: rotate(-45deg);
  left: 8px;
}

.select-box.on .ico-arrow-down span:nth-child(1) {
  transform: rotate(-45deg);
}
.select-box.on .ico-arrow-down span:nth-child(2) {
  transform: rotate(45deg);
}

.radio-box {
  display: inline-block;
  position: relative;
}
.radio-box input {
  position: relative;
  padding: 0;
  width: 16px;
  height: 16px;
  background: transparent;
  border-radius: 50%;
  border: none;
  vertical-align: text-top;
  cursor: pointer;
}
.radio-box input::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border: 1px solid #DDDBDB;
  border-radius: 50%;
  background-color: #fff;
  box-sizing: border-box;
  transition: 0.3s;
}
.radio-box input:checked:before {
  border: 1px solid #4C6893;
}
.radio-box input:checked:after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #4C6893;
}

/* input number 기본 화살표 숨김 */
/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox  */
input[type=number] {
  -moz-appearance: textfield;
}

/* input number 증감 */
.num-box {
  margin: 0 auto;
}
.num-box:after {
  content: "";
  display: block;
  clear: both;
}
.num-box .fl-left {
  float: left;
}
.num-box .fl-right {
  float: right;
}
.num-box button,
.num-box input {
  float: left;
}

.check-box {
  display: inline-block;
  position: relative;
}
.check-box label {
  font-size: 1.4rem;
  line-height: 1.6rem;
  color: #555;
}
.check-box label .txt {
  vertical-align: middle;
}
.check-box input {
  padding: 0;
  width: 20px;
  height: 20px;
  background: transparent;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  position: relative;
}
.check-box input:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: url("../images/ico-unChecked.svg") no-repeat;
  background-size: contain;
  transition: 0.3s;
}
.check-box input:checked:after {
  content: "";
  display: block;
  background: url("../images/ico-checked.svg") no-repeat;
  background-size: contain;
}

/*dateTime picker*/
.timepicker {
  width: 100%;
  background-color: transparent;
  cursor: pointer;
}

.bootstrap-datetimepicker-widget {
  position: absolute;
  display: block;
  top: 0px;
  left: 0px !important;
  z-index: 9999;
}
.bootstrap-datetimepicker-widget button[data-action] {
  padding: 0 8px;
  color: #fff;
  font-weight: 500;
  border: none;
  background-color: #BFADA5;
  border-radius: 8px;
}
.bootstrap-datetimepicker-widget button[data-action]:hover {
  color: #fff;
  border: none;
  background-color: #BFADA5;
}
.bootstrap-datetimepicker-widget table td,
.bootstrap-datetimepicker-widget table th {
  text-align: center;
  border: none;
  font-size: 16px;
  padding: 4px;
  border-radius: 4px;
}
.bootstrap-datetimepicker-widget table th {
  display: table-cell !important;
  line-height: 20px;
  height: 20px;
  width: 20px;
}
.bootstrap-datetimepicker-widget table th.picker-switch {
  width: 145px;
}
.bootstrap-datetimepicker-widget table th.disabled, .bootstrap-datetimepicker-widget table th.disabled:hover {
  background: none;
  color: #EFEDED;
  cursor: not-allowed;
}
.bootstrap-datetimepicker-widget table th.prev::after {
  content: "❮";
}
.bootstrap-datetimepicker-widget table th.next::after {
  content: "❯";
}
.bootstrap-datetimepicker-widget table th.prev:hover, .bootstrap-datetimepicker-widget table th.next:hover {
  color: #CECCCC;
}
.bootstrap-datetimepicker-widget table thead tr:first-child th {
  cursor: pointer;
}
.bootstrap-datetimepicker-widget table thead tr:first-child th:hover {
  background: #EFEDED;
}
.bootstrap-datetimepicker-widget table td {
  cursor: pointer;
}
.bootstrap-datetimepicker-widget table td span {
  display: inline-block;
  width: auto;
  height: 40px;
  line-height: 40px;
  background: #fff;
  border-radius: 4px;
  transition: 0.3s;
  cursor: pointer;
}
.bootstrap-datetimepicker-widget table td span.active {
  background-color: #CECCCC;
  color: #fff;
}
.bootstrap-datetimepicker-widget table td.day.active, .bootstrap-datetimepicker-widget table td.day:hover, .bootstrap-datetimepicker-widget table td.hour:hover, .bootstrap-datetimepicker-widget table td.minute:hover, .bootstrap-datetimepicker-widget table td.second:hover {
  background: #EFEDED;
}
.bootstrap-datetimepicker-widget table td.day.active {
  font-weight: 700;
}
.bootstrap-datetimepicker-widget .timepicker td {
  width: 32px;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
}
.bootstrap-datetimepicker-widget .timepicker-hour,
.bootstrap-datetimepicker-widget .timepicker-minute,
.bootstrap-datetimepicker-widget .timepicker-second {
  width: 40px;
  font-weight: 500;
  font-size: 20px;
  color: #333;
}
.bootstrap-datetimepicker-widget .timepicker .separator {
  width: 20px;
}
.bootstrap-datetimepicker-widget .btn {
  display: inline-block;
  position: relative;
  width: 40px;
  height: 32px;
  line-height: 32px;
  margin: 0;
  padding: 0;
  border-radius: 4px;
  text-align: center;
}
.bootstrap-datetimepicker-widget .btn > span {
  display: inline-block;
  width: 32px;
  height: 32px;
  background-color: transparent;
  background-image: url(../images/ico-arrow-up.svg);
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: 20px;
  vertical-align: baseline;
}
.bootstrap-datetimepicker-widget .btn > span.glyphicon-chevron-down {
  background-image: url(../images/ico-arrow-down.svg);
}
.bootstrap-datetimepicker-widget .btn:hover {
  background-color: transparent;
}
.bootstrap-datetimepicker-widget .timepicker-hours,
.bootstrap-datetimepicker-widget .timepicker-minutes {
  padding: 4px;
}

/* layout */
.bg-c {
  background-color: #f4f2f1;
}

.header {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  max-width: 768px;
  height: 60px;
  background-color: #fff;
  transform: translateY(0px);
  transition: all 0.4s;
  touch-action: none; /* 터치 이벤트 차단 */
}
.header:after {
  content: "";
  display: block;
  clear: both;
}
.header .fl-left {
  float: left;
}
.header .fl-right {
  float: right;
}
.header.scrlDown {
  transform: translateY(-60px);
}
.header > * {
  float: left;
}
.header h1 {
  margin: 20px 6.25%;
  max-width: calc(100% - 52px);
  font-family: "HDSansHead", "Malgun Gothic", "sans-serif", "Arial";
  font-size: 1.8rem;
  line-height: 2rem;
  color: #333;
  font-weight: 500;
}
.header button {
  margin: 18px 0;
}
.header button.btn-md {
  margin: 12px 0 12px;
}
.header button.fl-right {
  margin-right: 3.75%;
}

.tabMenu {
  position: fixed;
  top: 60px;
  z-index: 100;
  width: 100%;
  max-width: 768px;
  transform: translateY(0px);
}

.content {
  padding: 60px 0 0px;
  height: 100%;
}
.content .cont-wrap {
  min-height: calc(100vh - 208px);
}
.content .cont-wrap .subTabMenu {
  margin-bottom: 20px;
}
.content h2 {
  padding: 0 6.25%;
  font-size: 1.6rem;
  line-height: 2rem;
}

.main .header + .content .tabMenu {
  transition: all 0.4s;
}
.main .header + .content .cont-wrap {
  transform: translateY(0px);
  padding-bottom: 40px;
  transition: all 0.4s;
}
.main .header.scrlDown + .content .tabMenu {
  transform: translateY(-60px);
}
.main .header.scrlDown + .content .cont-wrap {
  transform: translateY(-60px);
}
.main .header:after {
  content: "";
  position: absolute;
  bottom: -1px;
  height: 1px;
  width: 100%;
  background: #EFEDED;
}
.main .cont-wrap {
  padding-top: 20px;
  padding-top: clamp(20px, 6.25vw, 40px);
}

.sub .header .icoBtn-back {
  margin-left: 3.75%;
  margin-right: 4px;
}
.sub .cont-wrap {
  padding: 0 0 20px;
}

.noData {
  padding: 60px 6.25%;
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #555;
  text-align: center;
  overflow-wrap: break-word;
  word-break: keep-all;
}

.subContList .noData {
  padding: 60px 12px;
  justify-content: center;
}

dl {
  display: flex;
}
dl dt {
  padding: 4px 0;
  width: 10%;
  min-width: 28px;
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: 500;
  color: #757575;
}
dl dd {
  width: 90%;
}

.info-box {
  padding: 12px 0;
}
.info-box dl {
  margin: 4px 0;
}
.info-box dt {
  padding: 0;
  width: 25%;
  max-width: 80px;
  font-size: 1.2rem;
  overflow-wrap: break-word;
}
.info-box dd {
  width: 75%;
  overflow-wrap: break-word;
}

/* navigation 하단 네비게이션 메뉴 */
/* error */
.error {
  text-align: center;
}
.error:after {
  content: "";
  position: relative;
  display: block;
  margin: clamp(60px, 18.75vw, 120px) auto 0;
  width: 50%;
  height: 180px;
  background: url(../images/ico-errorCorn.svg) no-repeat;
  background-size: contain;
  background-position: center bottom;
  animation: lToR 0.6s backwards;
}
.error h1 {
  color: #B38E7D;
  font-size: 3.2rem;
  font-size: clamp(32px, 10vw, 40px);
  line-height: 1.25;
  font-weight: 700;
  animation: fadeIn 0.4s backwards;
}
.error h1 span {
  position: relative;
  display: inline-block;
  margin-bottom: 4px;
  margin-bottom: clamp(4px, 1.25vw, 12px);
  padding: 0 20px;
  font-size: 6.4rem;
  font-size: clamp(64px, 20vw, 76px);
  line-height: 1.25;
  color: #555;
  background-color: #f4f2f1;
  border-radius: 20px;
}
.error h1 span:before {
  content: "";
  position: absolute;
  top: -16px;
  left: -12px;
  width: 40px;
  height: 40px;
  background: url(../images/ico-error.svg) no-repeat;
  background-size: contain;
  background-position: center;
  transition: 0.3s;
  transform: rotate(-20deg);
  animation: errorIcon 0.2s 0.2s 5 alternate linear backwards;
}
@keyframes errorIcon {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-20deg);
  }
}
.error p {
  margin: 40px auto 20px;
  max-width: 260px;
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 400;
  overflow-wrap: break-word;
  word-break: keep-all;
  animation: fadeIn 1s 0.4s backwards;
}
.error button {
  animation: fadeIn 1s 0.4s backwards;
}

/* calender */
/* jquery-ui datepicker */
.ui-datepicker {
  display: none;
  width: auto;
  padding: 12px 12px 12px;
  background-color: #fff;
  border-radius: 16px;
}
.ui-datepicker .ui-datepicker-header {
  position: relative;
  text-align: center;
  font-weight: 700;
}
.ui-datepicker .ui-datepicker-title {
  font-size: 1.4rem;
  line-height: 2rem;
}
.ui-datepicker .ui-datepicker-year,
.ui-datepicker .ui-datepicker-month {
  vertical-align: baseline;
}
.ui-datepicker .ui-widget.ui-widget-content {
  min-width: 240px;
  border-radius: 16px;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  top: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #fff;
  border-radius: 4px;
}
.ui-datepicker .ui-datepicker-prev {
  position: absolute;
  left: 0;
}
.ui-datepicker .ui-datepicker-prev span {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../images/ico-arrow-left.svg");
  background-size: contain;
  background-position: center;
  text-indent: -9999px;
}
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  right: 0;
}
.ui-datepicker .ui-datepicker-next span {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../images/ico-arrow-right.svg");
  background-size: contain;
  background-position: center;
  text-indent: -9999px;
}
.ui-datepicker table {
  margin-top: 12px;
  width: 100%;
  text-align: center;
}
.ui-datepicker th {
  padding: 0;
  font-size: 1rem;
  line-height: 2rem;
  color: #333;
  font-weight: 500;
}
.ui-datepicker td {
  padding: 2px 0;
  font-size: 1.2rem;
  line-height: 1.6rem;
}
.ui-datepicker td span,
.ui-datepicker td a {
  display: block;
  margin: 0 auto;
  padding: 4px 0;
  width: 24px;
  height: 24px;
}
.ui-datepicker .ui-state-default,
.ui-datepicker .ui-widget-content .ui-state-default,
.ui-datepicker .ui-widget-header .ui-state-default,
.ui-datepicker .ui-button,
.ui-datepicker .ui-button.ui-state-disabled:hover,
.ui-datepicker .ui-button.ui-state-disabled:active {
  color: #333;
  font-weight: 500;
  border-radius: 50%;
}
.ui-datepicker .ui-state-highlight,
.ui-datepicker .ui-widget-content .ui-state-highlight,
.ui-datepicker .ui-widget-header .ui-state-highlight {
  color: #333;
  background: #DDDBDB;
}
.ui-datepicker .ui-state-active,
.ui-datepicker .ui-widget-content .ui-state-active,
.ui-datepicker .ui-widget-header .ui-state-active,
.ui-datepicker a.ui-button:active,
.ui-datepicker .ui-button:active,
.ui-datepicker .ui-button.ui-state-active:hover,
.ui-datepicker .ui-state-default:hover,
.ui-datepicker .ui-widget-content .ui-state-default:hover,
.ui-datepicker .ui-widget-header .ui-state-default:hover,
.ui-datepicker .ui-button:hover {
  color: #fff;
  background: #4C6893;
  font-weight: 700;
}
.ui-datepicker .ui-state-default.ui-state-active {
  color: #fff;
  background: #4C6893;
}
.ui-datepicker .ui-state-disabled,
.ui-datepicker .ui-widget-content .ui-state-disabled,
.ui-datepicker .ui-widget-header .ui-state-disabled {
  opacity: 0.35;
  -ms-filter: "alpha(opacity=35)";
}
.ui-datepicker .ui-state-disabled {
  cursor: default !important;
  pointer-events: none;
}

/* calender flatpikr 기간 선택 캘린더 */
.datePicker-wrap.multiple .flatpickr-calendar {
  padding: 12px;
  border-radius: 16px;
  box-shadow: none;
}
.datePicker-wrap.multiple .flatpickr-calendar:before,
.datePicker-wrap.multiple .flatpickr-calendar:after {
  display: none;
}
.datePicker-wrap.multiple .flatpickr-calendar.inline {
  width: 100%;
}
.datePicker-wrap.multiple .flatpickr-innerContainer,
.datePicker-wrap.multiple .flatpickr-weekdays,
.datePicker-wrap.multiple .flatpickr-days {
  overflow: visible;
}
.datePicker-wrap.multiple .flatpickr-months .flatpickr-prev-month,
.datePicker-wrap.multiple .flatpickr-months .flatpickr-next-month {
  top: 12px;
  padding: 0;
  height: auto;
}
.datePicker-wrap.multiple .flatpickr-current-month .numInputWrapper {
  padding: 0 4px;
  width: auto;
  font-size: 1.4rem;
  font-weight: 500;
  vertical-align: baseline;
  border-radius: 4px;
}
.datePicker-wrap.multiple .flatpickr-current-month .numInputWrapper input {
  padding: 0;
  width: 42px;
  text-align: right;
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: 700;
}
.datePicker-wrap.multiple .flatpickr-current-month .numInputWrapper span {
  display: none;
  left: 0px;
  padding: 0;
  padding-left: 1px;
  width: 12px;
}
.datePicker-wrap.multiple .numInputWrapper:hover {
  background: transparent;
}
.datePicker-wrap.multiple .flatpickr-current-month .numInputWrapper:after {
  content: "년";
}
.datePicker-wrap.multiple .flatpickr-current-month span.cur-month {
  font-size: 1.4rem;
  line-height: 2rem;
}
.datePicker-wrap.multiple .flatpickr-current-month span.cur-month:hover {
  background: transparent;
}
.datePicker-wrap.multiple .flatpickr-months .flatpickr-prev-month {
  left: 12px;
  transition: 0.3s;
}
.datePicker-wrap.multiple .flatpickr-months .flatpickr-next-month {
  right: 12px;
  transition: 0.3s;
}
.datePicker-wrap.multiple .flatpickr-months .flatpickr-prev-month:hover svg,
.datePicker-wrap.multiple .flatpickr-months .flatpickr-next-month:hover svg {
  fill: unset;
}
.datePicker-wrap.multiple .flatpickr-months .flatpickr-prev-month svg,
.datePicker-wrap.multiple .flatpickr-months .flatpickr-next-month svg {
  width: 20px;
  height: 20px;
}
.datePicker-wrap.multiple .flatpickr-months .flatpickr-prev-month.flatpickr-disabled,
.datePicker-wrap.multiple .flatpickr-months .flatpickr-next-month.flatpickr-disabled {
  display: block;
  opacity: 0.35;
}
.datePicker-wrap.multiple .flatpickr-current-month {
  padding: 0;
}
.datePicker-wrap.multiple .flatpickr-rContainer {
  width: 100%;
}
.datePicker-wrap.multiple .flatpickr-days {
  width: 100%;
}
.datePicker-wrap.multiple .dayContainer {
  width: 100%;
  min-width: auto;
  max-width: unset;
}
.datePicker-wrap.multiple .flatpickr-day {
  flex-basis: auto;
  max-width: unset;
  width: 24px;
  height: 24px;
  margin: 4px calc((14.2857142857% - 24px) / 2);
  line-height: 2.4rem;
}
.datePicker-wrap.multiple.multiple .flatpickr-day {
  -webkit-flex-basis: 14.2857142857%;
  -ms-flex-preferred-size: 14.2857142857%;
  flex-basis: 14.2857142857%;
  width: auto;
  margin: 4px 0;
}
.datePicker-wrap.multiple .flatpickr-day.prevMonthDay:not(.inRange),
.datePicker-wrap.multiple .flatpickr-day.nextMonthDay:not(.inRange) {
  margin: 0;
  height: 32px;
  line-height: 3.2rem;
  width: 14.2857142857%;
  background-color: rgba(0, 0, 0, 0.03);
  border-radius: 0;
}
.datePicker-wrap.multiple.multiple .flatpickr-day.prevMonthDay.selected, .datePicker-wrap.multiple.multiple .flatpickr-day.nextMonthDay.selected {
  height: 24px;
  margin: 4px 0;
  line-height: 2.4rem;
}
.datePicker-wrap.multiple .flatpickr-day.today {
  background-color: #DDDBDB;
  border-color: #DDDBDB;
}
.datePicker-wrap.multiple .flatpickr-day.prevMonthDay:first-child,
.datePicker-wrap.multiple .flatpickr-day.nextMonthDay:first-child {
  border-top-left-radius: 8px;
}
.datePicker-wrap.multiple .flatpickr-day.prevMonthDay:last-child,
.datePicker-wrap.multiple .flatpickr-day.nextMonthDay:last-child {
  border-bottom-right-radius: 8px;
}
.datePicker-wrap.multiple .flatpickr-day.inRange,
.datePicker-wrap.multiple .flatpickr-day.prevMonthDay.inRange,
.datePicker-wrap.multiple .flatpickr-day.nextMonthDay.inRange,
.datePicker-wrap.multiple .flatpickr-day.today.inRange,
.datePicker-wrap.multiple .flatpickr-day.prevMonthDay.today.inRange,
.datePicker-wrap.multiple .flatpickr-day.nextMonthDay.today.inRange,
.datePicker-wrap.multiple .flatpickr-day:hover,
.datePicker-wrap.multiple .flatpickr-day.prevMonthDay:hover,
.datePicker-wrap.multiple .flatpickr-day.nextMonthDay:hover,
.datePicker-wrap.multiple .flatpickr-day:focus,
.datePicker-wrap.multiple .flatpickr-day.prevMonthDay:focus,
.datePicker-wrap.multiple .flatpickr-day.nextMonthDay:focus {
  background: #EFEDED;
  border-color: #EFEDED;
}
.datePicker-wrap.multiple .flatpickr-day.selected.startRange,
.datePicker-wrap.multiple .flatpickr-day.startRange.startRange,
.datePicker-wrap.multiple .flatpickr-day.endRange.startRange,
.datePicker-wrap.multiple .flatpickr-day.selected.endRange,
.datePicker-wrap.multiple .flatpickr-day.startRange.endRange,
.datePicker-wrap.multiple .flatpickr-day.endRange.endRange {
  border-radius: 50px;
}
.datePicker-wrap.multiple .flatpickr-day.inRange:before,
.datePicker-wrap.multiple .flatpickr-day.inRange:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: -1px;
  left: -20px;
  width: 20px;
  height: 24px;
  border-radius: 0;
  z-index: -1;
  background-color: #EFEDED;
}
.datePicker-wrap.multiple .flatpickr-day.inRange:after {
  left: unset;
  right: -20px;
}
.datePicker-wrap.multiple .flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),
.datePicker-wrap.multiple .flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),
.datePicker-wrap.multiple .flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
  -webkit-box-shadow: -20px 0 0 #EFEDED;
  box-shadow: -20px 0 0 #EFEDED;
  z-index: -1;
}
.datePicker-wrap.multiple .flatpickr-day.inRange {
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.datePicker-wrap.multiple .flatpickr-day.selected,
.datePicker-wrap.multiple .flatpickr-day.startRange,
.datePicker-wrap.multiple .flatpickr-day.endRange,
.datePicker-wrap.multiple .flatpickr-day.selected.inRange,
.datePicker-wrap.multiple .flatpickr-day.startRange.inRange,
.datePicker-wrap.multiple .flatpickr-day.endRange.inRange,
.datePicker-wrap.multiple .flatpickr-day.selected:focus,
.datePicker-wrap.multiple .flatpickr-day.startRange:focus,
.datePicker-wrap.multiple .flatpickr-day.endRange:focus,
.datePicker-wrap.multiple .flatpickr-day.selected:hover,
.datePicker-wrap.multiple .flatpickr-day.startRange:hover,
.datePicker-wrap.multiple .flatpickr-day.endRange:hover,
.datePicker-wrap.multiple .flatpickr-day.selected.prevMonthDay,
.datePicker-wrap.multiple .flatpickr-day.startRange.prevMonthDay,
.datePicker-wrap.multiple .flatpickr-day.endRange.prevMonthDay,
.datePicker-wrap.multiple .flatpickr-day.selected.nextMonthDay,
.datePicker-wrap.multiple .flatpickr-day.startRange.nextMonthDay,
.datePicker-wrap.multiple .flatpickr-day.endRange.nextMonthDay {
  background-color: #4C6893;
  border-color: #4C6893;
}
.datePicker-wrap.multiple .flatpickr-day.startRange.endRange {
  background-color: #7A92B7;
  border: 2px solid #4C6893;
  line-height: 2.3rem;
}
.datePicker-wrap.multiple .flatpickr-day.flatpickr-disabled,
.datePicker-wrap.multiple .flatpickr-day.flatpickr-disabled:hover,
.datePicker-wrap.multiple .flatpickr-day.prevMonthDay:not(.selected),
.datePicker-wrap.multiple .flatpickr-day.nextMonthDay:not(.selected),
.datePicker-wrap.multiple .flatpickr-day.notAllowed,
.datePicker-wrap.multiple .flatpickr-day.notAllowed.prevMonthDay,
.datePicker-wrap.multiple .flatpickr-day.notAllowed.nextMonthDay {
  color: rgba(0, 0, 0, 0.3);
}

/* slick */
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  display: table;
  content: "";
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

/* 공통사항 */
html, body {
  margin: 0 auto;
  font-family: "HDSans", "Malgun Gothic", "sans-serif", "Arial";
  font-size: 0.625em;
  line-height: 1;
  font-weight: 400;
  color: #111;
  max-width: 768px;
}

/* login 로그인 */
.login-wrap {
  margin: 0 auto;
  max-width: 768px;
  max-width: 400px;
  height: calc(100% - clamp(60px, 18.75vw, 100px));
  overflow: hidden;
}
.login-wrap .logo-wrap {
  margin-top: 60px;
  margin-top: clamp(60px, 18.75vw, 100px);
  padding: 0 6.25%;
  width: 100%;
  color: #002C5F;
  text-align: center;
}
.login-wrap .logo-wrap img {
  width: 164px;
  width: clamp(84px, 41.25vw, 164px);
}
.login-wrap .form-wrap {
  padding: 40px 6.25% 16px;
  padding: clamp(40px, 12.5vw, 80px) 6.25% 16px;
}
.login-wrap .form-wrap .inputBox.withBtn div {
  position: relative;
}
.login-wrap .form-wrap .inputBox.withBtn .btn-certifyAgain {
  display: none;
  position: absolute;
  top: 4px;
  right: 4px;
  padding: 8px 12px;
  width: 60px;
  height: auto;
  font-size: 1.2rem;
  line-height: 2rem;
  color: #fff;
  background-color: #757575;
  border: none;
  border-radius: 18px;
}
.login-wrap .btn-confirm.login {
  margin: 40px 0;
  height: 56px;
  animation: showUp 0.4s forwards;
}

/* 개인정보 제공 동의 */
.main.privacy .info-box {
  margin: 12px 6.25%;
  padding: 16px 12px;
  font-size: 1.4rem;
  line-height: 2.8rem;
  border-radius: 12px;
}
.main.privacy .flt-box {
  margin: 0 6.25% 40px;
}

/* myRoom.html 02_myRoom */
.icoBtn-power {
  margin-left: 20px;
  margin-left: clamp(12px, 6.25vw, 20px);
  width: 40px;
  width: clamp(36px, 12.5vw, 56px);
  height: 40px;
  height: clamp(36px, 12.5vw, 56px);
  border-radius: 12px;
  background: #f5f5f5 url(../images/ico-power-off.svg) no-repeat;
  background-size: 20px;
  background-size: clamp(20px, 6.25vw, 32px);
  background-position: center;
  box-shadow: inset 0 -1px 2px 1px rgba(0, 0, 0, 0.2), 0 1px 4px rgba(0, 0, 0, 0.1);
  transition: 0.4s;
}
.icoBtn-power:active {
  box-shadow: inset 0 2px 4px 2px rgba(0, 0, 0, 0.2);
}
.icoBtn-power.on {
  background: #B38E7D url(../images/ico-power-on.svg) no-repeat;
  background-size: 24px;
  background-size: clamp(24px, 7.5vw, 36px);
  background-position: center;
  box-shadow: inset 0 0px 4px 2px rgba(0, 0, 0, 0.2);
}

.tempDisplay {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px;
  padding: clamp(8px, 2.5vw, 16px) clamp(20px, 6.25vw, 32px);
  width: 100%;
  font-size: 1.4rem;
  color: #fff;
  background-color: #555;
  border: 1px solid #DDDBDB;
  border-radius: 12px;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.3), 0 0 4px rgba(0, 0, 0, 0.2);
}
.tempDisplay b {
  font-weight: 500;
  word-break: keep-all;
}
.tempDisplay p {
  font-size: 2.4rem;
  line-height: 2.8rem;
  font-weight: 400;
}
.tempDisplay p:after {
  content: "℃";
  margin-left: 4px;
  font-size: 1.2rem;
  line-height: 1.6rem;
  vertical-align: super;
  font-family: "HDSansHead", "Malgun Gothic", "sans-serif", "Arial";
  color: #aaa;
  font-weight: 500;
}

.list-wrap.myRoomList .list-box {
  position: relative;
  margin-top: 12px;
  height: 136px;
  background-color: #EFEDED;
  transition: 0.3s;
  overflow: hidden;
}
.list-wrap.myRoomList .list-box .tit-wrap {
  width: calc(100% - 44px);
  color: #757575;
}
.list-wrap.myRoomList .list-box .tit a {
  display: inline-block;
  margin: 4px 0 0;
  padding-right: 20px;
  max-width: 100%;
  color: #111;
  line-height: 2.4rem;
  text-indent: 0;
  background: url(../images/ico-detail-lt.svg) no-repeat;
  background-size: 16px;
  background-position: right center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.list-wrap.myRoomList .list-box .state {
  position: relative;
  font-size: 1.3rem;
  line-height: 2rem;
  font-weight: 500;
}
.list-wrap.myRoomList .list-box .state.on:before {
  content: "";
  position: absolute;
  right: -6px;
  bottom: calc(50% - 4px);
  width: 2px;
  height: 8px;
  background-color: #44C487;
  border-radius: 1px;
  transform-origin: center bottom;
  animation: working 0.8s alternate linear infinite;
}
.list-wrap.myRoomList .list-box .state.on:after {
  content: "";
  position: absolute;
  right: -10px;
  bottom: calc(50% - 4px);
  width: 2px;
  height: 8px;
  background-color: #44C487;
  border-radius: 1px;
  transform-origin: bottom center;
  animation: working 0.8s 0.4s alternate linear infinite;
}
@keyframes working {
  0% {
    opacity: 0.5;
    transform: scaleY(30%) translateY(0px);
  }
  100% {
    opacity: 1;
    transform: scaleY(100%) translateY(0px);
  }
}
.list-wrap.myRoomList .icoBtn-power {
  margin-left: 8px;
  width: 36px;
  height: 36px;
  background-size: 16px;
  background-size: clamp(16px, 5vw, 24px);
}
.list-wrap.myRoomList .icoBtn-power.on {
  background-size: 20px;
  background-size: clamp(20px, 6.25vw, 28px);
}
.list-wrap.myRoomList .tempNow {
  margin-top: 12px;
  text-align: center;
}
.list-wrap.myRoomList .tempDisplay {
  height: 48px;
  transition: 0.4s;
  background-color: #757575;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2), 0 0 4px rgba(0, 0, 0, 0.2);
}
.list-wrap.myRoomList .tempDisplay p {
  font-size: 2rem;
}
.list-wrap.myRoomList .tempBtn-wrap {
  display: none;
  animation: fadeIn 0.3s 0.2s backwards;
}
.list-wrap.myRoomList .tempBtn-wrap b {
  font-weight: 500;
}
.list-wrap.myRoomList .tempBtn-wrap input {
  height: 32px;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
}
.list-wrap.myRoomList .num-box {
  max-width: 160px;
}
.list-wrap.myRoomList .num-box input {
  width: calc(100% - 64px);
}
.list-wrap.myRoomList .list-box.active {
  background-color: #fff;
}
.list-wrap.myRoomList .list-box.active .tit a {
  background: url(../images/ico-detail-dk.svg) no-repeat;
  background-size: 16px;
  background-position: right center;
}
.list-wrap.myRoomList .list-box.active .tempDisplay {
  margin-right: 8px;
  padding: 8px 12px;
  width: calc(50% - 8px);
  border-radius: 8px;
  background-color: #555;
}
.list-wrap.myRoomList .list-box.active .tempDisplay b {
  width: 35%;
  font-size: 1.2rem;
  line-height: 1.4rem;
  transition: 0.3s;
}
.list-wrap.myRoomList .list-box.active .tempBtn-wrap {
  display: block;
  width: 50%;
}
.list-wrap.myRoomList .icoBtn-minus {
  width: 32px;
  height: 32px;
  background: url(../images/ico-minus.svg) no-repeat;
  background-size: 24px;
  background-position: center;
  border: 1px solid #DDDBDB;
}
.list-wrap.myRoomList .icoBtn-plus {
  width: 32px;
  height: 32px;
  background: url(../images/ico-plus.svg) no-repeat;
  background-size: 24px;
  background-position: center;
  border: 1px solid #DDDBDB;
}

/* myRoom.html */
.temp-wrap {
  margin: 12px auto 0;
  padding: 24px 20px;
  width: 87.5%;
  background-color: #f4f2f1;
  border: 1px solid #fff;
  border-radius: 16px;
  box-shadow: inset 0 -10px 48px 12px rgba(191, 173, 165, 0.2), 0 0px 4px rgba(0, 0, 0, 0.3);
  /* temperature slider */
}
.temp-wrap .tempNow {
  display: flex;
  justify-content: space-between;
  margin: 0 auto 60px;
}
.temp-wrap .tempNow .tempDisplay {
  padding: 16px 20px;
  padding: clamp(16px, 5vw, 28px) clamp(20px, 6.25vw, 32px);
  width: calc(100% - 60px);
  width: calc(100% - clamp(52px, 18.75vw, 60px));
}
.temp-wrap .tempCtrl {
  margin: 0 auto;
}
.temp-wrap .tempCtrl .tempDisplay {
  display: block;
  margin: 0 auto;
  padding: 48px 0px 16px;
  padding: clamp(40px, 12.5vw, 120px) 0px 16px;
  width: 160px;
  width: clamp(140px, 43.75vw, 320px);
  height: 160px;
  height: clamp(140px, 43.75vw, 320px);
  text-align: center;
  border: 1px solid #CECCCC;
  background: #EFEDED;
  border-radius: 50%;
  box-shadow: none;
  transition: box-shadow 1s;
}
.temp-wrap .tempCtrl .tempDisplay b {
  font-size: 1.2rem;
  font-size: clamp(1.2rem, 3.75vw, 2rem);
  color: #999;
  font-weight: 600;
}
.temp-wrap .tempCtrl .tempDisplay input {
  margin-top: 12px;
  margin-top: clamp(10px, 3.125vw, 20px);
  width: 100%;
  font-size: 3.6rem;
  font-size: clamp(3.6rem, 11.25vw, 6rem);
  line-height: 1.1;
  font-weight: 500;
  color: #757575;
  text-align: center;
  background: none;
}
.temp-wrap .tempCtrl .num-box {
  margin: 0 auto;
  width: 60%;
  max-width: 320px;
}
.temp-wrap .tempCtrl button {
  position: relative;
  margin-top: 12px;
  margin-top: clamp(12px, 3.75vw, 32px);
  width: 45%;
  height: 40px;
  height: clamp(36px, 11.25vw, 60px);
  background-color: #BBB9B9;
}
.temp-wrap .tempCtrl .icoBtn-minus {
  margin-right: 10%;
}
.temp-wrap .tempCtrl .icoBtn-minus:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: calc(50% - 1px);
  left: calc(50% - 10px);
  width: 20px;
  height: 2px;
  background-color: #fff;
}
.temp-wrap .tempCtrl .icoBtn-plus:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: calc(50% - 1px);
  left: calc(50% - 10px);
  width: 20px;
  height: 2px;
  background-color: #fff;
}
.temp-wrap .tempCtrl .icoBtn-plus:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: calc(50% - 10px);
  left: calc(50% - 1px);
  width: 2px;
  height: 20px;
  background-color: #fff;
}
.temp-wrap .tempCtrl.on .tempDisplay {
  background: #fff;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2), 0 0 4px rgba(0, 0, 0, 0.2);
}
.temp-wrap .tempCtrl.on .tempDisplay b {
  color: #757575;
}
.temp-wrap .tempCtrl.on .tempDisplay input {
  color: #333;
}
.temp-wrap .tempCtrl.on button {
  background-color: #BFADA5;
}
.temp-wrap .tempCtrl.on button:active {
  background-color: #B38E7D;
}
.temp-wrap .manage {
  margin-top: 40px;
  margin-top: clamp(40px, 12.5vw, 80px);
}
.temp-wrap .manage .list-box {
  align-items: center;
  padding: 12px;
  width: 100%;
  box-shadow: none;
  animation: showUp 0.6s backwards;
  transition: 0.3s;
}
.temp-wrap .manage dt {
  padding: 0;
  padding-right: 8px;
  width: 64px;
  color: #999;
  text-align: center;
  line-height: 2.4rem;
}
.temp-wrap .manage dd {
  width: calc(100% - 64px);
  color: #333;
}
.temp-wrap .manage dd p {
  width: calc(100% - 28px);
  line-height: 2.4rem;
  color: #111;
  font-weight: 400;
}
.temp-wrap .manage dd span {
  display: inline-block;
  margin-right: 8px;
  font-size: 1.4rem;
  color: #555;
  font-weight: 400;
}
.temp-wrap .manage dd span:last-child {
  margin-right: 0;
}
.temp-wrap .manage .icoBtn-next {
  float: right;
  margin-left: 4px;
  align-self: center;
}
.temp-wrap .manage dl.ctrlReserv dd p {
  line-height: 2.4rem;
}
.temp-wrap .manage dl.ctrlReserv dd span {
  position: relative;
  line-height: 2rem;
  vertical-align: baseline;
}
.temp-wrap .manage dl.ctrlReserv dd span:before {
  content: "";
  display: inline-block;
  margin: 4px 2px 4px 0px;
  width: 12px;
  height: 12px;
  background-color: #44C487;
  border-radius: 50%;
  vertical-align: top;
}
.temp-wrap .manage dl.ctrlReserv dd .turnOn:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 6px;
  left: 5px;
  width: 2px;
  height: 8px;
  text-align: center;
  background-color: #fff;
  border-radius: 2px;
}
.temp-wrap .manage dl.ctrlReserv dd .turnOff:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 9px;
  left: 2px;
  width: 8px;
  height: 2px;
  text-align: center;
  background-color: #fff;
  border-radius: 2px;
}
.temp-wrap .slider .rs-disabled {
  opacity: 1;
}
.temp-wrap .slider .rs-control {
  margin: 0 auto;
}
.temp-wrap .slider .rs-inner-container {
  background: url(../images/img-temp-bg.svg) no-repeat;
  background-size: contain;
  background-position: center top;
}
.temp-wrap .slider .rs-control .rs-range-color {
  background-color: transparent;
}
.temp-wrap .slider .rs-range-color {
  background-color: transparent;
}
.temp-wrap .slider .rs-path-color {
  background-color: #eee;
  background-color: transparent;
}
.temp-wrap .slider .rs-bg-color {
  background-color: transparent;
}
.temp-wrap .slider {
  position: relative;
  margin: 0 auto;
}
.temp-wrap .slider:after {
  content: "";
  display: block;
  position: absolute;
  top: 20px;
  left: calc(50% - 90px);
  width: 180px;
  height: 180px;
  background: url(../images/img-temp-dial.svg) no-repeat;
  background-size: contain;
  background-position: center top;
  border-radius: 50%;
  box-shadow: 0 4px 8px 2px rgba(0, 0, 0, 0.3);
}
.temp-wrap .slider .rs-border {
  border-color: transparent;
}
.temp-wrap .slider .rs-handle.rs-move {
  cursor: grab;
}

.bs-driveMode .subContList li,
.bs-windSpeed .subContList li {
  display: block;
  text-align: center;
  cursor: pointer;
  transition: 0.1s;
}
.bs-driveMode .subContList .on,
.bs-windSpeed .subContList .on {
  color: #4C6893;
  font-size: 1.6rem;
  font-weight: 500;
}

.pop-reserv .settingList {
  padding: 20px 0;
  transition: 0.3s;
}
.pop-reserv .settingList li {
  transition: 0.3s;
}
.pop-reserv .settingList li .txt-box:after {
  content: "";
  display: block;
  clear: both;
}
.pop-reserv .settingList li .txt-box .fl-left {
  float: left;
}
.pop-reserv .settingList li .txt-box .fl-right {
  float: right;
}
.pop-reserv .settingList li .txt-box b {
  margin-bottom: 0;
  line-height: 2.8rem;
}
.pop-reserv .settingList li .txt-box button {
  display: none;
  font-size: 1.4rem;
  line-height: 2rem;
  color: #555;
  padding: 0;
  padding-left: 4px;
  border: none;
  width: auto;
  height: auto;
  font-weight: 400;
  animation: showDown 0.3s;
}
.pop-reserv .settingList li .txt-box button span {
  margin-right: 2px;
  font-size: 1.4rem;
  font-weight: 500;
  vertical-align: baseline;
}
.pop-reserv .switchBtn input + b {
  margin-bottom: 0;
}

.bs-reservTime .flex-box {
  justify-content: center;
  align-items: center;
  overflow: unset;
}
.bs-reservTime p {
  line-height: 2.4rem;
}
.bs-reservTime .timer-slider {
  width: 28px;
  height: 88px;
  text-align: center;
}
.bs-reservTime .timer-slider li {
  margin: 4px 0;
  width: 100%;
  font-size: 1.4rem;
  line-height: 2rem;
  color: #999;
}
.bs-reservTime .timer-slider .slick-slide.slick-current.slick-active {
  color: #4C6893;
  font-size: 1.8rem;
  font-weight: 500;
}
.bs-reservTime .slick-list {
  padding: 0 !important;
}
.bs-reservTime .btn-check {
  color: #fff;
  border: 1px solid #7A92B7;
  background-color: #7A92B7;
}

/* dispaly w 376px 이상 */
@media screen and (min-width: 376px) {
  .list-wrap.myRoomList .list-box .tempDisplay {
    max-width: 50%;
  }
}
/* dispaly w 501px 이상 */
@media screen and (min-width: 501px) {
  .list-wrap.myRoomList {
    margin: 0 6.25%;
  }
  .list-wrap.myRoomList ul:after {
    content: "";
    display: block;
    clear: both;
  }
  .list-wrap.myRoomList ul .fl-left {
    float: left;
  }
  .list-wrap.myRoomList ul .fl-right {
    float: right;
  }
  .list-wrap.myRoomList .list-box {
    float: left;
    width: 48.5%;
  }
  .list-wrap.myRoomList .list-box:nth-child(odd) {
    margin-right: 3%;
  }
  .list-wrap.myRoomList .list-box .tempDisplay {
    max-width: 100%;
  }
  .list-wrap.myRoomList .list-box.active .tempDisplay {
    margin-right: 4px;
    width: calc(50% - 4px);
  }
  .list-wrap.myRoomList .list-box.active .tempDisplay b {
    width: 40%;
  }
}
/* dispaly w 641px 이상 */
@media screen and (min-width: 641px) {
  .list-wrap.myRoomList .list-box.active .tempDisplay {
    margin-right: 8px;
    width: calc(50% - 8px);
  }
}
/* dispaly w 255px 이상 319px 이하 */
@media screen and (min-width: 255px) and (max-width: 319px) {
  .temp-wrap .manage dl.ctrlReserv dd {
    min-width: 125px;
  }
}
/* conveni-ptRoom.html conveni-state.html 04_conveni */
/* conveni-ptRoom */
/* tabCont */
.cont-wrap.tabCont .tabList {
  margin: 0 6.25% 20px;
}
.cont-wrap.tabCont b.tit {
  display: block;
  margin-bottom: 8px;
  font-size: 1.4rem;
  line-height: 1.6rem;
  color: #333;
}
.cont-wrap.tabCont .select-box + .select-box {
  margin-top: 10px;
}
.cont-wrap.tabCont .select {
  color: #333;
  font-weight: 400;
}
.cont-wrap.tabCont .radio-box {
  display: block;
  padding: 16px 12px;
  background-color: #fff;
  border-radius: 16px;
}
.cont-wrap.tabCont .radio-box:after {
  content: "";
  display: block;
  clear: both;
}
.cont-wrap.tabCont .radio-box .fl-left {
  float: left;
}
.cont-wrap.tabCont .radio-box .fl-right {
  float: right;
}
.cont-wrap.tabCont .radio-box label {
  display: block;
  float: left;
  width: 48%;
  margin-bottom: 12px;
  font-size: 1.4rem;
  line-height: 1.6rem;
  color: #333;
  word-break: break-all;
  transition: 0.3s;
}
.cont-wrap.tabCont .radio-box label:nth-of-type(odd) {
  margin-right: 4%;
}
.cont-wrap.tabCont .radio-box label:last-child {
  margin-bottom: 0;
}
.cont-wrap.tabCont .radio-box input {
  margin-right: 8px;
}
.cont-wrap.tabCont .txtInfo-box {
  margin: 40px 6.25% 0;
}
.cont-wrap.tabCont [class*=tabCont-] {
  display: none;
}
.cont-wrap.tabCont [class*=tabCont-].active {
  display: block;
}
.cont-wrap.tabCont [class*=tabCont-state] li .flex-box {
  align-items: center;
  justify-content: space-between;
}
.cont-wrap.tabCont [class*=tabCont-state] li .flex-box .btn-wrap {
  padding: 0;
}
.cont-wrap.tabCont .tabCont-state li div.room {
  margin: 4px 0;
}
.cont-wrap.tabCont .tabCont-state li .state b {
  padding-left: 4px;
  color: #7A92B7;
  font-weight: 500;
}
.cont-wrap.tabCont .list-box.canceled {
  position: relative;
}
.cont-wrap.tabCont .list-box.canceled:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 16px;
}
.cont-wrap.tabCont .list-box.canceled .state .btn-wrap {
  display: none;
}
.cont-wrap.tabCont .list-box.canceled .state p {
  margin-top: 4px;
  font-size: 1.4rem;
  color: #757575;
}
.cont-wrap.tabCont .list-box {
  box-shadow: none;
  font-size: 1.4rem;
  line-height: 2rem;
  color: #333;
  transition: 0.3s;
}
.cont-wrap.tabCont .list-box .img-box.noImg {
  background-color: #EFEDED;
}
.cont-wrap.tabCont .list-box .img-box.noImg div img {
  max-width: 120%;
  max-height: 120%;
}
.cont-wrap.tabCont .list-box > div i {
  display: inline-block;
  margin-right: 4px;
  width: 20px;
  height: 20px;
  vertical-align: text-bottom;
}
.cont-wrap.tabCont .list-box .tit-box {
  margin: 4px 0 0;
}
.cont-wrap.tabCont .list-box .tit-box p {
  font-size: 1.4rem;
  font-weight: 400;
  overflow-wrap: break-word;
  word-break: break-all;
}
.cont-wrap.tabCont .list-box .img-box {
  margin: 0 12px 4px;
  width: calc(100% - 24px);
  height: 140px;
  height: clamp(140px, 43.75vw, 240px);
  border-radius: 8px;
  background-color: #f4f2f1;
}
.cont-wrap.tabCont .list-box .img-box .tit-box {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 4px 12px;
  width: 100%;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 500;
  background-color: rgba(51, 51, 51, 0.8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cont-wrap.tabCont .list-box .txt-box p {
  margin-top: 4px;
  font-size: 1.2rem;
  color: #555;
  font-weight: 400;
  vertical-align: middle;
  min-width: 45%;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cont-wrap.tabCont .list-box .date i {
  background: url(../images/ico-calendar.svg) no-repeat;
  background-size: contain;
}
.cont-wrap.tabCont .list-box .place i {
  background: url(../images/ico-place.svg) no-repeat;
  background-size: contain;
}
.cont-wrap.tabCont .list-box .time i {
  background: url(../images/ico-time.svg) no-repeat;
  background-size: contain;
}
.cont-wrap.tabCont .list-box .call i {
  background: url(../images/ico-call.svg) no-repeat;
  background-size: contain;
}
.cont-wrap.tabCont .list-box .info i {
  background: url(../images/ico-info.svg) no-repeat;
  background-size: contain;
}
.cont-wrap.tabCont .list-box .cost i {
  background: url(../images/ico-cost.svg) no-repeat;
  background-size: contain;
}
.cont-wrap.tabCont .list-box .room i {
  background: url(../images/ico-room.svg) no-repeat;
  background-size: contain;
}
.cont-wrap.tabCont .noData {
  padding: 60px 0;
}

@media screen and (min-width: 768px) {
  .cont-wrap.tabCont [class*=tabCont-] > ul {
    padding: 0 20px;
  }
  .cont-wrap.tabCont [class*=tabCont-] > ul:after {
    content: "";
    display: block;
    clear: both;
  }
  .cont-wrap.tabCont [class*=tabCont-] > ul .fl-left {
    float: left;
  }
  .cont-wrap.tabCont [class*=tabCont-] > ul .fl-right {
    float: right;
  }
  .cont-wrap.tabCont [class*=tabCont-] > ul .list-box {
    float: left;
    margin-right: 20px;
    width: calc(50% - 10px);
  }
  .cont-wrap.tabCont [class*=tabCont-] > ul .list-box:nth-child(2n) {
    margin-right: 0;
  }
  .cont-wrap.tabCont .radio-box label {
    margin-right: 5%;
    width: 30%;
  }
  .cont-wrap.tabCont .radio-box label:nth-of-type(odd) {
    margin-right: 5%;
  }
  .cont-wrap.tabCont .radio-box label:nth-of-type(3n) {
    margin-right: 0;
  }
}
/* more.html 05_more */
/* 더보기 */
.main .cont-wrap.accountInfo {
  padding-top: 0;
}

.accountInfo .info-box {
  padding: 32px 6.25%;
  background-color: #f4f2f1;
}
.accountInfo .info-box p {
  margin-bottom: 20px;
  font-size: 2rem;
  line-height: 2.4rem;
  font-weight: 500;
  word-break: break-all;
}
.accountInfo .info-box dt, .accountInfo .info-box dd {
  font-size: 1.6rem;
  line-height: 2rem;
  color: #333;
  font-weight: 400;
}
.accountInfo .menu-wrap {
  padding: 12px 6.25%;
  height: 100%;
  background-color: #fff;
}
.accountInfo .menu-wrap ul {
  margin-bottom: 12px;
  border-bottom: 1px solid #EFEDED;
}
.accountInfo .menu-wrap li {
  margin: 20px 12px 40px;
  font-size: 1.6rem;
  line-height: 2rem;
}
.accountInfo .menu-wrap li:last-child {
  margin-bottom: 32px;
}
.accountInfo .menu-wrap li.contNew:after {
  content: "new";
  margin-left: 4px;
  color: #FF5470;
  font-size: 1rem;
  font-weight: 500;
  vertical-align: text-bottom;
}
.accountInfo .menu-wrap li i {
  display: inline-block;
  margin-right: 4px;
  width: 20px;
  height: 20px;
  vertical-align: top;
}
.accountInfo .menu-wrap .btn-text {
  margin: 0 12px;
}
.accountInfo .ico-alertSet {
  background: url(../images/ico-alertSet.svg) no-repeat;
  background-size: contain;
  background-position: center;
}
.accountInfo .ico-notice {
  background: url(../images/ico-notice.svg) no-repeat;
  background-size: contain;
  background-position: center;
}
.accountInfo .ico-inquiry {
  background: url(../images/ico-inquiry.svg) no-repeat;
  background-size: contain;
  background-position: center;
}

/* alertSet */
.icoBtn-alertSet {
  border: none;
  width: 24px;
  height: 24px;
  background: url(../images/ico-alertSet-gold.svg) no-repeat;
  background-size: contain;
}

.subContList {
  padding: 0 6.25%;
}
.subContList li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 12px;
  border-bottom: 1px solid #EFEDED;
}
.subContList li:last-of-type {
  border-bottom: none;
}
.subContList li.contNew b {
  position: relative;
  color: #9D6848;
  word-break: break-all;
  width: 100%;
}
.subContList li.contNew b:after {
  content: "";
  position: absolute;
  top: 0;
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: #FF5470;
  border-radius: 50%;
}
.subContList li.contNew b:after {
  left: -8px;
}
.subContList li a {
  display: block;
  width: 100%;
}
.subContList b {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.6rem;
  font-weight: 400;
  color: #555;
}
.subContList p {
  margin: 4px 0;
  font-size: 1.6rem;
  line-height: 2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-all;
}
.subContList span {
  font-size: 1.4rem;
  line-height: 1.6rem;
  color: #999;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-break: break-all;
}
.subContList .btn-wrap {
  padding: 0;
  margin-left: 4px;
}

.phoneCtrl {
  display: none;
}

/* alertSet 알림설정 */
.alert-disalive .phoneCtrl {
  display: block;
  padding-bottom: 32px;
  background-color: #f4f2f1;
}
.alert-disalive .phoneCtrl .flex-box {
  justify-content: space-between;
  align-items: center;
  margin: 12px 12px 0px;
  padding: 8px 12px 8px 20px;
  border-radius: 20px;
  background-color: #fff;
}
.alert-disalive .phoneCtrl .flex-box b {
  margin: 0;
}
.alert-disalive .phoneCtrl .switchBtn input + b {
  animation: ex-switch-bg 1s 5 ease-out alternate forwards;
}
.alert-disalive .phoneCtrl .switchBtn input + b:after {
  animation: ex-switch 1s 5 ease-out alternate forwards;
}
.alert-disalive .phoneCtrl .switchBtn input + b .on {
  display: block;
}
@keyframes ex-switch-bg {
  0% {
    background-color: #aaa;
  }
  80% {
    background-color: #555;
  }
  100% {
    background-color: #555;
  }
}
@keyframes ex-switch {
  0% {
    top: 4px;
    left: 4px;
  }
  80% {
    top: 4px;
    left: calc(100% - 24px);
  }
  100% {
    top: 4px;
    left: calc(100% - 24px);
  }
}
.alert-disalive .phoneCtrl p {
  margin: 8px 20px 20px;
  width: 100%;
  font-size: 1.2rem;
  color: #555;
}
.alert-disalive .settingList .txt-box * {
  color: #999;
}

/* 공지사항 notice, 문의사항 inquiry 상세 detail  */
.detailCont .cont-head {
  padding: 20px 6.25%;
  background-color: #f4f2f1;
}
.detailCont .cont-head .flt-box {
  margin-bottom: 8px;
}
.detailCont .cont-head p {
  margin-bottom: 4px;
  font-size: 1.6rem;
  line-height: 2rem;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.detailCont .cont-head .date {
  font-size: 1.4rem;
  line-height: 2rem;
  color: #999;
}
.detailCont .cont-body {
  padding: 20px 6.25%;
  font-size: 1.4rem;
  line-height: 2.4rem;
  color: #333;
  overflow-wrap: break-word;
}
.detailCont .answer-box {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid #EFEDED;
}
.detailCont .answer-box b {
  line-height: 1.6rem;
  font-weight: 500;
  color: #B38E7D;
}
.detailCont .answer-box b + div {
  margin-top: 4px;
}
.detailCont .img-box {
  margin: 8px 0;
}
.detailCont a {
  color: #7A92B7;
  border-bottom: 1px solid #7A92B7;
}
.detailCont .file-box {
  position: relative;
  margin: 12px 0;
  padding: 4px 12px;
  background-color: #f4f2f1;
  border-radius: 16px;
}
.detailCont .file-box a {
  display: inline-block;
  padding: 0 16px;
  font-size: 1.2rem;
  color: #9D6848;
  background: #f4f2f1 url(../images/ico-download.svg) no-repeat;
  background-size: 12px;
  background-position: left center;
  border-bottom: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  word-break: break-all;
}
.detailCont .file-box .btn-close {
  position: absolute;
  top: calc(50% - 6px);
  right: 12px;
  width: 12px;
  height: 12px;
}

/* 1:1문의 inquiry */
.noinquiry {
  margin: 60px 0;
  font-size: 1.6rem;
  line-height: 2rem;
  color: #333;
  text-align: center;
  font-weight: 500;
}
.noinquiry span {
  display: block;
  margin: 8px 0 20px;
  font-size: 1.2rem;
  color: #555;
}

.btn-write {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.subContList .status {
  margin-bottom: 4px;
  font-size: 1.1rem;
  line-height: 1.2rem;
}
.subContList .date {
  line-height: 2rem;
}

/* inquiry-write 1:1문의 등록 */
.cont-wrap.inquiry {
  padding: 12px 6.25% 0;
}
.cont-wrap.inquiry .select-box {
  margin-bottom: 8px;
  width: 70%;
}
.cont-wrap.inquiry .inputBox {
  margin-bottom: 8px;
}
.cont-wrap.inquiry .textareaBox {
  min-height: calc(100vh - 216px);
}
.cont-wrap.inquiry .img-box {
  margin: 8px 0;
}

.icoBtn-img {
  position: fixed;
  z-index: 100;
  bottom: 12px;
  left: 12px;
}/*# sourceMappingURL=style.css.map */