@charset "utf-8";

body {}

#wrap {
  width: 500px;
  max-width: 100%;
  margin: 0 auto;
}

li {
  list-style-type: none;
}

.rnd-50p {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.rnd-30 {
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

/* flex */
.tr-fx,
.tr-fx-c>*,
.tr-fx-cc>*>* {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.tr-fx-nw,
.tr-fx-nw-c>*,
.tr-fx-nw-cc>*>* {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -o-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.tr-fxc,
.tr-fxc-c>*,
.tr-fxc-cc>*>* {
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}

.tr-fxt,
.tr-fxt-c>*,
.tr-fxt-cc>*>* {
  align-items: flex-start;
}

.tr-fxb,
.tr-fxb-c>*,
.tr-fxb-cc>*>* {
  align-items: flex-end;
}

.tr-fxs,
.tr-fxs-c>*,
.tr-fxs-cc>*>* {
  justify-content: flex-start;
}

.tr-fxe,
.tr-fxe-c>*,
.tr-fxe-cc>*>* {
  justify-content: flex-end;
}

.tr-fxsa,
.tr-fxsa-c>*,
.tr-fxsa-cc>*>* {
  justify-content: space-around;
}

.tr-fxsb,
.tr-fxsb-c>*,
.tr-fxsb-cc>*>* {
  justify-content: space-between;
}

/* 공통 */
input::placeholder,
.custom-select-text {
  color: #bdc1c6;
}

input:focus,
select:focus {
  outline: none;
}

.select_arrow {
  background-image: url("../img/select_arrow.svg");
  background-repeat: no-repeat;
  background-size: 10px;
  background-position-x: 90%;
  outline: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* foot_nav */
.smartkey-remote {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}

.notificate_circle {
  width: 15px;
  height: 15px;
  transform: translateX(10%);
}

/* tooltip */
.tooltip_back {
  display: none;
  height: 100%;
}

.tooltip_content {
  top: 30px;
  display: none;
}

/* login */
/* .pw-view {
  width: 24px;
  height: 27px;
  background-image: url("../img/Eye.svg");
}
.pw-view.on {
  background-image: url("../img/Eye_Hidden.svg");
} */
/* register */
input[type="radio"].reg-radio+label:before {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  content: "\e929";
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid rgba(0, 0, 0, 0.18);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  color: rgba(255, 255, 255, 0);
  background: rgba(0, 0, 0, 0);
}

input[type="radio"].reg-radio+label {
  line-height: 18px;
  padding-left: 24px;
}

input[type="radio"].reg-radio:checked+label:before {
  color: #fff;
  border: 1px solid #2fb5b6;
  background-color: #2fb5b6;
}

input[type="checkbox"].after-chk+label::before {
  display: none;
}

input[type="checkbox"].after-chk+label::after {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  content: "\e929";
  position: absolute;
  display: block;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid rgba(0, 0, 0, 0.18);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  color: rgba(255, 255, 255, 0);
  background: rgba(0, 0, 0, 0);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

input[type="checkbox"].after-chk+label {
  line-height: 24px;
  padding-left: 0;
  padding-right: 20px;
}

input[type="checkbox"].after-chk:checked+label:after {
  color: rgba(255, 255, 255, 1);
  border: 1px solid #2fb5b6;
}

/* smartkey */
.profile-picture {
  width: 80px;
  height: 80px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}

.pay_use_list {
  position: relative;
  padding-left: 10px;
}

.pay_use_list::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 4px;
  height: calc(100% - 5px);
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
}

.pay_use_list.c1::before {
  background-color: #2fb5b6;
}

.pay_use_list.c2::before {
  background-color: #2fb5a0;
}

.pay_use_list.c3::before {
  background-color: #2fd1a0;
}

/* .profile-picture > img {
  transform: scale(1.2);
} */
.using-store {
  -webkit-border-radius: 14px 14px 14px 0;
  -moz-border-radius: 14px 14px 14px 0;
  -o-border-radius: 14px 14px 14px 0;
  border-radius: 14px 14px 14px 0;
}

/* alert */
/* .tab-faq.active {
  color: #000;
}
.alert-imgbox {
  width: 40px;
  height: 40px;
}
.tab-content.active {
  display: block;
} */
/* alert */
.alert.active {
  color: #314462;
}

.alert_circle {
  width: 15px;
  height: 15px;
  transform: translate(-30%, 30%);
}

.alert-imgbox {
  width: 40px;
  height: 40px;
}

.alert.active {
  display: block;
}

.gongji_content {
  height: 21px;
}

.gongji_content.active {
  height: auto;
}

/* mystudy */
.chart_stick {
  width: 24px;
  margin: 0 auto;
  border-radius: 16px;
}

.best_circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
}

.cal_btn {
  width: 24px;
  height: 24px;
}

.study-tab-menu {
  padding: 3px;
}

.study-tab-faq.active {
  background-color: #2fb5b6;
  color: #fff;
}

.study-tab-content.active {
  display: block;
}

.mystudy-graph {
  width: 24px;
}

/* payment */
.payment-slide {
  width: 80%;
  height: 175px;
}

.payment_out_circle {
  width: 40px;
  height: 40px;
  background-color: #eaf8f8;
}

.payment_circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #2fb5b6;
}

/* pay_description */
input[type="checkbox"]#payment_chk:checked+label::before {
  border: 1px solid #314462;
  background: #314462;
}

/* p_list_free_day */
input[type="radio"].p_list_radio+label:before {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  content: "\e929";
  left: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid rgba(0, 0, 0, 0.18);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  color: rgba(255, 255, 255, 0);
  background: rgba(0, 0, 0, 0);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

input[type="radio"].p_list_radio+label {
  line-height: 18px;
  padding-left: 45px;
}

input[type="radio"].p_list_radio:checked+label:before {
  color: rgba(255, 255, 255, 1);
  border: 1px solid #2fb5b6;
  background-color: #2fb5b6;
}

input[type="radio"].p_list_radio:checked+label {
  border-color: #2fb5b6;
}

/* input[type="radio"].p_list_radio + label:before {
  left: 15px;
  top: 50%;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

input[type="radio"].p_list_radio + label {
  line-height: 24px;
  padding-left: 45px;
}

input[type="radio"].p_list_radio:checked + label:before {
  -webkit-box-shadow: inset 0 0px 0px 6px #2fb5b6;
  -moz-box-shadow: 0 0px 0px 6px inset #2fb5b6;
  box-shadow: 0 0px 0px 6px inset #2fb5b6;
}

input[type="radio"].p_list_radio:checked + label {
  border-color: #2fb5b6;
} */
/* coupon-lib */
.side-lib {
  width: 500px;
  max-width: 95%;
}

input[type="radio"].coupon-radio+label:before {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  content: "\e929";
  left: 10px;
  top: 10px;
  font-size: 20px;
  font-weight: 700;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  color: rgba(255, 255, 255, 0);
  background: rgba(0, 0, 0, 0);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

input[type="radio"].coupon-radio+label {
  line-height: 18px;
  padding-left: 0;
}

input[type="radio"].coupon-radio:checked+label::before {
  color: rgba(255, 255, 255, 1);
}

/* otp_confirm-lib */
.otp-icon-x {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}

.li-type-hyp>*::before {
  content: "·";
  position: absolute;
  left: -5px;
  top: 0;
  display: block;
}

/* store_reset */
.store-reset-imgbox {
  width: 55px;
  height: 55px;
}

/* screenshot-lib */
#screen {
  width: 500px;
  max-width: 100%;
}

.screenshot-inner {
  padding-bottom: 100%;
}

.m-b12p,
.m-b12p-c>*,
.m-b12p-cl>*:not(:last-child) {
  margin-bottom: 12%;
}

/* quest_list_doing */
.quest-circle {
  width: 50px;
  height: 50px;
}

/* quest_list_complete */
.quest-circle-lg {
  width: 73px;
  height: 73px;
}

.quest-com-fxd {
  width: 500px;
  max-width: 100%;
}

/* store_select_lib */
input[type="radio"].store_radio+label::before {
  display: none;
}

input[type="radio"].store_radio+label {
  padding: 5px 0;
}

input[type="radio"]:checked.store_radio+label {
  background-color: #2fb5b6;
  color: #fff;
}

/* seat_select */
.seat-circle {
  width: 12px;
  height: 12px;
}

.seat_select_area {
  overflow: auto;
  -ms-overflow-style: none;
  height: var(--height);
}

.seat_select_area>* {}

.seat_select_area>*,
.seat_select_area>*>*,
.seat_select_area>*>*>* {
  line-height: 0;
}

.seat_select_area::-webkit-scrollbar {
  display: none;
  width: 0 !important;
}

.draggable {
  -webkit-transition: all 0s ease-in-out;
  -moz-transition: all 0s ease-in-out;
  -ms-transition: all 0s ease-in-out;
  -o-transition: all 0s ease-in-out;
  transition: all 0s ease-in-out;
}

input[type="radio"].seat_select+label {
  padding: 0px;
}

input[type="radio"].seat_select+label:before {
  display: none;
}

input[type="radio"].seat_select:checked+label {
  background-color: #ec6860;
}

input[type="radio"].locker_select+label {
  padding: 10px;
}

input[type="radio"].locker_select+label:before {
  display: none;
}

input[type="radio"].locker_select:checked+label {
  background-color: #ec6860;
}

/* open_time_lib */
.open_time_circle {
  width: 12px;
  height: 12px;
}

input[type="checkbox"].open_time_sel+label:before {
  display: none;
}

input[type="checkbox"].open_time_sel+label {
  width: 100%;
  border: 1px solid #bdc1c6;
  padding: 3px;
  font-size: 14px;
  text-align: center;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

input[type="checkbox"].open_time_sel:checked+label {
  background-color: #2fb5b6;
  color: #fff;
}

input[type="checkbox"].open_time_sel:disabled+label {
  background-color: #d9d9d9;
  color: #fff;
}

select {
  border-radius: 0;
  /* 아이폰 사파리 보더 없애기 */
  -webkit-appearance: none;
  /* 화살표 없애기 for chrome*/
  -moz-appearance: none;
  /* 화살표 없애기 for firefox*/
  appearance: none;
  /* 화살표 없애기 공통*/
}

.layer_pop {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 22222;
  left: 0px;
  top: 0px;
  background-color: rgba(0, 0, 0, 0.7);
}

.layer_pop>div {
  width: 80%;
  max-width: 400px;
  margin: 50px auto 0px;
  border: 1px solid #e8e8e8;
  background: #f2f2f2;
  overflow: hidden;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  border-radius: 12px;
}

.layer_pop>div>div.title_txt {
  background: #2fb5b6;
  position: relative;
  line-height: 40px;
  padding: 0px 20px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.layer_pop>div>div.comment_txt {
  position: relative;
  line-height: 40px;
  padding: 0px 20px;
  font-size: 15px;
  padding: 30px 40px 10px;
  text-align: center;
}

.layer_pop_push {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 22222;
  left: 0px;
  top: 0px;
  background-color: rgba(0, 0, 0, 0.7);
}

.layer_pop_push>div {
  width: 80%;
  max-width: 400px;
  margin: 50px auto 0px;
  border: 1px solid #e8e8e8;
  background: #f2f2f2;
  overflow: hidden;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  -o-border-radius: 12px;
  border-radius: 12px;
}

.layer_pop_push>div>div.title_txt {
  background: #444;
  position: relative;
  line-height: 40px;
  padding: 0px 20px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.layer_pop_push>div>div.comment_txt {
  position: relative;
  line-height: 40px;
  padding: 0px 20px;
  font-size: 15px;
  padding: 30px 40px 10px;
  text-align: center;
}

.btn_ok {
  width: 100%;
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  border: none;
  padding: 15px 0;
  margin-bottom: 15px;
  font-weight: 700;
  -webkit-box-shadow: 0px 5px 2px rgba(0, 0, 0, 0.05),
    0px 4px 16px -8px rgba(55, 55, 76, 0.3);
  -moz-box-shadow: 0px 5px 2px rgba(0, 0, 0, 0.05),
    0px 4px 16px -8px rgba(55, 55, 76, 0.3);
  box-shadow: 0px 5px 2px rgba(0, 0, 0, 0.05),
    0px 4px 16px -8px rgba(55, 55, 76, 0.3);
  cursor: pointer;
}

.paging_num {
  width: 30px;
  border-bottom: 2px solid rgba(0, 0, 0, 0);
}

.paging_num.on {
  font-weight: 700;
  color: #000000;
  border-color: #000000;
}
