﻿/* 플레이스홀더 */

.pl_wrap {
  position: relative;
  height: 50px;
  border: #ccc 1px solid;
  font-size: 1em;
  box-sizing: border-box;
  background: #fff;
}
.pl_wrap.on {
}
.pl_txt {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 100;
  padding: 0px 10px;
  box-sizing: border-box;
  color: #ccc;
  line-height: 50px;
}
.pl_tooltip {
    color: #333;
    font-size: 0.9em;
    padding-bottom: 15px;
}
.pl_wrap.on > .pl_txt {
  opacity: 0;
}
.pl_ip {
  width: 100%;
  height: 100%;
  position: relative;
  left: 0;
  top: 0;
  padding: 15px 10px;
  font-size: 1.1em;
  box-sizing: border-box;
  z-index: 1000;
  background: none;
  border: none;
}
.pl_wrap .pl_ip:disabled {
  background: transparent;
  box-sizing: border-box;
  color: #999;
}
.pl_wrap.input_s_number,
.pl_wrap.input_s_number .pl_txt,
.pl_wrap.input_s_number .pl_ip {
  width: 100px;
  text-align: center;
}

/* 포인트 컬러 */

.ptc_bg {
  background: #617399;
}
.ptc_t {
  color: #617399;
}

/* 버튼 */

.btn {
  box-sizing: border-box;
  text-align: center;
  border: #b5b3c1 1px solid;
  color: #81809f;
  font-weight: 600;
  cursor: pointer;
  box-shadow: rgba(58, 56, 165, 0.2) 2px 2px 4px;
}
.btn:active {
  position: relative;
  border-top: 2px inset rgba(58, 56, 165, 0.3);
  border-left: 2px inset rgba(58, 56, 165, 0.3);
  box-shadow: none;
}

.btn_02 {
  box-sizing: border-box;
  text-align: center;
  border: #26238c 1px solid;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  box-shadow: rgba(58, 56, 165, 0.4) 2px 2px 4px;
  background: #3a38a5;
}
.btn_02:active {
  position: relative;
  border-top: 2px inset rgba(0, 0, 0, 1);
  border-left: 2px inset rgba(0, 0, 0, 1);
  box-shadow: none;
}

.btn_03 {
  box-sizing: border-box;
  text-align: center;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  background: #3a38a5;
}
.btn_03:active {
  position: relative;
  border-top: 2px inset rgba(0, 0, 0, 1);
  border-left: 2px inset rgba(0, 0, 0, 1);
  box-shadow: none;
}

.btn_04 {
  box-sizing: border-box;
  text-align: center;
  border: rgba(224, 46, 80, 1) 1px solid;
  color: rgba(224, 46, 80, 1);
  font-weight: 600;
  cursor: pointer;
  box-shadow: rgba(224, 46, 80, 0.4) 2px 2px 4px;
}
.btn_04:active {
  position: relative;
  border-top: 2px inset rgba(224, 46, 80, 0.5);
  border-left: 2px inset rgba(224, 46, 80, 0.5);
  box-shadow: none;
}

/* 체크박스 / 라디오박스 스타일 */

input[type='checkbox'],
input[type='radio'] {
  display: none;
}

/* 체크박스 */

.ld_check {
  width: 15px;
  height: 15px;
  margin: 13px 0 0 0;
  border: #e0e3e5 1px solid;
  border-radius: 5px;
  display: inline-block;
  vertical-align: text-bottom;
  box-sizing: border-box;
  position: relative;
}
input[type='checkbox'] ~ .label_new {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 2px 0 0;
  border: 1px solid #ddd;
  cursor: pointer;
  border-radius: 5px;
  display: inline-block;
  box-sizing: border-box;
  vertical-align: text-bottom;
}
input[type='checkbox']:checked ~ .label_new {
  position: relative;
  background: #f09b07;
  border: 1px solid #f09b07;
}
input[type='checkbox']:checked ~ .label_new:after {
  content: '';
  width: 3px;
  height: 8px;
  left: 4px;
  top: 7px;
  background: #fff;
  position: absolute;
  transform: rotate(-45deg);
}
input[type='checkbox']:checked ~ .label_new:before {
  content: '';
  width: 3px;
  height: 12px;
  right: 5px;
  top: 3px;
  background: #fff;
  position: absolute;
  transform: rotate(45deg);
}
input[type='checkbox'] ~ .label_txt {
  color: #999;
  cursor: pointer;
}
input[type='checkbox']:checked ~ .label_txt {
  color: #000;
}

/* 회원가입 약관동의 체크박스 */

.join_agree_wrap input[type='checkbox'] ~ .label_new {
  float: right;
}

