/* 2021.09.28 GJ */
/* 공통 (버튼, 탭 메뉴, 박스, 불릿, 서식 등) 스타일 정의 */

@font-face {
  font-family: "nucleo-icons";
  src: url("../fonts/nucleo-icons.eot");
  src: url("../fonts/nucleo-icons.eot") format("embedded-opentype"),
    url("../fonts/nucleo-icons.woff2") format("woff2"),
    url("../fonts/nucleo-icons.woff") format("woff"),
    url("../fonts/nucleo-icons.ttf") format("truetype"),
    url("../fonts/nucleo-icons.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* wrap */
#wrap {
  position: relative;
  max-width: 767px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  /* padding-bottom: 120px; */

  /* background-color: wheat; */
}

.wbox {
  width: 100%;
  max-width: 767px;
  margin: 0 auto;
  padding-top: 60px;
}

/* 배경색 */
.skyblue_bg {
  background-color: #99d9ea;
}
.bg_grey_f1 {
  background-color: #f1f1f1 !important;
}
.bg_white {
  background-color: #fff;
}

/* 글자색 */
.black_color {
  color: #222;
}
.white_color {
  color: #fff;
}
.red_color {
  color: #f00;
}
.red_color2 {
  color: #df3131;
}
.grey_color {
  color: #747792;
}
.skyblue_color {
  color: #99d9ea;
}
.green_color {
  color: green;
}

.pass_red {
  color: #ff0000 !important;
}
.pass_orange {
  color: #ee7b03 !important;
}
.pass_green {
  color: #379947 !important;
}
.pass_blue {
  color: #378ef0 !important;
}
.pass_white {
  color: #000000 !important;
}

/* 글자크기 */
.font28 {
  font-size: 2.8rem;
}
.font24 {
  font-size: 2.4rem;
}
.font22 {
  font-size: 2.2rem;
}
.font20 {
  font-size: 2rem;
}
.font18 {
  font-size: 1.8rem;
}
.font16 {
  font-size: 1.6rem;
}
.font14 {
  font-size: 1.4rem;
}
.font13 {
  font-size: 1.3rem;
}
.font12 {
  font-size: 1.2rem;
}
.font11 {
  font-size: 1.1rem;
}

/* 간격 margin, padding */
.mb10 {
  margin-bottom: 10px;
}
.mb20 {
  margin-bottom: 20px;
}
.mt10 {
  margin-top: 10px;
}
.mt20 {
  margin-top: 20px;
}
.mb16 {
  margin-bottom: 16px;
}

.mb30 {
  margin-bottom: 30px;
}
.mb50 {
  margin-bottom: 50px;
}
.mt40 {
  margin-top: 40px;
}
.pt12 {
  padding-top: 12px;
}
.pb10 {
  padding-bottom: 10px;
}
.pb20 {
  padding-bottom: 20px;
}
.pb30 {
  padding-bottom: 30px;
}
.pb60 {
  padding-bottom: 60px;
}
.pb90 {
  padding-bottom: 90px;
}
.pb100 {
  padding-bottom: 100px;
}
.pb120 {
  padding-bottom: 120px;
}
.pb150 {
  padding-bottom: 150px;
}
.pb170 {
  padding-bottom: 170px;
}

.mt30 {
  margin-top: 30px;
}
.mt4 {
  margin-top: 4px;
}
.mt7 {
  margin-top: 7px;
}
.mt14 {
  margin-top: 14px;
}
.mr20 {
  margin-right: 20px;
}
.mt100 {
  margin-top: 100px;
}
.ml20 {
  margin-left: 20px;
}
.mr10 {
  margin-right: 10px;
}
.mr7 {
  margin-right: 7px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb2 {
  margin-bottom: 2px;
}
.mb4 {
  margin-bottom: 4px;
}

.pl10 {
  padding-left: 10px;
}
.pr10 {
  padding-right: 10px;
}
.pl20 {
  padding-left: 20px;
}
.pr20 {
  padding-right: 20px;
}
.pl40 {
  padding-left: 40px;
}
.pr40 {
  padding-right: 40px;
}

.pr20per {
  padding-right: 20%;
}
.pl5 {
  padding-left: 5px;
}

/* 2021.10.05 edit GJ : 패딩값 추가 */
.padding_w_2per {
  padding: 0 2%;
}
.padding_w_4per {
  padding: 0 4%;
}

.mb4 {
  margin-bottom: 4px;
}
.mb5 {
  margin-bottom: 5px;
}
.mb45 {
  margin-bottom: 45px;
}

/* float 정렬 */
.float_l {
  float: left;
}
.float_r {
  float: right;
}

/* text 정렬 */
.text_l {
  text-align: left;
}
.text_r {
  text-align: right;
}
.text_c {
  text-align: center;
}

/* display block none 관련 */
.d_none {
  display: none;
}
.d_block {
  display: block;
}

/* 커서 포인터 */
.c_pointer {
  cursor: pointer;
}

/* section 박스 */
.section {
  width: 100%;
  height: 100%;
  background-color: burlywood;
}
/* .section_box {width: 100%; height: 100%;} */

/* btn 관련 */
/* 2021.10.07 edit bg컬러 및 폰트컬러,사이즈 수정 */
.full_w_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  /* line-height: 40px; */
  text-align: center;
  /* background-color: #99D9EA; */
  background-color: #df3131;
  color: #fff;
  font-size: 1.6rem;
}

.full_w_btn_round {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  border-radius: 20px;

  /* background-color: #99D9EA; */
  background-color: #df3131;
  color: #fff;
  font-size: 1.6rem;
}

.full_w_btn_round:disabled {
  background-color: #ddd;
  color: #444;
}

.full_w_btn_noBg {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  text-align: center;
  font-size: 1.6rem;
}

.full_w_btn_round_noBg {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  text-align: center;
  border-radius: 20px;
  font-size: 1.6rem;
}

/* 2021.10.07 GJ : btn 추가 */
.full_w_btn_round2 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 34px;
  border-radius: 20px;

  /* background-color: #99D9EA; */
  background-color: #df3131;
  color: #fff;
  font-size: 1.3rem;
}

