@charset "utf-8";

@import url(./header.css);
@import url(./etc.css);

.img_content img {
	width: 100%;
}
.editor_content img {
	max-width: 100%;
}

/* base */
input[type='number']::-webkit-outer-spin-button,
input[type='number']::-webkit-inner-spin-button {
	-webkit-appearance: none;
	appearance: none;
	margin: 0;
}

input[type='tel'],
input[type='time'],
input[type='text'],
input[type='password'],
input[type='search'],
input[type='email'],
input[type='file'],
input[type='url'],
input[type='number'],
input[type='date'],
textarea {
	width: 100%;
	height: 48px;
	padding: 0 15px;
	font-size: 14px;
	color: var(--input-color);
	border: 1px solid var(--input-normal-line);
	background: var(--bg-color-white);
	border-radius: 3px;
	transition: all 0.5s;
	vertical-align: middle;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: var(--input-placeholder);
	font-size: 14px;
}
button:focus,
button:active,
select:focus,
textarea:focus,
input:focus {
	outline: 0;
}
select:focus:not(:focus-visible),
textarea:focus:not(:focus-visible),
input:focus:not(:focus-visible) {
	outline: none;
	border: 1px solid var(--line-color);
}
/* search 경우 클릭할때 둥글게 나오는 경우 있음 사각형으로 만듬input[type=password][disabled], */
input[type='tel'][readonly],
input[type='text'][readonly],
input[type='password'][readonly],
input[type='search'][readonly],
input[type='email'][readonly],
input[type='tel'][disabled],
input[type='text'][disabled],
input[type='password'][disabled],
input[type='search'][disabled],
input[type='email'][disabled] {
	background: var(--input-disabled);
	border-color: var(--input-disabled);
	color: var(--txt-color-gray);
	-webkit-text-fill-color: var(--txt-color-gray);
	-webkit-appearance: none;
	appearance: none;
	font-size: 14px;
}
textarea[readonly],
textarea[disabled] {
	padding: 11px;
	font-size: 14px;
	color: var(--txt-color-gray);
	-webkit-text-fill-color: var(--txt-color-gray);
	font-weight: normal;
	line-height: 140%;
	background: var(--input-disabled);
	border: 1px solid var(--input-disabled);
}

textarea {
	padding: 15px 20px;
	min-height: 100px;
	resize: none;
}
select {
	width: 100%;
	padding: 0 16px;
	font-size: 14px;
	color: var(--input-color);
	background: var(--bg-color-white) url('../image/icon/ico_select_arrow.png')
		no-repeat right 0px top 50%;
	background-size: 12px 8px;
	-webkit-appearance: none;
	appearance: none;
}

/* input */
.input_error {
	border-color: var(--input-error-line) !important;
}
.err_txt {
	margin-top: 10px;
	font-size: 12px;
}

.input_clear {
	position: relative;
}
.input_clear input {
	padding: 0 40px 0 15px;
}
/* .input_clear .clear_btn {position: absolute; top:0; right:0px; width:40px; height:40px; margin-top: -20px; background: transparent;display: none;}
.input_clear .clear_btn:before {content:''; display:block; margin:0 auto; height:20px; width:20px; background:url('../image/icon/icon_close_20.png') var(--bg-color-white) no-repeat center/contain;}
.input_clear .clear_btn.on { display: block;}
.input_clear .search_btn { display: flex; align-items: center; justify-content: center;}
.input_clear button.visibile {visibility: visible;}
.input_clear button.hidden {visibility: hidden;} */
.input_clear .clear_btn {
	display: none;
	position: absolute;
	top: 0;
	right: 0px;
	height: 48px;
	width: 40px;
	background: transparent;
}
.input_clear .clear_btn.on {
	display: block;
}
.input_clear .clear_btn:before {
	content: '';
	display: block;
	margin: 0 auto;
	height: 15px;
	width: 15px;
	background: url('../image/icon/ico_input_clear.png') no-repeat 50% 50%;
	background-size: 14px 14px;
}
.input_clear .clear_btn.visibile {
	visibility: visible;
}
.input_clear .clear_btn.hidden {
	visibility: hidden;
}

.input_clear.search:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 40px;
	height: 40px;
	background: url('../image/icon/btn_back_15.png') no-repeat center;
}
.input_clear.search input {
	padding: 0 40px 0 15px;
}

.input_clear.search {
	width: 320px;
}

/*input*/

.input_group {
	display: flex;
	flex-wrap: wrap;
	min-height: 48px;
	border: 1px solid var(--input-normal-line);
	border-radius: 3px;
	padding-top: 0;
	position: relative;
}
/* .input_group.is_active {border:1px solid var(--input-focus); } */
.input_group input {
	width: 100%;
	padding: 0 15px;
	border: 0;
	min-height: 16px;
	border-radius: 3px;
}
.input_group .form_bytes {
	width: 100%;
	text-align: right;
	font-size: 12px;
	color: var(--txt-color-gray02);
	padding: 11px 15px;
}
/* .input_group .form_bytes strong {color:var(--txt-color);} */
.input_group .form_bytes strong.normal {
	color: var(--txt-color-gray02);
}
.input_group .form_bytes.float {
	position: absolute;
	right: 0;
	top: 0;
	padding: 15px 15px 15px 0;
	width: 55px;
	text-align: right;
}
.input_group .form_bytes.float .byte {
	font-weight: 500;
}