/* 라디오박스 */
input[type='radio'] ~ .label_new {
  width: 20px;
  height: 20px;
  margin: 0 2px 0 0;
  border: 1px solid #ddd;
  cursor: pointer;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  vertical-align: text-bottom;
}
input[type='radio']:checked ~ .label_new {
  position: relative;
  border: 5px solid #f09b07;
}
/* input[type='radio']:checked ~ .label_new:after {
  content: '';
  width: 3px;
  height: 8px;
  left: 4px;
  top: 7px;
  background: #fff;
  position: absolute;
  transform: rotate(-45deg);
}
input[type='radio']:checked ~ .label_new:before {
  content: '';
  width: 3px;
  height: 12px;
  right: 5px;
  top: 3px;
  background: #fff;
  position: absolute;
  transform: rotate(45deg);
} */
input[type='radio'] ~ .label_txt {
  color: #999;
  cursor: pointer;
}
input[type='radio']:checked ~ .label_txt {
  color: #000;
}

/* 로그인 페이지 라디오 */

.login_tab_wrap input[type='radio'] ~ .label_txt {
  display: block;
  width: 100%;
  height: 28px;
  color: #999;
  cursor: pointer;
  border-bottom: #ccc 2px solid;
}
.login_tab_wrap input[type='radio']:checked ~ .label_txt {
  color: #000;
  color: #f09b07;
  border-bottom: #f09b07 2px solid;
}

/* FAQ 페이지 라디오 */

.tab_wrap input[type='radio'] ~ .label_txt {
  display: block;
  width: 100%;
  height: 28px;
  color: #999;
  cursor: pointer;
  border-bottom: #ccc 2px solid;
}
.tab_wrap input[type='radio']:checked ~ .label_txt {
  color: #f09b07;
  border-bottom: #f09b07 2px solid;
  font-weight: 700;
}

.tab_wrap > .tab.on input[type='radio'] ~ .label_txt {
  color: #f09b07;
  border-bottom: #f09b07 2px solid;
}

/* 회원가입 약관 동의 라디오 */

.join_type_box input[type='radio'] ~ .label_txt {
  width: 100%;
  min-height: 70px;
  color: #fff;
  background: #707070;
  text-align: center;
  font-size: 1.1em;
  font-weight: 600;
  border: none;
}
.join_type_box input[type='radio']:checked ~ .label_txt {
  color: #fff;
  background: #f09b07;
  border: none;
}

/* 셀렉트박스 */

select::-ms-expand {
  display: none;
}

select {
  width: 100%;
  height: 50px;
  padding: 0 10px;
  background-color: #fff;
  background-image: url('/images/global/selec.svg');
  background-repeat: no-repeat;
  background-position: right 10px bottom 50%;
  background-size: 10px;
  border-radius: 0px;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: #ccc 1px solid;
  font-size: 1em;
}

.clear:after {
  visibility: hidden;
  font-size: 0;
  line-height: 0;
  display: block;
  clear: both;
}
textarea {
  font-size: 1.1em;
}

/* 트랜지션 효과 공통 */
div {
  transition: color 0.4s;
}
div {
  transition: background 0.4s;
}
div {
  transition: border-color 0.4s;
}

.clear:after {
  content: '';
  visibility: hidden;
  font-size: 0;
  line-height: 0;
  display: block;
  clear: both;
}

/* 버튼 기본형 관련 */

input[type='button'] {
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 0;
  -webkit-appearance: none;
}
.login_wrap input[type='button'] {
  height: 50px;
}
input[type='button'].btn_pnt_color {
  background: #f09b07;
  color: #fff;
}
input[type='button'].btn_gs_color {
  background: #707070;
  color: #fff;
}
input[type='button'].btn_emt {
  border: #cccccc 1px solid;
}

.btn_center_wrap {
  width: 100%;
  margin: 30px 0;
  text-align: center;
}
.btn_center_wrap > input[type='button'] {
  padding: 15px 30px;
  font-size: 1.1em;
  background: #2e9eff;
  color: #fff;
}

/* 사업자등록증 업로드 */
.pl_ip.file_wrap {
  padding: 0 10px;
}
input[type='file']::-webkit-file-upload-button {
  visibility: hidden;
}
input[type='file']::before {
  content: '파일 선택';
  display: inline-block;
  background: #f9f9f9;
  border-right: #eee 1px solid;
  border-radius: 3px;
  padding: 0 10px;
  height: 48px;
  outline: none;
  white-space: nowrap;
  -webkit-user-select: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9em;
  line-height: 48px;
}
/* input[type='file']:hover::before {
  border-color: black;
} */

/* 공통 마진 */
.mar_t_10 {
  margin-top: 10px;
}

input[type='text']:disabled {
  background: red;
}

/* fromto input + 단위 + 추가 체크박스 */