.full_w_btn_round2:disabled {
  background-color: #ddd;
  color: #444;
}

.midSiz_btn_noBg {
  display: flex;
  justify-content: center;
  align-items: center;

  padding: 6px 5px;
  text-align: center;

  color: #666;
}

.midSiz_btn {
  display: flex;
  justify-content: center;
  align-items: center;

  /* width: 100%;
  height: 30px; */
  padding: 6px 5px;
  text-align: center;
  border-radius: 6px;

  /* background-color: #DF3131; */
  background-color: #dd4040;
  color: #fff;
}

.red2_btn {
  background-color: #df3131 !important;
  color: #fff !important;
  border: 1px solid #df3131 !important;
}

.grey_btn {
  background-color: #ddd;
  color: #666;
}

/* 2021.10.07 GJ : 버튼추가 */
.small_grey_btn {
  padding: 4px 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  color: #666;
  font-size: 1.1rem;
}

/* box 레이아웃 관련 */
.grey_borderBox {
  width: 100%;
  border: 1px solid #cfcfcf;
  border-radius: 10px;
  overflow: hidden;
}

.grey_border_ddd {
  border: 1px solid #ddd;
}

.innerBox {
  width: 100%;
  padding: 0 2%;
}

/* 타이틀 관련 */
.step_title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 16px 0 10px 0;
}

/* 서브 타이틀 관련 */
.subtit_12_regular {
  font-size: 1.1rem;
  font-weight: 400;
}

.subtit_12p5 {
  font-size: 1.25rem;
}

