@charset 'UTF-8';


/*common*/
.cs-checkbox > label:before,
.cs-radio > .r_visible {
	border: 1px solid #ccc;
}


/*
	checkbox style module
*/
.cs-checkbox input[type="checkbox"] {
	visibility: hidden;
	display: none;
}

.cs-checkbox > label {
	position: relative;
	display: inline-block;
	cursor: pointer;
	padding-left: 30px;
	margin: 0;
	line-height: 20px;
	transition: color .3s ease-out;
}

.cs-checkbox > label.d-block {
	display: block;
}

.cs-checkbox > label:before {
	content: "";
	position: absolute;
	/* top: 0; */
	top: 2px;
	left: 0;
	display: inline-block;
	width: 14.5px;
	height: 14.5px;
	margin-right: 0.8em;
	/*line-height: 20px;*/
	border-radius: 0;
	background-color: #fff;
	font-size: 1.2em;
}

.cs-checkbox input[type="checkbox"]:checked ~ label:before,
.cs-checkbox label:hover:before {
	/* content: '\2713';
	width: 16px;
	padding-left: 2px;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, .1);
	text-align: center;

	line-height: 1.1;
	color: #a73439;
	font-weight: bold; */
}

.cs-checkbox > label:hover:before {
	color: transparent;
	/*모바일에서는 해제*/
	/*color: #d5d5d5;*/
	text-shadow: none;
}

/*radio*/
.cs-radio input[type=radio]:not(old) {
	width: 0;
	margin: 0;
	padding: 0;
	opacity: 0;
	font-size: 1em;
}

.cs-radio > .r_visible {
	position: relative;
	display: inline-block;
	width: 18px;
	height: 18px;
	border-radius: 50em;
	background-color: #fff;
	vertical-align: bottom;
}

.cs-radio input[type=radio]:not(old):checked + .r_visible > span {
	position: absolute;
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 50em;
	background-color: #a73439;
	top: 3px;
	left: 3px;
}
/* 지점리뉴얼 */
.branch-renew .cs-checkbox input[type="checkbox"],
.branch-renew_v2 .cs-checkbox input[type="checkbox"] {
	visibility: hidden;
	display: none;
}

.branch-renew .cs-checkbox > label,
.branch-renew_v2 .cs-checkbox > label {
	position: relative;
	display: inline-block;
	cursor: pointer;
	padding-left: 25px;
	margin: 0;
	line-height: 20px;
	transition: color .3s ease-out;
}

.branch-renew .cs-checkbox > label.d-block,
.branch-renew_v2 .cs-checkbox > label.d-block {
	display: block;
}

.branch-renew .cs-checkbox > label:before,
.branch-renew_v2 .cs-checkbox > label:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	margin-right: 0.8em;
	border-radius: 0;
	background-color: #fff;
}
.branch-renew .cs-checkbox input[type="checkbox"]:checked ~ label:before,
.branch-renew_v2 .cs-checkbox input[type="checkbox"]:checked ~ label:before {
	content: '';
	text-shadow: 1px 1px 1px rgba(0, 0, 0, .1);
	background-image: url('/imges/i-check.png');
	background-color: var(--primary);
	background-repeat: no-repeat;
	background-position: center center;
	border: 1px solid var(--primary);
}
.branch-renew .cs-checkbox label:hover:before,
.branch-renew_v2 .cs-checkbox label:hover:before {
	content: '';
}
.branch-renew .cs-checkbox > label:hover:before,
.branch-renew_v2 .cs-checkbox > label:hover:before {
	color: transparent;
	text-shadow: none;
}

