﻿/* 플레이스홀더 */

.pl_wrap {
  min-height: 55px;
  font-size: 1.1em;
  position: relative;
  border: #ddd 1px solid;
  background: #fff;
  text-align: left;
}
.pl_wrap.on {
}
.pl_txt {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 0 1em;
  opacity: 0.6;
  z-index: 100;
  position: absolute;
  display: flex;
  align-items: center;
  color: #777;
}
.pl_txt.necessary {
  color: #1a2d5e;
  opacity: 1;
}
.pl_wrap.on > .pl_txt {
  opacity: 0;
}
.pl_ip {
  width: 100%;
  min-height: 55px;
  font-size: 1.1em;
  box-sizing: border-box;
  padding: 0 1em;
  z-index: 1000;
  position: relative;
  background: none;
  border: none;
}

/* 포인트 컬러 */

.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'].normal {
  width: 15px;
  height: 15px;
  margin: 13px 0 0 0;
  border: #e0e3e5 1px solid;
  border-radius: 5px;
  float: left;
  vertical-align: text-bottom;
  box-sizing: border-box;
  position: relative;
}
input[type='checkbox'].normal + label {
  margin-top: 5px;
  float: left;
  margin-right: 5px;
  width: 20px;
  height: 20px;
  border: 1px solid #ddd;
  cursor: pointer;
  border-radius: 5px;
  box-sizing: border-box;
}
input[type='checkbox'].normal ~ label {
  cursor: pointer;
}
input[type='checkbox'].normal:checked + label {
  position: relative;
  border-color: #134c7d;
}
input[type='checkbox'].normal:checked + label:after {
  content: '';
  width: 3px;
  height: 8px;
  left: 4px;
  top: 7px;
  background: #134c7d;
  position: absolute;
  transform: rotate(-45deg);
}
input[type='checkbox'].normal:checked + label:before {
  content: '';
  width: 3px;
  height: 12px;
  right: 5px;
  top: 3px;
  background: #134c7d;
  position: absolute;
  transform: rotate(45deg);
}
input[type='checkbox'].normal:checked + label + label {
  color: #134c7d;
}
input[type='checkbox'] {
  display: none;
}

input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* 라디오 */

input[type='radio'].normal {
  width: 15px;
  height: 15px;
  margin: 13px 0 0 0;
  border: #e0e3e5 1px solid;
  border-radius: 5px;
  float: left;
  vertical-align: text-bottom;
  box-sizing: border-box;
  position: relative;
}
input[type='radio'].normal + label {
  margin-right: 5px;
  margin-top: 5px;
  float: left;
  width: 20px;
  height: 20px;
  border: 1px solid #ddd;
  cursor: pointer;
  border-radius: 50%;
  box-sizing: border-box;
}
input[type='radio'].normal ~ label {
  cursor: pointer;
}
input[type='radio'].normal:checked + label {
  position: relative;
  border: #1a2d5e 1px solid;
}
input[type='radio'].normal:checked + label:after {
  content: '';
  width: 12px;
  height: 12px;
  left: 3px;
  top: 3px;
  background: #134c7d;
  border-radius: 50%;
  position: absolute;
}
input[type='radio'].normal:checked + label + label {
  color: #134c7d;
}
input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* 라디오박스 */

input[type='radio'] {
  display: none;
}
input[type='checkbox'] {
  display: none;
}
/* 셀렉트박스 */

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

select {
  background-image: url('/images/global/selec.svg');
  background-repeat: no-repeat;
  background-position: 95% 50%;
  border-radius: 0px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
}

.clear:after {
  content: '';
  visibility: hidden;
  font-size: 0;
  line-height: 0;
  display: block;
  clear: both;
}

input[type='button'] {
  box-sizing: border-box;
  -webkit-appearance: none;
  border: none;
  background: none;
  border-radius: 0;
  cursor: pointer;
}
.ui-datepicker{ width: 300px; }
.ui-datepicker select.ui-datepicker-month{ width:30% !important; }
.ui-datepicker select.ui-datepicker-year{ width:30% !important; }


/* 신규 추가(취소신청) */
.reason_wrap {
	width:100%;
	height:100%;
	position:fixed;
	top:0px;
	left:0px;
	z-index:+9999;
	background:rgba(0,0,0,0.8);
	display:none;
}
.reason_inner_wrap {
	width:400px;
	height:300px;
	background:#fff;
	position:absolute;
	top:50%;
	left:50%;
	margin-left:-200px;
	margin-top:-150px;
	padding:10px;
	box-sizing:border-box;
}
#cancel_reason {
	width:100%;
	height:200px;
	border:1px solid #dfdfdf;
	background:#fff;
}
.reason_inner_wrap .sub_confirm_btn_wrap {
	width:100%;
	float:none;
	text-align:center;
	margin-top:10px;
	padding:0px;
}
.reason_inner_wrap .sub_confirm_btn_wrap .sub_confirm_btn {
	display:inline-block;
	float:none;
	padding:10px 20px;
}
.reason_inner_wrap .sub_confirm_btn_wrap .sub_confirm_btn.cancel {
	display:inline-block;
	float:none;
	background:#777777;
	padding:10px 20px;
}