/* flex 관련 */
.d_flex {
  display: flex;
}
.space_between {
  justify-content: space-between;
}
.align_center {
  align-items: center;
}
.flex_wrap {
  flex-wrap: wrap;
}

/* 헤더 바로 아래 전체 n건 박스 관련 */
.header_under_countBox {
  position: fixed;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 60;
  width: 100%;
  max-width: 767px;
  height: 30px;
  background-color: #fff;
}

.header_under_countInner {
  width: 100%;
  height: 40px;
  line-height: 40px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 0 2%;
  font-size: 1.25rem;
  font-weight: bold;
}

.header_under_countInner.mypage_id {
  width: 100%;
  height: 50px;
  line-height: 50px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background: #555a84 !important;
  color: #fff;
  padding: 0 2%;
  font-size: 1.5rem;
  font-weight: bold;
}

/* 정보 null 상태일때 관련 */
.data_box_null {
  position: relative;
  height: calc(100vh - 230px);
}

.data_box_null p {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.3rem;
}

/* input 공통 */
.border_input35 {
  position: relative;
  width: 100%;
  height: 38px;
}

.border_input35 input {
  width: 100%;
  height: 100%;
  /* padding-right: 20%; */
}

.border_input35 input:disabled {
  background-color: #f1f1ff;
}

.border_input35 .input_right_btn {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100%;
  background-color: #df3131;
  color: #fff;
  font-size: 1.4rem;
}

.innerBox > label {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

.innerBox > label > input[type="checkbox"] {
  margin-right: 5px;
}

/* label 관련 */
.label_flex {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

/* 상단 step 아이콘 */
/* 기본 상태 */
.step_wrap {
  width: 100%;
  height: 30px;
  padding: 0 2%;
}

.step_wrap .step_box {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
}

.step_wrap .step_wrap .step_bullet {
  height: 100%;
}

.step_bullet > li {
  float: left;
}

.step_bullet > .icon_step {
  width: 30px;
  height: 30px;
  line-height: 31px;
  text-align: center;
  border-radius: 50%;
  margin-left: 8px;
  color: #9395a4;
  background-color: #ececec;
  font-size: 1.4rem;
  font-weight: bold;
}

.step_bullet > .icon_step:first-child {
  margin-left: 0;
}

/* 액티브 상태 */
.step_bullet .step_active {
  /* width: 30px; */
  padding: 0 10px;
  height: 30px;
  line-height: 31px;
  text-align: center;
  border-radius: 15px;
  margin-left: 14px;
  color: #fff;
  background-color: #191c32;
  font-size: 1.4rem;
  font-weight: bold;
}

/* input 컬러 관련 */
.text-danger {
  /* border-color: #f00 !important; */
  color: #f00 !important;
}

.text-success {
  /* border-color: #1DCC70 !important; */
  color: #1dcc70 !important;
}

.input-danger {
  border-color: #f00 !important;
}

.input-success {
  border-color: #1dcc70 !important;
}

/* text overflow 관련 */
/* 한줄 */
.text_of1 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 두줄 */
.text_of2 {
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 상품 이미지 박스 */
.all_product_img {
  width: 56px;
  height: 56px;
  border: 1px solid #ddd;
  border-radius: 10px;
  margin-right: 10px;
  overflow: hidden;
}

.all_product_img > img {
  width: 100%;
}

.text-success,
a.text-success {
  color: #1dcc70 !important;
}

.text-danger,
a.text-danger {
  color: #ff396f !important;
}

/*------------------------
	base class definition
-------------------------*/
.nc-icon {
  display: inline-block;
  font: normal normal normal 14px/1 "nucleo-icons";
  font-size: inherit;
  speak: none;
  text-transform: none;
  /* Better Font Rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*------------------------
  change icon size
-------------------------*/
.nc-icon.lg {
  font-size: 1.33333333em;
  vertical-align: -16%;
}

.nc-icon.x2 {
  font-size: 2em;
}

.nc-icon.x3 {
  font-size: 3em;
}

/*----------------------------------
  add a square/circle background
-----------------------------------*/
.nc-icon.square,
.nc-icon.circle {
  padding: 0.33333333em;
  vertical-align: -16%;
  background-color: #eee;
}

.nc-icon.circle {
  border-radius: 50%;
}

/*------------------------
  list icons
-------------------------*/
.nc-icon-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}

.nc-icon-ul > li {
  position: relative;
}

.nc-icon-ul > li > .nc-icon {
  position: absolute;
  left: -1.57142857em;
  top: 0.14285714em;
  text-align: center;
}

.nc-icon-ul > li > .nc-icon.lg {
  top: 0;
  left: -1.35714286em;
}

.nc-icon-ul > li > .nc-icon.circle,
.nc-icon-ul > li > .nc-icon.square {
  top: -0.19047619em;
  left: -1.9047619em;
}

/*------------------------
  spinning icons
-------------------------*/
.nc-icon.spin {
  -webkit-animation: nc-icon-spin 2s infinite linear;
  animation: nc-icon-spin 2s infinite linear;
}

@-webkit-keyframes nc-icon-spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes nc-icon-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*------------------------
  rotated/flipped icons
-------------------------*/
.nc-icon.rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  transform: rotate(90deg);
}

.nc-icon.rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  transform: rotate(180deg);
}

.nc-icon.rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  transform: rotate(270deg);
}

