@charset "utf-8";

@import url("./font/s_core_dream/font.css");


/** tap-highlight-color: transparent */
* {
	-webkit-tap-highlight-color: transparent; 
	-webkit-tap-highlight-color: rgba(0,0,0,0); 
}

/** touch-call-out: none */
.touch-call-out, 
body {
	-webkit-touch-callout: none; 
}

/** user-select: none */ 
.user-select-none,
body {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/** touch-action: manipulation */
.touch-action-manipulation, 
button, body {
	touch-action: manipulation;
}

.pointer-events-none {pointer-events: none !important; }

/** text-size-adjust: none */
html, body {
	text-size-adjust: none; 
	-webkit-text-size-adjust: none;
	/* -webkit-text-size-adjust: 100%; */
}

/** scrollbar */
.non-scrollbar {
    -ms-overflow-style: none; /* 인터넷 익스플로러 */
    scrollbar-width: none; /* 파이어폭스 */
}
.non-scrollbar::-webkit-scrollbar {display: none;}


/** reset */
*, :after, :before {
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    box-sizing:border-box;
}
* {
	font-family: "SCoreDream", sans-serif; 
}
html {height: 100dvh; overscroll-behavior: none; }
body {
	height: 100%; 
	/* -webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale; */
}
a {color: #121212; text-decoration:none; outline: none; cursor: pointer; }
button {
	padding: 0; border: none; background: none; color: #000; outline: none; cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
}
img {max-width: 100%; height: auto; vertical-align: middle; }
img[src=""] {opacity: 0; }
input {padding: 0; border: none; border-radius: 0; background: none; outline: none; }
input[type="button"] {cursor: pointer; }
input[type="number"] {
  -moz-appearance: textfield;
}
input[type="number"]::-webkit-inner-spin-button, 
input[type="number"]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}
input:disabled {background: #FFF; }
input::placeholder {color: #B6B9C2; font-weight: 200; }
textarea::placeholder {color: #B6B9C2; font-weight: 200; }

.readonly {background: #F5F5F5 !important;}
input:read-only, 
select:read-only {cursor: default; }



/** flex */
.d-flex {display: flex; }
.flex-column {flex-direction: column; }
.flex1 {flex: 1; }


/** btn */
.btn {
	display: flex; align-items: center; justify-content: center; gap: 10px; 
	position: relative; height: 56px;
	border: 1px solid transparent; border-radius: 10px; color: #FFF; 
	font-size: 15px; font-weight: 500; 
	cursor: pointer; 
}
.btn .label {}
.btn.small {min-width: 65px; height: 32px; padding: 0 7px; border-radius: 6px; color: #121212; font-size: 12px; font-weight: 200; }

.btn.inactive {background: #F5F5F5; color: #8B8B8B; }
.btn.border-main {border: 1px solid var(--main-color); background: #FFF; color: var(--main-color); }
.btn.border-sub {border: 1px solid var(--sub-color); background: #FFF; color: var(--sub-color); }
.btn.border-c4 {border: 1px solid #C4C4C4; background: #FFF; color: #C4C4C4; }

.bg-main {background: var(--main-color); }
.bg-sub {background: var(--sub-color); }
.bg-black {background: var(--color-black); }
.bg-accent {background: var(--acc-color); }
.bg-ed {background: #EDEDED; color: #3D3D3D; }
.bg-c4 {background: #C4C4C4; }

.fc-main {color: var(--main-color) !important; }
.fc-sub {color: var(--sub-color) !important; }
.fc-black {color: var(--color-black) !important; }
.fc-accent {color: var(--acc-color) !important; }


/** field */
fieldset {display: flex; flex-direction: column; gap: 24px; }
.fld-group {}
.fld-row {display: flex; gap: 10px; }
.fld-box {display: flex; flex-direction: column; gap: 10px; }
.fld-label {display: flex; align-items: center; flex-wrap: wrap; gap: 5px 10px; color: #3D3D3D; font-size: 11px; font-weight: 500; }
.fld-label .label {position: relative; }
.fld-label.req .label:before {
	display: block; clear: both; content: ''; 
	position: absolute; top: 0; left: 100%; 
	width: 3px; height: 3px; margin-left: 3px; border-radius: 3px; 
	background: var(--main-color);
}
.fld-label .desc {line-height: 12px; color: #8B8B8B; font-size: 10px; font-weight: 200; }
.fld-cont {display: flex; flex-direction: column; gap: 8px 10px; }
.fld-cont.ver2 {gap: 0 8px; }

.fld-input {display: flex; align-items: center; height: 48px; border: 1px solid #E4E4E4; border-radius: 8px; overflow: hidden; }
.fld-input > input[type="text"],
.fld-input > input[type="password"] {flex: 1; min-width: 0; width: 100%; height: 100%; padding: 0 14px; background: none; font-size: 14px; font-weight: 500; }
.fld-input > button {margin-right: 8px; }

.fld-password .toggle {width: 20px; height: 20px; margin-right: 14px; visibility: hidden; }
.fld-password .toggle.active {visibility: visible; }
.fld-password > input[type="text"] ~ .toggle {background: url('/include/images/btn-show-password.svg') no-repeat center; }
.fld-password > input[type="password"] ~ .toggle {background: url('/include/images/btn-hide-password.svg') no-repeat center; }

.fld-input.fld-datepicker .datepicker {padding: 0 40px; background: url('/include/images/icon-datepicker.svg') no-repeat 15px center; text-align: center; }

.fld-birth {display: flex; align-items: center; gap: 10px; }
.fld-birth .select-wrap {flex: 1; }
.fld-show-pw {}

.fld-textarea {display: flex; height: 120px; border: 1px solid #E4E4E4; border-radius: 8px; overflow: hidden; }
.fld-textarea > textarea {flex: 1; height: 100%; padding: 15px; border: none; resize: none; outline: none; line-height: 22px; font-size: 14px; font-weight: 500; }

.fld-img-group {display: flex; gap: 10px; flex-wrap: wrap; }
.fld-img {position: relative; width: calc((100% - 20px) / 3); max-width: 110px;}
.fld-img:before {display: block; clear: both; content: ''; padding-bottom: 100%; }
.fld-img .btn-add-img {
	position: absolute; top: 0; left: 0; 
	width: 100%; height: 100%; border: 1px solid #E4E4E4; border-radius: 8px; 
	background: url('/include/images/btn-add-img.svg') no-repeat center, #F8F8F8; 
}

.fld-img .preview {position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.fld-img .thumb-wrap {position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 1px solid #E4E4E4; border-radius: 8px; background: #FFF; overflow: hidden; }
.fld-img .thumb-wrap img {display: block; width: 100%; height: 100%; object-fit: cover; }
.fld-img .btn-del-img {position: absolute; top: 0; right: 0; padding: 6px; }
.fld-img .btn-del-img:before {display: block; clear: both; content: ''; width: 22px; height: 22px; background: url('/include/images/btn-del-img.svg') no-repeat center; }

.fld-valid-text {display: none; line-height: 1.2; font-size: 10px; font-weight: 200; }
.fld-valid-text.valid {display: block; color: var(--color-blue); }
.fld-valid-text.invalid {display: block; color: var(--color-red); }
.fld-caution {
	display: flex; gap: 5px; 
	margin-top: 6px; padding: 5px; background: #F62E420D;
}
.fld-caution:before {display: block; clear: both; content: ''; position: relative; top: 1px; width: 13px; height: 13px; background: url('/include/images/icon-info-caution.svg') no-repeat center;}
.fld-caution span {line-height: 15px; color: var(--color-red); font-size: 9px; font-weight: 200; letter-spacing: -0.01em; }
.fld-caution.ver2 {background: var(--color-opacity-violet); }
.fld-caution.ver2:before {background: url('/include/images/icon-info-caution.svg_purple.svg') no-repeat center; }
.fld-caution.ver2 span {color: var(--color-violet);}



/** checkbox */
.chkbox-group {display: flex; gap: 10px; flex-wrap: wrap; }
.chkbox-group .chk-item {width: calc((100% - 10px) / 2); }
.chk-item {display: flex; }
.chk-item input[type="radio"],
.chk-item input[type="checkbox"] {
	position: absolute; width: 1px; height: 1px; margin: -1px; visibility: hidden; 
	appearance: none; outline: none; 
	-webkit-appearance: none; -webkit-outline: none;
}
.chk-item .chk-elem {
	flex: 1; display: flex; justify-content: center; align-items: center; 
	height: 48px; line-height: 1.2; border: 1px solid transparent; border-radius: 8px; background: #F5F5F5; color: #8B8B8B; 
	font-size: 14px; font-weight: 500; 
}
.chk-item input[type="radio"]:checked ~ .chk-elem,
.chk-item input[type="checkbox"]:checked ~ .chk-elem {border-color: var(--color-violet); background: var(--color-opacity-violet); color: var(--color-violet); }


.chk-v-item {display: flex; }
.chk-v-item input[type="checkbox"] {position: absolute; width: 1px; height: 1px; margin: -1px; visibility: hidden; overflow: hidden;}
.chk-v-item .chk-elem {display: flex; align-items: center; gap: 10px; }
.chk-v-item .chk-elem .chkbox {width: 13px; height: 9px; background: url('/include/images/icon-chk-off.svg') no-repeat center; }
.chk-v-item .chk-elem .chk-label {line-height: 14px; color: #8B8B8B; font-size: 12px; font-weight: 200; letter-spacing: -0.01em; }
.chk-v-item input[type="checkbox"]:checked ~ .chk-elem .chkbox {background: url('/include/images/icon-chk-on.svg') no-repeat center; }
.chk-v-item input[type="checkbox"]:checked ~ .chk-elem .chk-label {color: #121212; }

.chk-v-item.v-round .chk-elem .chkbox {width: 24px; height: 24px; background: url('/include/images/icon-chk-round-off.svg') no-repeat center; }
.chk-v-item.v-round .chk-elem .chk-label {line-height: 20px; color: #121212; font-size: 18px; font-weight: 500; }
.chk-v-item.v-round input[type="checkbox"]:checked ~ .chk-elem .chkbox {background: url('/include/images/icon-chk-round-on.svg') no-repeat center; }


/** radio */
.radio-item {display: flex; }
.radio-item input[type="radio"] {position: absolute; width: 1px; height: 1px; margin: -1px; visibility: hidden; overflow: hidden; }
.radio-item .radio-elem {display: flex; align-items: center; }
.radio-item .radio-elem .radio-box {}
.radio-item .radio-elem .radio-label {}
.radio-item input[type="radio"]:checked ~ .radio-elem .radio-box {}
.radio-item input[type="radio"]:checked ~ .radio-elem .radio-label {}



/** select */
.select-wrap {position: relative; height: 48px; border: 1px solid #E4E4E4; border-radius: 8px; }
.select-wrap .sel-label {display: flex; align-items: center; flex-wrap: wrap; gap: 5px; height: 100%; padding: 0 12px; }
.select-wrap .sel-label:after {display: block; clear: both; content: ''; width: 10px; height: 7px; background: url('/include/images/select-arrow.svg') no-repeat center; }
.select-wrap .sel-label .text {flex: 1; line-height: 16px; font-size: 14px; font-weight: 500; }
.select-wrap .sel-ul {display: none; position: absolute; min-width: max-content; width: 100%; background: #FFF; z-index: 20; }
.select-wrap .sel-ul li {padding: 10px 12px; line-height: 16px; font-size: 14px; }
.select-wrap .sel-value[value=""] ~ .sel-label .text {color: #969696; font-weight: 200; }

.select-wrap.active .sel-ul {display: block; margin-top: 5px; margin-bottom: 5px; padding: 5px 0; max-height: 200px; overflow: auto; box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.15); }



/** switch */
.switch-box {position: relative; }
.switch-input {
	position: absolute;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}
.switch-label {
	position: relative; 
	display: block; 
	width: 48px; height: 30px; 
	border-radius: 20px; background: #E4E4E4; 
	cursor: pointer;
	transition: all 0.2s linear;
}
.switch-label .onoff {
	position: absolute; top: 50%; left: 3px; transform: translateY(-50%); 
	width: 24px; height: 24px; 
	border-radius: 20px; background: #FFF; 
	transition: all 0.2s linear;
	box-shadow: 1px 1px 4px 0px rgb(0, 0, 0, 0.10);
}
.switch-input:checked + .switch-label {background: var(--main-color);}
.switch-input:checked + .switch-label .onoff {left: calc(100% - 27px); box-shadow: -1px 1px 4px 0px rgb(0, 0, 0, 0.10);}



/** 검색 (매칭, 투어) */
.sch-manage-area .f-sch-manage {padding: 24px 20px; border-radius: 15px; background: #FFF; box-shadow: 0px 2px 8px 0px rgb(0,0,0,0.1); }

.sch-manage-area .my-location * {cursor: pointer; }
.sch-manage-area .my-location i {width: 24px; height: 24px; margin-right: 10px; background: url('/include/images/icon-map-pin.svg') no-repeat center; }
.sch-manage-area .sel-location * {cursor: pointer; }
.sch-manage-area .sel-location i {width: 24px; height: 24px; margin-right: 10px; background: url('/include/images/icon-sel-location.svg') no-repeat center; }
.sch-manage-area .match-distance {padding-bottom: 20px; }
.sch-manage-area .distance-wrap {
	display: flex; justify-content: space-between; align-items: center; 
	position: relative; border-radius: 10px; background: #E4E4E4; 
}
.sch-manage-area .distance-wrap .bar {position: absolute; top: 0; left: 0; min-width: 20px; max-width: 100%; height: 100%; border-radius: 20px; background: var(--sub-color);}
.sch-manage-area .dist-item {display: block; position: relative; }
.sch-manage-area .dist-item .dist-chk {
	display: flex; justify-content: center; align-items: center; 
	position: relative; width: 20px; height: 20px; border: 2px solid #E4E4E4; border-radius: 20px; background: #FFF; 
}
.sch-manage-area .dist-item .dist-chk:before {
	display: block; clear: both; content: ''; 
	width: 8px; height: 8px; border-radius: 8px; background: #E4E4E4; 
} 
.sch-manage-area .dist-item .dist-label {
	position: absolute; top: 100%; left: 50%; transform: translateX(-50%); 
	width: max-content; line-height: 12px; margin-top: 6px; 
	font-size: 10px; font-weight: 500; 
}
.sch-manage-area .dist-item.active .dist-chk {border-color: var(--sub-color); }
.sch-manage-area .dist-item.active .dist-chk:before {background: var(--sub-color); }
.sch-manage-area .age-range {display: flex; align-items: center; gap: 10px;}
.sch-manage-area .f-btn-wrap {display: flex; }
.sch-manage-area .f-btn-wrap .btn {flex: 1; }
.sch-manage-area .f-btn-wrap .btn:before {
	display: block; clear: both; content: ''; 
	position: absolute; left: 20px;
	width: 18px; height: 18px; background: url('/include/images/btn-sch-submit-w.svg') no-repeat center;
}



/** 지역 선택 공통 */
.loca-list-ul {display: flex; flex-wrap: wrap; gap: 25px; padding: 30px 20px; }
.loca-list-ul > li {flex: 0 0 calc((100% - 50px) / 3);}
.loca-list-ul .loca-item {position: relative; cursor: pointer; }
.loca-list-ul .loca-item .hidden-chk {position: absolute; width: 1px; height: 1px; margin: -1px; visibility: hidden; 
	appearance: none; outline: none; 
	-webkit-appearance: none; -webkit-outline: none;
}
.loca-list-ul .loca-item .loca-elem {display: flex; flex-direction: column; }
.loca-list-ul .loca-item .loca-thumb {
	width: 100%; border: 1px solid transparent; border-radius: 10px; 
	background-color: #F8F8F8; background-repeat: no-repeat; background-position: center; background-size: contain; 
}
.loca-list-ul .loca-item .loca-thumb:before {display: block; clear: both; content: ''; padding-bottom: 100%; }
.loca-list-ul .hidden-chk:checked ~ .loca-elem .loca-thumb {border-color: var(--sub-color); background-color: #F8F3FC; }

.loca-list-ul li:nth-of-type(1) .loca-thumb {background-image: url('/include/images/tour/btn-tour-seoul-off.svg'); }
.loca-list-ul li:nth-of-type(2) .loca-thumb {background-image: url('/include/images/tour/btn-tour-gyeonggi-off.svg'); }
.loca-list-ul li:nth-of-type(3) .loca-thumb {background-image: url('/include/images/tour/btn-tour-incheon-off.svg'); }
.loca-list-ul li:nth-of-type(4) .loca-thumb {background-image: url('/include/images/tour/btn-tour-daejeon-off.svg'); }
.loca-list-ul li:nth-of-type(5) .loca-thumb {background-image: url('/include/images/tour/btn-tour-daegu-off.svg'); }
.loca-list-ul li:nth-of-type(6) .loca-thumb {background-image: url('/include/images/tour/btn-tour-busan-off.svg'); }
.loca-list-ul li:nth-of-type(7) .loca-thumb {background-image: url('/include/images/tour/btn-tour-ulsan-off.svg'); }
.loca-list-ul li:nth-of-type(8) .loca-thumb {background-image: url('/include/images/tour/btn-tour-gwangju-off.svg'); }
.loca-list-ul li:nth-of-type(9) .loca-thumb {background-image: url('/include/images/tour/btn-tour-sejong-off.svg'); }
.loca-list-ul li:nth-of-type(10) .loca-thumb {background-image: url('/include/images/tour/btn-tour-gyeongnam-off.svg'); }
.loca-list-ul li:nth-of-type(11) .loca-thumb {background-image: url('/include/images/tour/btn-tour-gyeongbuk-off.svg'); }
.loca-list-ul li:nth-of-type(12) .loca-thumb {background-image: url('/include/images/tour/btn-tour-jeonnam-off.svg'); }
.loca-list-ul li:nth-of-type(13) .loca-thumb {background-image: url('/include/images/tour/btn-tour-jeonbuk-off.svg'); }
.loca-list-ul li:nth-of-type(14) .loca-thumb {background-image: url('/include/images/tour/btn-tour-chungnam-off.svg'); }
.loca-list-ul li:nth-of-type(15) .loca-thumb {background-image: url('/include/images/tour/btn-tour-chungbuk-off.svg'); }
.loca-list-ul li:nth-of-type(16) .loca-thumb {background-image: url('/include/images/tour/btn-tour-gangwon-off.svg'); }
.loca-list-ul li:nth-of-type(17) .loca-thumb {background-image: url('/include/images/tour/btn-tour-jeju-off.svg'); }

.loca-list-ul li:nth-of-type(1) .hidden-chk:checked ~ .loca-elem .loca-thumb {background-image: url('/include/images/tour/btn-tour-seoul-on.svg'); }
.loca-list-ul li:nth-of-type(2) .hidden-chk:checked ~ .loca-elem .loca-thumb {background-image: url('/include/images/tour/btn-tour-gyeonggi-on.svg'); }
.loca-list-ul li:nth-of-type(3) .hidden-chk:checked ~ .loca-elem .loca-thumb {background-image: url('/include/images/tour/btn-tour-incheon-on.svg'); }
.loca-list-ul li:nth-of-type(4) .hidden-chk:checked ~ .loca-elem .loca-thumb {background-image: url('/include/images/tour/btn-tour-daejeon-on.svg'); }
.loca-list-ul li:nth-of-type(5) .hidden-chk:checked ~ .loca-elem .loca-thumb {background-image: url('/include/images/tour/btn-tour-daegu-on.svg'); }
.loca-list-ul li:nth-of-type(6) .hidden-chk:checked ~ .loca-elem .loca-thumb {background-image: url('/include/images/tour/btn-tour-busan-on.svg'); }
.loca-list-ul li:nth-of-type(7) .hidden-chk:checked ~ .loca-elem .loca-thumb {background-image: url('/include/images/tour/btn-tour-ulsan-on.svg'); }
.loca-list-ul li:nth-of-type(8) .hidden-chk:checked ~ .loca-elem .loca-thumb {background-image: url('/include/images/tour/btn-tour-gwangju-on.svg'); }
.loca-list-ul li:nth-of-type(9) .hidden-chk:checked ~ .loca-elem .loca-thumb {background-image: url('/include/images/tour/btn-tour-sejong-on.svg'); }
.loca-list-ul li:nth-of-type(10) .hidden-chk:checked ~ .loca-elem .loca-thumb {background-image: url('/include/images/tour/btn-tour-gyeongnam-on.svg'); }
.loca-list-ul li:nth-of-type(11) .hidden-chk:checked ~ .loca-elem .loca-thumb {background-image: url('/include/images/tour/btn-tour-gyeongbuk-on.svg'); }
.loca-list-ul li:nth-of-type(12) .hidden-chk:checked ~ .loca-elem .loca-thumb {background-image: url('/include/images/tour/btn-tour-jeonnam-on.svg'); }
.loca-list-ul li:nth-of-type(13) .hidden-chk:checked ~ .loca-elem .loca-thumb {background-image: url('/include/images/tour/btn-tour-jeonbuk-on.svg'); }
.loca-list-ul li:nth-of-type(14) .hidden-chk:checked ~ .loca-elem .loca-thumb {background-image: url('/include/images/tour/btn-tour-chungnam-on.svg'); }
.loca-list-ul li:nth-of-type(15) .hidden-chk:checked ~ .loca-elem .loca-thumb {background-image: url('/include/images/tour/btn-tour-chungbuk-on.svg'); }
.loca-list-ul li:nth-of-type(16) .hidden-chk:checked ~ .loca-elem .loca-thumb {background-image: url('/include/images/tour/btn-tour-gangwon-on.svg'); }
.loca-list-ul li:nth-of-type(17) .hidden-chk:checked ~ .loca-elem .loca-thumb {background-image: url('/include/images/tour/btn-tour-jeju-on.svg'); }

.loca-list-ul .name {padding-top: 15px; line-height: 16px; text-align: center; font-size: 15px; font-weight: 500; }



/** layout */
.overflow-hidden {overflow: hidden; }
.on-modal {overflow: hidden;}
.layout {min-width: 280px; width: 100%; max-width: var(--layout-max-width); margin: 0 auto; }
.inner20 {padding-left: 20px !important; padding-right: 20px !important; }
.inner15 {padding-left: 15px !important; padding-right: 15px !important; }
.inset-top, .safe-top-wrap {padding-top: calc(constant(safe-area-inset-top)); padding-top: calc(env(safe-area-inset-top)); }
.inset-bot, .safe-bot-wrap {padding-bottom: calc(constant(safe-area-inset-bottom)); padding-bottom: calc(env(safe-area-inset-bottom)); }
.relative {position: relative; }
.absolute {position: absolute; }
.sticky {position: sticky;}
hr.divide {display: block; height: 5px; margin: 0; border: none; background: #F5F5F5; }
.ellipsis {
	display: -webkit-box;
    -webkit-line-clamp: 1; /* 라인수 */
    -webkit-box-orient: vertical;
	white-space: normal; overflow: hidden; word-wrap: break-word; word-break: break-all;
}
.ellipsis2 {
	text-overflow: ellipsis; overflow: hidden; white-space: nowrap;
}

.countdown {display: none; padding-right: 10px; color: var(--sub-color); font-size: 12px; font-weight: 200; }
.countdown.show {display: block; }
.verified {display: none; width: 13px; height: 9px; margin-right: 15px; background: url('/include/images/icon-cert-verified.svg') no-repeat center; }
.verified.show {display: block; }
.input-hidden {position: absolute; width: 1px; height: 1px; margin: -1px; visibility: hidden; }

.blind {position: absolute; width: 1px; height: 1px; margin: -1px; visibility: hidden; }


/* dvh 단위를 지원하는 경우 */
@supports (min-height: 100dvh) {
  #all-wrap {
    min-height: 100dvh;
  }
  #container {height: 100dvh; }
}

/* 지원하지 않는 경우 fallback 스타일 */
@supports not (min-height: 100dvh) {
  #all-wrap {
    min-height: 100vh;
  }
  #container {height: 100vh; }
}


.section-head {padding: 30px 0; }
.section-head h3 {line-height: 30px; color: #121212; font-size: 20px; font-weight: 600; }
.section-head .desc {margin-top: 20px; padding-bottom: 10px; color: #3D3D3D; font-size: 14px; font-weight: 200; }
.section-body {display: flex; flex-direction: column; }

.empty-li {display: flex; justify-content: center; align-items: center; width: 100%; padding: 40px 0; line-height: 18px; font-size: 16px; font-weight: 500; }
.empty-li.no-location .wrap {display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 20px; }
.empty-li.no-location i {width: 28px; height: 28px; background: url('/include/images/icon-tour-list.svg') no-repeat center; }
.empty-li.no-location strong {line-height: 14px; color: #C4C4C4; font-size: 13px; font-weight: 500; }

.empty-li.no-result .wrap {display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 20px; }
.empty-li.no-result i {width: 28px; height: 28px; background: url('/include/images/icon-tour-list-no-result.svg') no-repeat center;}
.empty-li.no-result strong {line-height: 14px; color: #C4C4C4; font-size: 13px; font-weight: 500; }

.empty-li.no-own-tour .wrap {display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 20px; }
.empty-li.no-own-tour i {width: 28px; height: 28px; background: url('/include/images/icon-tour-manager-own-list.svg') no-repeat center; }
.empty-li.no-own-tour strong {line-height: 24px; color: #C4C4C4; text-align: center; font-size: 13px; font-weight: 500; letter-spacing: -0.01em; }

.empty-li.no-manager-tour .wrap {display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 20px; }
.empty-li.no-manager-tour i {width: 28px; height: 28px; background: url('/include/images/icon-no-manager-tour.svg') no-repeat center; }
.empty-li.no-manager-tour strong {line-height: 24px; color: #C4C4C4; text-align: center; font-size: 13px; font-weight: 500; letter-spacing: -0.01em; }

.meet-time-area {display: flex; align-items: center; gap: 15px; }
.meet-time-area .meet-time-box {flex: 1; display: flex; align-items: center; gap: 8px; }
.meet-time-area .meet-time-box p {line-height: 1.1; font-size: 14px; font-weight: 500; }
.meet-time-area .select-wrap {flex: 1; }


.postcode-layer {display: none; position: relative; width: 100%; height: 300px; margin: 5px 0; border:1px solid;}
.postcode-fold {cursor: pointer; position: absolute; right: 0px; top: -1px; z-index: 1}


/** header */
#header {/* position: sticky; top: 0;  */}
#header .main-header {background: #FFF;}
#header .sub-header {background: #FFF; }
#header .header-wrap {display: flex; justify-content: space-between; align-items: center; position: relative; height: 49px; border-bottom: 1px solid transparent; }

#header .alarm {position: relative; width: 28px; height: 28px; background: url('/include/images/btn-alarm-sub.svg') no-repeat center; }
#header .alarm span {display: none; position: absolute; top: 1px; right: 2px; width: 4px; height: 4px; border-radius: 4px; background: var(--main-color); }
#header .alarm.is-noread span {display: block !important; }
#header .back {position: absolute; left: 10px; width: 28px; height: 28px; background: url('/include/images/btn-header-back.svg') no-repeat center;}

#header .main-header h2 {font-size: 20px; font-weight: 600; }
#header .main-header.is_index {background: var(--main-color); }
#header .main-header.is_index h2 {padding: 6px 10px; border-radius: 10px; background: #FFFFFF59; font-size: 0; }
#header .main-header.is_index img {width: 83px; height: 25px; object-fit: cover; }
#header .main-header.is_index .alarm {background: url('/include/images/btn-alarm-main.svg') no-repeat center; }
#header .main-header.is_index .alarm span {background: var(--acc-color); }

#header .sub-header .header-wrap {justify-content: center; border-color: #F3F3F3; }
#header .sub-header h2 {font-size: 16px; font-weight: 500; }



/** bottom tab */
#bottom-tab {}
#bottom-tab .tab-wrap {
	display: flex; justify-content: space-around; align-items: center; gap: 5px; border-top: 1px solid #EDEDED; backdrop-filter: blur(20px);
	position: fixed; bottom: 0; left: 0; right: 0; z-index: 10; background: #FFF; 
}
#bottom-tab .tab-wrap button {flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 10px; height: 75px; }
#bottom-tab .tab-wrap button i {display: block; width: 28px; height: 28px; }
#bottom-tab .tab-wrap button span {line-height: 1; color: #C4C4C4; font-size: 11px; font-weight: 500; }
#bottom-tab .tab-wrap .tab-tour i {background: url('/include/images/bottom-tab/icon-bottom-tab-tour-off.svg') no-repeat center; }
#bottom-tab .tab-wrap .tab-course i {background: url('/include/images/bottom-tab/icon-bottom-tab-course-off.svg') no-repeat center; }
#bottom-tab .tab-wrap .tab-main i {
	width: 50px; height: 50px; border-radius: 50px; background: url('/include/images/bottom-tab/icon-bottom-tab-main-off.svg') no-repeat center, #FFF; 
	box-shadow: 0px 3px 9px 0 rgb(0,0,0,0.12);
}
#bottom-tab .tab-wrap .tab-history i {background: url('/include/images/bottom-tab/icon-bottom-tab-history-off.svg') no-repeat center; }
#bottom-tab .tab-wrap .tab-schedule i {background: url('/include/images/bottom-tab/icon-bottom-tab-schedule-off.svg') no-repeat center; }
#bottom-tab .tab-wrap .tab-mypage i {background: url('/include/images/bottom-tab/icon-bottom-tab-mypage-off.svg') no-repeat center; }

#bottom-tab .tab-wrap button.active span {color: var(--main-color);}
#bottom-tab .tab-wrap .tab-tour.active i {background: url('/include/images/bottom-tab/icon-bottom-tab-tour-on.svg') no-repeat center; }
#bottom-tab .tab-wrap .tab-course.active i {background: url('/include/images/bottom-tab/icon-bottom-tab-course-on.svg') no-repeat center; }
#bottom-tab .tab-wrap .tab-main.active i {background: url('/include/images/bottom-tab/icon-bottom-tab-main-on.svg') no-repeat center, var(--main-color); }
#bottom-tab .tab-wrap .tab-history.active i {background: url('/include/images/bottom-tab/icon-bottom-tab-history-on.svg') no-repeat center; }
#bottom-tab .tab-wrap .tab-schedule.active i {background: url('/include/images/bottom-tab/icon-bottom-tab-schedule-on.svg') no-repeat center; }
#bottom-tab .tab-wrap .tab-mypage.active i {background: url('/include/images/bottom-tab/icon-bottom-tab-mypage-on.svg') no-repeat center; }

#bottom-tab .tab-wrap .tab-main.ver2 i {
	width: 28px; height: 28px; border-radius: 0; background: url('/include/images/bottom-tab/icon-bottom-tab-main-off.svg') no-repeat center; 
	box-shadow:none;
}
#bottom-tab .tab-wrap .tab-main.ver2.active i {background: url('/include/images/bottom-tab/icon-bottom-tab-main-on2.svg') no-repeat center; }

/** top banner */
.top-banner {position: relative; min-height: 186px; padding: 30px 20px; background: #FAFAFA; }
.top-banner:before {display: block; clear: both; content: ''; position: absolute; z-index: 1;}
.top-banner .text {position: relative; line-height: 30px; font-size: 20px; font-weight: 500; z-index: 2; }
.top-banner .caution {position: relative; margin-top: 20px; line-height: 16px; color: #969696; font-size: 10px; font-weight: 200; z-index: 3; }

.top-banner.match:before {bottom: 20px; right: 40px; width: 70px; height: 108px; background: url('/include/images/img-match-banner.svg') no-repeat center; }
.top-banner.match .acc {color: var(--main-color);}
.top-banner.rematch:before {bottom: 16px; right: 22px; width: 100px; height: 100px; background: url('/include/images/img-rematch-banner.svg') no-repeat center; }
.top-banner.rematch .acc {color: var(--main-color);}
.top-banner.tour-match:before {bottom: 16px; right: 22px; width: 100px; height: 100px; background: url('/include/images/img-tour-match-banner.svg') no-repeat center; }
.top-banner.tour-match .acc {color: var(--main-color);}



/** login */
#login-section {display: flex; flex-direction: column; height: 100%; }
#login-section #f-login {flex: 1; }
#login-section .login-logo {padding: 80px 0; text-align: center; }
#login-section .login-logo img {width: 175px; height: 62px; object-fit: cover; }
#login-section fieldset {gap: 0; }
#login-section .fld-login {display: flex; flex-direction: column; gap: 10px; }
#login-section .submit-wrap {display: flex; margin-top: 24px; }
#login-section .submit-wrap .btn {flex: 1; border-radius: 10px; font-size: 17px; }
#login-section .find-btn-wrap {display: flex; justify-content: center; align-items: center; margin-top: 10px; }
#login-section .find-btn-wrap hr {display: block; width: 1px; height: 8px; margin: 0; border: none; background: #DBDBDB; }
#login-section .find-btn-wrap .btn {height: auto; padding: 10px 15px; border: none; color: #969696; font-size: 13px; font-weight: 200; }
#login-section .btn-wrap {display: flex; flex-direction: column; gap: 10px; padding-bottom: 28px; }
#login-section .btn-wrap .btn {height: 50px; }


/** find 공통 */
#find-section {padding-top: 28px; }
#find-section .submit-wrap {display: flex; padding-bottom: 28px; }


/** find - id */
#f-find-id {gap: 24px; }



/** find - id - result */
#find-id-result-section {padding-top: 28px; }
#find-id-result-section .info-wrap {}
#find-id-result-section .info-box {
	display: flex; justify-content: center; align-items: center; 
	height: 80px; 
	border: 1px solid #E4E4E4; border-radius: 8px;
	color: #969696; 
	font-size: 18px; font-weight: 200; 
}
#find-id-result-section .info-box .id {font-weight: 600; }
#find-id-result-section .info-desc {margin-top: 30px; line-height: 1.2; color: #969696; text-align: center; font-size: 13px; font-weight: 200; word-break: keep-all; }

#find-id-result-section .btn-wrap {}
#find-id-result-section .go-find-pw {color: #666; }




/** register */
#register-section {}
#register-section .submit-wrap {display: flex; padding-top: 30px; padding-bottom: 38px; }
#f-register fieldset {padding-bottom: 30px; }

.agree-area {}
.agree-area .all-agree-wrap {margin-bottom: 10px; padding-top: 20px; padding-bottom: 10px; border-bottom: 1px solid #EDEDED; }
.agree-area .chk-v-item .chk-elem {padding: 10px 0; }
.agree-area .agree-ul li {display: flex; justify-content: space-between; align-items: center; }
.agree-area .agree-ul li .agree-terms {padding: 4px;}
.agree-area .agree-ul li .agree-terms:before {display: block; clear: both; content: ''; width: 6px; height: 9px; background: url('/include/images/btn-agree-arrow.svg') no-repeat center; }



/** register - 매니저 - 안내? */
#register-pre-section {}
#register-pre-section h3 {padding-bottom: 24px; }
#register-pre-section .section-body {justify-content: space-between; }
#register-pre-section .list-box {display: flex; flex-direction: column; gap: 20px; padding: 24px 10px; border-radius: 10px; background: #F8F8F8; margin-bottom:30px;}
#register-pre-section .list-box li {display: flex; gap: 4px; color: #545454; }
#register-pre-section .list-box li:before {display: block; clear: both; content: '•'; width: 12px; line-height: 18px; }
#register-pre-section .list-box li .text {line-height: 18px; font-size: 12px; font-weight: 200; letter-spacing: -0.01em; word-break: keep-all; }
#register-pre-section .list-box li .text span {color: var(--main-color); }
#register-pre-section .btn-wrap {padding-bottom: 28px; }
#register-pre-section .btn-wrap .btn {line-height: 18px; font-size: 17px; }

#register-pre-section .mng_pre_box {padding: 24px 10px; border-radius: 10px; background: #F8F8F8; margin-bottom:30px;}
#register-pre-section .mng_pre_box p {font-weight:500;}
#register-pre-section .mng_pre_box .list-box {padding: 0; border-radius: 0; background: #F8F8F8;margin-bottom:0;margin-top:20px;}
#register-pre-section .mng_pre_box .list-box li .text {font-weight:500;color:#222;}


/** register - 매니저 - 작성 */
#register-mng-section {}
#register-mng-section .submit-wrap {display: flex; padding-top: 30px; padding-bottom: 38px; }
#register-mng-section fieldset {gap: 30px; }

#f-register-step1 {}
#f-register-step2 {}
#f-register-step3 {}
#f-register-step4 {}
#f-register-step4 .fld-caution {margin-top: 15px; }



/** 매칭 */
#index-section {}
#index-section:before {display: block; clear: both; content: ''; position: absolute; top: 0; width: 100%; padding-bottom: 135px; border-radius: 0 0 20px 20px; background: var(--main-color); }
#index-section .section-body {position: relative; padding-top: 20px; }

#index-section .list-area {padding-top: 30px; }
#index-section .list-area .title {display: flex; align-items: center; }
#index-section .list-area .title h3 {flex: 1; line-height: 22px; font-size: 20px; font-weight: 500; }
#index-section .list-area .title .info {gap: 2px; height: 26px; line-height: 12px; background: #EDEDED; color: #666; font-size: 10px; }
#index-section .list-area .title .info .label {margin-left: 8px; }
#index-section .list-area .title .info i {width: 16px; height: 16px; margin-right: 6px; background: url('/include/images/btn-info-i.svg') no-repeat center; }
#index-section .list-area .list-ul {display: flex; flex-direction: column; gap: 12px; padding-top: 15px; padding-bottom: 15px; }
#index-section .list-area .list-ul > li:not(.empty-li) {border-radius: 15px; background: #FFF; box-shadow: 0px 2px 8px 0px rgb(0,0,0,0.1); }
#index-section .list-area .list-ul .wrap {display: flex; gap: 15px; padding: 10px; padding-right: 15px; }
#index-section .list-area .list-ul .thumb {position: relative; width: 70px; }
#index-section .list-area .list-ul .thumb:before {display: block; clear: both; content: ''; padding-bottom: 100%; }
#index-section .list-area .list-ul .thumb .cont {
	position: absolute; top: 0; left: 0; 
	width: 100%; height: 100%; border: 1px solid #F5F5F5; background: url('/include/images/no-thumb-img.svg') no-repeat center, #F8F8F8; border-radius: 10px; 
	overflow:hidden;display:flex;align-items:center;justify-content:center;
}
#index-section .list-area .list-ul .thumb img {display: block; width: 100%; height: 100%; object-fit: cover; background: #FFF; }
#index-section .list-area .list-ul .desc {flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 15px; position: relative; }
#index-section .list-area .list-ul .name {line-height: 18px; font-size: 17px; font-weight: 500; }
#index-section .list-area .list-ul .option {
	display: flex; align-items: center; gap: 6px; 
	position: relative; line-height: 14px; color: #666; 
	font-size: 13px; font-weight: 200; 
}
#index-section .list-area .list-ul .option:before {display: block; clear: both; content: ''; order: 2; width: 1px; height: 10px; background: #EDEDED; }
#index-section .list-area .list-ul .age {order: 1; }
#index-section .list-area .list-ul .height {order: 3; }
#index-section .list-area .list-ul .dist {position: absolute; right: 5px; padding: 9px; border-radius: 20px; background: #F5F5F5; }

#index-section .float-btn-wrap {padding-bottom: 24px; }
#index-section .float-btn-wrap:before {display: block; clear: both; content: ''; padding-bottom: 40px; }
#index-section .float-btn-wrap .fixed-wrap {justify-content: flex-end; position: fixed; bottom: 0; left: 0; right: 0; padding: 0 20px; }
#index-section .float-btn-wrap .btn {
	gap: 5px; 
	height: 40px; margin-bottom: 24px; line-height: 14px; border-radius: 40px; color: var(--acc-color); 
	font-size: 13px; 
}
#index-section .float-btn-wrap .btn .label {margin-right: 15px; }
#index-section .float-btn-wrap .matching:before {
	display: block; clear: both; content: ''; 
	width: 16px; height: 13px; margin-left: 12px; background: url('/include/images/btn-float-matching.svg') no-repeat center; 
}
#index-section .float-btn-wrap .list:before {
	display: block; clear: both; content: ''; 
	width: 16px; height: 12px; margin-left: 15px; background: url('/include/images/btn-float-matching-list.svg') no-repeat center; 
}



/** 매칭 - 매칭 상세 */
#match-view-section {}
#match-view-section .tab-area {}
#match-view-section .tab-area .tab-group {display: flex; border-bottom: 1px solid #EDEDED; }
#match-view-section .tab-area .tab {flex: 1; display: flex; justify-content: center; align-items: center; position: relative; height: 50px; line-height:  16px; color: #A4A4A4; font-size: 15px; font-weight: 500; }
#match-view-section .tab-area .tab.active {color: #121212; }
#match-view-section .tab-area .tab.active:before {
	display: block; clear: both; content: ''; 
	position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; margin-bottom: -1px; background: var(--main-color); 
}

#match-view-section .match-info-area {display: none; padding: 20px; padding-top: 24px; padding-bottom: 40px; }
#match-view-section .match-info-area.active {display: block; }
#match-view-section .match-info-area dl {padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid #F5F5F5; }
#match-view-section .match-info-area dl:last-of-type {margin-bottom: 0; border-bottom: none; }
#match-view-section .match-info-area dt {margin-bottom: 15px; line-height: 12px; color: #8B8B8B; font-size: 10px; font-weight: 600; }
#match-view-section .match-info-area dd {line-height: 18px; font-size: 16px; font-weight: 200; }

#match-view-section .accept-manager-area {display: none; padding: 0 20px; padding-bottom: 30px; }
#match-view-section .accept-manager-area.active {display: block; }
#match-view-section .accept-manager-area .area-top {display: flex; justify-content: flex-end; align-items: center; }
#match-view-section .accept-manager-area .area-top .btn {gap: 5px; line-height: 1.2; color: #8B8B8B; font-size: 11px; font-weight: 200; }
#match-view-section .accept-manager-area .area-top .btn i {width: 16px; height: 16px; background: url('/include/images/btn-info-i.svg') no-repeat center; }
#match-view-section .manager-ul {display: flex; flex-direction: column; gap: 12px; }
#match-view-section .manager-ul > li:not(.empty-li) {padding: 10px; border-radius: 15px; background: #FFF; box-shadow: 0px 2px 8px 0px rgb(0,0,0,0.1); }
#match-view-section .manager-ul .pf-wrap {display: flex; gap: 15px; }
#match-view-section .manager-ul .pf-wrap .thumb {position: relative; width: 70px; height: }
#match-view-section .manager-ul .pf-wrap .thumb:before {display: block; clear: both; content: ''; padding-bottom: 100%; }
#match-view-section .manager-ul .pf-wrap .thumb .cont {
	position: absolute; top: 0; left: 0; 
	width: 100%; height: 100%; border: 1px solid #F5F5F5; background: url('/include/images/no-thumb-img.svg') no-repeat center, #F8F8F8; border-radius: 10px; 
	overflow:hidden;display:flex;align-items:center;justify-content:center;
}
#match-view-section .manager-ul .pf-wrap .pf-info {flex: 1; display: flex; flex-direction: column; justify-content: center; position: relative; }
#match-view-section .manager-ul .pf-info .more-option {position: absolute; top: -5px; right: -5px; padding: 10px; }
#match-view-section .manager-ul .pf-info .more-option:before {display: block; clear: both; content: ''; width: 12px; height: 2px; background: url('/include/images/btn-mng-option.svg') no-repeat center; }
#match-view-section .manager-ul .pf-info .name {line-height: 18px; font-size: 17px; font-weight: 500; }
#match-view-section .manager-ul .pf-info .option {
	display: flex; align-items: center; gap: 6px; 
	position: relative; margin-top: 15px; line-height: 14px; color: #666; 
	font-size: 13px; font-weight: 200; 
}
#match-view-section .manager-ul .pf-info .option:before {display: block; clear: both; content: ''; order: 2; width: 1px; height: 10px; background: #EDEDED; }
#match-view-section .manager-ul .pf-info .age {order: 1; }
#match-view-section .manager-ul .pf-info .height {order: 3; }
#match-view-section .manager-ul .pf-info .dist {position: absolute; right: 5px; padding: 9px; border-radius: 20px; background: #F5F5F5; }

#match-view-section .manager-ul .btn-wrap {display: flex; gap: 10px; margin-top: 15px; }
#match-view-section .manager-ul .btn-wrap .btn {flex: 1; height: 42px; line-height: 14px; font-size: 13px; }
#match-view-section .manager-ul .btn-wrap .info-desc {background: #F5F5F5; color: #121212; }



/** 매칭 - 재매칭 상세 */
#rematch-view-section {}
#rematch-view-section .tab-area {}
#rematch-view-section .tab-area .tab-group {display: flex; border-bottom: 1px solid #EDEDED; }
#rematch-view-section .tab-area .tab {
	flex: 1; display: flex; justify-content: center; align-items: center; 
	position: relative; height: 50px; line-height: 16px; color: #A4A4A4; font-size: 15px; font-weight: 500; 
}
#rematch-view-section .tab-area .tab.active {color: #121212; }
#rematch-view-section .tab-area .tab.active:before {
	display: block; clear: both; content: ''; 
	position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; margin-bottom: -1px; background: var(--main-color); 
}

#rematch-view-section .match-info-area {display: none; padding: 20px; padding-top: 24px; padding-bottom: 40px; }
#rematch-view-section .match-info-area.active {display: block; }
#rematch-view-section .match-info-area dl {padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid #F5F5F5; }
#rematch-view-section .match-info-area dl:last-of-type {margin-bottom: 0; border-bottom: none; }
#rematch-view-section .match-info-area dt {margin-bottom: 15px; line-height: 12px; color: #8B8B8B; font-size: 10px; font-weight: 600; }
#rematch-view-section .match-info-area dd {line-height: 18px; font-size: 16px; font-weight: 200; }

#rematch-view-section .accept-manager-area {display: none; padding: 0 20px; padding-bottom: 30px; }
#rematch-view-section .accept-manager-area.active {display: block; }
#rematch-view-section .accept-manager-area .area-top {display: flex; justify-content: flex-end; align-items: center; }
#rematch-view-section .accept-manager-area .area-top .btn {gap: 5px; line-height: 1.2; color: #8B8B8B; font-size: 11px; font-weight: 200; }
#rematch-view-section .accept-manager-area .area-top .btn i {width: 16px; height: 16px; background: url('/include/images/btn-info-i.svg') no-repeat center; }
#rematch-view-section .manager-ul {display: flex; flex-direction: column; gap: 12px; }
#rematch-view-section .manager-ul > li:not(.empty-li) {padding: 10px; border-radius: 15px; background: #FFF; box-shadow: 0px 2px 8px 0px rgb(0,0,0,0.1); }
#rematch-view-section .manager-ul .pf-wrap {display: flex; gap: 15px; }
#rematch-view-section .manager-ul .pf-wrap .thumb {position: relative; width: 70px; height: }
#rematch-view-section .manager-ul .pf-wrap .thumb:before {display: block; clear: both; content: ''; padding-bottom: 100%; }
#rematch-view-section .manager-ul .pf-wrap .thumb .cont {
	position: absolute; top: 0; left: 0; 
	width: 100%; height: 100%; border: 1px solid #F5F5F5; background: url('/include/images/no-thumb-img.svg') no-repeat center, #F8F8F8; border-radius: 10px; 
	overflow:hidden;display:flex;align-items:center;justify-content:center;
}
#rematch-view-section .manager-ul .pf-wrap .pf-info {flex: 1; display: flex; flex-direction: column; justify-content: center; position: relative; }
#rematch-view-section .manager-ul .pf-info .status-wrap {position: absolute; top: 0; right: 0;}
#rematch-view-section .manager-ul .pf-info .status {display: flex; justify-content: center; align-items: center; gap: 3px; height: 21px; padding: 0 8px; border-radius: 20px; }
#rematch-view-section .manager-ul .pf-info .status span {font-size: 10px; font-weight: 500; }
#rematch-view-section .manager-ul .pf-info .status.accept {background: #F90F9614; }
#rematch-view-section .manager-ul .pf-info .status.accept:before {
	display: block; clear: both; content: ''; 
	width: 11px; height: 9px; background: url('/include/images/icon-rematch-accept.svg') no-repeat center;
}
#rematch-view-section .manager-ul .pf-info .status.accept span {color: var(--main-color); }
#rematch-view-section .manager-ul .pf-info .status.reject {background: #F62E421A; }
#rematch-view-section .manager-ul .pf-info .status.reject span {color: var(--color-red); }
#rematch-view-section .manager-ul .pf-info .status.ing {background: #F5F5F5; }
#rematch-view-section .manager-ul .pf-info .status.ing span {color: #8B8B8B; }
#rematch-view-section .manager-ul .pf-info .name {line-height: 18px; font-size: 17px; font-weight: 500; }
#rematch-view-section .manager-ul .pf-info .option {
	display: flex; align-items: center; gap: 6px; 
	position: relative; margin-top: 15px; line-height: 14px; color: #666; 
	font-size: 13px; font-weight: 200; 
}
#rematch-view-section .manager-ul .pf-info .option:before {display: block; clear: both; content: ''; order: 2; width: 1px; height: 10px; background: #EDEDED; }
#rematch-view-section .manager-ul .pf-info .age {order: 1; }
#rematch-view-section .manager-ul .pf-info .height {order: 3; }
#rematch-view-section .manager-ul .pf-info .dist {position: absolute; right: 5px; padding: 9px; border-radius: 20px; background: #F5F5F5; }

#rematch-view-section .manager-ul .btn-wrap {display: flex; gap: 10px; margin-top: 15px; }
#rematch-view-section .manager-ul .btn-wrap .btn {flex: 1; height: 42px; line-height: 14px; font-size: 13px; }
#rematch-view-section .manager-ul .btn-wrap .reason {background: #F5F5F5; color: #121212; }

#rematch-view-section .created-btn-wrap {display: flex; justify-content: center; align-items: center; padding-top: 40px; padding-bottom: 40px; }
#rematch-view-section .created-btn-wrap .btn {width: 140px; height: 46px; border-radius: 30px; font-size: 14px; }
#rematch-view-section .created-btn-wrap .btn:before {
	display: block; clear: both; content: ''; 
	width: 12px; height: 12px; background: url('/include/images/btn-rematch-created.svg') no-repeat center; 
}



/** 매칭 - 매칭생성리스트 */
#created-list-section {}
#created-list-section .setting-area {padding: 25px 20px; background: #F3F3F3; }
#created-list-section .setting-location {padding: 20px; border-radius: 15px; background: #FFF; box-shadow: 0px 2px 8px 0px rgb(0,0,0,0.1); }
#created-list-section .setting-location dl {display: flex; flex-direction: column; gap: 10px; }
#created-list-section .setting-location dt {line-height: 12px; color: #8B8B8B; font-size: 11px; font-weight: 500; }
#created-list-section .setting-location dd {}
#created-list-section .note-area {padding-top: 20px; }
#created-list-section .note-area .title {display: flex; align-items: center; padding-bottom: 10px; }
#created-list-section .note-area .title:before {display: block; clear: both; content: ''; width: 14px; height: 14px; background: url('/include/images/icon-info-caution.svg') no-repeat center; }
#created-list-section .note-area .title span {line-height: 14px; color: var(--color-red); font-size: 10px; font-weight: 500; }
#created-list-section .note-area ul li {display: flex; line-height: 12px; color: #8B8B8B; font-size: 9px; font-weight: 200; }
#created-list-section .note-area ul li:before {display: block; clear: both; content: '·'; }
#created-list-section .note-area ul li p {flex: 1; }

#created-list-section .tab-area {}
#created-list-section .tab-area .tab-group {display: flex; gap: 15px; border-bottom: 1px solid #EDEDED; }
#created-list-section .tab-area .tab {
	display: flex; justify-content: center; align-items: center; 
	position: relative; height: 52px; padding: 0 5px; line-height: 18px; color: #A4A4A4; font-size: 15px; font-weight: 500; 
	word-break: keep-all; 
}
#created-list-section .tab-area .tab.active {color: var(--main-color); }
#created-list-section .tab-area .tab.active:before {
	display: block; clear: both; content: ''; 
	position: absolute; bottom: 0; width: 100%; height: 2px; margin-bottom: -1px; background: var(--main-color); 
}

#created-list-section .match-created-area {display: none; padding: 20px; }
#created-list-section .match-created-area.active {display: block; }
#created-list-section .rematch-list-area {display: none; padding: 20px; }
#created-list-section .rematch-list-area.active {display: block; }
#created-list-section .accept-list-area {display: none; padding: 20px; }
#created-list-section .accept-list-area.active {display: block; }

#created-list-section .list-ul {display: flex; flex-direction: column; gap: 12px; }
#created-list-section .list-ul > li:not(.empty-li) {border-radius: 15px; background: #FFF; box-shadow: 0px 2px 8px 0px rgb(0,0,0,0.1); }
#created-list-section .list-ul .wrap {display: block; padding: 20px 15px; }
#created-list-section .list-ul .mb-info {display: flex; align-items: center; gap: 6px; }
#created-list-section .list-ul .mb-info:before {display: block; clear: both; content: '·'; order: 2; line-height: 14px; color: #666; font-size: 13px; font-weight: 200; }
#created-list-section .list-ul .mb-info .name {order: 1; line-height: 18px; font-size: 17px; font-weight: 500;}
#created-list-section .list-ul .mb-info .age {order: 3; line-height: 14px; color: #666; font-size: 13px; font-weight: 200; }
#created-list-section .list-ul .match-info {display: flex; flex-direction: column; gap: 15px; padding-top: 15px; }
#created-list-section .list-ul .match-info dl {display: flex; justify-content: space-between; gap: 10px; }
#created-list-section .list-ul .match-info dt {flex: 1; line-height: 14px; color: #8B8B8B; font-size: 12px; font-weight: 500; }
#created-list-section .list-ul .match-info dd {flex: 2; line-height: 14px; text-align: right; color: #3D3D3D; font-size: 13px; font-weight: 500; }



/** 매칭 - 매칭생성상세 */
#created-view-section {}
#created-view-section .mb-info-area {padding: 20px; background: #F5F5F5; }
#created-view-section .mb-info-area .mb-info {display: flex; flex-direction: column; gap: 15px; padding: 20px 15px; border-radius: 10px; background: #FFF; box-shadow: 0px 2px 8px 0px rgb(0,0,0,0.1); }
#created-view-section .mb-info-area .mb-info .name {line-height: 18px; font-size: 17px; font-weight: 500;}
#created-view-section .mb-info-area .mb-info .age {line-height: 14px; color: #666; font-size: 13px; font-weight: 200; }

#created-view-section .match-info-area {padding: 24px 20px; padding-bottom: 50px; }
#created-view-section .match-info-area dl {display: flex; flex-direction: column; gap: 15px; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid #F5F5F5; }
#created-view-section .match-info-area dl:last-of-type {margin-bottom: 0; border-bottom: none; } 
#created-view-section .match-info-area dt {line-height: 12px; color: #8B8B8B; font-size: 10px; font-weight: 600; }
#created-view-section .match-info-area dd {line-height: 18px; font-size: 16px; font-weight: 200; }

#created-view-section .btn-wrap {display: flex; align-items: center; gap: 10px; padding-bottom: 28px; }
#created-view-section .btn-wrap .btn {flex: 1; height: 50px; }
#created-view-section .btn-wrap .refuse {background: #EDEDED; color: #3D3D3D; }
#created-view-section .btn-wrap .no-action {background: #EDEDED; color: #8B8B8B; }



/** */



/** 알림 */
#alarm-list-section {}
#alarm-list-section .alarm-ul {display: flex; flex-direction: column; gap: 20px; padding: 20px 0; }
#alarm-list-section .alarm-ul li:not(.empty-li) {display: flex; gap: 10px; padding: 10px 0; }
#alarm-list-section .alarm-ul i {width: 14px; height: 15px; background: url('/include/images/icon-alarm-list.svg') no-repeat center; }
#alarm-list-section .alarm-ul li .wrap {flex: 1; display: flex; flex-direction: column; position: relative; }
#alarm-list-section .alarm-ul li .top {display: flex; justify-content: space-between; align-items: center; gap: 5px; line-height: 14px; color: #8B8B8B; font-size: 12px; font-weight: 200; }
#alarm-list-section .alarm-ul li .content {margin-top: 12px; line-height: 20px; color: #3D3D3D; font-size: 14px; font-weight: 500; }



/** 투어 - 리스트 */
#tour-list-section {background: #FAFAFA; }
#tour-list-section .sch-manage-area {padding: 25px 20px; background: #F3F3F3; }
#tour-list-section .float-btn-wrap {padding-bottom: 24px; }
#tour-list-section .float-btn-wrap:before {display: block; clear: both; content: ''; padding-bottom: 40px; }
#tour-list-section .float-btn-wrap .fixed-wrap {justify-content: flex-end; position: fixed; bottom: 0; left: 0; right: 0; padding: 0 20px; }
#tour-list-section .float-btn-wrap .btn {
	gap: 5px; 
	height: 40px; margin-bottom: 24px; line-height: 14px; border-radius: 40px; color: var(--acc-color); 
	font-size: 13px; 
}
#tour-list-section .float-btn-wrap .btn .label {margin-right: 15px; }
#tour-list-section .float-btn-wrap .matching:before {
	display: block; clear: both; content: ''; 
	width: 16px; height: 13px; margin-left: 12px; background: url('/include/images/btn-tour-matching.svg') no-repeat center; 
}
#tour-list-section .float-btn-wrap .list:before {
	display: block; clear: both; content: ''; 
	width: 16px; height: 12px; margin-left: 15px; background: url('/include/images/btn-tour-matching-list.svg') no-repeat center; 
}

#tour-list-section .list-area {flex: 1; padding-top: 24px; }
#tour-list-section .list-area .title {display: flex; align-items: center; padding-bottom: 15px; }
#tour-list-section .list-area .title h3 {flex: 1; line-height: 22px; font-size: 20px; font-weight: 500; }
#tour-list-section .list-area .title .info {gap: 2px; height: 26px; line-height: 12px; background: #EDEDED; color: #666; font-size: 10px; }
#tour-list-section .list-area .title .info .label {margin-left: 8px; }
#tour-list-section .list-area .title .info i {width: 16px; height: 16px; margin-right: 6px; background: url('/include/images/btn-info-i.svg') no-repeat center; }

#tour-list-section .list-ul {padding-bottom: 40px; }
#tour-list-section .list-ul > li:not(.empty-li) {padding: 10px; border-radius: 15px; background: #FFF; box-shadow: 0px 2px 8px 0px rgb(0,0,0,0.1); }
#tour-list-section .list-ul .pf-wrap {display: flex; gap: 15px; }
#tour-list-section .list-ul .pf-wrap .thumb {position: relative; width: 70px; height: }
#tour-list-section .list-ul .pf-wrap .thumb:before {display: block; clear: both; content: ''; padding-bottom: 100%; }
#tour-list-section .list-ul .pf-wrap .thumb .cont {
	position: absolute; top: 0; left: 0; 
	width: 100%; height: 100%; border: 1px solid #F5F5F5; background: url('/include/images/no-thumb-img.svg') no-repeat center, #F8F8F8; border-radius: 10px; 
	overflow:hidden;display:flex;align-items:center;justify-content:center;
}
#tour-list-section .list-ul .pf-wrap .pf-info {flex: 1; display: flex; flex-direction: column; justify-content: center; position: relative; }
#tour-list-section .list-ul .pf-info .name {line-height: 18px; font-size: 17px; font-weight: 500; }
#tour-list-section .list-ul .pf-info .option {
	display: flex; align-items: center; gap: 6px; 
	position: relative; margin-top: 15px; line-height: 14px; color: #666; 
	font-size: 13px; font-weight: 200; 
}
#tour-list-section .list-ul .pf-info .option:before {display: block; clear: both; content: ''; order: 2; width: 1px; height: 10px; background: #EDEDED; }
#tour-list-section .list-ul .pf-info .age {order: 1; }
#tour-list-section .list-ul .pf-info .height {order: 3; }



/** 투어 - 매치생성 */
#tour-match-form-section {}
#tour-match-form-section .user-area {padding: 24px 20px; background: #F5F5F5; }
#tour-match-form-section .user-area h3 {padding-bottom: 15px; line-height: 18px; font-size: 16px; font-weight: 500; }
#tour-match-form-section .user-area .user-info {
	display: flex; flex-direction: column; gap: 15px; 
	padding: 15px; border-radius: 20px; background: #FFF; box-shadow: 0px 2px 8px 0px rgb(0,0,0,0.1); 
}
#tour-match-form-section .user-area .user-info dl {display: flex; justify-content: space-between; gap: 5px; }
#tour-match-form-section .user-area .user-info dt {line-height: 14px; color: #3D3D3D; font-size: 12px; font-weight: 200; }
#tour-match-form-section .user-area .user-info dd {line-height: 14px; text-align: right; font-size: 12px; font-weight: 500; }

#tour-match-form-section fieldset {padding: 24px 20px 30px; }
#tour-match-form-section .fld-textarea {height: 90px; }

#tour-match-form-section .precaution-area {padding: 24px 20px 40px; }
#tour-match-form-section .precaution-area .title {display: flex; align-items: center; gap: 10px; }
#tour-match-form-section .precaution-area .title:before {
	display: block; clear: both; content: ''; 
	width: 16px; height: 16px; background: url('/include/images/icon-caution-16x16.svg') no-repeat center; 
}
#tour-match-form-section .precaution-area .title h4 {line-height: 16px; color: var(--color-red); font-size: 13px; font-weight: 500; letter-spacing: -0.01em; }
#tour-match-form-section .precaution-area ul {display: flex; flex-direction: column; gap: 15px; margin-top: 15px; padding: 15px 10px; border-radius: 10px; background: #FAFAFA; }
#tour-match-form-section .precaution-area ul > li {display: flex; line-height: 16px; color: #545454; font-size: 10px; font-weight: 200; letter-spacing: -0.01em; }
#tour-match-form-section .precaution-area ul > li i {display: flex; justify-content: center; align-items: center; width: 15px; height: 16px; }
#tour-match-form-section .precaution-area ul > li i:before {
	display: block; clear: both; content: ''; 
	width: 2px; height: 2px; line-height: 12px; border-radius: 2px; background: #545454; 
}
#tour-match-form-section .precaution-area ul > li > div {flex: 1; }	
#tour-match-form-section .btn-wrap {display: flex; flex-wrap: wrap; }
#tour-match-form-section .btn-wrap:after {display: block; clear: both; content: ''; width: 100%; padding-bottom: 38px; }



/** 투어 - 매치생성 정보 */
#tour-match-view-section .tab-area {}
#tour-match-view-section .tab-area .tab-group {display: flex; border-bottom: 1px solid #EDEDED; }
#tour-match-view-section .tab-area .tab {flex: 1; display: flex; justify-content: center; align-items: center; position: relative; height: 50px; line-height:  16px; color: #A4A4A4; font-size: 15px; font-weight: 500; }
#tour-match-view-section .tab-area .tab.active {color: #121212; }
#tour-match-view-section .tab-area .tab.active:before {
	display: block; clear: both; content: ''; 
	position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; margin-bottom: -1px; background: var(--main-color); 
}
#tour-match-view-section .match-info-area {display: none; padding: 20px; padding-top: 24px; padding-bottom: 40px; }
#tour-match-view-section .match-info-area.active {display: block; }
#tour-match-view-section .match-info-area dl {padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid #F5F5F5; }
#tour-match-view-section .match-info-area dl:last-of-type {margin-bottom: 0; border-bottom: none; }
#tour-match-view-section .match-info-area dt {margin-bottom: 15px; line-height: 12px; color: #8B8B8B; font-size: 10px; font-weight: 600; }
#tour-match-view-section .match-info-area dd {line-height: 18px; font-size: 16px; font-weight: 200; }

#tour-match-view-section .accept-manager-area {display: none; padding: 0 20px; padding-bottom: 30px; }
#tour-match-view-section .accept-manager-area.active {display: block; }
#tour-match-view-section .accept-manager-area .area-top {display: flex; justify-content: flex-end; align-items: center; }
#tour-match-view-section .accept-manager-area .area-top .btn {gap: 5px; line-height: 1.2; color: #8B8B8B; font-size: 11px; font-weight: 200; }
#tour-match-view-section .accept-manager-area .area-top .btn i {width: 16px; height: 16px; background: url('/include/images/btn-info-i.svg') no-repeat center; }
#tour-match-view-section .manager-ul {display: flex; flex-direction: column; gap: 12px; }
#tour-match-view-section .manager-ul > li:not(.empty-li) {padding: 10px; border-radius: 15px; background: #FFF; box-shadow: 0px 2px 8px 0px rgb(0,0,0,0.1); }
#tour-match-view-section .manager-ul .pf-wrap {display: flex; gap: 15px; }
#tour-match-view-section .manager-ul .pf-wrap .thumb {position: relative; width: 70px; height: }
#tour-match-view-section .manager-ul .pf-wrap .thumb:before {display: block; clear: both; content: ''; padding-bottom: 100%; }
#tour-match-view-section .manager-ul .pf-wrap .thumb .cont {
	position: absolute; top: 0; left: 0; 
	width: 100%; height: 100%; border: 1px solid #F5F5F5; background: url('/include/images/no-thumb-img.svg') no-repeat center, #F8F8F8; border-radius: 10px; 
	overflow:hidden;display:flex;align-items:center;justify-content:center;
}
#tour-match-view-section .manager-ul .pf-wrap .pf-info {flex: 1; display: flex; flex-direction: column; justify-content: center; position: relative; }
#tour-match-view-section .manager-ul .pf-info .more-option {position: absolute; top: -5px; right: -5px; padding: 10px; }
#tour-match-view-section .manager-ul .pf-info .more-option:before {display: block; clear: both; content: ''; width: 12px; height: 2px; background: url('/include/images/btn-mng-option.svg') no-repeat center; }
#tour-match-view-section .manager-ul .pf-info .name {line-height: 18px; font-size: 17px; font-weight: 500; }
#tour-match-view-section .manager-ul .pf-info .option {
	display: flex; align-items: center; gap: 6px; 
	position: relative; margin-top: 15px; line-height: 14px; color: #666; 
	font-size: 13px; font-weight: 200; 
}
#tour-match-view-section .manager-ul .pf-info .option:before {display: block; clear: both; content: ''; order: 2; width: 1px; height: 10px; background: #EDEDED; }
#tour-match-view-section .manager-ul .pf-info .age {order: 1; }
#tour-match-view-section .manager-ul .pf-info .height {order: 3; }



/** 투어 - 재매칭 */
#tour-rematch-view-section {}
#tour-rematch-view-section .tab-area {}
#tour-rematch-view-section .tab-area .tab-group {display: flex; border-bottom: 1px solid #EDEDED; }
#tour-rematch-view-section .tab-area .tab {
	flex: 1; display: flex; justify-content: center; align-items: center; 
	position: relative; height: 50px; line-height: 16px; color: #A4A4A4; font-size: 15px; font-weight: 500; 
}
#tour-rematch-view-section .tab-area .tab.active {color: #121212; }
#tour-rematch-view-section .tab-area .tab.active:before {
	display: block; clear: both; content: ''; 
	position: absolute; bottom: 0; left: 0; width: 100%; height: 2px; margin-bottom: -1px; background: var(--main-color); 
}

