/* @import url('https://hangeul.pstatic.net/hangeul_static/css/nanum-square.css'); */
@import url('https://cdn.rawgit.com/moonspam/NanumSquare/master/nanumsquare.css');
/* font-weight */
/* 300, 400, 700, 800 */

* {
	box-sizing: border-box;
}

body {
	background-color: #fff;
	color: #000;
	margin: 0;
	font-family: 'NanumSquare';
	line-height: 1.5em; /* display: flex 사용할때 텍스트에 띄어쓰기 있으면 정렬 틀어지는 현상 방지됨 */
}
a {
	text-decoration: none;
	color: #000;
}
ul,li {
	list-style: none;
	padding: 0;
	margin: 0;
}
h1,h2,h3,h4,h5,h6 {
	margin: 0;
	padding: 0;
	font-weight: 400;
}

button {
	outline: none;
	border: none;
	cursor: pointer;
	padding: 0;
	background-color: transparent;
	color: #000;
	font-family: 'NanumSquare';
}

img {
	max-width: fit-content;
	width: 100%;
}

em {
	font-style: normal;
}

p {
	margin: 0;
}

input[type=text],
input[type=password],
input[type=number],
input[type=tel],
select {
	width: 100%;
	border: 1px solid #ccc;
	padding: 10px;
	border-radius: 3px;
	outline: none;
	font-size: 16px;
	font-family: 'NanumSquare';
}
select {
	appearance: none;
	background: url(/NFLEX/img/common/select_arrow.png) no-repeat center right 10px;
	color: #898989;
}
input[type=text]::placeholder,
input[type=number]::placeholder,
input[type=tel]::placeholder,
input[type=password]::placeholder {
	color: #bdbdbd;
}
.form_btn {
	padding: 10px;
	font-size: 16px;
	font-weight: 700;
	border-radius: 3px;
}

input[type=checkbox],
input[type=radio] {
	display: none;
}

.like_btn_chk {
	display: flex;
	gap: 5px;
}
.like_btn_chk label {
	font-size: 16px;
	font-weight: 700;
	border-radius: 3px;
	color: #b2b2b2;
	border: 1px solid #d7d7d7;
	padding: 12px 20px;
	display: flex;
	flex: 1;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	transition: 0.2s ease;
	position: relative;
}
.like_btn_chk label img {
	/* height: auto;
	display: block;
	flex-shrink: 0; */
	flex: none;
	width: 20px;
	height: auto;
}
.like_btn_chk label .txt {
	text-align: center;
}
.like_btn_chk_2 label {
	padding: 7px 20px;
}
.like_btn_chk_2 label span {
	width: 15px;
}
.like_btn_chk label p {
	text-align: center;
	font-weight: 700;
}
.like_btn_chk label p small {
	font-size: 12px;
	display: block;
	line-height: 1em;
}
.lines2:before {
	content: attr(data-undertext);
	position: absolute;
	bottom: -2px;
	left: 40%;
	font-size: 12px;
}
.like_btn_chk label img {
	/* transition: 0.2s ease; */
}
.checked_icon {
	transform: scale(0);
}
.like_btn_chk label img.checked_icon {
	width: 15px;
}
.like_btn_chk input[type=radio]:checked + label {
	background-color: #ecf5f9;
	border-color: #396df1;
	color: #396df1;
}
.like_btn_chk input[type=radio]:checked + label .symbol_icon {
	filter: brightness(0) saturate(100%) invert(42%) sepia(99%) saturate(3914%) hue-rotate(214deg) brightness(98%) contrast(92%);
}
.like_btn_chk input[type=radio]:checked + label .checked_icon {
	transform: scale(1);
}
.form_id_kind {
	display: flex;
	gap: 5px;
}
.form_id_kind label {
	font-size: 16px;
	font-weight: 700;
	border-radius: 3px;
	color: #b2b2b2;
	border: 1px solid #d7d7d7;
	padding: 12px 20px;
	display: flex;
	flex: 1;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: 0.2s ease;
	position: relative;
}
.form_id_kind label img {
	position: absolute;
	top: 17px;
	right: 15px;
	transition: 0.2s ease;
}
.form_id_kind input:checked + label {
	border-color: #396df1;
	color: #396df1;
	background-color: #ecf5f9;
}
.form_id_kind input:checked + label img {
	transform: scale(1);
}

.card_select input[type=radio] + em,
.nums_list input[type=radio] + label em {
	display: inline-block;
	width: 20px;
	height: 20px;
	min-width: 20px;
	border-radius: 50%;
	border: 1px solid #d7d7d7;
	background-color: #fff;
	position: relative;
	transition: 0.2s ease;
}
.card_select input[type=radio] + em:before,
.nums_list input[type=radio] + label em:before {
	content: '';
	position: absolute;
	width: 50%;
	height: 50%;
	border-radius: 50%;
	background-color: #396df1;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	transition: 0.2s ease;
}
.card_select input[type=radio]:checked + em,
.nums_list input[type=radio]:checked + label em {
	border-color: #396df1;
}
.card_select input[type=radio]:checked + em:before,
.nums_list input[type=radio]:checked + label em:before {
	transform: translate(-50%, -50%) scale(1);
}
.default_checkbox label {
	cursor: pointer;
	display: flex;
	gap: 8px;
}
.default_checkbox label em {
	display: inline-block;
	width: 20px;
	height: 20px;
	min-width: 20px;
	border-radius: 3px;
	border: 1px solid #d7d7d7;
	background-color: #fff;
	position: relative;
	transition: 0.15s ease;
}
.default_checkbox label em:before {
	content: '';
	position: absolute;
	background-color: #396df1;
	width: 2px;
	height: 5px;
	top: 8px;
	left: 5px;
	transition: 0.15s ease;
	transform: rotate(-45deg) scale(0);
}
.default_checkbox label em:after {
	content: '';
	position: absolute;
	background-color: #396df1;
	width: 2px;
	height: 11px;
	top: 4px;
	left: 10px;
	transition: 0.15s ease;
	transform: rotate(45deg) scale(0);
}
.default_checkbox input:checked + label em {
	border-color: #396df1;
}
.default_checkbox input:checked + label em:before {
	transform: rotate(-45deg) scale(1);
}
.default_checkbox input:checked + label em:after {
	transform: rotate(45deg) scale(1);
}
input:read-only {
	background-color: #f1f1f1;
}
.scrollbar::-webkit-scrollbar {
	width: 3px;
}
.scrollbar::-webkit-scrollbar-thumb {
	background-color: #333;
	border-radius: 30px;
}
.scrollbar::-webkit-scrollbar-track {
	background-color: #d7d7d7;
}