.nc-icon.flip-y {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0);
  transform: scale(-1, 1);
}

.nc-icon.flip-x {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  transform: scale(1, -1);
}

/*------------------------
	font icons
-------------------------*/
.nc-air-baloon::before {
  content: "\ea01";
}

.nc-album-2::before {
  content: "\ea02";
}

.nc-alert-circle-i::before {
  content: "\ea04";
}

.nc-align-center::before {
  content: "\ea03";
}

.nc-align-left-2::before {
  content: "\ea05";
}

.nc-ambulance::before {
  content: "\ea06";
}

.nc-app::before {
  content: "\ea07";
}

.nc-atom::before {
  content: "\ea08";
}

.nc-badge::before {
  content: "\ea09";
}

.nc-bag-16::before {
  content: "\ea0a";
}

.nc-bank::before {
  content: "\ea0b";
}

.nc-basket::before {
  content: "\ea0c";
}

.nc-bell-55::before {
  content: "\ea0d";
}

.nc-bold::before {
  content: "\ea0e";
}

.nc-book-bookmark::before {
  content: "\ea0f";
}

.nc-bookmark-2::before {
  content: "\ea10";
}

.nc-box-2::before {
  content: "\ea11";
}

.nc-box::before {
  content: "\ea12";
}

.nc-briefcase-24::before {
  content: "\ea13";
}

.nc-bulb-63::before {
  content: "\ea14";
}

.nc-bullet-list-67::before {
  content: "\ea15";
}

.nc-bus-front-12::before {
  content: "\ea16";
}

.nc-button-pause::before {
  content: "\ea17";
}

.nc-button-play::before {
  content: "\ea18";
}

.nc-button-power::before {
  content: "\ea19";
}

.nc-calendar-60::before {
  content: "\ea1a";
}

.nc-camera-compact::before {
  content: "\ea1b";
}

.nc-caps-small::before {
  content: "\ea1c";
}

.nc-cart-simple::before {
  content: "\ea1d";
}

.nc-chart-bar-32::before {
  content: "\ea1e";
}

.nc-chart-pie-36::before {
  content: "\ea1f";
}

.nc-chat-33::before {
  content: "\ea20";
}

.nc-check-2::before {
  content: "\ea21";
}

.nc-circle-10::before {
  content: "\ea22";
}

.nc-cloud-download-93::before {
  content: "\ea23";
}

.nc-cloud-upload-94::before {
  content: "\ea24";
}

.nc-compass-05::before {
  content: "\ea25";
}