#tour-rematch-view-section .match-info-area {display: none; padding: 20px; padding-top: 24px; padding-bottom: 40px; }
#tour-rematch-view-section .match-info-area.active {display: block; }
#tour-rematch-view-section .match-info-area dl {padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid #F5F5F5; }
#tour-rematch-view-section .match-info-area dl:last-of-type {margin-bottom: 0; border-bottom: none; }
#tour-rematch-view-section .match-info-area dt {margin-bottom: 15px; line-height: 12px; color: #8B8B8B; font-size: 10px; font-weight: 600; }
#tour-rematch-view-section .match-info-area dd {line-height: 18px; font-size: 16px; font-weight: 200; }

#tour-rematch-view-section .accept-manager-area {display: none; padding: 0 20px; padding-bottom: 30px; }
#tour-rematch-view-section .accept-manager-area.active {display: block; }
#tour-rematch-view-section .accept-manager-area .area-top {display: flex; justify-content: flex-end; align-items: center; }
#tour-rematch-view-section .accept-manager-area .area-top .btn {gap: 5px; line-height: 1.2; color: #8B8B8B; font-size: 11px; font-weight: 200; }
#tour-rematch-view-section .accept-manager-area .area-top .btn i {width: 16px; height: 16px; background: url('/include/images/btn-info-i.svg') no-repeat center; }
#tour-rematch-view-section .manager-ul {display: flex; flex-direction: column; gap: 12px; }
#tour-rematch-view-section .manager-ul > li:not(.empty-li) {padding: 10px; border-radius: 15px; background: #FFF; box-shadow: 0px 2px 8px 0px rgb(0,0,0,0.1); }
#tour-rematch-view-section .manager-ul .pf-wrap {display: flex; gap: 15px; }
#tour-rematch-view-section .manager-ul .pf-wrap .thumb {position: relative; width: 70px; height: }
#tour-rematch-view-section .manager-ul .pf-wrap .thumb:before {display: block; clear: both; content: ''; padding-bottom: 100%; }
#tour-rematch-view-section .manager-ul .pf-wrap .thumb .cont {
	position: absolute; top: 0; left: 0; 
	width: 100%; height: 100%; border: 1px solid #F5F5F5; background: url('/include/images/no-thumb-img.svg') no-repeat center, #F8F8F8; border-radius: 10px; 
	overflow:hidden;display:flex;align-items:center;justify-content:center;
}
#tour-rematch-view-section .manager-ul .pf-wrap .pf-info {flex: 1; display: flex; flex-direction: column; justify-content: center; position: relative; }
#tour-rematch-view-section .manager-ul .pf-info .status-wrap {position: absolute; top: 0; right: 0;}
#tour-rematch-view-section .manager-ul .pf-info .status {display: flex; justify-content: center; align-items: center; gap: 3px; height: 21px; padding: 0 8px; border-radius: 20px; }
#tour-rematch-view-section .manager-ul .pf-info .status span {font-size: 10px; font-weight: 500; }
#tour-rematch-view-section .manager-ul .pf-info .status.accept {background: #F90F9614; }
#tour-rematch-view-section .manager-ul .pf-info .status.accept:before {
	display: block; clear: both; content: ''; 
	width: 11px; height: 9px; background: url('/include/images/icon-rematch-accept.svg') no-repeat center;
}
#tour-rematch-view-section .manager-ul .pf-info .status.accept span {color: var(--main-color); }
#tour-rematch-view-section .manager-ul .pf-info .status.reject {background: #F62E421A; }
#tour-rematch-view-section .manager-ul .pf-info .status.reject span {color: var(--color-red); }
#tour-rematch-view-section .manager-ul .pf-info .status.ing {background: #F5F5F5; }
#tour-rematch-view-section .manager-ul .pf-info .status.ing span {color: #8B8B8B; }
#tour-rematch-view-section .manager-ul .pf-info .name {line-height: 18px; font-size: 17px; font-weight: 500; }
#tour-rematch-view-section .manager-ul .pf-info .option {
	display: flex; align-items: center; gap: 6px; 
	position: relative; margin-top: 15px; line-height: 14px; color: #666; 
	font-size: 13px; font-weight: 200; 
}
#tour-rematch-view-section .manager-ul .pf-info .option:before {display: block; clear: both; content: ''; order: 2; width: 1px; height: 10px; background: #EDEDED; }
#tour-rematch-view-section .manager-ul .pf-info .age {order: 1; }
#tour-rematch-view-section .manager-ul .pf-info .height {order: 3; }
#tour-rematch-view-section .manager-ul .pf-info .dist {position: absolute; right: 5px; padding: 9px; border-radius: 20px; background: #F5F5F5; }