.textarea_group .form_bytes {
	color: var(--txt-color-gray02);
}
.input_group:has(input:focus) {
	border: 1px solid #000;
}
.input_group.is_active .form_bytes .byte {
	color: var(--txt-color);
}

/* textarea */
.textarea_group {
	display: flex;
	flex-wrap: wrap;
	min-height: 180px;
	border: 1px solid var(--input-normal-line);
	border-radius: 3px;
	padding-top: 15px;
}
.textarea_group.is_active {
	border: 1px solid var(--input-focus);
}
.textarea_group textarea {
	padding: 0 20px 0 15px;
	border: 0;
	min-height: 110px;
}
.textarea_group .form_bytes {
	width: 100%;
	text-align: right;
	font-size: 12px;
	color: var(--txt-color-gray02);
	padding: 15px 20px;
}
.textarea_group .form_bytes strong {
	color: var(--txt-color);
}

/* checkbox/radio */
.radio,
.checkbox {
	position: relative;
	display: inline-flex;
}
.checkbox label::before,
.radio label::before {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 20px 20px;
}
.radio label,
.toggle label,
.checkbox label {
	position: relative;
	display: block;
}
.radio label::before,
.radio label::after,
.checkbox label::before {
	content: '';
	display: block;
	position: absolute;
}
.radio input[type='radio'],
.checkbox input[type='checkbox'] {
	cursor: pointer;
	position: absolute;
	opacity: 0 !important;
	outline: none;
}
.checkbox,
.radio {
	font-size: 14px;
	line-height: 22px;
	min-height: 20px;
}
.checkbox label,
.radio label {
	padding-left: 20px;
}
.checkbox label > span,
.radio label > span {
	padding-left: 8px;
}

.checkbox input,
.checkbox label::before,
.radio input,
.radio label::before {
	width: 20px;
	height: 20px;
	left: 0;
	top: 1px;
}
.checkbox input:checked + label::before {
	background-color: var(--bg-color-white);
	background-image: url('../image/icon/ico_check_checked.png');
}
.checkbox input:disabled + label::before {
	background-image: url('../image/icon/ico_check_checked_disable.png');
}
.checkbox label::before {
	background-color: var(--bg-color-white);
	background-image: url('../image/icon/ico_check.png');
}

.radio label::before {
	background-image: url('../image/icon/ico_radio.png');
}
.radio input:checked + label::before {
	background-image: url('../image/icon/ico_radio_checked.png');
}
.radio input:disabled + label::before {
	opacity: 0.4;
}

/* form list */
.form_list_check.type1 button {
	vertical-align: top;
	width: 44px;
	margin-left: 8px;
	padding: 0;
}
.form_list_check.type1 .value {
	color: var(--txt-color-gray01);
}
.form_list_check .value.checked,
.form_list_check .has_coupon .value {
	color: var(--txt-color);
}