.nc-controller-modern::before {
  content: "\ea26";
}

.nc-credit-card::before {
  content: "\ea27";
}

.nc-delivery-fast::before {
  content: "\ea28";
}

.nc-diamond::before {
  content: "\ea29";
}

.nc-email-85::before {
  content: "\ea2a";
}

.nc-favourite-28::before {
  content: "\ea2b";
}

.nc-glasses-2::before {
  content: "\ea2c";
}

.nc-globe-2::before {
  content: "\ea2d";
}

.nc-globe::before {
  content: "\ea2e";
}

.nc-hat-3::before {
  content: "\ea2f";
}

.nc-headphones::before {
  content: "\ea30";
}

.nc-html5::before {
  content: "\ea31";
}

.nc-image::before {
  content: "\ea32";
}

.nc-istanbul::before {
  content: "\ea33";
}

.nc-key-25::before {
  content: "\ea34";
}

.nc-laptop::before {
  content: "\ea35";
}

.nc-layout-11::before {
  content: "\ea36";
}

.nc-lock-circle-open::before {
  content: "\ea37";
}

.nc-map-big::before {
  content: "\ea38";
}

.nc-minimal-down::before {
  content: "\ea39";
}

.nc-minimal-left::before {
  content: "\ea3a";
}

.nc-minimal-right::before {
  content: "\ea3b";
}

.nc-minimal-up::before {
  content: "\ea3c";
}

.nc-mobile::before {
  content: "\ea3d";
}

.nc-money-coins::before {
  content: "\ea3e";
}

.nc-note-03::before {
  content: "\ea3f";
}

.nc-palette::before {
  content: "\ea40";
}

.nc-paper::before {
  content: "\ea41";
}

.nc-pin-3::before {
  content: "\ea42";
}

.nc-planet::before {
  content: "\ea43";
}

.nc-refresh-69::before {
  content: "\ea44";
}

.nc-ruler-pencil::before {
  content: "\ea45";
}

.nc-satisfied::before {
  content: "\ea46";
}

.nc-scissors::before {
  content: "\ea47";
}

.nc-send::before {
  content: "\ea48";
}

.nc-settings-gear-65::before {
  content: "\ea49";
}

.nc-settings::before {
  content: "\ea4a";
}

.nc-share-66::before {
  content: "\ea4b";
}

.nc-shop::before {
  content: "\ea4c";
}

.nc-simple-add::before {
  content: "\ea4d";
}

.nc-simple-delete::before {
  content: "\ea4e";
}

.nc-simple-remove::before {
  content: "\ea4f";
}

.nc-single-02::before {
  content: "\ea50";
}

.nc-single-copy-04::before {
  content: "\ea51";
}

.nc-sound-wave::before {
  content: "\ea52";
}

.nc-spaceship::before {
  content: "\ea53";
}

.nc-sun-fog-29::before {
  content: "\ea54";
}

.nc-support-17::before {
  content: "\ea55";
}

.nc-tablet-2::before {
  content: "\ea56";
}

.nc-tag-content::before {
  content: "\ea57";
}

.nc-tap-01::before {
  content: "\ea58";
}

.nc-tie-bow::before {
  content: "\ea59";
}

.nc-tile-56::before {
  content: "\ea5a";
}

.nc-time-alarm::before {
  content: "\ea5b";
}

.nc-touch-id::before {
  content: "\ea5c";
}

.nc-trophy::before {
  content: "\ea5d";
}

.nc-tv-2::before {
  content: "\ea5e";
}

.nc-umbrella-13::before {
  content: "\ea5f";
}

.nc-user-run::before {
  content: "\ea60";
}

.nc-vector::before {
  content: "\ea61";
}

.nc-watch-time::before {
  content: "\ea62";
}

.nc-world-2::before {
  content: "\ea63";
}

.nc-zoom-split::before {
  content: "\ea64";
}