#tour-rematch-view-section .manager-ul .btn-wrap {display: flex; gap: 10px; margin-top: 15px; }
#tour-rematch-view-section .manager-ul .btn-wrap .btn {flex: 1; height: 42px; line-height: 14px; font-size: 13px; }
#tour-rematch-view-section .manager-ul .btn-wrap .reason {background: #F5F5F5; color: #121212; }

#tour-rematch-view-section .go-tour-btn-wrap {display: flex; justify-content: center; align-items: center; padding-top: 40px; padding-bottom: 40px; }
#tour-rematch-view-section .go-tour-btn-wrap .btn {width: 152px; height: 46px; border-radius: 30px; background-color: #3D3D3D; font-size: 14px; }
#tour-rematch-view-section .go-tour-btn-wrap .btn:after {
	display: block; clear: both; content: ''; 
	width: 7px; height: 12px; background: url('/include/images/btn-go-tour-arrow.svg') no-repeat center; 
}



/** 투어 - 매니저 투어 생성 리스트 */
#tour-created-list-section {}
#tour-created-list-section .section-top-area {padding: 24px 20px; background: #F3F3F3; }
#tour-created-list-section .precaution-area {padding: 20px 20px 24px; border-radius: 15px; background: #FFF; box-shadow: 0px 2px 8px 0px rgb(0,0,0,0.1); }
#tour-created-list-section .precaution {}