/* 텍스트 체크박스 */
.branch-renew .txt-checkbox input[type="checkbox"],
.branch-renew_v2 .txt-checkbox input[type="checkbox"] {
	visibility: hidden;
	display: none;
}
.branch-renew .txt-checkbox > label,
.branch-renew_v2 .txt-checkbox > label {
	position: relative;
	padding: 0.5rem 0;
	text-align: center;
	margin: 0;
	line-height: 20px;
	transition: color .3s ease-out;
	width: 100%;
	height: 100%;
	display: block;
	border: 1px solid #CCCCCC;
	border-radius: 50em;
	cursor: pointer;
}
.branch-renew .txt-checkbox > label.d-block,
.branch-renew_v2 .txt-checkbox > label.d-block {
	display: block;
}
.branch-renew .txt-checkbox > label:before,
.branch-renew_v2 .txt-checkbox > label:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	margin-right: 0.8em;
	border-radius: 0;
	background-color: #fff;
}
.branch-renew .txt-checkbox input[type="checkbox"]:checked ~ label,
.branch-renew_v2 .txt-checkbox input[type="checkbox"]:checked ~ label {
	background-color: var(--primary);
	border: 1px solid var(--primary);
	color: #fff;
}
.branch-renew .txt-checkbox label:hover:before,
.branch-renew_v2 .txt-checkbox label:hover:before {
	content: '';
}
.branch-renew .txt-checkbox > label:hover:before,
.branch-renew_v2 .txt-checkbox > label:hover:before {
	color: transparent;
	text-shadow: none;
}
/* radio */
.branch-renew .radio-wrap,
.branch-renew_v2 .radio-wrap {
	width: 100%;
	border-radius: 5px;
	border: 1px solid var(--primary);
	display: flex;
	justify-content: center;
	align-items: center;
	color: var(--primary);
	overflow: hidden;
}
.branch-renew .radio-wrap input[name=counselGender],
.branch-renew_v2 .radio-wrap input[name=counselGender] {
	display: none;
}
.branch-renew .radio-wrap label,
.branch-renew_v2 .radio-wrap label {
	width: 50%;
}
.branch-renew .radio-wrap .cs-radio,
.branch-renew_v2 .radio-wrap .cs-radio {
	padding: 0.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50%;
	height: 100%;
	background: #fff;
	cursor: pointer;
}
.branch-renew .radio-wrap input[id=female]:checked ~ label[for=female],
.branch-renew .radio-wrap input[id=male]:checked ~ label[for=male],
.branch-renew_v2 .radio-wrap input[id=female]:checked ~ label[for=female],
.branch-renew_v2 .radio-wrap input[id=male]:checked ~ label[for=male] {
	background: var(--primary);
	color: #fff;
}

/* 230825 */
.cs-checkbox input[type="checkbox"]:checked ~ label:before {
	content: '';
	border: 0;
	width: 16.5px;
	height: 16.5px;
	padding-left: 0;
	box-shadow: none;
	background-image: url('/imges/i-chk-reseve.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

/* 온라인 결제/방문 결제 텍스트 디자인 퍼블리싱 */
.chk-payment .payment-txt {
	display: inline-block;
	height: 1.85em;
	text-align: center;
	padding: 0 10px;
	margin-bottom: 3px;
	border-radius: 10px;
	background-color: #A73439;
	font-size: 0.84rem;
	font-weight: 400;
	color: #ffffff;
	line-height: 1.8;
}
.chk-payment .i-fasttrack {
	width: 62px;
	height: 13px;
	vertical-align: -3px;
}

/* 231030 cdb 예약하기 수정 */
/* radio */
.renew_reservation ._cs-radio input[type="radio"] {display: none;}
.renew_reservation ._cs-radio input[type=radio]:not(old) {width: 0;	margin: 0;	padding: 0;	opacity: 0;	font-size: 1em;}
.renew_reservation ._cs-radio input[type=radio] + .r_visible {display: block;}
.renew_reservation ._cs-radio input[type=radio] + .r_visible > span {background-color: #FFFFFF;	display: block;	width: 100%; height: 100%; padding: 8px 0;	color: #A73439; text-align: center; font-size: 1rem; font-weight: 500;}
.renew_reservation ._cs-radio input[type=radio]:not(old):checked + .r_visible > span {background-color: #A73439; color: #FFFFFF;}
.renew_reservation .cs-checkbox > label {padding-left: 22px; font-size: 1.076rem; letter-spacing: -0.56px;}
.renew_reservation .cs-checkbox > label > span {word-break: keep-all;}