.ipt_col{
	position: relative;
}
.hint_txt{
	display: none;
	position: relative;
	left: 30px;
	width: max-content;
	font-size: 12px;
	margin-top: 10px;
	color: var(--red);
}
.hint_txt.show{
	display: block;
}
.hint_txt.clear{
	color: var(--purple);
}

/* INPUT */
.wv_ipt{
	background-color: transparent;
	font-size: 20px;
	border: none;
	outline: none;
	border-radius: 0;
	color: #262626;
	width: 100%;
	height: 60px;
	border-radius: 60px;
	border: 1px solid #C4C5CA;
	font-size: 14px;
	padding: 0 30px;
}
.wv_ipt:not(:read-only):focus{
	border-color: var(--purple);
}
.wv_ipt:read-only{
	color: #979797;
}
.wv_ipt#nicknameIpt:focus ~ .duplicate_inspection{
	background-color: var(--purple);
}
.wv_ipt::placeholder{
	color: #979797;
}
.wv_ipt#nicknameIpt{
	padding-right: 130px;
}
form .col6{
	--col-gap : 16px
}
/* INPUT END */

/* SELECT */
.wv_select{
	position: relative;
	width: 100%;
	max-width: 400px;
	padding: 0;
}
.wv_select.val{
	color: #262626;
}
.wv_select.show{
	border: 1px solid var(--purple);
}
.wv_select .wv_select_btn{
	position: relative;
	width: 100%;
	height: 100%;
	cursor: pointer;
	padding: 0 40px 0 30px;
	font-size: 14px;
	text-align: left;
}
.wv_select .wv_select_btn::after{
	display: flex;
	justify-content: center;
	align-items: center;
	content: "";
	position: absolute;
	right: 16px; top: 50%;
	transform: translateY(-50%) rotate(180deg);
	width: 24px;
	height: 24px;
	background: url("../images/icons/ico_select_arrow.svg") no-repeat center / cover;
}
.wv_select.show .wv_select_btn::after{
	transform: translateY(-50%) rotate(0deg);
}

.wv_select .wv_option_list{
	position: absolute;
	top: 100%; left: 0;
	margin-top: 6px;
	width: 100%;
	height: 210px;
	overflow-y: scroll;
	background-color: #fff;
	border-radius: 20px;
	border: 1px solid #dcdcdc;
	padding: 13px 0;
	color: #000;
	transform: scaleY(0);
	transform-origin: top;
	transition: transform 0.3s ease-in-out;
	overflow: hidden;
}
.wv_select .wv_option_list .scrollbar_custom{
	overflow-y: scroll;
	height: 100%;
}

.wv_select.show .wv_option_list{
	transform: scaleY(1);
	border-color: var(--purple);
}
.wv_select .wv_option_list li{
	transition: background-color 0.2s ease-in-out,
	color 0.2s ease-in-out;
	font-size: 14px;
}
.wv_select .wv_option_list label{
	display: block;
	width: 100%;
	height: 100%;
	padding: 3px 30px;
	border-radius: 8px;
	color: #737373;
	line-height: 140%;
}
.wv_select .wv_option_list input{
	width: 0;
	height: 0;
	position: absolute;
}
/* SELECT END */

/* CHECKBOX */
.checkbox_wrap{
	border-radius: 20px;
	border: 1px solid #C4C5CA;
	padding: 15px 12px;
}
.checkbox_wrap .ipt_col{
	padding: 0 20px;
}
.checkbox_wrap label{color: #979797;}
.checkbox_wrap label,
.checkbox_wrap .all_check_btn{
	display: flex;
	align-items: center;
	gap: 10px;
}
input[type="checkbox"]{
	position: absolute;
	width: 0; height: 0;
	left: -100vw;
	top: -100vh;
}
.checkbox_wrap .all_check_btn i{
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: 1px solid #C4C5CA;
}
.checkbox_wrap .all_check_btn.check i{
	background: url("../images/icons/ico_checked.svg") no-repeat center / cover;
}
.checkbox_wrap .ipt_col:nth-of-type(1){
	border-bottom: 1px solid rgba(196, 197, 202, 0.3);
	padding-bottom: 10px;
}
.checkbox_wrap .ipt_col:nth-of-type(2){
	padding-top: 10px;
	margin-bottom: 4px;
}
.checkbox_wrap .ipt_col input + label{
}
.checkbox_wrap .ipt_col input + label::before{
	content: "";
	width: 14px;
	height: 14px;
	border: 1px solid #C4C5CA;
	border-radius: 50%;
	background: url("../images/icons/ico_check.svg") no-repeat center / cover	;
}
.checkbox_wrap .ipt_col input:checked + label::before{
	background: url("../images/icons/ico_checked.svg") no-repeat center / cover;
}
.checkbox_wrap .ipt_col input + label .wv_modal_btn{
	margin-left: auto;
	display: block;
}

/* CHECKBOX END */

/* BUTTON */
.wv_btn{
	
}
.duplicate_inspection{
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	right: 10px;
	top: 9px;
	width: 110px; 
	height: 42px;
	border-radius: 30px;
	background-color: #C4C5CA;
}
.wv_submit_btn{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 60px;
	border-radius: 60px;
	background-color: var(--purple);
	font-size: 1rem;
	color: var(--white);
}
/* BUTTON END*/

/* FORM HINT */
.wv_form_hint{
	font-size: 12px;
	color: red;
	visibility: hidden;
}
.wv_form_hint.show{
	visibility: visible;
}
/* FORM HINT END */

/* Modal */
.wv_modal{
	position: fixed;
	top: 50%; left: 50%;
	z-index: 1000000;
	transform: translate(-50%, -50%);
	width: 820px;
	padding: 40px 0;
	background-color: #fff;
	border: 1px solid #000;
	font-size: 20px;
	text-align: center;
}
.wv_modal .wv_modal_btn{
	display: block;
	margin: 20px auto;
	padding: 10px 20px;
	width: 50%;
	font-size: 20px;
	font-weight: 600;
}
/* Modal END */

/* DIM */
.dim{
	display: none;
	position: fixed;
	left: 0; top: 0;
	z-index: 100000;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
}
/* DIM END */


/* Tab */
.tab_content_wrap{
	position: relative;
	width: 100%;
	height: 50px;
}
.wv_tab .wv_tab_btn{
	font-size: 18px;
	padding-bottom: 2px;
}
.wv_tab .wv_tab_btn.active{
	border-bottom: 2px solid aquamarine;
	color: aquamarine;
}
.tab_content_wrap .tab_content{
	display: none;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	padding-top: 20px;
}
.tab_content_wrap .tab_content.active{
	display: block;
}
/* Tab END */