#tour-created-list-section .precaution-area .title {display: flex; align-items: center; gap: 10px; }
#tour-created-list-section .precaution-area .title:before {
	display: block; clear: both; content: ''; 
	width: 16px; height: 16px; background: url('/include/images/icon-caution-16x16.svg') no-repeat center; 
}
#tour-created-list-section .precaution-area .title h4 {line-height: 16px; color: var(--color-red); font-size: 13px; font-weight: 500; letter-spacing: -0.01em; }
#tour-created-list-section .precaution-area ul {display: flex; flex-direction: column; gap: 7px; margin-top: 10px; }
#tour-created-list-section .precaution-area ul > li {
	display: flex; align-items: flex-start; gap: 5px; 
	line-height: 16px; color: #545454; font-size: 10px; font-weight: 200; letter-spacing: -0.01em; 
}
#tour-created-list-section .precaution-area ul > li i {display: flex; justify-content: center; align-items: center; }
#tour-created-list-section .precaution-area ul > li i:before {
	display: block; clear: both; content: '·'; 
	line-height: 16px; border-radius: 2px; 
}
#tour-created-list-section .precaution-area ul > li > div {flex: 1; }
#tour-created-list-section .precaution-area .manager-btn-wrap {display: flex; align-items: center; gap: 7px; padding-top: 20px; }
#tour-created-list-section .precaution-area .create {flex: 1; border-radius: 20px; }
#tour-created-list-section .precaution-area .create:before {
	display: block; clear: both; content: ''; 
	position: absolute; left: 15px; width: 28px; height: 28px; 
	background: url('/include/images/btn-tour-manager-create.svg') no-repeat center;
}
#tour-created-list-section .precaution-area .go-list {margin-right: -5px; padding: 5px; }
#tour-created-list-section .precaution-area .go-list:before {
	display: block; clear: both; content: ''; 
	width: 23px; height: 16px; 
	background: url('/include/images/btn-tour-manager-list.svg') no-repeat center;
}

#tour-created-list-section .tab-area {}
#tour-created-list-section .tab-area .tab-group {display: flex; gap: 15px; border-bottom: 1px solid #EDEDED; }
#tour-created-list-section .tab-area .tab {
	display: flex; justify-content: center; align-items: center; 
	position: relative; height: 52px; padding: 0 5px; line-height: 18px; color: #A4A4A4; font-size: 15px; font-weight: 500; 
	word-break: keep-all; 
}
#tour-created-list-section .tab-area .tab.active {color: var(--main-color); }
#tour-created-list-section .tab-area .tab.active:before {
	display: block; clear: both; content: ''; 
	position: absolute; bottom: 0; width: 100%; height: 2px; margin-bottom: -1px; background: var(--main-color); 
}
#tour-created-list-section .created-tour-area {display: none; }
#tour-created-list-section .created-tour-area.active {display: block; }

#tour-created-list-section .request-rematch-area {display: none; }
#tour-created-list-section .request-rematch-area.active {display: block; }

#tour-created-list-section .accept-tour-area {display: none; }
#tour-created-list-section .accept-tour-area.active {display: block; }

#tour-created-list-section .list-ul {display: flex; flex-direction: column; gap: 12px; padding: 20px 20px 45px; }
#tour-created-list-section .list-ul > li:not(.empty-li) {}
#tour-created-list-section .list-ul > li:not(.empty-li) .wrap {display: block; padding: 20px 15px; border-radius: 15px; background: #FFF; box-shadow: 0px 2px 8px 0px rgb(0,0,0,0.1); }
#tour-created-list-section .list-ul .top {display: flex; align-items: center; gap: 4px; margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px solid #F5F5F5; }
#tour-created-list-section .list-ul .top:before {display: block; clear: both; content: '·'; order: 2; line-height: 14px; color: #666; font-size: 13px; font-weight: 200; }
#tour-created-list-section .list-ul .name {order: 1; line-height: 18px; font-size: 17px; font-weight: 500; }
#tour-created-list-section .list-ul .age {order: 3; line-height: 14px; color: #666; font-size: 13px; font-weight: 200; }
#tour-created-list-section .list-ul .desc {display: flex; flex-direction: column; gap: 15px; }
#tour-created-list-section .list-ul dl {display: flex; gap: 10px; justify-content: space-between; }
#tour-created-list-section .list-ul dt {line-height: 14px; color: #8B8B8B; font-size: 12px; font-weight: 500; }
#tour-created-list-section .list-ul dd {line-height: 14px; text-align: right; color: #3D3D3D; font-size: 13px; font-weight: 500; }



/** 투어 - 매니저 투어 생성 리스트 - 생성 :: 1단계 (지역) */
#tour-created-location-section {}
#tour-created-location-section .bot-btn-area {}
#tour-created-location-section .bot-btn-area .btn-wrap {display: flex; padding-bottom: 28px;}



/** 투어 - 매니저 투어 생성 리스트 - 생성 :: 2단계 */
#tour-created-form-section {}
#tour-created-form-section fieldset {gap: 20px; padding-top: 30px; }
#tour-created-form-section .tour-default-area {display: flex; flex-direction: column; gap: 24px; padding-bottom: 20px; border-bottom: 1px solid #F5F5F5; }
#tour-created-form-section .tour-default-area .lc1-name {line-height: 22px; font-size: 20px; font-weight: 500; }
#tour-created-form-section .tour-default-group {display: flex; flex-direction: column; gap: 20px; }
#tour-created-form-section .tour-default-group .fld-textarea {height: 85px; }
#tour-created-form-section .tour-default-group textarea {padding: 10px 15px; }


#tour-created-form-section .tour-course-area {padding-bottom: 40px; }
#tour-created-form-section .tour-course-area .title {padding-bottom: 20px; }
#tour-created-form-section .tour-course-area h4 {line-height: 18px; font-size: 16px; font-weight: 500; }
#tour-created-form-section .tour-course-group {display: flex; flex-direction: column; gap: 20px; padding-right: 4px; }
#tour-created-form-section .course-box {
	display: flex; flex-direction: column; gap: 20px; 
	position: relative; padding: 28px 15px; border-radius: 10px; background: #F5F5F5; 
}
#tour-created-form-section .course-box .box-del {display: flex; justify-content: center; align-items: center; position: absolute; padding: 5px; top: -9px; right: -9px; }
#tour-created-form-section .course-box .box-del:before {
	display: block; clear: both; content: ''; 
	width: 18px; height: 18px; border-radius: 18px; background: var(--color-red); 
}
#tour-created-form-section .course-box .box-del:after {
	display: block; clear: both; content: ''; 
	position: absolute; width: 8px; height: 1px; background: #FFF; transform: translateY(calc(-1 * (100% - 1px) / 2));
}
#tour-created-form-section .course-box .fld-input {background: #FFF; }
#tour-created-form-section .course-box .unit {margin-right: 15px; }
#tour-created-form-section .course-box .fld-textarea {height: 100px; }
#tour-created-form-section .course-box .fld-img .btn-add-img {background-color: #FFF; }

#tour-created-form-section .add-btn-wrap {display: flex; justify-content: center; align-items: center; padding-top: 30px; }
#tour-created-form-section .add-location {width: 140px; border-radius: 30px; background: #3D3D3D; font-size: 14px; }
#tour-created-form-section .add-location:before {display: block; clear: both; content: ''; width: 12px; height: 12px; background: url('/include/images/btn-add-location.svg') no-repeat center;}

#tour-created-form-section .bot-btn-area {}
#tour-created-form-section .bot-btn-area .btn-wrap {display: flex; padding-bottom: 28px; }
#tour-created-form-section .bot-btn-area .btn {flex: 1; }



/** 투어 - 매니저투어리스트 */
#manager-tour-list-section {}

#manager-tour-list-section .manager-info-area {}
#manager-tour-list-section .manager-info {display: flex; align-items: center; gap: 15px; padding: 20px 0; }
#manager-tour-list-section .manager-info .thumb {position: relative; width: 70px; }
#manager-tour-list-section .manager-info .thumb:before {display: block; clear: both; content: ''; padding-bottom: 100%; }
#manager-tour-list-section .manager-info .thumb .cont {
	position: absolute; top: 0; left: 0; 
	width: 100%; height: 100%; border: 1px solid #F5F5F5; background: url('/include/images/no-thumb-img.svg') no-repeat center, #F8F8F8; border-radius: 10px; 
	overflow:hidden;display:flex;align-items:center;justify-content:center;
}
#manager-tour-list-section .manager-info .thumb img {display: block; width: 100%; height: 100%; object-fit: cover; background: #FFF; }
#manager-tour-list-section .manager-info .desc {}
#manager-tour-list-section .manager-info .desc .name {margin-bottom: 15px; line-height: 18px; font-size: 17px; font-weight: 500; }
#manager-tour-list-section .manager-info .desc .optional {display: flex; align-items: center; gap: 6px; line-height: 14px; color: #666; font-size: 13px; font-weight: 200; }
#manager-tour-list-section .manager-info .desc .optional:before {display: block; clear: both; content: ''; order: 2; width: 1px; height: 10px; background: #EDEDED; }
#manager-tour-list-section .manager-info .desc .age {order: 1; }
#manager-tour-list-section .manager-info .desc .height {order: 3; }
#manager-tour-list-section .tour-match-info {display: flex; flex-direction: column; gap: 20px; padding-bottom: 30px; }
#manager-tour-list-section .tour-match-info dl {display: flex; flex-direction: column; gap: 10px; }
#manager-tour-list-section .tour-match-info dt {line-height: 14px; color: #8B8B8B; font-size: 11px; font-weight: 500; }
#manager-tour-list-section .tour-match-info dd {padding: 20px 15px; line-height: 20px; border-radius: 10px; background: #F8F8F8; font-size: 13px; font-weight: 200; }

#manager-tour-list-section .list-area {}
#manager-tour-list-section .list-area .title {padding: 30px 0; }
#manager-tour-list-section .list-area .title h4 {line-height: 22px; font-size: 20px; font-weight: 500; }
#manager-tour-list-section .list-area .list-ul {}
#manager-tour-list-section .list-area .list-ul > li:not(.empty-li) {border-radius: 15px; background: #FFF; box-shadow: 0px 2px 8px 0px rgb(0,0,0,0.1); }
#manager-tour-list-section .list-area .list-ul .wrap {display: block; padding: 15px; }
#manager-tour-list-section .list-area .list-ul .top {
	display: flex; justify-content: space-between; align-items: center; gap: 10px; 
	margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid #F5F5F5;
}
#manager-tour-list-section .list-area .list-ul .loca {display: flex; align-items: center; gap: 8px; }
#manager-tour-list-section .list-area .list-ul .loca:before {
	display: block; clear: both; content: ''; 
	width: 16px; height: 18px; background: url('/include/images/icon-tour-pin.svg') no-repeat center; 
}
#manager-tour-list-section .list-area .list-ul .loca .addr {line-height: 14px; color: #3D3D3D; font-size: 13px; font-weight: 500; }
#manager-tour-list-section .list-area .list-ul .time {line-height: 12px; color: #969696; font-size: 10px; font-weight: 200; }
#manager-tour-list-section .list-area .list-ul .info {display: flex; gap: 15px; }
#manager-tour-list-section .list-area .list-ul .thumb {position: relative; width: 70px; }
#manager-tour-list-section .list-area .list-ul .thumb:before {display: block; clear: both; content: ''; padding-bottom: 100%; }
#manager-tour-list-section .list-area .list-ul .thumb .cont {
	position: absolute; top: 0; left: 0; 
	width: 100%; height: 100%; border: 1px solid #F5F5F5; background: url('/include/images/no-thumb-img.svg') no-repeat center, #F8F8F8; border-radius: 10px; 
	overflow:hidden;display:flex;align-items:center;justify-content:center;
}
#manager-tour-list-section .list-area .list-ul .thumb img {display: block; width: 100%; height: 100%; object-fit: cover; background: #FFF; }{}
#manager-tour-list-section .list-area .list-ul .desc {flex: 1; }
#manager-tour-list-section .list-area .list-ul .subject {margin-bottom: 15px; font-size: 15px; font-weight: 500; }
#manager-tour-list-section .list-area .list-ul .content {line-height: 18px; color: #666; font-size: 12px; font-weight: 200; -webkit-line-clamp: 2; }

#manager-tour-list-section .bot-btn-area {}
#manager-tour-list-section .bot-btn-area .btn-wrap {display: flex; padding-top: 24px; padding-bottom: 24px; }
#manager-tour-list-section .bot-btn-area .btn {flex: 1; }



/** 투어 - 매니저투어리스트 - 상세 */
#manager-tour-view-section {}