/* 자동완성 검색 */
.search_tab_wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
}
.search_header_wrap {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
/* .search_header_wrap.is_active {  } */
.search_header_wrap .filter_search_layer {
	display: none;
}
.search_header_wrap.is_active .input_clear.search {
	border: 1px solid var(--line-color);
	border-bottom: 0;
}
.search_header_wrap.is_active .input_clear.search input {
	border: none;
}
.search_header_wrap.is_active .filter_search_layer {
	display: block;
	border: 1px solid var(--line-color);
	border-top: 0;
}
.search_header_wrap.is_active .filter_search_layer::before {
	content: '';
	position: absolute;
	display: block;
	top: 0;
	left: 15px;
	right: 15px;
	height: 1px;
	background: var(--line-color-gray);
}

.filter_search_layer {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	width: 100%;
	padding: 14px 15px;
	background: var(--bg-color-white);
	z-index: 1;
}
.filter_search_layer ul {
	height: 180px;
	overflow: auto;
}
.filter_search_layer li {
	padding: 6px 0;
}
.filter_search_layer em {
	color: var(--txt-point);
}
.search_header_wrap + .search_result_wrap {
	margin-top: 30px;
}
/* .search_result_wrap .search_txt_list {border-bottom: 1px solid var(--line-color-gray); overflow: visible;}
.search_result_wrap .search_txt_list .inner { padding: 40px 20px 20px 0; overflow: auto; }
.search_result_wrap .search_txt_list .search_txt_item { padding-left: 0; padding-right: 0; }
.search_result_wrap .search_txt_list .search_txt_item + .search_txt_item { margin-left: 15px;} */

/* .search_wrap .input_clear.search { margin-bottom: 20px; } */
/* 자동완성 선택한 리스트 */
.search_txt_wrap {
	border-bottom: 1px solid var(--line-color-gray);
}
/* .search_txt_list { display: flex; padding: 10px 0px 30px; overflow-x: auto; white-space: nowrap; } */
.search_txt_item {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
}
/* .search_txt_item + .search_txt_item {margin-left: 13px; } */
.search_txt_item .btn_del {
	display: inline-block;
	width: 14px;
	height: 14px;
	margin-left: 5px;
	background: url('../image/icon/ico_delete.png') no-repeat center / contain;
	border-radius: 50%;
}

/* 자기자신 지우기 - 폰트사이즈 14px */
/* .search_txt_list.type2 { padding: 0; }
.search_txt_list.type2 .search_txt_item { font-size: 14px; font-weight: 700; }
.search_txt_list.type2 .search_txt_item .option + .option { margin-left: 5px; }
.search_txt_list.type2 .search_txt_item + .search_txt_item { margin-left: 20px; } */

/* 자동완성 - 자동완성 결과 */
.auto_complete_wrap {
	display: none;
}
.auto_complete_wrap.on {
	display: block;
}
.auto_complete_wrap ul {
	max-height: 210px;
	display: flex;
	flex-wrap: wrap;
	row-gap: 20px;
	overflow: auto;
}
.auto_complete_wrap ul li {
	flex: 0 0 20%;
	padding-right: 30px;
}
/* .auto_complete_wrap li + li { margin-top: 20px; } */
.auto_complete_wrap .checkbox label {
	display: flex;
	flex-direction: column;
}
/* .auto_complete_wrap .checkbox .tit { font-weight: 500;} */

/* range slider */
.jqueryslider {
	display: flex;
	flex-direction: column;
	flex: 1;
	margin: 0 5px;
}
.jqueryslider_price {
	margin: 0 -5px 8px -5px;
	display: flex;
	justify-content: space-between;
}
.jqueryslider .ui-widget.ui-widget-content {
	border: none;
	position: relative;
}
.jqueryslider .ui-widget.ui-widget-content::after {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 4px;
	background: var(--bg-color-black);
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.jqueryslider .ui-slider .ui-slider-range {
	top: 5px;
	height: 2px;
	background: var(--bg-color-black);
}
.jqueryslider .ui-slider .ui-slider-handle {
	top: 50%;
	width: 16px;
	height: 16px;
	margin-left: -8px;
	border-radius: 50%;
	background: var(--bg-color-black);
	border: none;
	transform: translateY(-50%);
	box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
}
.jqueryslider .ui-widget-header {
	background-color: transparent;
}
.jqueryslider [data-event='slider-before'] {
	text-align: left;
}
.jqueryslider [data-event='slider-after'] {
	text-align: right;
}
/* range slider - input 리셋 */
.jqueryslider input[type='text'],
.jqueryslider input[type='text'][readonly] {
	height: auto;
	padding: 0;
	border: none;
	background: transparent;
	color: var(--txt-color);
}

.jqueryslider .bars {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.jqueryslider .bars [class^='bar'] {
	display: block;
	position: absolute;
	top: 50%;
	width: 2px;
	height: 8px;
	margin-top: -4px;
	background-color: var(--input-disabled);
}

/* 팝업 리스트 스타일 버튼 */
.btn_list > li:not(.drop_box) {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 46px;
	text-align: center;
	font-weight: 700;
}

/* 드롭다운 */
.drop_box {
	flex-direction: column;
	z-index: 1;
	position: relative;
}
.drop_box .btn_drop {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100%;
	height: 46px;
	padding: 0 20px;
	font-weight: 700;
}
/* todo 드롭다운 이미지 변경필요 */
.drop_box .btn_drop:after {
	content: '';
	display: inline-block;
	margin-left: 4px;
	width: 15px;
	height: 15px;
	background: url('../image/icon/ico_more.png') no-repeat center center/15px
		15px;
	transition: 0.2s;
}
.drop_box .btn_drop.on:after {
	transform: rotate(180deg);
}
.drop_box .drop_list {
	position: relative;
	display: none;
	width: 100%;
	overflow-y: auto;
}
.drop_box .drop_list li {
	height: 46px;
	line-height: 46px;
}
.drop_box .drop_list li a {
	display: block;
	font-weight: 400;
	color: var(--txt-color-gray);
	text-align: center;
}

/* div select */
.custom_select_wrap {
	padding: 0 14px;
	border: 1px solid var(--line-color-gray01);
	border-radius: 3px;
}
.custom_select_wrap.is_active {
	border: 1px solid var(--line-color);
}
.custom_select_wrap + .custom_select_wrap {
	margin-top: 10px;
}
.option_selected {
	position: relative;
	width: 100%;
	height: 48px;
	line-height: 48px;
	text-align: left;
	padding-right: 20px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.option_selected::after {
	position: absolute;
	top: 50%;
	right: 0;
	margin-top: -7px;
	content: '';
	display: block;
	width: 15px;
	height: 15px;
	background: url('../image/icon/ico_open.png') no-repeat center center/15px
		15px;
}
.custom_select_wrap.is_active .option_selected::after {
	transform: rotate(180deg);
}
.option_list {
	display: none;
	max-height: 288px;
	border-top: 1px solid var(--line-color-gray);
	overflow: auto;
}
.option_list li {
	position: relative;
}
.option_list .option {
	width: 100%;
	height: 48px;
	line-height: 48px;
	text-align: left;
	cursor: pointer;
}
.option_list .option:disabled {
	color: var(--btn-disabled);
}
.option_list .status {
	position: absolute;
	right: 0;
	top: 0;
	display: flex;
	align-items: center;
	height: 100%;
	font-size: 12px;
}
.option_list .status.soldout {
	color: var(--txt-point);
}
.option_list .status.alarm {
	color: var(--txt-color);
	text-decoration: underline;
}
.option_list .status.alarm:disabled {
	color: var(--txt-color-gray02);
	text-decoration: none;
}

.custom_select_wrap.float_type {
	position: relative;
	min-width: 136px;
	padding: 0;
	border: 0;
}
.custom_select_wrap.float_type .option_selected {
	position: relative;
	width: 100%;
	height: auto;
	line-height: 1.2;
	text-align: right;
	padding: 0 20px 0 30px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	cursor: pointer;
}
.custom_select_wrap.float_type .option_selected::after {
	position: absolute;
	top: 50%;
	right: 0;
	margin-top: -7px;
	content: '';
	display: block;
	width: 15px;
	height: 15px;
	background: url('../image/icon/ico_open.png') no-repeat center center/15px
		15px;
}
.custom_select_wrap.float_type.is_active .option_selected::after {
	transform: rotate(180deg);
}
.custom_select_wrap.float_type .option_list {
	display: none;
	position: absolute;
	top: calc(100% + 10px);
	width: 100%;
	background: var(--bg-color-white);
	border-top: 1px solid var(--line-color-gray);
	z-index: 100;
	overflow: unset;
}
.custom_select_wrap.float_type .option_list li {
	position: relative;
	border: 1px solid var(--btn-line-black);
	background: var(--bg-color-white);
}
.custom_select_wrap.float_type .option_list li + li {
	border-top: 0;
}
.custom_select_wrap.float_type .option_list .option {
	width: 100%;
	height: 48px;
	line-height: 48px;
	padding: 0;
	text-align: left;
}

/*팝업*/
.modal_content .select_wrap + .select_wrap {
	margin-top: 10px;
}

/* count box */
.count_set {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
}
.count_set input {
	width: 50px;
	height: 30px;
	border: none;
	border-radius: 0;
	border-top: 1px solid var(--line-color-gray01);
	border-bottom: 1px solid var(--line-color-gray01);
	font-weight: 500;
	text-align: center;
}
.count_set input,
.count_set input:read-only {
	background-color: var(--bg-color-white);
	border-color: var(--line-color-gray01);
	color: var(--txt-color);
}
.count_set button {
	width: 30px;
	height: 30px;
	text-indent: -9999px;
	overflow: hidden;
	white-space: nowrap;
}
.count_set button.minus {
	background: url('../image/icon/btn_minus.png') no-repeat center
		center/contain;
}
.count_set button.plus {
	background: url('../image/icon/btn_plus.png') no-repeat center
		center/contain;
}
.count_set button.minus:disabled {
	background-image: url('../image/icon/btn_minus_disabled.png');
}
.count_set button.plus:disabled {
	background-image: url('../image/icon/btn_plus_disabled.png');
}

.count_wrap {
	margin-top: 25px;
}
.count_item {
	margin-top: 10px;
}
/* 기본 양쪽 정렬 */
.count_box {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.count_box .count_tit {
	display: inline-flex;
	align-items: center;
	margin-right: 20px;
	font-weight: 700;
	overflow: hidden;
}
.count_box .count_tit .option:first-child {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.count_box .count_tit .option + .option {
	margin-left: 5px;
}
.count_box .btn_del {
	flex: 0 0 auto;
	width: 16px;
	height: 16px;
	margin-left: 0;
	background: url('../image/icon/ico_delete_dg.png') no-repeat center /
		contain;
	border-radius: 50%;
}
.count_box + .count_box {
	margin-top: 10px;
}
/* 가로 정렬 */
.count_box.row {
	justify-content: flex-start;
}

.total_item {
	margin: 20px 0 30px;
}
.total_box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 12px;
	padding-top: 20px;
	border-top: 1px solid var(--line-color-gray);
}
.total_box .tit {
	font-weight: 500;
}
.total_box .total {
	font-size: 20px;
	font-weight: 700;
}

.msg {
	display: inline-flex;
	align-items: center;
	margin-top: 6px;
	color: var(--txt-color-gray);
	font-size: 12px;
	font-weight: 500;
}
.msg::before {
	content: '';
	display: inline-block;
	width: 14px;
	height: 14px;
	margin-right: 5px;
	background: url('../image/icon/ico_comment.png') no-repeat center / contain;
}
.msg.error {
	color: var(--txt-point);
}

.total_box + .msg {
	margin-top: -5px;
}

.form_section + .form_section {
	margin-top: 40px;
}
.form_section.row {
	display: flex;
	justify-content: space-between;
	align-items: center;
} /* 가로 정렬 */
.form_section [class^='list_type'] {
	margin-top: 20px;
}
.form_section.row .form_group {
	margin-top: 0;
}

.modal .textarea_group {
	min-height: 130px;
}
.modal .textarea_group textarea {
	min-height: 70px;
}

.form_label {
	font-weight: 700;
}
.form_label + .form_group {
	margin-top: 20px;
}
.form_label.required {
	display: inline-block;
}
.form_label.required::after {
	content: '*';
	display: inline-block;
	margin-left: 2px;
	font-size: 14px;
	color: var(--txt-color);
	font-weight: 700;
}

.form_group:not(.col) > * + * {
	margin-left: 20px;
}
.form_group.col > * + * {
	margin-top: 10px;
}
.form_group.col > .select_wrap + .select_wrap {
	margin-top: 10px;
}

.form_group.col button.clear_btn {
	margin-top: 0;
}

/* layout */
/* .container {min-width: 1280x; max-width: 1920px; margin-left: 30px; margin-right: 30px;} */

/* .filter_wrap.type2 { }
.filter_wrap.type2 .filter_group .filter { position: relative; display: flex; gap: 10px;}
.filter_wrap.type2 .filter_group .filter_head { padding: 30px 0;}

.filter_wrap.type2 .filter_group .select {  position: relative; display: flex; align-items: center; box-sizing: border-box; height: 48px;}
.filter_wrap.type2 .filter_group .filter_cont { display: none; position: absolute; top: 100%; left: 0; right: 0; width: 100%; }
.filter_wrap.type2 .filter_group .filter_cont.is_active {display: block;} */

.form_group.column {
	display: flex;
	flex-direction: column;
}
.form_group.row {
	display: flex;
}
.form_group.row .checkbox + .checkbox {
	margin-left: 60px;
}
.tab_style5 + .filter_wrap {
	margin-top: 30px;
}

.filter_group .select {
	position: relative;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	height: 48px;
}

.filter_head {
	position: relative;
	display: flex;
	gap: 10px;
}
.filter_cont {
	margin-top: 30px;
}
.filter_cont .cont {
	display: none;
	padding: 30px 0 0 0;
	border-top: 1px solid var(--line-color-gray);
}
.filter_cont .cont.is_active {
	display: block;
}
.filter_btn {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 30px;
	padding: 30px 0;
	border-top: 1px solid var(--line-color-gray);
}
.filter_btn .white {
	background: #fff;
	color: #000;
}
.filter_btn button {
	height: 48px;
	padding: 0 30px;
	border-radius: 3px;
	background: #000;
	border: 1px solid #000;
	color: #fff;
}

/* checkbox 버튼 */
.option_set + .option_set {
	border-top: 1px solid var(--line-color-gray);
}
.option_set + .option_set.accordion {
	border-top: 0;
}
.option_set + .option_set.accordion::after {
	content: '';
	display: block;
	position: absolute;
	left: 20px;
	top: 0;
	width: calc(100% - 40px);
	height: 1px;
	background: var(--line-color-gray);
}
.option_set:first-child .tit_area {
	padding-top: 0px;
}
.option_set:not(:last-child) {
	padding-bottom: 40px;
}
.option_set .tit_area {
	padding-top: 30px;
}

.option_box .option label {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 38px;
}

.tit_area .btn_text_line_s {
	margin-top: 0;
	font-weight: 500;
}
.con_area {
	padding: 20px 0px 0px;
}
.con_area.medium {
	max-width: 71%;
	min-width: 252px;
	margin-left: auto;
}
.con_area.medium .option_box {
	display: flex;
	flex-wrap: wrap;
}
.con_area.medium .option_box.option_2 {
	margin-left: 16px;
}
.con_area.medium .option_box.option_2 .option label {
	justify-content: flex-start;
	padding: 0 15px;
}

/* checkbox 버튼 */
.option_set + .option_set {
	border-top: 1px solid var(--line-color-gray);
	padding-top: 30px;
}
.option_set:not(:last-child) {
	padding-bottom: 50px;
}
.option_box {
	display: flex;
	flex-wrap: wrap;
}
/* .option_box .option {padding: 4px;} */
.option_box .option label {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 38px;
}
.option_tit {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 11px;
	line-height: 20px;
	font-weight: bold;
}
.option_tit .btn_text_line {
	font-weight: 400;
}
.option_con {
	padding: 14px 0px 0px;
}
.option_con.medium {
	max-width: calc(100% - 100px);
	margin-left: auto;
}
.option_con.medium .option_box {
	display: flex;
	flex-wrap: wrap;
}
/* accordion 리셋 */
.accordion .option_tit.acc_header {
	font-size: 14px;
}

/* checkbox 버튼 color chip 의 경우 */

.option_box.color_chip .option label:after {
	display: none;
}
.option_box.color_chip .option input + label,
.option_box.color_chip .option input:checked + label {
	border: none;
}

/* checkbox 버튼 - 선택 상태 */
.option_box .option label::after {
	content: '';
	display: block;
}
.option_box .option input + label {
	border-radius: 3px;
	border: 1px solid var(--btn-line-gray);
	background-color: var(--bg-color-white);
}
.option_box .option input:checked + label {
	border: 1px solid var(--btn-line-black);
}
.option_box .option input[type='radio'],
.option_box .option input[type='checkbox'] {
	cursor: pointer;
	position: absolute;
	opacity: 0 !important;
	outline: none;
}
.option_box .option {
	position: relative;
	display: inline-flex;
}
.option_box .option label {
	position: relative;
}
.option_box .option label::after {
	position: absolute;
	width: 10px;
	height: 10px;
	top: 50%;
	right: 15px;
	margin-top: -5px;
	background: none;
}
.option_box .option input:checked + label::after {
	background: url('../image/icon/ico_arrow2.png') no-repeat center / contain;
}
.option_box .option input:disabled + label::after {
	opacity: 0;
}

/* checkbox  버튼 - 선택 상태  color chip */
.option_box.color_chip .option label {
	position: relative;
	display: flex;
	flex-direction: column;
	height: auto;
	font-size: 12px;
}
.option_box.color_chip .option label span {
	display: block;
	width: 20px;
	height: 20px;
	margin-bottom: 10px;
	border-radius: 50%;
}
.option_box.color_chip .option input:checked + label span {
	position: relative;
}
.option_box.color_chip .option input:checked + label span::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 4px solid var(--bg-color-white);
	border-radius: 50%;
}
.option_box.color_chip .option input:checked + label span::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 1px solid var(--btn-line-black);
	border-radius: 50%;
}

/* checkbox 버튼 color chip 의 경우 */
.color_chip {
	padding: 40px;
	row-gap: 20px;
}
.color_chip .option {
	width: 100px;
}
.color_chip .option label:after {
	display: none;
}
.color_chip .option input + label,
.color_chip .option input:checked + label {
	border: none;
}
/* checkbox  버튼 - 선택 상태  color chip */
.color_chip .option label {
	position: relative;
	display: flex;
	flex-direction: column;
	height: auto;
	font-size: 12px;
}
.color_chip .option label span {
	display: block;
	width: 20px;
	height: 20px;
	margin-bottom: 8px;
	border-radius: 50%;
}
.color_chip .option input:checked + label span {
	position: relative;
	border: none;
}
.color_chip .option input:checked + label span::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 4px solid var(--bg-color-white);
	border-radius: 50%;
}
.color_chip .option input:checked + label span::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border: 1px solid var(--btn-line-black);
	border-radius: 50%;
}

.chip_coral {
	background-color: #ec8a8a;
}
.chip_red {
	background-color: #c32c21;
}
.chip_orange {
	background-color: #e47130;
}
.chip_yellow {
	background-color: #e47130;
}
.chip_gold {
	background-image: linear-gradient(134deg, #edd96d 5%, #d5b25b 105%);
}
.chip_beige {
	background-color: #e3c69e;
}
.chip_brown {
	background-color: #6e4216;
}
.chip_khaky {
	background-color: #848d4f;
}
.chip_green {
	background-color: #7dbc57;
}
.chip_emerald {
	background-color: #9ed9b1;
}
.chip_mint {
	background-color: #a0eae3;
}
.chip_blue {
	background-color: #658dbd;
}
.chip_navy {
	background-color: #2f4a88;
}
.chip_violet {
	background-color: #762381;
}
.chip_burgundi {
	background-color: #810021;
}
.chip_pink {
	background-color: #ca5b98;
}
.chip_black {
	background-color: #000000;
}
.chip_gray {
	background-color: #b1b1b1;
}
.chip_white {
	background-color: #ffffff;
	border: 1px solid #cccccc;
}
.chip_silver {
	background-image: linear-gradient(135deg, #ebebeb, #c9c9c9);
}
.chip_stripe {
	background: url('../image/icon/color_stripe.png') no-repeat center/contain;
}
.chip_etc {
	background: url('../image/icon/color_etc.png') no-repeat center/contain;
}

/* checkbox 버튼 - 선택 상태 */
.option_box .option input + label {
	border-radius: 3px;
	border: 1px solid var(--btn-line-gray);
	background-color: var(--bg-color-white);
}
.option_box .option input:checked + label {
	border: 1px solid var(--btn-line-black);
}
.option_box .option input[type='radio'],
.option_box .option input[type='checkbox'] {
	cursor: pointer;
	position: absolute;
	opacity: 0 !important;
	outline: none;
}
.option_box .option {
	position: relative;
	display: inline-flex;
}
.option_box .option label {
	position: relative;
}
.option_box .option label::after {
	content: '';
	display: block;
	position: absolute;
	width: 10px;
	height: 10px;
	top: 50%;
	right: 10px;
	margin-top: -5px;
	background: none;
}
.option_box .option input:checked + label::after {
	background: url('../image/icon/ico_filter.png') no-repeat center / contain;
}
.option_box .option input:disabled + label::after {
	opacity: 0;
}

/* form list */
.form_list_check.type1 button:not(.tooltip_open) {
	vertical-align: top;
	width: 44px;
	margin-left: 8px;
	padding: 0;
}
.form_list_check.type1 button.btn_info {
	margin-left: 3px;
}
.form_list_check.type1 .value {
	color: var(--txt-color-gray01);
	font-size: 12px;
}
.form_list_check .value.checked,
.form_list_check .has_coupon .value {
	color: var(--txt-color);
}

/* 아코디언 */
.accordion_cont {
	display: none;
}

/* 사진 첨부 */
.attach_wrap .attach_top {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.attach_wrap .guide_txt {
	font-size: 12px;
	color: var(--txt-color-gray);
}
.attach_wrap .attach_img {
	height: 22px;
	padding: 3px 10px;
	background-color: var(--bg-color-black);
	border-radius: 2px;
	font-size: 12px;
	color: var(--txt-color-white);
	cursor: pointer;
}
.attach_wrap input[type='file'] {
	display: none;
}
.attach_wrap .attached {
	margin-top: 20px;
}
.attach_wrap .attached a {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 60px;
	overflow: hidden;
}
.attach_wrap .attached a:before {
	content: '';
	opacity: 0.7;
	position: absolute;
	right: 4px;
	top: 4px;
	width: 14px;
	height: 14px;
	background: url('../image/icon/ico_delete_dg.png') no-repeat center;
	background-size: 14px 14px;
	z-index: 1;
}
.attach_wrap .attached .img_crop {
	position: absolute;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 100%;
}
.attach_wrap .attached .img_crop img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0;
}

/* on/off toggle */
.onoff_toggle {
	position: relative;
	display: inline-flex;
	width: 32px;
	height: 18px;
}
.onoff_toggle input[type='checkbox'] {
	position: absolute;
	top: 0px;
	left: 0px;
	opacity: 0 !important;
}
.onoff_toggle label {
	position: relative;
	display: block;
	width: 100%;
}
.onoff_toggle label::before,
.onoff_toggle label::after {
	content: '';
	position: absolute;
	display: block;
}
.onoff_toggle label::before {
	width: 100%;
	height: 18px;
	background-color: var(--bg-color-gray);
	border-radius: 20px;
}
.onoff_toggle label::after {
	top: 1px;
	left: 1px;
	width: 16px;
	height: 16px;
	background-color: var(--bg-color-white);
	border-radius: 50%;
	transition: left 0.1s ease;
}
.onoff_toggle input:checked ~ label:before {
	background-color: var(--bg-color-black);
}
.onoff_toggle input:checked ~ label:after {
	left: 15px;
}

.onoff_wrap {
	display: flex;
	align-items: center;
}
.onoff_wrap .onoff_txt {
	margin-right: 10px;
}

/* 이벤트 기획전 상세 */
.container .center_type {
	min-width: 1280px;
	padding-left: 30px;
	padding-right: 30px;
}
.container .center_type.wd_type1 {
	min-width: 1280px;
	padding-left: 30px;
	padding-right: 30px;
}
.container .center_type1 {
	min-width: 1280px;
	padding-left: 30px;
	padding-right: 30px;
}
/* .container .center_type2 .inner {min-width: 1280px; padding-left: 30px; padding-right: 30px; } */
.container .center_type4 {
	min-width: 1280px;
	padding-left: 30px;
	padding-right: 30px;
}
.has_lnb.type1 {
	min-width: 1280px;
}
.container .content {
	min-width: 1280px;
}
.has_lnb.type1 .content {
	min-width: 840px;
}
.twoway_full_area {
	min-width: 1280px;
}
.tab_script_wrap .sticky {
	min-width: 1280px;
	z-index: 101;
}
.tab_script_wrap.twoway_right_area .sticky {
	min-width: unset;
}
.tab_script_wrap .content {
	min-width: unset;
}
.tab_script_wrap .content.center_type,
.tab_script_wrap .ui_tab_cont_anchor {
	min-width: 1280px;
}
.twoway_left_area .content {
	min-width: unset;
}
.twoway_right_area .content {
	min-width: unset;
}
.top_area {
	min-width: 1280px;
}
.container .center_type3 .content {
	min-width: 980px;
}

.twoway_center {
	max-width: 2560px;
	margin: 0 auto;
	display: flex;
	height: 100%;
}
.twoway_center .os-content {
	padding-bottom: 300px;
}
.twoway_center .os-content > *:last-child {
	padding-bottom: 0px !important;
}
.twoway_left_area {
	width: calc(100% / 3 * 2);
}
.twoway_right_area {
	width: calc(100% / 3);
}
/* .twoway_center .content { padding-bottom: 300px;} */
.lookbook_sub .twoway_left_area {
	padding: 60px 0 0 0;
} /*룩북여핵*/
.lookbook_sub .twoway_left_area .brand_list {
	width: calc(100% - 60px);
	margin-bottom: 60px;
	margin-left: 30px;
	margin-right: 30px;
} /*룩북여핵*/
.lookbook_sub .twoway_right_area {
	border-left: 1px solid var(--bg-color-gray02);
	justify-content: stretch;
} /*룩북여핵*/

.twoway_full_area {
	width: 100%;
	position: relative;
}
/* .twoway_full_area .insert_html + .content.center_type { margin-top: 120px;} */

.twoway_left_area .mcus_scroll {
	max-height: 100%;
}
.twoway_left_area .content {
	padding-top: 120px;
}
.twoway_left_area .badge_wrap [class^='badge'] {
	font-size: 13px;
	height: 30px;
	line-height: 30px;
}
.twoway_left_area .product_info.swiper-wrapper > li {
	width: calc(100% / 3);
}
.twoway_left_area .content .badge_wrap,
.twoway_full_area .content .badge_wrap {
	position: absolute;
	top: unset;
	left: 0;
}

.twoway_full_area .badge_wrap.fixed,
.twoway_left_area .badge_wrap.fixed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 40px;
	overflow: hidden;
	z-index: 100;
}
.twoway_full_area .badge_wrap.fixed::before,
.twoway_left_area .badge_wrap.fixed::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 40px;
	background: #000;
	opacity: 0.6;
}
.twoway_full_area .badge_wrap.fixed .badge.orange,
.twoway_left_area .badge_wrap.fixed .badge.orange {
	position: relative;
	width: 100%;
	height: 40px;
	padding: 9px 0 0;
	background: none;
	font-size: 14px;
	line-height: 22px;
	color: #fff;
}

.twoway_right_area .mcus_scroll {
	max-height: calc(100% - 56px);
}
.twoway_right_area .sticky {
	width: calc(100% - (100% / 3 * 2));
	background: var(--bg-color-white);
	z-index: 99;
}
.insert_html {
	position: relative;
}

/* .twoway_right_area > .sticky ~ .mcus_scroll .content { padding-top: 117px;} */
.twoway_right_area .sticky {
	width: 100%;
	overflow: hidden;
	padding: 0;
}

/* .twoway_right_area ..sticky .tab_btn { height: 57px;} */

.twoway_right_area .sticky .swiper-slide {
	width: auto;
}
.twoway_right_area .tab_style3 .tab_btn {
	font-size: 14px;
}
.twoway_right_area .product_list.product_info > li {
	width: calc(50% - 10px);
}
.twoway_right_area .brand_area {
	border: 0;
}
.twoway_right_area .brand_area .brand_info a {
	padding: 0;
}
.twoway_right_area .brand_area li {
	margin-bottom: 30px;
}
.twoway_right_area .brand_area li:last-child {
	margin-bottom: 0;
}
.twoway_right_area .brand_area .button_equal {
	top: 50%;
	right: 0;
	margin-top: -12px;
}

.twoway_right_area .section_block + .section_block {
	margin-top: 120px;
}

.twoway_left_area .product_list_evt li,
.twoway_full_area .content .product_list_evt li {
	width: calc(100% / 3 - 10px);
}

.os-theme-dark > .os-scrollbar-vertical,
.os-theme-light > .os-scrollbar-vertical {
	bottom: 7px !important;
	width: 7px !important;
}
.os-theme-dark > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle {
	background: var(--bg-color-gray) !important;
}
.twoway_right_area .swiper-pagination-progressbar {
	background: none;
	box-shadow: 0px -1px 0px 0px var(--line-color-gray) inset;
}

.swiper_tab .tab_style2 {
	overflow: inherit;
	padding: 0;
	border: none;
}
.swiper_tab .tab_style2 .tab_btn:last-child {
	padding: 0;
}
.swiper_tab .tab_style2 .tab_btn:last-child.is_active:after {
	width: 100%;
}
.swiper_tab {
	box-shadow: 0px -1px 0px 0px var(--line-color-gray) inset;
	padding: 0 30px;
}
.swiper_tab .swiper-horizontal > .swiper-scrollbar,
.swiper_tab .swiper-scrollbar.swiper-scrollbar-horizontal {
	height: 3px;
}
.swiper_tab .swiper-scrollbar {
	background: transparent;
}
.swiper_tab .swiper-scrollbar-drag {
	background: var(--bg-color-gray);
	border-radius: 1.5px;
}

.event_deatil_contents {
	min-height: 100px;
}

html.twoway::-webkit-scrollbar {
}
.twoway_right_area {
	position: sticky;
	z-index: 1;
	right: 0;
	top: 100px !important;
	height: calc(100vh - 100px) !important;
	overflow: auto;
	padding-bottom: 300px;
}
.twoway_right_area {
	background: #fff;
	z-index: 500;
}
.twoway_right_area::-webkit-scrollbar {
}
.twoway_right_area::-webkit-scrollbar {
	position: absolute;
	right: 3px;
	width: 3px;
	height: 0px;
	background-color: transparent;
}
.twoway_right_area::-webkit-scrollbar-thumb {
	background-color: #ccc;
	border-radius: 1.5px;
}
.twoway_right_area .sticky {
	top: 0 !important;
}
.twoway_center .twoway_left_area {
	padding-bottom: 300px;
	overflow: hidden;
}
.event_deatil_contents img {
	max-width: 100%;
}

.twoway_full_area {
	min-width: 1280px;
}
.tab_script_wrap .sticky {
	min-width: 1280px;
	z-index: 101;
}
.tab_script_wrap.twoway_right_area .sticky {
	min-width: unset;
}
.tab_script_wrap .content {
	min-width: unset;
}
.tab_script_wrap .content.center_type,
.tab_script_wrap .ui_tab_cont_anchor {
	min-width: 1280px;
}
.twoway_left_area .content {
	min-width: unset;
}
.twoway_right_area .content {
	min-width: unset;
}

/* 셀렉트 디자인수정 */
.custom_select_wrap {
	padding-left: 0;
	padding-right: 0;
}
.option_selected {
	padding-left: 14px;
	padding-right: 34px;
}
.option_selected::after {
	right: 14px;
}
.option_list {
	max-height: 289px;
	border-color: #ccc;
}
.option_list li {
	padding: 0 14px;
}
.option_list .status {
	right: 14px;
}