#manager-tour-view-section .manager-info-area {}
#manager-tour-view-section .manager-info {display: flex; align-items: center; gap: 15px; padding: 20px 0; }
#manager-tour-view-section .manager-info .thumb {position: relative; width: 70px; }
#manager-tour-view-section .manager-info .thumb:before {display: block; clear: both; content: ''; padding-bottom: 100%; }
#manager-tour-view-section .manager-info .thumb .cont {
	position: absolute; top: 0; left: 0; 
	width: 100%; height: 100%; border: 1px solid #F5F5F5; background: url('/include/images/no-thumb-img.svg') no-repeat center, #F8F8F8; border-radius: 10px; 
	overflow:hidden;display:flex;align-items:center;justify-content:center;
}
#manager-tour-view-section .manager-info .thumb img {display: block; width: 100%; height: 100%; object-fit: cover; background: #FFF; }
#manager-tour-view-section .manager-info .desc {}
#manager-tour-view-section .manager-info .desc .name {margin-bottom: 15px; line-height: 18px; font-size: 17px; font-weight: 500; }
#manager-tour-view-section .manager-info .desc .optional {display: flex; align-items: center; gap: 6px; line-height: 14px; color: #666; font-size: 13px; font-weight: 200; }
#manager-tour-view-section .manager-info .desc .optional:before {display: block; clear: both; content: ''; order: 2; width: 1px; height: 10px; background: #EDEDED; }
#manager-tour-view-section .manager-info .desc .age {order: 1; }
#manager-tour-view-section .manager-info .desc .height {order: 3; }

#manager-tour-view-section .view-area {padding: 20px 0 50px; }
#manager-tour-view-section .view-info-area {margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #F5F5F5; }
#manager-tour-view-section .view-info-area .loca {display: flex; align-items: center; gap: 8px; padding-bottom: }
#manager-tour-view-section .view-info-area .loca:before {
	display: block; clear: both; content: ''; 
	width: 16px; height: 18px; background: url('/include/images/icon-tour-pin.svg') no-repeat center; 
}
#manager-tour-view-section .view-info-area .loca .addr {line-height: 14px; color: #666; font-size: 13px; font-weight: 500; }
#manager-tour-view-section .view-info-area .subject {padding-top: 15px; padding-bottom: 15px; line-height: 20px; font-size: 18px; font-weight: 500; }
#manager-tour-view-section .view-info-area .content {min-height: 90px; padding: 15px; line-height: 20px; border-radius: 10px; background: #F8F8F8; font-size: 13px; font-weight: 200; }

#manager-tour-view-section .location-area {display: flex; flex-direction: column; gap: 40px; }
#manager-tour-view-section .swiper-area {position: relative; margin-bottom: 15px; }
#manager-tour-view-section .swiper-area:before {display: block; clear: both; content: ''; padding-bottom: calc((250 / 350) * 100%); }
#manager-tour-view-section .swiper-area .swiper {position: absolute; top: 0; left: 0; width:100%; height: 100%; }
#manager-tour-view-section .swiper-area .swiper-slide {border: 1px solid #F5F5F5; border-radius: 10px; overflow: hidden; }
#manager-tour-view-section .swiper-area .swiper-slide img {display: block; width: 100%; height: 100%; object-fit: cover; }
#manager-tour-view-section .swiper-area .swiper-pagination {display: flex; justify-content: center; align-items: center; bottom: 15px; }
#manager-tour-view-section .swiper-area .swiper-pagination-bullet {width: 5px; height: 5px; border-radius: 5px; background: #FFF; opacity: 0.5; }
#manager-tour-view-section .swiper-area .swiper-pagination-bullet-active {background: #FFF; opacity: 1; }

#manager-tour-view-section .location-info {display: flex; flex-direction: column; gap: 15px; }
#manager-tour-view-section .location-info .info-top {display: flex; justify-content: space-between; gap: 10px; }
#manager-tour-view-section .location-info .name {line-height: 16px; font-size: 15px; font-weight: 500; }
#manager-tour-view-section .location-info .time {line-height: 16px; color: #969696; font-size: 10px; font-weight: 200; }
#manager-tour-view-section .location-info .desc {line-height: 20px; color: #666; font-size: 13px; font-weight: 200; }



/** 투어 - 매니저 회원들이 등록한 투어 리스트 */
#manager-own-list-section {}
#manager-own-list-section .list-ul {display: flex; flex-direction: column; gap: 15px; padding: 20px; }
#manager-own-list-section .list-ul > li:not(.empty-li) {}
#manager-own-list-section .list-ul > li:not(.empty-li) .wrap {display: block; padding: 15px; border-radius: 15px; background: #FFF; box-shadow: 0px 2px 8px rgb(0,0,0,0.1); }

#manager-own-list-section .list-ul .loca {display: flex; align-items: center; gap: 8px; margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid #F5F5F5;}
#manager-own-list-section .list-ul .loca:before {
	display: block; clear: both; content: ''; 
	width: 16px; height: 18px; background: url('/include/images/icon-tour-pin.svg') no-repeat center; 
}
#manager-own-list-section .list-ul .loca .addr {line-height: 14px; color: #3D3D3D; font-size: 13px; font-weight: 500; }
#manager-own-list-section .list-ul .desc {}
#manager-own-list-section .list-ul .subject {padding-top: 15px; font-size: 15px; font-weight: 500; }
#manager-own-list-section .list-ul .content {padding-top: 15px; }





/** 추천코스 - 지역 */
#location-section {background: #FAFAFA; }
#location-section .loca-list-ul {display: flex; flex-wrap: wrap; gap: 25px; padding: 20px; }
#location-section .loca-list-ul > li {flex: 0 0 calc((100% - 50px) / 3);}
#location-section .loca-list-ul .wrap {
	display: block; position: relative; width: 100%; border-radius: 10px; 
	background-repeat: no-repeat; 
	background-position: center; 
	background-size: cover;
	background-color: #FFF; 
	overflow: hidden; 
	box-shadow: 0px 2px 8px 0 rgb(0,0,0,0.1); 
}
#location-section .loca-list-ul .wrap:before {display: block; clear: both; content: ''; padding-bottom: 100%; }
#location-section .loca-list-ul .name {padding-top: 15px; line-height: 16px; text-align: center; font-size: 15px; font-weight: 500; }
#location-section .loca-list-ul > li:nth-of-type(1) .wrap {background-image: url('/include/images/course/btn-course-seoul.svg'); }
#location-section .loca-list-ul > li:nth-of-type(2) .wrap {background-image: url('/include/images/course/btn-course-gyeonggi.svg'); }
#location-section .loca-list-ul > li:nth-of-type(3) .wrap {background-image: url('/include/images/course/btn-course-incheon.svg'); }
#location-section .loca-list-ul > li:nth-of-type(4) .wrap {background-image: url('/include/images/course/btn-course-daejeon.svg'); }
#location-section .loca-list-ul > li:nth-of-type(5) .wrap {background-image: url('/include/images/course/btn-course-daegu.svg'); }
#location-section .loca-list-ul > li:nth-of-type(6) .wrap {background-image: url('/include/images/course/btn-course-busan.svg'); }
#location-section .loca-list-ul > li:nth-of-type(7) .wrap {background-image: url('/include/images/course/btn-course-ulsan.svg'); }
#location-section .loca-list-ul > li:nth-of-type(8) .wrap {background-image: url('/include/images/course/btn-course-gwangju.svg'); }
#location-section .loca-list-ul > li:nth-of-type(9) .wrap {background-image: url('/include/images/course/btn-course-sejong.svg'); }
#location-section .loca-list-ul > li:nth-of-type(10) .wrap {background-image: url('/include/images/course/btn-course-gyeongnam.svg'); }
#location-section .loca-list-ul > li:nth-of-type(11) .wrap {background-image: url('/include/images/course/btn-course-gyeongbuk.svg'); }
#location-section .loca-list-ul > li:nth-of-type(12) .wrap {background-image: url('/include/images/course/btn-course-jeonnam.svg'); }
#location-section .loca-list-ul > li:nth-of-type(13) .wrap {background-image: url('/include/images/course/btn-course-jeonbuk.svg'); }
#location-section .loca-list-ul > li:nth-of-type(14) .wrap {background-image: url('/include/images/course/btn-course-chungnam.svg'); }
#location-section .loca-list-ul > li:nth-of-type(15) .wrap {background-image: url('/include/images/course/btn-course-chungbuk.svg'); }
#location-section .loca-list-ul > li:nth-of-type(16) .wrap {background-image: url('/include/images/course/btn-course-gangwon.svg'); }
#location-section .loca-list-ul > li:nth-of-type(17) .wrap {background-image: url('/include/images/course/btn-course-jeju.svg'); }



/** 추천코스 - list */
#course-list-section {}
#course-list-section .select-area {display: flex; align-items: center; gap: 5px; padding-top: 30px; }
#course-list-section .select-area .local {line-height: 24px; font-size: 22px; font-weight: 500; }
#course-list-section .select-area .select-wrap {height: 24px; border: none; }
#course-list-section .select-area .sel-label {padding: 0; }
#course-list-section .select-area .sel-label .text {line-height: 24px; font-size: 18px; }
#course-list-section .tab-area {margin-top: 24px; border: 2px solid #F5F5F5; border-radius: 20px; background: #F5F5F5; }
#course-list-section .tab-group {display: flex; align-items: center; }
#course-list-section .tab-group .tab {flex: 1; display: flex; justify-content: center; align-items: center; height: 40px; border-radius: 20px; }
#course-list-section .tab-group .label {line-height: 16px; color: #969696; font-size: 14px; font-weight: 200; }
#course-list-section .tab-group .tab.active {background: var(--sub-color); }
#course-list-section .tab-group .tab.active .label {color: #FFF; font-weight: 500; }
#course-list-section .list-ul {display: flex; flex-wrap: wrap; gap: 30px 10px; padding-top: 24px; padding-bottom: 50px; }
#course-list-section .list-ul > li:not(.empty-li) {width: calc((100% - 10px) /2); }
#course-list-section .list-ul .img-wrap {position: relative; display: block; }
#course-list-section .list-ul .img-wrap:before {display: block; clear: both; content: ''; padding-bottom: 100%; }
#course-list-section .list-ul .img-wrap .img {display: block; position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 10px; overflow: hidden; }
#course-list-section .list-ul .img-wrap .img img {display: block; width: 100%; height: 100%; object-fit: cover; }
#course-list-section .list-ul .img-wrap i {
	display: block; position: absolute; bottom: 12px; right: 12px; 
	width: 26px; height: 24px; background: url('/include/images/icon-course-like-off.svg') no-repeat center; z-index: 10; 
}
#course-list-section .list-ul .img-wrap i.active {background: url('/include/images/icon-course-like-on.svg') no-repeat center; }
#course-list-section .list-ul .desc-wrap {display: block; margin-top: 15px; }
#course-list-section .list-ul .desc-wrap .name {}
#course-list-section .list-ul .desc-wrap .addr {display: flex; align-items: center; gap: 3px; margin-top: 12px; }
#course-list-section .list-ul .desc-wrap .addr:before {
	display: block; clear: both; content: ''; 
	width: 10px; height: 11px; background: url('/include/images/icon-bookmark-list-pin.svg') no-repeat center; 
}
#course-list-section .list-ul .desc-wrap .addr .text {line-height: 12px; color: #666; font-size: 11px; font-weight: 200; }



/** 추천코스 - view */



/** 이용기록 - 리스트 */
#history-list-section {}
#history-list-section .section-body {flex: 1; background: #FAFAFA; }
#history-list-section .tab-area {background: #FFF; }
#history-list-section .tab-area .tab-group {display: flex; border-bottom: 1px solid #EDEDED; }
#history-list-section .tab-area .tab {flex: 1; display: flex; justify-content: center; align-items: center; position: relative; height: 50px; line-height:  16px; color: #A4A4A4; font-size: 15px; font-weight: 500; }
#history-list-section .tab-area .tab.active {color: var(--main-color); }
#history-list-section .tab-area .tab.active:before {
	display: block; clear: both; content: ''; 
	position: absolute; bottom: 0; width: 100%; height: 2px; margin-bottom: -1px; background: var(--main-color); 
}

#history-list-section .history-match-area {flex: 1; display: none; }
#history-list-section .history-match-area.active {display: block; }
#history-list-section .history-match-area .list-ul {display: flex; flex-direction: column; gap: 15px; padding: 20px; }
#history-list-section .history-match-area .list-ul > li:not(.empty-li) {border-radius: 15px; background: #FFF; box-shadow: 0px 2px 8px 0px rgb(0,0,0,0.1); }
#history-list-section .history-match-area .list-ul .wrap {display: block; position: relative; padding: 15px; }
#history-list-section .history-match-area .list-ul .date-wrap {
	display: flex; justify-content: space-between; align-items: center; 
	position: relative; margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid #F5F5F5; 
}
#history-list-section .history-match-area .list-ul .date-wrap .date {line-height: 14px; font-size: 13px; font-weight: 500; }
#history-list-section .history-match-area .list-ul .date-wrap .stat {padding: 5px 6px; line-height: 12px; border-radius: 4px; font-size: 10px; font-weight: 200; }
#history-list-section .history-match-area .list-ul .date-wrap .stat.yet {background: #EDEDED; color: #666; }
#history-list-section .history-match-area .list-ul .date-wrap .stat.done {background: var(--sub-color); color: #FFF; }
#history-list-section .history-match-area .list-ul .desc-wrap {display: flex; flex-direction: column; gap: 15px; color: #3D3D3D; }
#history-list-section .history-match-area .list-ul .desc-wrap dl {display: flex; justify-content: space-between; gap: 10px; }
#history-list-section .history-match-area .list-ul .desc-wrap dt {min-width: 90px; line-height: 14px; font-size: 12px; font-weight: 200; }
#history-list-section .history-match-area .list-ul .desc-wrap dd {flex: 1; line-height: 14px; text-align: right; font-size: 12px; font-weight: 500; }

#history-list-section .history-tour-area {flex: 1; display: none; }
#history-list-section .history-tour-area.active {display: block; }
#history-list-section .history-tour-area .list-ul {display: flex; flex-direction: column; gap: 15px; padding: 20px; }
#history-list-section .history-tour-area .list-ul > li:not(.empty-li) {border-radius: 15px; background: #FFF; box-shadow: 0px 2px 8px 0px rgb(0,0,0,0.1); }
#history-list-section .history-tour-area .list-ul .wrap {display: block; position: relative; padding: 15px; }
#history-list-section .history-tour-area .list-ul .date-wrap {
	display: flex; justify-content: space-between; align-items: center; 
	position: relative; margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid #F5F5F5; 
}
#history-list-section .history-tour-area .list-ul .date-wrap .date {line-height: 14px; font-size: 13px; font-weight: 500; }
#history-list-section .history-tour-area .list-ul .date-wrap .stat {padding: 5px 6px; line-height: 12px; border-radius: 4px; font-size: 10px; font-weight: 200; }
#history-list-section .history-tour-area .list-ul .date-wrap .stat.yet {background: #EDEDED; color: #666; }
#history-list-section .history-tour-area .list-ul .date-wrap .stat.done {background: var(--sub-color); color: #FFF; }
#history-list-section .history-tour-area .list-ul .desc-wrap {display: flex; flex-direction: column; gap: 15px; color: #3D3D3D; }
#history-list-section .history-tour-area .list-ul .desc-wrap dl {display: flex; justify-content: space-between; gap: 10px; }
#history-list-section .history-tour-area .list-ul .desc-wrap dt {min-width: 90px; line-height: 14px; font-size: 12px; font-weight: 200; }
#history-list-section .history-tour-area .list-ul .desc-wrap dd {flex: 1; line-height: 14px; text-align: right; font-size: 12px; font-weight: 500; }



/** 이용기록 - 데이트 매칭 상세 */
#history-match-view-section {}
#history-match-view-section .title-wrap {display: flex; align-items: center; gap: 5px; position: relative; }
#history-match-view-section .title-wrap .title {font-size: 16px; font-weight: 500; }
#history-match-view-section .title-wrap .stat {padding: 5px 6px; line-height: 12px; border-radius: 4px; font-size: 10px; font-weight: 200; }
#history-match-view-section .title-wrap .stat.yet {background: #EDEDED; color: #666; }
#history-match-view-section .title-wrap .stat.done {background: var(--sub-color); color: #fff;}
#history-match-view-section .info-wrap {display: flex; flex-direction: column; gap: 20px; padding-top: 24px; }
#history-match-view-section .info-wrap dl {display: flex; justify-content: space-between; gap: 10px }
#history-match-view-section .info-wrap dt {line-height: 14px; color: #8B8B8B; font-size: 12px; font-weight: 500; width:90px; }
#history-match-view-section .info-wrap dd {line-height: 14px; color: #3D3D3D; font-size: 13px; font-weight: 500; width:calc(100% - 90px); text-align:right;}
#history-match-view-section .info-wrap .coment-dl {flex-direction: column; }
#history-match-view-section .info-wrap .coment-dl dt {flex-direction: column; width:100%;}
#history-match-view-section .info-wrap .coment-dl dd {width: 100%; min-height: 70px; padding: 12px; border: 1px solid #DBDBDB; border-radius: 8px; text-align:left;}

#history-match-view-section .matching-area {padding: 20px; padding-top: 24px; }
#history-match-view-section .payment-area {padding: 20px; padding-top: 24px; }
#history-match-view-section .payment-area .price {color: var(--main-color); }
#history-match-view-section .payment-area .copy {display: flex; align-items: center; justify-content:flex-end; gap: 4px;position:relative;padding-left:20px;}
#history-match-view-section .payment-area .copy:before {
	display: block; clear: both; content: ''; 
	width: 13px; height: 14px; background: url('/include/images/icon-copy-text.svg') no-repeat center; 
position:absolute;left:0;top:0;
}
#history-match-view-section .manager-area {padding: 24px 20px; }
#history-match-view-section .manager-box {padding-top: 20px; padding-bottom: 20px; border-bottom: 1px solid #F5F5F5; }
#history-match-view-section .manager-box:last-of-type {padding-bottom: 0; border-bottom: none; }
#history-match-view-section .manager-box .manager-info {display: flex; gap: 15px; padding-bottom: 15px; }
#history-match-view-section .manager-box .thumb {position: relative; width: 70px; }
#history-match-view-section .manager-box .thumb:before {display: block; clear: both; content: ''; padding-bottom: 100%; }
#history-match-view-section .manager-box .thumb .cont {
	position: absolute; top: 0; left: 0; 
	width: 100%; height: 100%; border: 1px solid #F5F5F5; background: url('/include/images/no-thumb-img.svg') no-repeat center, #F8F8F8; border-radius: 10px; 
	overflow:hidden;display:flex;align-items:center;justify-content:center;
}
#history-match-view-section .manager-box .thumb img {display: block; width: 100%; height: 100%; object-fit: cover; background: #FFF; }

#history-match-view-section .manager-box .desc {flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 15px; position: relative; }
#history-match-view-section .manager-box .name {line-height: 18px; font-size: 17px; font-weight: 500; }
#history-match-view-section .manager-box .option {
	display: flex; align-items: center; gap: 6px; 
	position: relative; line-height: 14px; color: #666; 
	font-size: 13px; font-weight: 200; 
}
#history-match-view-section .manager-box .option:before {display: block; clear: both; content: ''; order: 2; width: 1px; height: 10px; background: #EDEDED; }
#history-match-view-section .manager-box .age {order: 1; }
#history-match-view-section .manager-box .height {order: 3; }

#history-match-view-section .manager-box .btn-wrap {}
#history-match-view-section .manager-box .btn {flex: 1; height: 50px; }
#history-match-view-section .manager-box .chat-btn {display: flex; }
#history-match-view-section .manager-box .go-chat:disabled {background: #C4C4C4; }
#history-match-view-section .manager-box .go-chat:before {
	display: block; clear: both; content: ''; 
	position: absolute; left: 15px; width: 18px; height: 18px; 
	background: url('/include/images/btn-go-chat.svg') no-repeat center;
}
#history-match-view-section .manager-box small {display: block; margin-top: 10px; margin-bottom: 20px; color: #969696; font-size: 14px; font-size: 9px; font-weight: 200; letter-spacing: -0.01em; }
#history-match-view-section .manager-box .after-btn {display: flex; align-items: center; gap: 10px; }
#history-match-view-section .manager-box .review {border: 1px solid var(--main-color); color: var(--main-color); }
#history-match-view-section .manager-box .review:disabled {border-color: #C4C4C4; color: #C4C4C4; }
#history-match-view-section .manager-box .rematch {background: var(--main-color); }
#history-match-view-section .manager-box .rematch:disabled {background: #C4C4C4; }



/** 이용기록 - 데이트 매칭 상세 */
#history-tour-view-section {}
#history-tour-view-section .title-wrap {display: flex; align-items: center; gap: 5px; position: relative; }
#history-tour-view-section .title-wrap .title {font-size: 16px; font-weight: 500; }
#history-tour-view-section .title-wrap .stat {padding: 5px 6px; line-height: 12px; border-radius: 4px; font-size: 10px; font-weight: 200; }
#history-tour-view-section .title-wrap .stat.yet {background: #EDEDED; color: #666; }
#history-tour-view-section .title-wrap .stat.done {background: var(--sub-color); color: #fff;}
#history-tour-view-section .info-wrap {display: flex; flex-direction: column; gap: 20px; padding-top: 24px; }
#history-tour-view-section .info-wrap dl {display: flex; justify-content: space-between; gap: 10px }
#history-tour-view-section .info-wrap dt {line-height: 14px; color: #8B8B8B; font-size: 12px; font-weight: 500; width:90px;}
#history-tour-view-section .info-wrap dd {line-height: 14px; color: #3D3D3D; font-size: 13px; font-weight: 500;width:calc(100% - 90px);text-align:right;}
#history-tour-view-section .info-wrap .coment-dl {flex-direction: column; }
#history-tour-view-section .info-wrap .coment-dl dt {flex-direction: column; width:100%; }
#history-tour-view-section .info-wrap .coment-dl dd {width: 100%; min-height: 70px; padding: 12px; border: 1px solid #DBDBDB; border-radius: 8px; text-align:left;}

#history-tour-view-section .matching-area {padding: 20px; padding-top: 24px; }
#history-tour-view-section .payment-area {padding: 20px; padding-top: 24px; }
#history-tour-view-section .payment-area .price {color: var(--main-color); }
#history-tour-view-section .payment-area .copy {display: flex; align-items: center; gap: 4px; }
#history-tour-view-section .payment-area .copy:before {
	display: block; clear: both; content: ''; 
	width: 13px; height: 14px; background: url('/include/images/icon-copy-text.svg') no-repeat center; 
}
#history-tour-view-section .manager-area {padding: 24px 20px; }
#history-tour-view-section .manager-box {padding-top: 20px; padding-bottom: 20px; border-bottom: 1px solid #F5F5F5; }
#history-tour-view-section .manager-box:last-of-type {padding-bottom: 0; border-bottom: none; }
#history-tour-view-section .manager-box .manager-info {display: flex; gap: 15px; padding-bottom: 15px; }
#history-tour-view-section .manager-box .thumb {position: relative; width: 70px; }
#history-tour-view-section .manager-box .thumb:before {display: block; clear: both; content: ''; padding-bottom: 100%; }
#history-tour-view-section .manager-box .thumb .cont {
	position: absolute; top: 0; left: 0; 
	width: 100%; height: 100%; border: 1px solid #F5F5F5; background: url('/include/images/no-thumb-img.svg') no-repeat center, #F8F8F8; border-radius: 10px; 
	overflow:hidden;display:flex;align-items:center;justify-content:center;
}
#history-tour-view-section .manager-box .thumb img {display: block; width: 100%; height: 100%; object-fit: cover; background: #FFF; }

#history-tour-view-section .manager-box .desc {flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 15px; position: relative; }
#history-tour-view-section .manager-box .name {line-height: 18px; font-size: 17px; font-weight: 500; }
#history-tour-view-section .manager-box .option {
	display: flex; align-items: center; gap: 6px; 
	position: relative; line-height: 14px; color: #666; 
	font-size: 13px; font-weight: 200; 
}
#history-tour-view-section .manager-box .option:before {display: block; clear: both; content: ''; order: 2; width: 1px; height: 10px; background: #EDEDED; }
#history-tour-view-section .manager-box .age {order: 1; }
#history-tour-view-section .manager-box .height {order: 3; }

#history-tour-view-section .manager-box .btn-wrap {}
#history-tour-view-section .manager-box .btn {flex: 1; height: 50px; }
#history-tour-view-section .manager-box .chat-btn {display: flex; }
#history-tour-view-section .manager-box .go-chat:disabled {background: #C4C4C4; }
#history-tour-view-section .manager-box .go-chat:before {
	display: block; clear: both; content: ''; 
	position: absolute; left: 15px; width: 18px; height: 18px; 
	background: url('/include/images/btn-go-chat.svg') no-repeat center;
}
#history-tour-view-section .manager-box small {display: block; margin-top: 10px; margin-bottom: 20px; color: #969696; font-size: 14px; font-size: 9px; font-weight: 200; letter-spacing: -0.01em; }
#history-tour-view-section .manager-box .after-btn {display: flex; align-items: center; gap: 10px; }
#history-tour-view-section .manager-box .review {border: 1px solid var(--main-color); color: var(--main-color); }
#history-tour-view-section .manager-box .review:disabled {border-color: #C4C4C4; color: #C4C4C4; }
#history-tour-view-section .manager-box .rematch {background: var(--main-color); }
#history-tour-view-section .manager-box .rematch:disabled {background: #C4C4C4; }



/** 이용기록 - 매치 - 리매치 */
#history-match-rematch-section {}
#history-match-rematch-section .top-area {padding: 20px; background: #F5F5F5; }
#history-match-rematch-section .top-area .title {margin-bottom: 15px; }
#history-match-rematch-section .top-area h3 {font-size: 16px; font-weight: 500; }
#history-match-rematch-section .top-area .manager-info {display: flex; align-items: center; gap: 15px; padding: 10px; border-radius: 10px; background: #FFF; box-shadow: 0px 2px 8px rgb(0,0,0,0.1); }
#history-match-rematch-section .manager-info .thumb {position: relative; width: 70px; }
#history-match-rematch-section .manager-info .thumb:before {display: block; clear: both; content: ''; padding-bottom: 100%; }
#history-match-rematch-section .manager-info .thumb .cont {
	position: absolute; top: 0; left: 0; 
	width: 100%; height: 100%; border: 1px solid #F5F5F5; background: url('/include/images/no-thumb-img.svg') no-repeat center, #F8F8F8; border-radius: 10px; 
	overflow:hidden;display:flex;align-items:center;justify-content:center;
}
#history-match-rematch-section .manager-info .thumb img {display: block; width: 100%; height: 100%; object-fit: cover; background: #FFF; }
#history-match-rematch-section .manager-info .desc {flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 15px; position: relative; }
#history-match-rematch-section .manager-info .name {line-height: 18px; font-size: 17px; font-weight: 500; }
#history-match-rematch-section .manager-info .option {
	display: flex; align-items: center; gap: 6px; 
	position: relative; line-height: 14px; color: #666; 
	font-size: 13px; font-weight: 200; 
}
#history-match-rematch-section .manager-info .option:before {display: block; clear: both; content: ''; order: 2; width: 1px; height: 10px; background: #EDEDED; }
#history-match-rematch-section .manager-info .age {order: 1; }
#history-match-rematch-section .manager-info .height {order: 3; }

#history-match-rematch-section fieldset {padding: 24px 20px 30px; }

#history-match-rematch-section .precaution-area {padding: 24px 20px 40px; }
#history-match-rematch-section .precaution-area .title {display: flex; align-items: center; gap: 10px; }
#history-match-rematch-section .precaution-area .title:before {
	display: block; clear: both; content: ''; 
	width: 16px; height: 16px; background: url('/include/images/icon-caution-16x16.svg') no-repeat center; 
}
#history-match-rematch-section .precaution-area .title h4 {line-height: 16px; color: var(--color-red); font-size: 13px; font-weight: 500; letter-spacing: -0.01em; }
#history-match-rematch-section .precaution-area ul {display: flex; flex-direction: column; gap: 15px; margin-top: 15px; padding: 15px 10px; border-radius: 10px; background: #FAFAFA; }
#history-match-rematch-section .precaution-area ul > li {display: flex; line-height: 16px; color: #545454; font-size: 10px; font-weight: 200; letter-spacing: -0.01em; }
#history-match-rematch-section .precaution-area ul > li i {display: flex; justify-content: center; align-items: center; width: 15px; height: 16px; }
#history-match-rematch-section .precaution-area ul > li i:before {
	display: block; clear: both; content: ''; 
	width: 2px; height: 2px; line-height: 12px; border-radius: 2px; background: #545454; 
}
#history-match-rematch-section .precaution-area ul > li > div {flex: 1; }	
#history-match-rematch-section .btn-wrap {display: flex; flex-wrap: wrap; }
#history-match-rematch-section .btn-wrap:after {display: block; clear: both; content: ''; width: 100%; padding-bottom: 38px; }



/** 이용기록 - 투어 - 리매치 */
#history-tour-rematch-section {}
#history-tour-rematch-section .top-area {padding: 20px; background: #F5F5F5; }
#history-tour-rematch-section .top-area .title {margin-bottom: 15px; }
#history-tour-rematch-section .top-area h3 {font-size: 16px; font-weight: 500; }
#history-tour-rematch-section .top-area .manager-info {display: flex; align-items: center; gap: 15px; padding: 10px; border-radius: 10px; background: #FFF; box-shadow: 0px 2px 8px rgb(0,0,0,0.1); }
#history-tour-rematch-section .manager-info .thumb {position: relative; width: 70px; }
#history-tour-rematch-section .manager-info .thumb:before {display: block; clear: both; content: ''; padding-bottom: 100%; }
#history-tour-rematch-section .manager-info .thumb .cont {
	position: absolute; top: 0; left: 0; 
	width: 100%; height: 100%; border: 1px solid #F5F5F5; background: url('/include/images/no-thumb-img.svg') no-repeat center, #F8F8F8; border-radius: 10px; 
	overflow:hidden;display:flex;align-items:center;justify-content:center;
}
#history-tour-rematch-section .manager-info .thumb img {display: block; width: 100%; height: 100%; object-fit: cover; background: #FFF; }
#history-tour-rematch-section .manager-info .desc {flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 15px; position: relative; }
#history-tour-rematch-section .manager-info .name {line-height: 18px; font-size: 17px; font-weight: 500; }
#history-tour-rematch-section .manager-info .option {
	display: flex; align-items: center; gap: 6px; 
	position: relative; line-height: 14px; color: #666; 
	font-size: 13px; font-weight: 200; 
}
#history-tour-rematch-section .manager-info .option:before {display: block; clear: both; content: ''; order: 2; width: 1px; height: 10px; background: #EDEDED; }
#history-tour-rematch-section .manager-info .age {order: 1; }
#history-tour-rematch-section .manager-info .height {order: 3; }

#history-tour-rematch-section fieldset {padding: 24px 20px 30px; }

#history-tour-rematch-section .precaution-area {padding: 24px 20px 40px; }
#history-tour-rematch-section .precaution-area .title {display: flex; align-items: center; gap: 10px; }
#history-tour-rematch-section .precaution-area .title:before {
	display: block; clear: both; content: ''; 
	width: 16px; height: 16px; background: url('/include/images/icon-caution-16x16.svg') no-repeat center; 
}
#history-tour-rematch-section .precaution-area .title h4 {line-height: 16px; color: var(--color-red); font-size: 13px; font-weight: 500; letter-spacing: -0.01em; }
#history-tour-rematch-section .precaution-area ul {display: flex; flex-direction: column; gap: 15px; margin-top: 15px; padding: 15px 10px; border-radius: 10px; background: #FAFAFA; }
#history-tour-rematch-section .precaution-area ul > li {display: flex; line-height: 16px; color: #545454; font-size: 10px; font-weight: 200; letter-spacing: -0.01em; }
#history-tour-rematch-section .precaution-area ul > li i {display: flex; justify-content: center; align-items: center; width: 15px; height: 16px; }
#history-tour-rematch-section .precaution-area ul > li i:before {
	display: block; clear: both; content: ''; 
	width: 2px; height: 2px; line-height: 12px; border-radius: 2px; background: #545454; 
}
#history-tour-rematch-section .precaution-area ul > li > div {flex: 1; }	
#history-tour-rematch-section .btn-wrap {display: flex; flex-wrap: wrap; }
#history-tour-rematch-section .btn-wrap:after {display: block; clear: both; content: ''; width: 100%; padding-bottom: 38px; }



/** 일정 - 리스트 */
#schedule-list-section {}
#schedule-list-section .top-area {padding: 24px 20px 30px; background: #F3F3F3; }
#schedule-list-section .top-area .legend_box {display:flex;flex-wrap:wrap;margin-top:12px;margin-bottom:24px;gap:20px;}
#schedule-list-section .top-area .legend {
	display: flex; align-items: center; gap: 6px; 
	/* margin-top: 12px; margin-bottom: 24px;  */
	color: #3D3D3D; line-height: 14px; font-size: 12px; font-weight: 200; letter-spacing: -0.01em; 
}
#schedule-list-section .top-area .legend:before {display: block; clear: both; content: ''; width: 8px; height: 8px; border-radius: 8px; background: var(--main-color); }
#schedule-list-section .top-area .legend.ver2:before {background:#0ad179;}
#schedule-list-section .top-area .btn-wrap {display: flex; }
#schedule-list-section .top-area .btn {flex: 1; height: 50px; font-size: 13px; }
#schedule-list-section .top-area .btn:before {
	display: block; clear: both; content: ''; 
	position: absolute; left: 15px; 
	width: 18px; height: 18px; background: url('/include/images/btn-go-chat.svg') no-repeat center; 
}

#schedule-list-section .tab-area {background: #FFF; }
#schedule-list-section .tab-area .tab-group {display: flex; border-bottom: 1px solid #EDEDED; }
#schedule-list-section .tab-area .tab {flex: 1; display: flex; justify-content: center; align-items: center; position: relative; height: 50px; line-height:  16px; color: #A4A4A4; font-size: 15px; font-weight: 500; }
#schedule-list-section .tab-area .tab.active {color: var(--main-color); }
#schedule-list-section .tab-area .tab.active:before {
	display: block; clear: both; content: ''; 
	position: absolute; bottom: 0; width: 100%; height: 2px; margin-bottom: -1px; background: var(--main-color); 
}

#schedule-list-section .history-match-area {flex: 1; display: none; }
#schedule-list-section .history-match-area.active {display: block; }
#schedule-list-section .history-match-area .list-ul {display: flex; flex-direction: column; gap: 15px; padding: 20px; }
#schedule-list-section .history-match-area .list-ul > li:not(.empty-li) {border-radius: 15px; background: #FFF; box-shadow: 0px 2px 8px 0px rgb(0,0,0,0.1); }
#schedule-list-section .history-match-area .list-ul .wrap {display: block; position: relative; padding: 15px; }
#schedule-list-section .history-match-area .list-ul .date-wrap {
	display: flex; justify-content: space-between; align-items: center; 
	position: relative; margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid #F5F5F5; 
}
#schedule-list-section .history-match-area .list-ul .info-wrap {display: flex; align-items: center; gap: 4px; margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px solid #F5F5F5; }
#schedule-list-section .history-match-area .list-ul .info-wrap:before {display: block; clear: both; content: '·'; order: 2; color: #666; font-size: 13px; font-weight: 200;}
#schedule-list-section .history-match-area .list-ul .info-wrap .name {order: 1; line-height: 18px; font-size: 17px; font-weight: 500; }
#schedule-list-section .history-match-area .list-ul .info-wrap .age {order: 3; color: #666; font-size: 13px; font-weight: 200; }
#schedule-list-section .history-match-area .list-ul .desc-wrap {display: flex; flex-direction: column; gap: 15px; color: #3D3D3D; }
#schedule-list-section .history-match-area .list-ul .desc-wrap dl {display: flex; justify-content: space-between; gap: 10px; }
#schedule-list-section .history-match-area .list-ul .desc-wrap dt {min-width: 90px; line-height: 14px; font-size: 12px; font-weight: 200; }
#schedule-list-section .history-match-area .list-ul .desc-wrap dd {flex: 1; line-height: 14px; text-align: right; font-size: 12px; font-weight: 500; }

#schedule-list-section .history-tour-area {flex: 1; display: none; }
#schedule-list-section .history-tour-area.active {display: block; }
#schedule-list-section .history-tour-area .list-ul {display: flex; flex-direction: column; gap: 15px; padding: 20px; }
#schedule-list-section .history-tour-area .list-ul > li:not(.empty-li) {border-radius: 15px; background: #FFF; box-shadow: 0px 2px 8px 0px rgb(0,0,0,0.1); }
#schedule-list-section .history-tour-area .list-ul .wrap {display: block; position: relative; padding: 15px; }
#schedule-list-section .history-tour-area .list-ul .date-wrap {
	display: flex; justify-content: space-between; align-items: center; 
	position: relative; margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid #F5F5F5; 
}
#schedule-list-section .history-tour-area .list-ul .info-wrap {display: flex; align-items: center; gap: 4px; margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px solid #F5F5F5; }
#schedule-list-section .history-tour-area .list-ul .info-wrap:before {display: block; clear: both; content: '·'; order: 2; color: #666; font-size: 13px; font-weight: 200;}
#schedule-list-section .history-tour-area .list-ul .info-wrap .name {order: 1; line-height: 18px; font-size: 17px; font-weight: 500; }
#schedule-list-section .history-tour-area .list-ul .info-wrap .age {order: 3; color: #666; font-size: 13px; font-weight: 200; }
#schedule-list-section .history-tour-area .list-ul .desc-wrap {display: flex; flex-direction: column; gap: 15px; color: #3D3D3D; }
#schedule-list-section .history-tour-area .list-ul .desc-wrap dl {display: flex; justify-content: space-between; gap: 10px; }
#schedule-list-section .history-tour-area .list-ul .desc-wrap dt {min-width: 90px; line-height: 14px; font-size: 12px; font-weight: 200; }
#schedule-list-section .history-tour-area .list-ul .desc-wrap dd {flex: 1; line-height: 14px; text-align: right; font-size: 12px; font-weight: 500; }



/** 일정 - 상세 */
#schedule-match-view-section .title-wrap {display: flex; align-items: center; gap: 5px; position: relative; }
#schedule-match-view-section .title-wrap .title {font-size: 16px; font-weight: 500; }
#schedule-match-view-section .info-wrap {display: flex; flex-direction: column; gap: 20px; padding-top: 24px; }
#schedule-match-view-section .info-wrap dl {display: flex; justify-content: space-between; gap: 10px }
#schedule-match-view-section .info-wrap dt {line-height: 14px; color: #8B8B8B; font-size: 12px; font-weight: 500; width:90px; }
#schedule-match-view-section .info-wrap dd {line-height: 14px; color: #3D3D3D; font-size: 13px; font-weight: 500; width:calc(100% - 90px); text-align:right;}
#schedule-match-view-section .info-wrap .coment-dl {flex-direction: column; }
#schedule-match-view-section .info-wrap .coment-dl dt {flex-direction: column; width:100%;}
#schedule-match-view-section .info-wrap .coment-dl dd {width: 100%; min-height: 70px; padding: 12px; border: 1px solid #DBDBDB; border-radius: 8px; width:100%; text-align:left;}

#schedule-match-view-section .matching-area {padding: 20px; padding-top: 24px; }
#schedule-match-view-section .user-area {padding: 20px; padding-top: 24px; }
#schedule-match-view-section .user-box {padding-top: 20px; }
#schedule-match-view-section .user-info {display: flex; align-items: center; gap: 4px; padding: 20px 15px; border-radius: 10px; background: #F8F8F8; }
#schedule-match-view-section .user-info:before {display: block; clear: both; content: '·'; order: 2; color: #666; font-size: 13px; font-weight: 200; }
#schedule-match-view-section .user-info .name {order: 1; line-height: 18px; font-size: 17px; font-weight: 500; }
#schedule-match-view-section .user-info .age {order: 3; line-height: 14px; color: #666; font-size: 13px; font-weight: 200; }
#schedule-match-view-section .user-box .btn-wrap {padding-top: 20px; }
#schedule-match-view-section .user-box .btn {flex: 1; }
#schedule-match-view-section .user-box small {display: block; margin-top: 10px; margin-bottom: 20px; color: #969696; font-size: 14px; font-size: 9px; font-weight: 200; letter-spacing: -0.01em; }
#schedule-match-view-section .user-box .chat-btn {display: flex; }
#schedule-match-view-section .user-box .go-chat:disabled {background: #C4C4C4; }
#schedule-match-view-section .user-box .go-chat:before {
	display: block; clear: both; content: ''; 
	position: absolute; left: 15px; width: 18px; height: 18px; 
	background: url('/include/images/btn-go-chat.svg') no-repeat center;
}

#schedule-match-view-section .user-box .after-btn {display: flex; align-items: center; }
#schedule-match-view-section .user-box .review {border: 1px solid var(--main-color); color: var(--main-color); }
#schedule-match-view-section .user-box .review:disabled {border-color: #C4C4C4; color: #C4C4C4; }



/** 일정 - 채팅 공통 */
#all-wrap.chat-page {min-height: unset; height: 100dvh; overflow: hidden; }
.chat-page #container {overflow: hidden;}
.chat-page section {overflow: hidden; }
.chat-page .section-body {overflow: hidden; }
.chat-page .chat-area {overflow: hidden; }

.chat-area {flex: 1; display: flex; flex-direction: column; }
.chat-area .chat-room {overflow: auto; }
.chat-area .date-group {}
.chat-area .date-group .date {padding-top: 24px; padding-bottom: 20px; text-align: center; color: #B8B8B8; font-size: 12px; font-weight: 500; margin-top:0 !important;}
.chat-area .date-group ul {padding-bottom: 20px; }
.chat-area .date-group ul > li {display: flex; flex-direction: column; margin-top: 5px; }
.chat-area .date-group ul > li:last-of-type {}
.chat-area .date-group ul .name {margin-bottom: 8px; line-height: 12px; color: #8B8B8B; font-size: 10px; font-weight: 500; }
.chat-area .date-group ul .bubble {display: flex; align-items: flex-end; gap: 6px; width:100%;}
.chat-area .date-group ul .text {max-width: 70%; padding: 12px 15px; line-height: 16px; font-size: 13px; font-weight: 200; /*word-break: keep-all;*/word-break: break-all; }
.chat-area .date-group ul .time {line-height: 12px; color: #B8B8B8; font-size: 10px; font-weight: 200; }
.chat-area .date-group ul .mine {align-items: flex-end; }
.chat-area .date-group ul .mine .bubble {justify-content:flex-end}
.chat-area .date-group ul .mine .text {order: 2; border-radius: 15px 0 15px 15px; background: #EFEFEF; color: #121212; text-align: right; }
.chat-area .date-group ul .mine .time {order: 1; }
.chat-area .date-group ul .user {}
.chat-area .date-group ul .user .text {order: 1; border-radius: 0 15px 15px 15px; background: var(--sub-color); color: #FFF; }
.chat-area .date-group ul .user .time {order: 2; }

.chat-area .date-group ul .mine + .user {margin-top: 24px; }
.chat-area .date-group ul .mine + .mine .name {display: none;}
.chat-area .date-group ul .user + .mine {margin-top: 24px; }
.chat-area .date-group ul .user + .user .name {display: none; }


.chat-area .chat-text {border-top: 1px solid #EFEFEF; padding: 15px 20px; }
.chat-area .chat-textarea {display: flex; align-items: flex-end; gap: 0; border: 1px solid #F3F3F3; border-radius: 30px; background: #F7F7F7; overflow: hidden;}
.chat-area .chat-textarea textarea {
	flex: 1; 
	height: 28px; line-height: 1.5em; 
	margin: 5px 0;
	padding: 0px 10px 0px 20px; 
	border: none; background: none; 
	font-size: 14px; font-weight: 200; letter-spacing: -0.5px; 
	resize: none; outline: none; -webkit-outline: none; 
}
.chat-area .chat-textarea button {padding: 9px; }
.chat-area .chat-textarea button:before {
	display: block; clear: both; content: ''; 
	width: 26px; height: 26px; border-radius: 26px; background: url('/include/images/btn-chat-send.svg') no-repeat center, var(--main-color); 
}
.chat-area .chat-textarea button:disabled:before {background-color: #DBDBDB; }


/** 일정 - 매니저 채팅 */
/** 일정 - 회원 채팅 */
#member-chat-section {}
#member-chat-section .user-info-area {padding: 20px; }
#member-chat-section .user-info-area .user-info {
	display: flex; align-items: center; gap: 4px; 
	line-height: 16px; padding: 20px 15px; border-radius: 10px; background: #F8F8F8; 
	color: #666; font-size: 13px; font-weight: 200; 
}
#member-chat-section .user-info-area .user-info:before {display: block; clear: both; content: '·'; order: 2; }
#member-chat-section .user-info-area .name {order: 1; line-height: 18px; color: #121212; font-size: 17px; font-weight: 500; }
#member-chat-section .user-info-area .age {order: 3; }






/** 마이페이지 */
#mypage-section {}
#mypage-section .mypage-ul {display: flex; flex-direction: column; gap: 5px; padding: 20px; }
#mypage-section .mypage-ul .wrap {
	display: flex; align-items: center; gap: 10px; 
	height: 50px; padding: 0 5px; background: url('/include/images/mypage/btn-mypage-arrow.svg') no-repeat right 10px center; 
}
#mypage-section .mypage-ul .wrap span {line-height: 16px; font-size: 15px; font-weight: 200; }
#mypage-section i {width: 14px; height: 14px; }
#mypage-section .my-member i {background: url('/include/images/mypage/btn-mypage-profile.svg') no-repeat center; }
#mypage-section .my-like i {background: url('/include/images/mypage/btn-mypage-like.svg') no-repeat center; }
#mypage-section .my-block i {background: url('/include/images/mypage/btn-mypage-block.svg') no-repeat center; }
#mypage-section .my-notice i {background: url('/include/images/mypage/btn-mypage-notice.svg') no-repeat center; }
#mypage-section .my-event i {background: url('/include/images/mypage/btn-mypage-event.svg') no-repeat center; }
#mypage-section .my-inquiry i {background: url('/include/images/mypage/btn-mypage-inquiry.svg') no-repeat center; }
#mypage-section .my-faq i {background: url('/include/images/mypage/btn-mypage-faq.svg') no-repeat center; }
#mypage-section .my-notification i {background: url('/include/images/mypage/btn-mypage-notification.svg') no-repeat center; }
#mypage-section .my-terms i {background: url('/include/images/mypage/btn-mypage-terms.svg') no-repeat center; }
#mypage-section .my-appinfo i {background: url('/include/images/mypage/btn-mypage-appinfo.svg') no-repeat center; }

#mypage-section .logout-wrap {padding-bottom: 50px; }
#mypage-section .logout {display: flex; padding: 10px 0; }
#mypage-section .logout span {position: relative; line-height: 22px; color: #969696; font-size: 14px; font-weight: 200; }
#mypage-section .logout span:before {display: block; clear: both; content: ''; position: absolute; bottom: 0; width: 100%; height: 1px; background: #969696; }





/** 마이페이지 - member edit/manager edit */
#member-edit-section {}
#member-edit-section fieldset {padding-top: 24px; }

#member-edit-section .leave-wrap {padding-top: 50px; padding-bottom: 30px; }
#member-edit-section .leave {display: flex; padding: 10px 0; }
#member-edit-section .leave span {position: relative; line-height: 22px; color: #969696; font-size: 14px; font-weight: 200; }
#member-edit-section .leave span:before {display: block; clear: both; content: ''; position: absolute; bottom: 0; width: 100%; height: 1px; background: #969696; }

#member-edit-section .f-submit-wrap {padding-top: 20px; padding-bottom: 38px; }



/** 마이페이지 - bookmark list */
#bookmark-list-section {}
#bookmark-list-section .section-body {padding-top: 20px; }
#bookmark-list-section .select-area {display: flex; }
#bookmark-list-section .select-area .select-wrap {height: auto; border: none; }
#bookmark-list-section .select-area .select-wrap .sel-label {min-width: 90px; padding: 0; }
#bookmark-list-section .select-area .select-wrap .sel-label .text {line-height: 24px; color: #121212; font-size: 18px; font-weight: 500; }

#bookmark-list-section .tab-area {margin-top: 24px; border: 2px solid #F5F5F5; border-radius: 20px; background: #F5F5F5; }
#bookmark-list-section .tab-group {display: flex; align-items: center; }
#bookmark-list-section .tab-group .tab {flex: 1; display: flex; justify-content: center; align-items: center; height: 40px; border-radius: 20px; }
#bookmark-list-section .tab-group .label {line-height: 16px; color: #969696; font-size: 14px; font-weight: 200; }
#bookmark-list-section .tab-group .tab.active {background: var(--sub-color); }
#bookmark-list-section .tab-group .tab.active .label {color: #FFF; font-weight: 500; }
#bookmark-list-section .list-ul {display: flex; flex-wrap: wrap; gap: 30px 10px; padding-top: 24px; padding-bottom: 50px; }
#bookmark-list-section .list-ul > li:not(.empty-li) {width: calc((100% - 10px) /2); }
#bookmark-list-section .list-ul .img-wrap {position: relative; }
#bookmark-list-section .list-ul .img-wrap:before {display: block; clear: both; content: ''; padding-bottom: 100%; }
#bookmark-list-section .list-ul .img-wrap .img {display: block; position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 10px; overflow: hidden; }
#bookmark-list-section .list-ul .img-wrap .img img {display: block; width: 100%; height: 100%; object-fit: cover; }
#bookmark-list-section .list-ul .img-wrap i {
	display: block; position: absolute; bottom: 12px; right: 12px; 
	width: 26px; height: 24px; background: url('/include/images/icon-bookmark-like.svg') no-repeat center; 
}
#bookmark-list-section .list-ul .desc-wrap {display: block; margin-top: 15px; }
#bookmark-list-section .list-ul .desc-wrap .name {}
#bookmark-list-section .list-ul .desc-wrap .addr {display: flex; align-items: center; gap: 3px; margin-top: 12px; }
#bookmark-list-section .list-ul .desc-wrap .addr:before {
	display: block; clear: both; content: ''; 
	width: 10px; height: 11px; background: url('/include/images/icon-bookmark-list-pin.svg') no-repeat center; 
}
#bookmark-list-section .list-ul .desc-wrap .addr .text {line-height: 12px; color: #666; font-size: 11px; font-weight: 200; }



/** 마이페이지 - block list */
#block-list-section {}
#block-list-section .list-ul {padding-top: 20px; }
#block-list-section .list-ul > li:not(.empty-li) {
	display: flex; justify-content: space-between; align-items: center; gap: 10px; 
	margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px solid #F5F5F5; 
}
#block-list-section .list-ul .list-info {display: flex; align-items: center; gap: 15px; }
#block-list-section .list-ul .img-wrap {position: relative; width: 70px; }
#block-list-section .list-ul .img-wrap:before {display: block; clear: both; content: ''; padding-bottom: 100%; }
#block-list-section .list-ul .img-wrap .img {position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 1px solid #F5F5F5; border-radius: 10px; overflow: hidden; }
#block-list-section .list-ul .img-wrap img {display: block; width: 100%; height: 100%; object-fit: cover; }
#block-list-section .list-ul .desc-wrap {}
#block-list-section .list-ul .opt-info {display: flex; align-items: center; gap: 6px; padding-top: 15px; line-height: 14px; color: #666; font-size: 13px; }
#block-list-section .list-ul .opt-info:before {display: block; clear: both; content: ''; order: 2; width: 1px; height: 10px; background: #EDEDED; }
#block-list-section .list-ul .opt-info .user-age {order: 1; }
#block-list-section .list-ul .opt-info .user-height {order: 3; }
#block-list-section .list-ul .btn {height: auto; padding: 0 10px; line-height: 28px; border-radius: 6px; background: #3D3D3D; font-size: 11px; font-weight: 200; }



/** 마이페이지 - notice list */
#notice-list-section {}
#notice-list-section .list-ul {padding-bottom: 24px; }
#notice-list-section .list-ul li:not(.empty-li){border-bottom: 1px solid #F5F5F5; }
/* #notice-list-section .list-ul li:last-of-type {border-bottom: none; } */
#notice-list-section .list-ul li .wrap {display: flex; flex-direction: column; padding: 20px 0; }
#notice-list-section .list-ul li .created-at {line-height: 14px; color: #8B8B8B; font-size: 12px; font-weight: 200; }
#notice-list-section .list-ul li .subject {padding-top: 15px; line-height: 16px; font-size: 14px; font-weight: 500; }



/** 마이페이지 - notice view */
#notice-view-section {}
#notice-view-section .view-wrap {padding-top: 24px; }
#notice-view-section .view-subject {padding-bottom: 20px; border-bottom: 1px solid #F5F5F5; }
#notice-view-section .subject {line-height: 20px; font-size: 18px; font-weight: 500; word-break: break-word; }
#notice-view-section .created-at {padding-top: 15px; line-height: 14px; color: #8B8B8B; font-size: 13px; font-weight: 200; }
#notice-view-section .view-content {padding-top: 20px; line-height: 14px; color: #3D3D3D; font-size: 13px; font-weight: 200; }



/** 마이페이지 - event list */
#event-list-section {}
#event-list-section .list-ul {display: flex; flex-direction: column; gap: 20px; padding: 20px 0; }
#event-list-section .list-ul > li:not(.empty-li) {display: flex; gap: 10px; padding: 10px 0; }
#event-list-section .list-ul i {width: 14px; height: 15px; background: url('/include/images/icon-event-list.svg') no-repeat center; }
#event-list-section .list-ul li .wrap {flex: 1; display: flex; flex-direction: column; position: relative; }
#event-list-section .list-ul li .top {display: flex; justify-content: space-between; align-items: center; gap: 5px; line-height: 14px; color: #8B8B8B; font-size: 12px; font-weight: 200; }
#event-list-section .list-ul li .content {margin-top: 12px; line-height: 20px; color: #3D3D3D; font-size: 14px; font-weight: 500; }



/** 마이페이지 - event view */
#event-view-section {}
#event-view-section .view-wrap {padding-top: 24px; }
#event-view-section .view-subject {padding-bottom: 20px; border-bottom: 1px solid #F5F5F5; }
#event-view-section .subject {line-height: 20px; font-size: 18px; font-weight: 500; word-break: break-word; }
#event-view-section .created-at {padding-top: 15px; line-height: 14px; color: #8B8B8B; font-size: 13px; font-weight: 200; }
#event-view-section .view-content {padding-top: 20px; line-height: 14px; color: #3D3D3D; font-size: 13px; font-weight: 200; }



/** 마이페이지 - inquiry list */
#inquiry-list-section {}
#inquiry-list-section .section-body {flex: 1; }
#inquiry-list-section .list-ul {padding-top: 20px; padding-bottom: 20px; }
#inquiry-list-section .list-ul > li:not(.empty-li) {margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #F5F5F5; }
#inquiry-list-section .list-ul .wrap {display: block; }
#inquiry-list-section .list-ul .wrap .top {display: flex; justify-content: space-between; align-items: center; gap: 5px; }
#inquiry-list-section .list-ul .wrap .left {display: flex; align-items: center; gap: 5px; }
#inquiry-list-section .list-ul .wrap .stat {width: 52px; line-height: 16px; border-radius: 4px; text-align: center; font-size: 10px; font-weight: 200; }
#inquiry-list-section .list-ul .wrap .wait {background: #EDEDED; color: #666; }
#inquiry-list-section .list-ul .wrap .done {background: var(--sub-color); color: #FFF; }
#inquiry-list-section .list-ul .wrap .cate {line-height: 16px; font-size: 14px; font-weight: 500; }
#inquiry-list-section .list-ul .wrap .created-at {line-height: 14px; color: #8B8B8B; font-size: 12px; font-weight: 200; }
#inquiry-list-section .list-ul .wrap .bot {padding-top: 10px; line-height: 16px; color: #3D3D3D; font-size: 14px; font-weight: 500; word-wrap: break-word; }
#inquiry-list-section .bot-btn-wrap {padding-bottom: 24px; }
#inquiry-list-section .bot-btn-wrap .btn {line-height: 14px; font-size: 13px; font-weight: 500; }
#inquiry-list-section .bot-btn-wrap i {position: absolute; left: 14px; width: 16px; height: 16px; background: url('/include/images/btn-inquiry-write.svg') no-repeat center; }



/** 마이페이지 - inquiry view */
#inquiry-view-section {}
#inquiry-view-section .section-body {flex: 1; }
#inquiry-view-section .view-wrap {padding-top: 24px; height: 50%; }
#inquiry-view-section .view-subject {padding-bottom: 20px; border-bottom: 1px solid #F5F5F5; }
#inquiry-view-section .cate {line-height: 16px; font-size: 14px; font-weight: 500; }
#inquiry-view-section .subject {padding-top: 10px; line-height: 20px; font-size: 18px; font-weight: 500; word-break: break-word; }
#inquiry-view-section .view-wrap .created-at {padding-top: 15px; line-height: 14px; color: #8B8B8B; font-size: 13px; font-weight: 200; }
#inquiry-view-section .view-content {padding-top: 20px; padding-bottom: 20px; line-height: 14px; color: #3D3D3D; font-size: 13px; font-weight: 200; }

#inquiry-view-section .reply-wrap {padding-top: 30px; padding-bottom: 30px; }
#inquiry-view-section .reply-top {display: flex; align-items: center; gap: 8px; }
#inquiry-view-section .reply-top h3 {line-height: 20px; font-size: 18px; font-weight: 500; }
#inquiry-view-section .reply-top .stat {width: 52px; line-height: 16px; border-radius: 4px; text-align: center; font-size: 10px; font-weight: 200; }
#inquiry-view-section .reply-top .wait {background: #EDEDED; color: #666; }
#inquiry-view-section .reply-top .done {background: var(--sub-color); color: #FFF; }
#inquiry-view-section .reply-wrap .created-at {margin-top: 12px; color: #8B8B8B; font-size: 13px; font-weight: 200; }
#inquiry-view-section .empty-reply {
	display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 20px; 
	margin-top: 60px; line-height: 14px; color: #C4C4C4; 
	font-size: 13px; font-weight: 500; 
}
#inquiry-view-section .empty-reply:before {display: block; clear: both; content: ''; width: 28px; height: 28px; background: url('/include/images/icon-empty-reply.svg') no-repeat center; }
#inquiry-view-section .reply-content {margin-top: 20px; line-height: 14px; border-radius: 10px; background: #F8F8F8; color: #3D3D3D; font-size: 13px; font-weight: 200; }



/** 마이페이지 - inquiry write */
#inquiry-write-section {}
#f-inquiry-write {padding-top: 24px; }
#f-inquiry-write .fld-textarea {height: 170px; }
#f-inquiry-write .f-submit-wrap {padding-bottom: 28px; }



/** 마이페이지 - faq */
#faq-section {}
#faq-section .tab-area {padding-top: 10px; border-bottom: 1px solid #EDEDED; }
#faq-section .tab-ul {display: flex; align-items: center; gap: 14px; }
#faq-section .tab-ul > li {position: relative; padding-bottom: 5px; }
#faq-section .tab-ul > li:before {
	display: none; clear: both; content: ''; 
	position: absolute; bottom: 0; left: 0; 
	width: 100%; height: 2px; margin-bottom: -1px; background: var(--main-color);
}
#faq-section .tab-ul > li .label {line-height: 16px; color: #A4A4A4; font-size: 15px; font-weight: 500; }
#faq-section .tab-ul > li.active:before {display: block; }
#faq-section .tab-ul > li.active .label {color: var(--main-color); }
#faq-section .tab-ul button {padding: 10px 5px; }
#faq-section .list-ul {padding: 24px 0; }
#faq-section .list-ul li:not(.empty-li) {margin-bottom: 20px; border-bottom: 1px solid #F5F5F5; }
#faq-section .list-ul li:last-of-type {margin-bottom: 0; border-bottom: none; }
#faq-section .list-ul li .wrap {padding-bottom: 10px; }
#faq-section .list-ul li .question {padding-bottom: 10px; }
#faq-section .list-ul li .top {display: flex; align-items: center; line-height: 1.2; color: var(--main-color); font-size: 12px; font-weight: 500;}
#faq-section .list-ul li .bot {padding-top: 15px; }
#faq-section .list-ul li .subject-wrap {display: flex; justify-content: space-between; align-items: center; gap: 10px; }
#faq-section .list-ul li .subject {flex: 1; }
#faq-section .list-ul li i {width: 10px; height: 10px; background: url('/include/images/btn-faq-arrow.svg') no-repeat center; }
#faq-section .list-ul li .answer {display: none; padding-top: 6px; padding-bottom: 5px; }
#faq-section .list-ul li .answer-content {padding: 15px 10px; line-height: 14px; border-radius: 8px; background: #F8F8F8; color: #3D3D3D; font-size: 12px; font-weight: 200; }

#faq-section .list-ul li.active i {transform: rotate(180deg); transition: all 0.2s linear; }



/** 마이페이지 - notification */
#notification-section {}
#f-notification {padding-top: 16px; }
#f-notification .check-area {margin-bottom: 30px; border-bottom: 1px solid #F5F5F5; }
#f-notification .check-area:last-of-type {margin-bottom: 0; border-bottom: none; }
#f-notification .check-area h3 {padding-bottom: 20px; line-height: 12px; color: #B8B8B8; font-size: 11px; font-weight: 600; }
#f-notification .check-area .group {display: flex; flex-direction: column; gap: 16px; padding-bottom: 20px; }
#f-notification .check-area dl {display: flex; justify-content: space-between; align-items: center; }
#f-notification .check-area dt {font-size: 14px; font-weight: 200; }
#f-notification .all-check-area dt {font-size: 17px; font-weight: 500; }



/** 마이페이지 - app info */
#appinfo-section {}
#appinfo-section .info-wrap {display: flex; flex-direction: column; gap: 24px; padding-top: 24px; }
#appinfo-section .info-wrap dl {display: flex; justify-content: space-between; align-items: center; }
#appinfo-section .info-wrap dt {line-height: 14px; color: #8B8B8B; font-size: 12px; font-weight: 500; }
#appinfo-section .info-wrap dd {line-height: 14px; color: #3D3D3D; font-size: 13px; font-weight: 500; }



/** toast message */
.toast_wrap {
	display: none; 
	position: fixed; bottom: calc(5% + env(safe-area-inset-bottom)); left: 50%; 
	transform: translate(-50%, 50%); -webkit-transform: translate(-50%, 50%); 
	width: 100%; padding: 0 20px; 
	z-index: 100;
}
.toast_wrap .toast_text {max-width: 500px; padding: 12px; margin: 0 auto; border-radius: 15px; background: rgba(0,0,0,0.55); font-size: 14px; text-align: center; color: #FFF; font-weight: 500; }
/* body.device .toast_wrap, body.mac .toast_wrap, body.pc .toast_wrap {bottom: 50%;} */



/* modal */
.layer-modal {display: none; justify-content: center; align-items: center; position: fixed; top: 0; left: 0; width: 100%; height: 100%; padding: 0 20px; z-index: 50; }
.layer-modal .overlay {position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #121212; opacity: 0.5}
.layer-modal .modal-box {position: relative; width: 100%; max-width: 500px; border-radius: 15px; background: #FFF; }
.layer-modal .modal-cont {display: flex; flex-direction: column; }
.layer-modal .modal-head {}
.layer-modal .modal-head h3 {padding-top: 30px; line-height: 18px; text-align: center; font-size: 16px; font-weight: 600; }
.layer-modal .modal-head .modal-close {
	position: absolute; top: 15px; right: 15px; 
	width: 20px; height: 20px; background: url('/include/images/btn-system-close.svg') no-repeat center; z-index: 10; 
	cursor: pointer; 
}
.layer-modal .modal-body {padding-top: 24px; }
.layer-modal .modal-foot {display: flex; align-items: center; padding: 0 20px; padding-bottom: 20px; gap: 10px; }
.layer-modal .modal-foot .btn {flex: 1; height: 46px; line-height: 14px; font-size: 13px; }

.layer-modal.active {display: flex; }

.bot-modal {align-items: flex-end; padding: 0; }
.bot-modal .modal-box {border-radius: 15px 15px 0 0; }
.bot-modal .modal-cont {}
.bot-modal .modal-foot {display: flex; align-items: center; }
.bot-modal .modal-foot .btn {height: 46px; line-height: 14px; font-size: 13px; }


#agree-modal .modal-cont {padding-top: 10px; padding-bottom: 38px; }
#agree-modal .btn-wrap {display: flex; padding-top: 30px; }


/** 메인 - 데이팅 매칭 이용 금액 */
#match-info-modal .table-area {}
#match-info-modal .table-area .table {border: 1px solid #E2E2E2; border-radius: 6px; overflow: hidden; }
#match-info-modal .table-area dl {display: flex; border-bottom: 1px solid #E2E2E2; }
#match-info-modal .table-area dl:last-of-type {border-bottom: none; }
#match-info-modal .table-area dt {
	flex: 2; display: flex; justify-content: center; align-items: center; 
	height: 42px; line-height: 22px; border-right: 1px solid #E2E2E2; background: #F7F7F7; color: #4A4A4A; 
	font-size: 13px; font-weight: 200; 
}
#match-info-modal .table-area dd {
	flex: 3; display: flex; justify-content: center; align-items: center; 
	line-height: 22px; font-size: 13px; font-weight: 500; 
}
#match-info-modal .desc-ul {display: flex; flex-direction: column; gap: 5px; margin-top: 10px; }
#match-info-modal .desc-ul > li {display: flex; gap: 2px; line-height: 10px; color: #969696; font-size: 9px; font-weight: 200; }
#match-info-modal .desc-ul > li:before {display: block; clear: both; content:'*'; }


/** 메인 - 매니저 간단 정보 */
#manager-info-modal {}
#manager-info-modal .modal-body {padding-bottom: 20px; }
#manager-info-modal .user-card {display: flex; gap: 15px; }
#manager-info-modal .user-card .thumb {position: relative; width: 70px; }
#manager-info-modal .user-card .thumb:before {display: block; clear: both; content: ''; padding-bottom: 100%; }
#manager-info-modal .user-card .thumb .cont {
	position: absolute; top: 0; left: 0; 
	width: 100%; height: 100%; border: 1px solid #F5F5F5; background: url('/include/images/no-thumb-img.svg') no-repeat center, #F8F8F8; border-radius: 10px; 
	overflow:hidden;display:flex;align-items:center;justify-content:center;
}
#manager-info-modal .user-card .thumb img {display: block; width: 100%; height: 100%; object-fit: cover; background: #FFF; }
#manager-info-modal .user-card .desc {flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 15px; position: relative; }
#manager-info-modal .user-card .name {line-height: 18px; font-size: 17px; font-weight: 500; }
#manager-info-modal .user-card .option {
	display: flex; align-items: center; gap: 6px; 
	position: relative; line-height: 14px; color: #666; 
	font-size: 13px; font-weight: 200; 
}
#manager-info-modal .user-card .option:before {display: block; clear: both; content: ''; order: 2; width: 1px; height: 10px; background: #EDEDED; }
#manager-info-modal .user-card .age {order: 1; }
#manager-info-modal .user-card .height {order: 3; }
#manager-info-modal .user-intro {margin-top: 24px; }
#manager-info-modal .user-intro .label {margin-bottom: 10px; color: #8B8B8B; font-size: 11px; font-weight: 500; }
#manager-info-modal .user-intro .introduce {padding: 20px 15px; line-height: 22px; border-radius: 10px; background: #F8F8F8; font-size: 14px; font-weight: 200; }



/** 매치 - 매니저 정보 */
#match-manager-modal {}
#match-manager-modal .modal-body {padding-bottom: 20px; }
#match-manager-modal .user-card {display: flex; gap: 15px; }
#match-manager-modal .user-card .thumb {position: relative; width: 70px; }
#match-manager-modal .user-card .thumb:before {display: block; clear: both; content: ''; padding-bottom: 100%; }
#match-manager-modal .user-card .thumb .cont {
	position: absolute; top: 0; left: 0; 
	width: 100%; height: 100%; border: 1px solid #F5F5F5; background: url('/include/images/no-thumb-img.svg') no-repeat center, #F8F8F8; border-radius: 10px; 
	overflow:hidden;display:flex;align-items:center;justify-content:center;
}
#match-manager-modal .user-card .thumb img {display: block; width: 100%; height: 100%; object-fit: cover; background: #FFF; }
#match-manager-modal .user-card .desc {flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 15px; position: relative; }
#match-manager-modal .user-card .name {line-height: 18px; font-size: 17px; font-weight: 500; }
#match-manager-modal .user-card .option {
	display: flex; align-items: center; gap: 6px; 
	position: relative; line-height: 14px; color: #666; 
	font-size: 13px; font-weight: 200; 
}
#match-manager-modal .user-card .option:before {display: block; clear: both; content: ''; order: 2; width: 1px; height: 10px; background: #EDEDED; }
#match-manager-modal .user-card .age {order: 1; }
#match-manager-modal .user-card .height {order: 3; }
#match-manager-modal .user-intro {margin-top: 24px; }
#match-manager-modal .user-intro .label {margin-bottom: 10px; color: #8B8B8B; font-size: 11px; font-weight: 500; }
#match-manager-modal .user-intro .introduce {padding: 20px 15px; line-height: 22px; border-radius: 10px; background: #F8F8F8; font-size: 14px; font-weight: 200; }
#match-manager-modal .user-notes {margin-top: 20px; }
#match-manager-modal .user-notes .label {margin-bottom: 10px; color: #8B8B8B; font-size: 11px; font-weight: 500; }
#match-manager-modal .user-notes .notes {padding: 20px 15px; line-height: 22px; border-radius: 10px; background: #F8F8F8; font-size: 14px; font-weight: 200; }



/** 매치 - 매니저 차단 */
#match-block-modal .modal-cont {padding-top: 20px; }
#match-block-modal .modal-cont .btn {height: 52px; line-height: 16px; }
#match-block-modal .modal-cont .btn i {width: 16px; height: 16px; background: url('/include/images/btn-block.svg') no-repeat center; }
#match-block-modal .modal-foot {padding-top: 12px; padding-bottom: 48px; line-height: 12px; color: #969696; font-size: 10px; font-weight: 200; }



/** 매치 - 데이트 신청하기 */
#request-date-modal {}
#request-date-modal .modal-body {line-height: 24px; text-align: center; }
#request-date-modal .modal-body b {color: var(--sub-color); font-weight: 500; }
#request-date-modal .modal-foot {padding-top: 30px; }
#request-date-modal .modal-foot .cancel {background: #F5F5F5; color: #121212; }



/** 재매칭 - 거절사유 */
#match-reason-modal {}
#match-reason-modal .notes {padding: 20px 15px; line-height: 22px; border-radius: 10px; background: #F8F8F8; font-size: 14px; font-weight: 200; }
#match-reason-modal .modal-foot {padding-top: 20px; }



/** 생성리스트 상세 - 신고 */
#created-report-modal {}
#created-report-modal .modal-cont {padding-top: 20px; }
#created-report-modal .modal-cont .btn {height: 52px; line-height: 16px; background: #EDEDED; color: var(--color-red);}
#created-report-modal .modal-cont .btn i {width: 16px; height: 16px; background: url('/include/images/btn-report.svg') no-repeat center; }
#created-report-modal .modal-foot {padding-top: 12px; padding-bottom: 48px; line-height: 12px; color: #969696; font-size: 10px; font-weight: 200; }



/** 생성리스트 상세 - 차단 */
#created-block-modal {}
#created-block-modal .modal-cont {padding-top: 20px; }
#created-block-modal .modal-cont .btn {height: 52px; line-height: 16px; }
#created-block-modal .modal-cont .btn i {width: 16px; height: 16px; background: url('/include/images/btn-block.svg') no-repeat center; }
#created-block-modal .modal-foot {padding-top: 12px; padding-bottom: 48px; line-height: 12px; color: #969696; font-size: 10px; font-weight: 200; }



/** 생성리스트 상세 - 거절 */
#created-refuse-modal {}
#created-refuse-modal dl {display: flex; flex-direction: column; gap: 10px; }
#created-refuse-modal dt {line-height: 12px; color: #8B8B8B; font-size: 11px; font-weight: 500; }
#created-refuse-modal dd {border: 1px solid #E4E4E4; border-radius: 10px; overflow: hidden; }
#created-refuse-modal dd textarea {display: block; width: 100%; padding: 20px 15px; border: none; resize: none; outline: none; }
#created-refuse-modal .modal-body small {display: block; margin-top: 5px; line-height: 12px; color: var(--color-red); font-size: 10px; font-weight: 200; }
#created-refuse-modal .modal-foot {padding-top: 24px; }
#created-refuse-modal .modal-foot .btn {background: #EDEDED; color: #3D3D3D; }



/** 생성리스트 상세 - 수락 */
#created-accept-modal {}
#created-accept-modal dl {display: flex; flex-direction: column; gap: 10px; }
#created-accept-modal dt {line-height: 12px; color: #8B8B8B; font-size: 11px; font-weight: 500; }
#created-accept-modal dd {border: 1px solid #E4E4E4; border-radius: 10px; overflow: hidden; }
#created-accept-modal dd textarea {display: block; width: 100%; padding: 20px 15px; border: none; resize: none; outline: none; }
#created-accept-modal .modal-body small {display: block; margin-top: 5px; line-height: 12px; color: var(--color-red); font-size: 10px; font-weight: 200; }
#created-accept-modal .modal-foot {padding-top: 24px; }



/** 투어 - 타임핀 투어 이용 금액 */
#tour-info-modal .table-area {}
#tour-info-modal .table-area .table {border: 1px solid #E2E2E2; border-radius: 6px; overflow: hidden; }
#tour-info-modal .table-area dl {display: flex; border-bottom: 1px solid #E2E2E2; }
#tour-info-modal .table-area dl:last-of-type {border-bottom: none; }
#tour-info-modal .table-area dt {
	flex: 2; display: flex; justify-content: center; align-items: center; 
	height: 42px; line-height: 22px; border-right: 1px solid #E2E2E2; background: #F7F7F7; color: #4A4A4A; 
	font-size: 13px; font-weight: 200; 
}
#tour-info-modal .table-area dd {
	flex: 3; display: flex; justify-content: center; align-items: center; 
	line-height: 22px; font-size: 13px; font-weight: 500; 
}
#tour-info-modal .desc-ul {display: flex; flex-direction: column; gap: 5px; margin-top: 10px; }
#tour-info-modal .desc-ul > li {display: flex; gap: 2px; line-height: 10px; color: #969696; font-size: 9px; font-weight: 200; }
#tour-info-modal .desc-ul > li:before {display: block; clear: both; content:'*'; }



/** 이용기록 - 리뷰 작성 */
#review-form-modal {}
#review-form-modal .modal-body {padding: 30px 20px 24px; }
#review-form-modal .modal-body .desc {line-height: 22px; font-size: 15px; font-weight: 500; }
#review-form-modal .modal-body .rating {padding: 24px 0; }
#review-form-modal .modal-body .rating .star-group {display: flex; align-items: center; gap: 10px; }
#review-form-modal .modal-body .rating .star-btn {display: block; width: 36px; height: 36px; background: url('/include/images/btn-rating-off.svg') no-repeat center; font-size: 0; }
#review-form-modal .modal-body .rating .star-btn.active {background: url('/include/images/btn-rating-on.svg') no-repeat center; }
#review-form-modal .modal-body .fld-textarea {height: 110px; }
#review-form-modal .modal-body textarea {font-size: 13px; font-weight: 200; }
#review-form-modal .modal-body .caution {line-height: 14px; color: var(--color-red); font-size: 10px; font-weight: 200; letter-spacing: -0.01em; }



/** 이용기록 - 리뷰 상세 */
#review-view-modal {}
#review-view-modal .modal-body {padding: 30px 20px 24px; }
#review-view-modal .modal-body .desc {line-height: 22px; font-size: 15px; font-weight: 500; }
#review-view-modal .modal-body .rating {padding: 24px 0; }
#review-view-modal .modal-body .rating .star-group {display: flex; align-items: center; gap: 10px; }
#review-view-modal .modal-body .rating .star-btn {display: block; width: 36px; height: 36px; background: url('/include/images/btn-rating-off.svg') no-repeat center; font-size: 0; }
#review-view-modal .modal-body .rating .star-btn.active {background: url('/include/images/btn-rating-on.svg') no-repeat center; }
#review-view-modal .modal-body .fld-textarea {height: 110px; }
#review-view-modal .modal-body textarea {background: #F8F8F8; font-size: 13px; font-weight: 200; }
#review-view-modal .modal-body .caution {line-height: 14px; color: var(--color-red); font-size: 10px; font-weight: 200; letter-spacing: -0.01em; }



/** 이용기록 - 매치 오류 안내 */
#match-error-modal {}
#match-error-modal .modal-body {padding: 25px 20px 40px; line-height: 24px; text-align: center; font-size: 15px; font-weight: 700; word-break: keep-all; }



/** 회원탈퇴 */
#member-leave-modal .modal-body {padding: 30px 20px; }
#member-leave-modal .modal-body .top {line-height: 16px; text-align: center; font-size: 15px; font-weight: 200; }
#member-leave-modal .modal-body .red {color: var(--color-red); font-weight: 500; }
#member-leave-modal .modal-body .mid {margin-top: 20px; margin-bottom: 20px; padding: 15px 10px; border-radius: 10px; background: #F8F8F8; }
#member-leave-modal .modal-body .mid .red {line-height: 14px; text-align: center; font-size: 13px; font-weight: 500; letter-spacing: -0.01em; }
#member-leave-modal .modal-body .mid .desc {margin-top: 15px; line-height: 18px; text-align: center; font-size: 12px; font-weight: 200; letter-spacing: -0.01em; }
#member-leave-modal .modal-body .bot {line-height: 14px; text-align: center; font-size: 13px; font-weight: 200; letter-spacing: -0.01em; }
#member-leave-modal .submit {background: #F5F5F5; color: #121212; }
#member-leave-modal .cancel {background: #121212; color: #FFF; } 



/** page-modal */
.page-modal {
	display: none; justify-content: center; align-items: center; 
	position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #FFF; 
	overflow-y: scroll; z-index: 45; 
	
	scrollbar-gutter: stable both-edges;
}
.page-modal.active {display: block; }
.page-modal .modal-box {display: flex; flex-direction: column; min-height: 100%; }
.page-modal .modal-head {}
.page-modal .modal-head .header-wrap {display: flex; justify-content: center; align-items: center; position: relative; height: 49px; border-bottom: 1px solid #F3F3F3; }
.page-modal .modal-head .back {position: absolute; left: 10px; width: 28px; height: 28px; background: url('/include/images/btn-header-back.svg') no-repeat center;}
.page-modal .modal-head h2 {font-size: 16px; font-weight: 500; }
.page-modal .modal-body {}

.page-modal .bot-fixed-area {position: relative; }
.page-modal .bot-fixed-area .fixed-wrap {position: fixed; bottom: 0;}
/* .page-modal .bot-fixed-area .safe-bot-wrap {background: #FFF; } */
.page-modal .bot-fixed-area .btn-wrap {display: flex; padding: 0 20px; padding-bottom: 28px; background: #FFF; }



/** page-modal -- 메인 - 지도 */
#map-modal {}



/** page-modal -- 회원가입 - 약관 */
#terms-modal {z-index: 60; }
#terms-modal .modal-box {background: #F3F3F3; }
#terms-modal .modal-head {background: #FFF; }
#terms-modal .modal-body {padding: 20px; }
#terms-modal .modal-body .content {padding: 30px 20px; border-radius: 15px; background: #FFF; font-size: 13px; box-shadow: 0px 2px 8px 0px rgb(0,0,0,0.1); }



/** page-modal -- 투어지역 선택 1 */
#sel-loca1-modal {}
#sel-loca1-modal #loca1-ul {padding: 30px 20px; }
#sel-loca1-modal .safe-bot-wrap {background: #FFF; }




/** page-modal -- 투어지역 선택 2 */
#sel-loca2-modal {}
#sel-loca2-modal .body-top {display: flex; align-items: baseline; gap: 6px; padding: 30px 20px; }
#sel-loca2-modal .body-top .loca1-name {line-height: 22px; font-size: 20px; font-weight: 500; }
#sel-loca2-modal .body-top span {line-height: 12px; color: #969696; font-size: 10px; font-weight: 200; }
#sel-loca2-modal .safe-bot-wrap {background: #FFF; }

#sel-loca2-modal #loca2-ul {display: flex; flex-wrap: wrap; gap: 10px; padding: 0 20px; padding-bottom: 40px; }
#sel-loca2-modal #loca2-ul > li {flex: 0 0 calc((100% - 20px) / 3);}

.loca2-ul {}
.loca2-ul .loca2-item {position: relative; }
.loca2-ul .loca2-item .hidden-chk {
	position: absolute; width: 1px; height: 1px; margin: -1px; visibility: hidden;
	appearance: none; outline: none; 
	-webkit-appearance: none; -webkit-outline: none;
}
.loca2-ul .loca2-item .loca2-elem {
	display: flex; justify-content: center; align-items: center; flex-wrap: wrap; 
	padding: 0 5px; height: 46px; line-height: 18px; border: 1px solid #DBDBDB; border-radius: 30px; color: #3D3D3D; text-align: center; font-size: 15px; font-weight: 200; 
}
.loca2-ul .loca2-item .loca2-label {word-break: keep-all; }
.loca2-ul .loca2-item .hidden-chk:checked ~ .loca2-elem {border-color: var(--sub-color); background: #7E16C50D; color: var(--sub-color); font-weight: 500; }



/** 팝업 */
.popup-modal {display: none; justify-content: center; align-items: center; position: fixed; top: 0; left: 0; width: 100%; height: 100%; padding: 20px; z-index: 50; }
.popup-modal.active {display: flex; }
.popup-modal .overlay {position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #121212; opacity: 0.5; }
.popup-modal .popup-box {display: flex; flex-direction: column; position: relative; width: 100%; max-height: 90%; border-radius: 15px; background: #FFF; overflow: hidden; }
.popup-modal .popup-body {flex: 1; display: flex; flex-direction: column; padding: 20px 0 0; overflow: hidden; }
.popup-modal .popup-cont {flex: 1; padding: 0 20px; overflow: auto; }
.popup-modal .popup-cont img {display: block; width: 100%; height: auto; }
.popup-modal .popup-foot {display: flex; align-items: center; }
.popup-modal .popup-foot .btn {flex: 1; color: #121212; }

.notice_pop {width:100%;height:100%;background:rgba(0,0,0,0.3);position:fixed;left:0;top:0;z-index:10000;display:none;}
.noti_pop {width:376px;height:auto;max-width:calc(100% - 40px);max-height:90%;background:#fff;position:fixed;left:50%;top:50%;transform:translate(-50%, -50%);overflow:hidden;border-radius:20px;}
.noti_swp_area {aspect-ratio: 891 / 1400;position: relative;}
.notice_pop_swp {}
.noti_pop .swiper-slide {display:flex;align-items:center;justify-content:center;}
.noti_pop .swiper-slide img {max-width:100%;max-height:100%;width:auto;height:auto;}
.noti_pop_pagination {display:flex;align-item:center;justify-content:center;padding:15px 10px;height:38px;}
.noti_pop_pagination .swiper-pagination-bullet {width:8px;height:8px;border-radius:50%;background:#C8C8C8;opacity:1;margin-right:10px;transition:all 0.3s;}
.noti_pop_pagination .swiper-pagination-bullet:last-child {margin-right:0;}
.noti_pop_pagination .swiper-pagination-bullet-active {background:var(--main-color);}
.noti_btn_area {display:flex;width:100%;height:60px;}
.noti_btn_area button {border:none;width:50%;height:60px;font-size:13px;line-height:1.4;font-weight:500;color:#111;background:#fff;border-top:1px solid #F3F3F3;}
.noti_btn_area button:first-child {border-right:1px solid #F3F3F3;}        
/*
.notice_pop {width:100%;height:100%;background:rgba(0,0,0,0.3);position:fixed;left:0;top:0;z-index:10000;display:none;padding:0 !important}
.noti_pop {width:500px !important;max-width:90%;max-height:90% !important;background:#fff !important;position:fixed !important;left:50%;top:50%;transform:translate(-50%, -50%);overflow-y:auto;border-radius:20px;padding:20px 20px 0 !important;}
.noti_swp_area {height:100%;flex:auto !important;overflow:hidden !important;padding:0 !important;}
.notice_pop .notice_pop_swp {height:100%;}
.noti_pop .swiper-slide img {max-width:100%;max-height:100%;width:auto;height:auto;}
.noti_pop_pagination {display:flex;align-item:center;justify-content:center;padding:15px 10px;}
.noti_pop_pagination .swiper-pagination-bullet {width:8px;height:8px;border-radius:50%;background:#C8C8C8;opacity:1;margin-right:10px;transition:all 0.3s;}
.noti_pop_pagination .swiper-pagination-bullet:last-child {margin-right:0;}
.noti_pop_pagination .swiper-pagination-bullet-active {background:#204171;}
.noti_btn_area {display:flex;width:100%;}
.noti_btn_area button {border:none;width:50%;height:60px;font-size:13px;line-height:1.4;font-weight:500;color:#111;background:#fff;border-top:1px solid #F3F3F3;}
.noti_btn_area button:first-child {border-right:1px solid #F3F3F3;}
.notice_pop .popup-cont {padding: 0 !important;}
*/
/** 게시물 페이징 추가 **/
.pg_wrap {margin:40px 0;}
.pg {display:flex;align-items:center;justify-content:center;gap:15px;}
.pg_page, .pg_current,.qa_page {display:flex;align-items:center;justify-content:center;width:20px;height:20px;font-size:16px;line-height:1.1;font-weight:500;color:#b8b8b8;padding-top:1px;}
.pg_current {font-weight:600;color:#1e1e1e;}

/** 인디케이터 추가 **/
.indicator {width:100%;height:100%;/*background:rgba(0,0,0,0.3);*/position:fixed;left:0;top:0;z-index:1000;display:none;}
.indicator p {width:100%;height:100%;display:flex;align-items:center;justify-content:center;}
.indicator p img {width:60px;animation:rotate 1s linear infinite;}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {-webkit-box-shadow: 0 0 0 30px white inset !important;}

.lower_case {text-transform: lowercase;}