@charset "UTF-8";
@import "gfr_fonts.css";

/* 헤더 */
header {
	position: fixed;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-width: 1460px;
	margin: 0 auto;
	z-index: 100;
	background-color: white;
}
header:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: white;
}

header.bg::after {
	border-bottom: 1px solid #919eab;
}
header .h_nav_wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 1460px;
	padding: 0px 30px;
	margin: 0 auto;
	z-index: 1;
}
header .h_nav_wrap .home img {
	display: block;
}
.nav_bg {
	position: absolute;
	left: 0;
	width: 100%;
	background-color: rgba(192, 205, 213, 0.2);
	background-color: rgb(255 255 255 / 60%);
	backdrop-filter: blur(20px);
	height: 0;
	/* overflow: hidden; */
	pointer-events: none;
	z-index: -1;
	border-top: 1px solid #919eab;
	transform: translateY(-2px);
	transition: all 0.3s;
	border-top: 1px solid #919eab;
	border-bottom: 1px solid #919eab;
}
.nav_bg.on {
	transform: translateY(-1px);
	border-top: 1px solid #919eab;
	border-bottom: 1px solid #919eab;
}
header nav {
	display: flex;
	height: 100px;
	align-items: center;
	z-index: 3;
}
header nav > ul {
	display: flex;
	flex-direction: column;
}
header nav > ul.gnb_1_depth > li > a {
	position: relative;
	display: flex;
	align-items: center;
	font-size: 19px;
	font-weight: 700;
	height: 100px;
	padding: 0px 22px;
	transition: all 0.3s;
}
header nav > ul.gnb_1_depth.on > li > a {
	color: var(--m_c_main);
}
header nav > ul.gnb_1_depth > li > a:after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 20px;
	transform: translateX(-50%);
	width: 0%;
	border: 2px solid var(--m_c_main);
	opacity: 0;
	transition: all 0.3s;
}
header nav > ul.gnb_1_depth.on > li > a:after {
	width: 60%;
	opacity: 0.7;
}
header nav > ul.gnb_1_depth > .gnb_2_depth {
	position: absolute;
	top: 100px;
	display: none;
	padding: 25px 30px;
}
header nav > ul.gnb_1_depth > .gnb_2_depth ul {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
header nav > ul.gnb_1_depth > .gnb_2_depth ul li {
	font-size: 17px;
	font-weight: 500;
}
header nav > ul.gnb_1_depth > .gnb_2_depth ul li a:hover {
	color: var(--m_c_main);
}
header .top_user_wrap {
	display: flex;
	align-items: center;
	gap: 20px;
}
header .top_user_wrap .map .img {
	width: 22px;
	height: 24px;
	background: url("../img/map_icon.svg") no-repeat center / cover;
}
header .top_user_wrap .login .img {
	width: 22px;
	height: 24px;
	background: url("../img/user_icon.svg") no-repeat center / cover;
}
header .top_user_wrap .user .info {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	overflow: hidden;
	border-radius: 50%;
}
header .top_user_wrap .user .info img {
	position: relative;
	width: 42px;
	height: 42px;
	border: 2px solid white;
	border-radius: 50%;
	z-index: 1;
}
header .top_user_wrap .user .info .circle,
.mem_profile_img .circle {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 42px;
	height: 42px;
	margin: -21px;
	border: 1px solid;
	border-radius: 50%;
	box-shadow:
		0 -10px 0 0 #0080ff,
		10px 0 0 0 #179dd8,
		0 10px 0 0 #30bcae,
		-10px 0 0 0 #88db88,
		10px -10px 0 0 #7ade72,
		-10px 10px 0 0 #b5e15a,
		-10px -10px 0 0 #d8e38d,
		10px 10px 0 0 #f7e580;
	animation: rotation 10s linear infinite;
}
@keyframes rotation {
	0% {
		transform: rotate(0deg) translate(0, 0);
	}
	100% {
		transform: rotate(1080deg) translate(0, 0);
	}
}
header .top_user_wrap .user .log_state {
	position: relative;
}
header .top_user_wrap .user .log_state .badge {
	position: absolute;
	top: -2px;
	left: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 20px;
	height: 20px;
	padding: 0px 4px;
	font-size: 12px;
	color: white;
	background-color: var(--p_c_red);
	border-radius: 10px;
	flex-shrink: 0;
	z-index: 1;
}

/* 맴버 토글 */
.mem_user_info_wrap {
	position: fixed;
	top: 0;
	right: -105%;
	z-index: 1000;
	padding: 20px;
	background-color: white;
	width: 400px;
	height: 100%;
	transition: ease-in 0.7s;
	box-shadow: -20px 1px 20px rgb(33 43 54 / 24%);
	display: flex;
	flex-direction: column;
}
.mem_user_info_wrap .logout {
	width: 100%;
}
.mem_user_info_wrap.on {
	right: 0%;
	transition: all 0.3s;
}
.mem_profile_img {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-radius: 50%;
	width: 120px;
	height: 120px;
	background-color: white;
	transform: scale(0.9);
}
.mem_profile_img img {
	position: relative;
	width: 112px;
	height: 112px;
	border: 7px solid white;
	border-radius: 50%;
	z-index: 1;
	background-color: white;
}
.mem_profile_img .circle {
	width: 108px;
	height: 108px;
	top: 26px;
	left: 26px;
	border: 4px solid;
	opacity: 0.9;
}
.mem_user_info_wrap .my_intro {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 10px;
	padding-bottom: 20px;
}
.mem_user_info_wrap .my_intro .nick_name {
	padding-top: 10px;
	padding-bottom: 12px;
}
.mem_user_info_wrap .my_intro .item {
	display: flex;
	align-items: center;
	padding-bottom: 15px;
	width: 100%;
}
.mem_user_info_wrap .my_intro .item ul {
	display: flex;
	flex-direction: column;
	gap: 5px;
	width: 100%;
}
.mem_user_info_wrap .my_intro .item ul li {
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: space-between;
	font-size: 15px;
}
.mem_user_info_wrap .my_intro .item ul li span {
	display: flex;
	align-items: center;
}
.mem_user_info_wrap .my_intro .item ul li:nth-child(1) a {
	font-size: 11px;
	text-decoration: underline;
}
.mem_user_info_wrap .my_intro .item ul li:nth-child(2) a {
	text-decoration: underline;
	color: var(--m_c_main);
	font-weight: 800;
	margin: 0px 4px;
}
.mem_user_info_wrap .my_intro .item ul li p:before {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 20px;
	font-size: 10px;
	color: white;
	width: 44.5px;
	border-radius: 4px;
	background-color: var(--m_c_main);
}
.mem_user_info_wrap .my_intro .item ul li p.all:before {
	content: "모두공개";
	background-color: var(--m_c_main);
}
.mem_user_info_wrap .my_intro .item ul li p.friend:before {
	content: "친구공개";
	background-color: var(--p_c_yellow);
}
.mem_user_info_wrap .my_intro .item ul li p.private:before {
	content: "비공개";
	background-color: var(--t_c_normal);
}
.mem_user_info_wrap .my_intro .tg_btn_wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

.mem_user_info_wrap .my_intro,
.mem_user_info_wrap .tab_menu {
	flex: 0 0 auto;
}
.mem_user_info_wrap .tab_menu ul {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 10px;
	border-radius: 8px;
	background-color: var(--t_c_table);
}
.mem_user_info_wrap .tab_menu ul li {
	display: flex;
	align-items: center;
	justify-content: center;
	width: calc(100% / 3);
	transition: all 0.3s;
}
.mem_user_info_wrap .tab_menu ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 40px;
	border-radius: 6px;
	gap: 10px;
	font-weight: 700;
}
.mem_user_info_wrap .tab_menu ul li a .badge {
	padding: 5px;
	border-radius: 4px;
	color: white;
	background-color: var(--t_c_light);
	font-size: 11px;
	font-weight: 800;
}
.mem_user_info_wrap .tab_menu ul li:hover {
	background-color: var(--t_c_thin);
}
.mem_user_info_wrap .tab_menu ul li.on a {
	background-color: var(--m_c_main);
	color: white;
}
.mem_user_info_wrap .tab_menu ul li.on a .badge {
	background-color: var(--m_c_darker);
}
.mem_user_info_wrap .alarm_tab_wrap {
	flex: 1 1 auto;
	overflow-y: auto;
	/* flexbox 안에서 스크롤 잘 되게 꼭 설정 */
	min-height: 0;
}
.mem_user_info_wrap .tab_con {
	display: flex;
	flex-direction: column;
	height: 100%;
}
.mem_user_info_wrap .tab_con.on {
	display: flex;
}
.mem_user_info_wrap .alarm_tab_wrap .no_alarm {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 20px;
}
.mem_user_info_wrap .alarm_tab_wrap .alarm_view > div {
	position: relative;
	display: flex;
	gap: 15px;
	padding: 15px 0px;
}
.mem_user_info_wrap .alarm_tab_wrap .alarm_view > div:not(:last-child) {
	border-bottom: 1px solid var(--t_c_lighter);
}
.mem_user_info_wrap .alarm_tab_wrap .alarm_view .gr_mem_profile_wrap {
	width: 100%;
}
.mem_user_info_wrap .alarm_tab_wrap .alarm_view > div .detail {
	margin-left: 52px;
	margin-top: 10px;
	padding: 10px 12px;
	border-radius: 6px;
	background-color: var(--t_c_table);
}
.mem_user_info_wrap .alarm_tab_wrap .alarm_view > div .detail p {
	height: initial;
	font-size: 14px;
}
.mem_user_info_wrap .alarm_tab_wrap .alarm_view .txt {
	width: 100%;
}
.mem_user_info_wrap .alarm_tab_wrap .alarm_view .option {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-weight: 700;
	gap: 5px;
}
.mem_user_info_wrap .alarm_tab_wrap .alarm_view .option li:nth-child(1) {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	flex-grow: 1;
	font-size: 14px;
}
.mem_user_info_wrap .alarm_tab_wrap .alarm_view .option li:nth-child(2) {
	display: flex;
	align-items: center;
	gap: 8px;
}
.mem_user_info_wrap .alarm_tab_wrap .alarm_view .option li:nth-child(2) .badge {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 14px;
	height: 14px;
	font-size: 8px;
	color: white;
	background-color: var(--p_c_red);
	border-radius: 50%;
	flex-shrink: 0;
}

/* 푸터 */
footer {
	padding: 40px 0px;
	border-top: 1px solid #919eab;
	background-color: white;
	margin-top: 60px;
}
footer .con {
	display: flex;
	justify-content: space-between;
}
footer .company {
	display: flex;
	flex-direction: column;
	gap: 30px;
}
footer .company .home {
	width: fit-content;
	padding-bottom: 20px;
}
footer .company .home img {
	display: block;
	height: 40px;
}
footer .company .footer_nav ul {
	position: relative;
	display: flex;
	gap: 35px;
}
footer .company .footer_nav li {
	position: relative;
}
footer .company .footer_nav li:not(:last-child):after {
	content: "|";
	position: absolute;
	top: 0;
	right: -20px;
}
footer .company .footer_nav li:nth-child(3) {
	font-weight: 700;
	color: var(--t_c_darker);
}
footer .company .info {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
footer .company .info ul {
	display: flex;
	gap: 15px;
}
footer .company .info ul li {
	font-size: 14px;
}
footer .company .info ul li:first-child {
	width: 84px;
}
footer .customer {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
footer .customer .bg_box {
	display: flex;
	flex-direction: column;
	gap: 15px;
	background-color: var(--t_c_section);
	border-radius: 12px;
	padding: 20px;
}
footer .customer .bg_box .call {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
footer .customer .bg_box .call ul {
	display: flex;
	justify-content: space-between;
}
footer .customer .bg_box .call ul li:nth-child(1) {
	margin-top: 4px;
}
footer .customer .bg_box .call p {
	font-size: 14px;
}
footer .customer .bg_box a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background-color: var(--t_c_normal);
	border-radius: 8px;
	color: white;
	height: 48px;
	font-weight: 600;
}
footer .customer .bg_box a:hover {
	background-color: #ffda00;
}
footer .customer .sns_link {
	display: flex;
	justify-content: flex-end;
	gap: 15px;
}
footer .customer .sns_link a {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--t_c_normal);
	border-radius: 50%;
	width: 48px;
	height: 48px;
}
footer .customer .sns_link .insta:hover {
	background-color: #c539c7;
}
footer .customer .sns_link .youtube:hover {
	background-color: #dc362e;
}

/* 맴버 프로필 */
.mem_profile_wrap {
	display: none;
	position: absolute;
	padding: 0 40px;
	z-index: 1;
}
.mem_profile_wrap .box {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 15px;
	background-color: white;
	border: 1px solid var(--t_c_thin);
	box-shadow: 0px 0px 15px var(--t_c_lighter);
	border-radius: 12px;
}
.mem_profile_wrap .box textarea {
	font-size: 14px;
	width: 170px;
	height: 78px;
	padding: 12px;
}
.mem_profile_wrap .box textarea::placeholder {
	font-size: 12px;
}
.mem_profile_wrap .profile_img {
	position: relative;
	width: 170px;
	height: 170px;
	border-radius: 6px;
	overflow: hidden;
	background: url() no-repeat center / cover;
}
.mem_profile_wrap .mem_ranking {
	position: absolute;
	right: 10px;
	bottom: 10px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: url() no-repeat center / cover;
}
.mem_profile_wrap .mem_ranking.dealer {
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: none !important;
	background-color: var(--m_c_dark);
}
.mem_profile_wrap .mem_ranking.dealer::before {
	content: "딜러";
	font-size: 14px;
	font-weight: 800;
	color: white;
}
.mem_profile_wrap .info {
	display: flex;
	flex-wrap: wrap;
	width: 170px;
	gap: 3px 12px;
}
.mem_profile_wrap .info li {
	display: flex;
	gap: 5px;
	font-size: 14px;
	font-weight: 500;
}
.mem_profile_wrap .info li:first-child {
	width: 100%;
}
.mem_profile_wrap .info li span {
	white-space: nowrap;
}
.mem_profile_wrap .info li span:first-child {
	font-weight: 400;
	color: var(--t_c_medium);
}
.mem_profile_wrap .info li a {
	text-decoration: underline;
	color: var(--m_c_main);
}

/* 메인 비주얼 - 슬라이드 */
.event_slider_wrap {
	position: relative;
	width: 1400px;
	margin: 0 auto;
}
.swiper-slide {
	pointer-events: auto;
}
.swiper-slide.on {
	pointer-events: auto;
}
.main_view {
	display: flex;
	align-items: flex-start;
	gap: 25px;
	height: 500px;
	width: 1400px;
	margin: 0 auto;
}
.main_slide_wrap {
	flex: 1 1 auto;
	overflow: hidden;
	position: relative;
	min-width: 0;
	height: 100%;
	background: var(--t_c_section);
	border-radius: 24px;
	transition: height 0.4s ease-in-out;
}
.main_slide_wrap.on {
	height: 500px;
	transition: height 0.6s ease;
}

/* 메인 현재접속중 슬라이드 */
.mem_access_view_wrap {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 17px;
	flex: 0 0 500px;
	min-width: 400px;
	height: 100%;
	padding: 20px;
	border-radius: 14px;
	background-color: var(--t_c_darker);
}
.mem_access_view_wrap .title {
	display: flex;
	flex-direction: column;
	gap: 4px;
	color: white;
}
.mem_access_view_wrap .title p {
	color: var(--t_c_lighter);
	font-size: 13px;
}
.mem_access_view_wrap .mem_access_view_slide {
	display: flex;
	width: 100%;
}
.mem_access_view_wrap .mem_info {
	color: white;
	width: 205px;
}
.mem_access_view_wrap .mem_info .user_spec {
	color: var(--t_c_lighter) !important;
}
.mem_access_view_wrap .mem_info .more_btn_wrap .btn_icon {
	background-color: white;
}
.mem_access_view_wrap .mem_info .txt p a {
	color: var(--m_c_light);
}
.mem_access_view_wrap .swiper .swiper-wrapper .swiper-slide {
	display: flex;
	background-color: var(--t_c_darker);
	opacity: 1;
}
.mem_access_view_wrap .swiper .swiper-wrapper .swiper-slide.on {
	opacity: 1;
}
.mem_access_view_wrap .swiper .swiper-wrapper .swiper-slide > div {
	display: flex;
	flex-direction: column;
	gap: 11px;
}
.mem_access_view_wrap .swiper .swiper-wrapper .swiper-slide .woman_zone {
	padding-right: 23px;
	margin-right: 23px;
	border-right: 1px solid var(--t_c_light);
}
.mem_access_view_wrap .swiper .swiper-wrapper .swiper-slide .woman_zone .gender {
	color: var(--p_c_pink);
}
.mem_access_view_wrap .swiper .swiper-wrapper .swiper-slide .man_zone .gender {
	color: var(--p_c_l_blue);
}
.mem_access_view_wrap .swiper-button-next,
.mem_access_view_wrap .swiper-button-prev {
	top: 30px;
	width: 24px;
	border: 1px solid white;
	border-radius: 4px;
	transition: all 0.3s;
	background-color: rgba(255, 255, 255, 0.1);
	opacity: 0.6;
}
.mem_access_view_wrap .swiper-button-next {
	right: 20px;
}
.mem_access_view_wrap .swiper-button-prev {
	left: initial;
	right: 50px;
}
.mem_access_view_wrap .swiper-button-next:after,
.mem_access_view_wrap .swiper-button-prev:after {
	color: white;
	font-size: 10px;
	font-weight: bold;
}
.mem_access_view_wrap .swiper-button-next:hover,
.mem_access_view_wrap .swiper-button-prev:hover {
	background-color: rgba(255, 255, 255, 0.3);
	opacity: 0.8;
}

/* 이미지 */
.main_slide_wrap .main_slide {
	height: 100%;
}
.main_slide_wrap ul {
	z-index: 1;
	height: 100%;
}
.main_slide_wrap ul li {
	overflow: hidden;
	height: 100%;
}
.main_slide_wrap .main_slide ul li {
	cursor: pointer !important;
}
.main_slide_wrap .main_slide ul li .bg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	width: 130%;
	height: 130%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	cursor: pointer !important;
	z-index: 10;
}

.main_slide_wrap .main_slide ul li.on .bg {
	width: 100%;
	height: 100%;
}
.main_slide_wrap .main_slide ul li .bg .txt {
	font-size: 40px;
	font-weight: 800;
	color: white;
	padding-left: 80px;
	-webkit-text-stroke: 1px black;
	text-shadow: 0px 0px 10px black;
	opacity: 0;
	transition: opacity 1s ease-in-out;
}
.main_slide_wrap .main_slide ul li.on .bg .txt {
	animation: fadein 6s ease-in-out;
}
@keyframes fadein {
	0% {
		opacity: 0;
	}
	25% {
		opacity: 1;
	}
	90% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

/* 컨트롤 */
.main_slide_wrap .controls {
	display: flex;
	align-items: center;
	gap: 20px;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 10;
	padding: 16px 0px 16px 30px;
	color: var(--t_c_normal);
	background-color: white;
	border-radius: 40px 0px 0px 0px;
}
.main_slide_wrap .controls.off {
	width: 0px;
	height: 0px;
	overflow: hidden;
	display: none;
}
.main_slide_wrap .controls:before,
.main_slide_wrap .controls:after {
	content: "";
	width: 40px;
	height: 40px;
	background: url("../img/main_r_wt.svg") no-repeat center;
	position: absolute;
}
.main_slide_wrap .controls:before {
	top: -40px;
	right: 0;
}
.main_slide_wrap .controls:after {
	bottom: 0;
	left: -40px;
}
.main_slide_wrap .circle {
	position: relative;
}
.main_slide_wrap .circle .autoplay-progress {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 60px;
	height: 60px;
}
.main_slide_wrap .circle .autoplay-progress svg {
	z-index: 10;
	width: 100%;
	height: 100%;
	stroke-width: 2px;
	stroke: var(--m_c_main);
	fill: none;
	stroke-dashoffset: calc(125.6 * (1 - var(--progress)));
	stroke-dasharray: 125.6;
	transform: rotate(-90deg);
}
.main_slide_wrap .circle .autoplay-progress .bg {
	position: absolute;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	border: 3px solid var(--t_c_normal);
	opacity: 0.5;
}
.main_slide_wrap .controls .arrow .prev,
.main_slide_wrap .controls .arrow .next {
	-webkit-mask: url("../img/slide_arrow_icon.svg") no-repeat center;
	mask: url("../img/slide_arrow_icon.svg") no-repeat center;
	mask-size: contain;
	-webkit-mask-size: contain;
	mask-position: center;
	-webkit-mask-position: center;
	width: 26px;
	height: 14px;
	background-color: var(--t_c_normal);
	cursor: pointer;
	transition: all 0.3s;
}
.main_slide_wrap .controls .arrow .next {
	transform: scaleX(-1);
}
.main_slide_wrap .controls .arrow .prev:hover,
.main_slide_wrap .controls .arrow .next:hover {
	background-color: var(--m_c_main);
}
.main_slide_wrap .circle .play div {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 10;
	transform: translate(-50%, -50%);
}
.main_slide_wrap .circle .play .swiper-pause {
	width: 16px;
	height: 16px;
	-webkit-mask: url("../img/pause_icon.svg") no-repeat center;
	mask: url("../img/pause_icon.svg") no-repeat center;
	mask-size: contain;
	-webkit-mask-size: contain;
	mask-position: center;
	-webkit-mask-position: center;
	background-color: var(--t_c_normal);
	cursor: pointer;
	transition: all 0.3s;
}
.main_slide_wrap .circle .play .swiper-play {
	width: 16px;
	height: 16px;
	-webkit-mask: url("../img/play_icon.svg") no-repeat center;
	mask: url("../img/play_icon.svg") no-repeat center;
	mask-size: contain;
	-webkit-mask-size: contain;
	mask-position: center;
	-webkit-mask-position: center;
	background-color: var(--t_c_normal);
	cursor: pointer;
	transition: all 0.3s;
}
.main_slide_wrap .circle .play .swiper-pause:hover,
.main_slide_wrap .circle .play .swiper-play:hover {
	background-color: var(--m_c_main);
}

.main_slide_wrap .circle .play div.swiper-pause {
	display: block;
}
.main_slide_wrap .circle .play div.swiper-play {
	display: none;
}
.main_slide_wrap .circle .play.on div.swiper-pause {
	display: none;
}
.main_slide_wrap .circle .play.on div.swiper-play {
	display: block;
}
.main_slide_wrap .arrow {
	display: flex;
	align-items: center;
	gap: 25px;
}
.main_slide_wrap .arrow > span {
	display: flex;
}
.main_slide_wrap .arrow i {
	cursor: pointer;
	width: 40px;
	opacity: 0.6;
	transition: all 0.2s;
}
.main_slide_wrap .arrow .pager {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 43px;
	font-size: 16px;
	font-weight: 600;
}
.main_slide_wrap .arrow .i:hover {
	opacity: 1;
}

/* 메인 실시간 부킹 */
.booking_res_wrap .con {
	display: flex;
	align-items: flex-start;
	gap: 30px;
}
.main_title_wrap {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	padding-bottom: 20px;
}
.main_title_wrap .left {
	display: flex;
	align-items: flex-end;
	gap: 15px;
}
.main_title_wrap .left h4 {
	color: var(--t_c_dark);
}
.main_title_wrap .left p {
	color: var(--t_c_medium);
	margin-bottom: 2px;
}
.rl_booking_wrap {
	width: 1060px;
	flex: 0 0 1060px;
	height: 377px;
	padding-top: 6px;
}
.rl_booking_wrap .btn_wrap {
	display: flex;
	gap: 10px;
}
.rl_booking_wrap .btn_wrap a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 16px;
	height: 50px;
}
.rl_booking_wrap .btn_wrap a:before {
	content: "";
	width: 20px;
	height: 20px;
	-webkit-mask: url("") no-repeat center / cover;
	mask: url("") no-repeat center / cover;
	background-color: var(--t_c_medium);
}
.rl_booking_wrap .btn_wrap a:nth-child(1):before {
	mask-image: url(../img/rl_time_icon.svg);
}
.rl_booking_wrap .btn_wrap a:nth-child(2):before {
	mask-image: url(../img/manager_icon.svg);
}
.rl_booking_wrap .btn_wrap a:hover {
	background-color: var(--m_c_lighter);
	color: var(--m_c_dark);
	border-color: var(--m_c_dark);
}
.rl_booking_wrap .btn_wrap a:hover:before {
	background-color: var(--m_c_dark);
}
.rl_booking_wrap .tab_menu {
	padding-bottom: 20px;
}
.rl_booking_wrap .tab_menu ul {
	display: flex;
	align-items: center;
}
.rl_booking_wrap .tab_menu ul li {
	display: flex;
	align-items: center;
	justify-content: center;
	width: calc(100% / 11);
}
.rl_booking_wrap .tab_menu ul li a {
	display: flex;
	gap: 6px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 70px;
	border-radius: 10px;
	color: var(--t_c_light);
}
.rl_booking_wrap .tab_menu ul li.sun a {
	color: var(--p_c_red);
	opacity: 0.6;
}
.rl_booking_wrap .tab_menu ul li a:hover {
	background-color: var(--m_c_lighter);
	color: var(--m_c_dark);
	opacity: 1;
}
.rl_booking_wrap .tab_menu ul li.on a {
	background-color: var(--m_c_main);
	color: white;
	opacity: 1;
}
.rl_booking_wrap .rl_tab_con {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(6, minmax(100px, 1fr));
}
.rl_booking_wrap .rl_tab_con.on {
	display: grid;
}
.rl_booking_wrap .rl_tab_con .box {
	display: flex;
	flex-direction: column;
	border-radius: 15px;
	overflow: hidden;
	border: 1px solid var(--t_c_lighter);
	background-color: white;
	transition: all 0.3s;
}
.rl_booking_wrap .rl_tab_con .box:hover {
	border-color: var(--m_c_dark);
	box-shadow: 0px 0px 20px rgba(0, 120, 103, 0.2);
}
.rl_booking_wrap .rl_tab_con .box .img {
	background: url() no-repeat center / cover;
	width: 100%;
	height: 100px;
}
.rl_booking_wrap .rl_tab_con .box .item {
	display: flex;
	flex-direction: column;
	gap: 5px;
	padding: 16px;
}
.rl_booking_wrap .rl_tab_con .box .item h4 {
	padding-bottom: 5px;
}
.rl_booking_wrap .rl_tab_con .box .item ul {
	display: flex;
	gap: 12px;
	font-size: 15px;
}
.rl_booking_wrap .rl_tab_con .box .item ul li a {
	text-decoration: underline;
	font-weight: 800;
	color: var(--m_c_dark);
}

/* 메인 마감임박 슬라이드 */
.deadline_slide_wrap {
	flex: 1 1 auto;
	overflow: hidden;
	position: relative;
	min-width: 0;
	background: var(--m_c_lighter_02);
	height: 377px;
	border-radius: 12px;
	padding: 22px 30px;
	padding-bottom: 16px;
}
.deadline_slide_wrap .main_title_wrap {
	align-items: flex-start;
}
.deadline_slide_wrap .main_title_wrap a {
	margin-top: 2px;
}
.deadline_slide_wrap .swiper {
	height: calc(100% - 54px);
}
.deadline_slide_wrap .swiper a {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 16px;
}
.deadline_slide_wrap .swiper-wrapper:has(.no_deadline) a {
	pointer-events: none;
}
.deadline_slide_wrap .swiper-wrapper .no_deadline {
	display: flex;
	justify-content: center;
	padding-top: 110px;
}
.deadline_slide_wrap .swiper .img {
	flex: 0 0 auto;
	width: 100%;
	height: 189px;
	border-radius: 10px;
	background: url() no-repeat center / cover;
}
.deadline_slide_wrap .swiper .info {
	display: flex;
	flex-direction: column;
	gap: 6px;
	width: 100%;
}
.deadline_slide_wrap .swiper .area {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 10px;
}
.deadline_slide_wrap .swiper .area li:nth-child(1) {
	flex: 1 1 auto;
	padding-bottom: 5px;
}
.deadline_slide_wrap .swiper .area li:nth-child(1) h4 {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.deadline_slide_wrap .swiper .area li:nth-child(2) {
	flex: 0 0 auto;
	font-size: 12px;
	font-weight: 700;
}
.deadline_slide_wrap .swiper .item {
	display: flex;
	flex-direction: column;
	gap: 5px;
	font-size: 15px;
}
.deadline_slide_wrap .swiper h5.txt {
	position: absolute;
	bottom: 0;
	right: 0px;
	color: var(--m_c_dark);
}
.deadline_slide_wrap .swiper-pagination {
	position: absolute;
	z-index: 1;
	width: initial;
	top: 11px;
	right: 122px;
	left: auto;
	bottom: auto;
	font-weight: 800;
	display: flex;
	gap: 6px;
}
.deadline_slide_wrap .swiper_round_btn {
	top: 170px;
}
.deadline_slide_wrap .swiper-button-next {
	right: 20px;
}
.deadline_slide_wrap .swiper-button-prev {
	right: initial;
	left: 20px;
}

/* 메인 현제 접속중 슬라이드 */
/*
.mem_access_slide_wrap .con {
	position: relative;
	z-index: 1;
	overflow: hidden;
	padding-bottom: 84px;
}
.mem_access_slide_wrap .con:after,
.mem_access_slide_wrap .con:before {
	content: "";
	position: absolute;
	top: 0;
	width: 32px;
	height: 100%;
	background-color: white;
	z-index: 1;
}
.mem_access_slide_wrap .con:after {
	left: -2px;
}
.mem_access_slide_wrap .con:before {
	right: -2px;
}

.mem_access_slide_wrap .mem_acc_track {
	display: flex;
	width: max-content;
	will-change: transform;
}

.mem_access_slide_wrap .mem_acc_slide {
	position: relative;
	margin-right: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-shrink: 0;
}

.mem_access_slide_wrap .mem_acc_slide .img {
	width: 100px;
	height: 100px;
	background: url() no-repeat center / cover;
	margin-bottom: 10px;
	border-radius: 50%;
	background-color: var(--t_c_thin);
}
.mem_access_slide_wrap .mem_acc_slide .info ul {
	list-style: none;
	padding: 0;
	margin: 0;
	text-align: center;
}
.mem_access_slide_wrap .mem_acc_slide .mem_profile_wrap {
	left: 65px;
	top: calc(50% - 10px);
	transform: translateY(-50%);
	padding-right: 0;
}
.mem_access_slide_wrap .mem_acc_slide:hover .mem_profile_wrap {
	display: block;
}
.mem_access_slide_wrap .arrow.prev,
.mem_access_slide_wrap .arrow.next {
	position: absolute;
	top: calc(50% + 10px);
	transform: translateY(-50%);
	z-index: 2;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.mem_access_slide_wrap .arrow.next {
	right: 0px;
}
.mem_access_slide_wrap .arrow.prev {
	left: 0px;
}
.mem_access_slide_wrap .arrow.next:after,
.mem_access_slide_wrap .arrow.prev:after {
	font-family: swiper-icons;
	font-size: var(--swiper-navigation-size);
	text-transform: none !important;
	letter-spacing: 0;
	font-variant: initial;
	line-height: 1;
	color: var(--t_c_medium);
}
.mem_access_slide_wrap .arrow.next:after {
	content: "next";
}
.mem_access_slide_wrap .arrow.prev:after {
	content: "prev";
}
*/

/* 최근게시물 */
/* 피드 */
.recent_posts_wrap .con {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}
.recent_posts_wrap .con > .box {
	padding: 30px;
	border: 1px solid var(--t_c_lighter);
	border-radius: 14px;
}
.recent_posts_wrap .main_title_wrap {
	align-items: flex-start;
}
.recent_posts_wrap .recent_feed > .info {
	display: flex;
	gap: 20px;
}
.recent_posts_wrap .recent_feed > .info:not(:last-child) {
	padding-bottom: 18px;
	margin-bottom: 18px;
	border-bottom: 1px solid var(--t_c_thin);
}
.recent_posts_wrap .recent_feed > .info .img {
	flex: 0 0 auto;
	width: 129px;
	height: 129px;
	border: 1px solid var(--t_c_lighter);
	border-radius: 8px;
	background: url() no-repeat center / cover;
	background-color: white;
}
.recent_posts_wrap .box:has(.recent_feed) {
	padding: 30px 0px;
}
.recent_posts_wrap .box:has(.recent_feed) .main_title_wrap {
	padding: 0px 30px;
}
.recent_posts_wrap .box:has(.recent_feed) .info {
	padding-left: 30px;
	padding-right: 30px;
}
.recent_posts_wrap .box:has(.recent_feed) .info:nth-child(1) {
	padding-top: 20px;
	margin-top: 10px;
	background-color: var(--m_c_lighter_03);
	border-bottom: none;
}
.recent_posts_wrap .gr_mem_profile_wrap .detail,
.recent_posts_wrap .gr_mem_profile_wrap .write_time,
.recent_posts_wrap .gr_mem_profile_wrap .post_add_wrap {
	padding-left: 0;
}

/* 자유게시판 */
.recent_posts_wrap .recent_free > .info:not(:last-child) {
	padding-bottom: 22px;
	margin-bottom: 21px;
	border-bottom: 1px solid var(--t_c_thin);
}
.recent_posts_wrap .recent_free .detail,
.recent_posts_wrap .recent_free .write_time {
	padding-left: 52px;
}
.recent_posts_wrap .recent_free .detail p {
	height: 18px;
	-webkit-line-clamp: 1;
}

/* 익명게시판 */
.recent_posts_wrap .recent_anon > .info:not(:last-child) {
	padding-bottom: 16px;
	margin-bottom: 16px;
	border-bottom: 1px solid var(--t_c_thin);
}
.recent_posts_wrap .recent_anon .detail {
	padding-top: 0;
}
.recent_posts_wrap .recent_anon .detail p {
	height: 18px;
	-webkit-line-clamp: 1;
}

/* 골프락 미디어 */
.fr_media_wrap .left {
	width: 350px;
	height: 530px;
	padding: 60px 30px;
	background: url("../img/fr_media_img.png") no-repeat center / cover;
	border-radius: 15px;
}
.fr_media_wrap .left .text {
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.fr_media_wrap .left .text ul {
	display: flex;
	flex-direction: column;
	font-size: 44px;
	font-weight: 900;
	color: var(--t_c_dark);
}
.fr_media_wrap .left .text a {
	background-color: transparent;
	width: fit-content;
	transition: all 0.3s;
}
.fr_media_wrap .left .text a:hover {
	background-color: var(--m_c_main);
	border-color: var(--m_c_main);
	color: white;
}
.fr_media_wrap .right {
	position: absolute;
	top: 162px;
	right: 0px;
	height: 360px;
	display: flex;
	gap: 30px;
	width: 1126px;
}
.fr_media_wrap .right .youtube {
	display: grid;
	grid-template-columns: 624px 452px;
	grid-template-rows: 170px 170px;
	gap: 20px;
}
.fr_media_wrap .right .youtube .item:first-child {
	grid-row: 1 / span 2;
}
.fr_media_wrap .right .youtube .item:first-child ul {
	display: none;
}
.fr_media_wrap .right .youtube .item {
	display: flex;
	align-items: center;
	gap: 20px;
}
.fr_media_wrap .right .youtube .item .media {
	position: relative;
	/* padding-top: 56.25%; */
	overflow: hidden;
	border-radius: 15px;
	width: 100%;
	height: 100%;
}
.fr_media_wrap .media iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.fr_media_wrap .right .youtube .item ul {
	flex: 0 0 auto;
}
.fr_media_wrap .right .youtube .item ul {
	display: flex;
	flex-direction: column;
	gap: 30px;
	width: 132px;
}
.fr_media_wrap .right .youtube .item ul li:first-child {
	font-size: 18px;
	font-weight: 700;
	color: var(--t_c_darker);
}

/* 메인 어플 연결 */
.fr_app_wrap {
	background-image: url("../img/app_bg.png");
	background-attachment: fixed;
	margin-top: 40px;
}
.fr_app_wrap .con {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 80px 30px;
}
.fr_app_wrap .txt {
	color: white;
}
.fr_app_wrap .txt h2 {
	padding-bottom: 20px;
}
.fr_app_wrap .btn_wrap {
	display: flex;
	gap: 15px;
}
.fr_app_wrap .btn_wrap a {
	width: 158px;
	border: 1px solid white;
	padding: 0;
}
.fr_app_wrap .btn_wrap a:hover {
	border-color: var(--t_c_darker);
	background-color: var(--t_c_darker);
}
.fr_app_wrap .btn_wrap a:after {
	content: "";
	width: 120px;
	height: 26px;
	-webkit-mask: url("") no-repeat center / cover;
	mask: url("") no-repeat center / cover;
	background-color: white;
}
.fr_app_wrap .btn_wrap a.google:after {
	mask-image: url("../img/google_play_logo.svg");
}
.fr_app_wrap .btn_wrap a.apple:after {
	mask-image: url("../img/appstore_logo.svg");
}

/* 상세검색 레이어 팝업 */
.popup_box:has(.main_search_wrap) {
	overflow: initial !important;
	margin-bottom: 400px;
}
.popup_box .main_search_wrap {
	width: 692px;
	margin: 0;
	background-color: white;
}
.popup_box .main_search_wrap .txt {
	display: none;
}
.popup_box .main_search_wrap .tab_menu ul li a {
	color: var(--t_c_medium);
}
.popup_box .main_search_wrap .tab_menu ul li a:after {
	opacity: 1;
}
.popup_box .main_search_wrap .tab_menu ul li.on a:after {
	border: 3px solid var(--m_c_main) !important;
}
.popup_box .main_search_wrap .tab_menu ul li.on a,
.popup_box .main_search_wrap .tab_menu ul li a:hover {
	color: var(--m_c_main);
	opacity: 1;
}
.popup_box .main_search_wrap .tab_menu ul li a:hover:after {
	border: 3px solid var(--m_c_main) !important;
}
.popup_box .main_search_wrap .tab_con.on {
	flex-direction: column;
}
.popup_box .main_search_wrap .tab_con .date input[name="daterange"] {
	width: 100%;
}
.popup_box .main_search_wrap .tab_con .people .int {
	width: 100%;
}
.popup_box .main_search_wrap .tab_con .standardSsearch {
	display: flex;
	align-items: center;
	gap: 10px;
	width: calc(100% - 148px);
}
.popup_box .main_search_wrap .tab_con a[data-popup="find_with_map_wrap"] {
	width: 140px;
	padding: 0 25px;
	height: 50px;
	border-radius: 8px;
	color: white;
	font-size: 20px;
	font-weight: 600;
	transition: all 0.3s;
	white-space: nowrap;
	position: absolute;
	bottom: 95px;
	right: 30px;
}
.popup_box .main_search_wrap .btn {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
}

/* 에러페이지 */
.wrap:has(.error_page_wrap) {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	background-color: #d6f1e8;
}
.error_page_wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 50px;
}
.error_page_wrap img {
	height: 240px;
}
.error_page_wrap ul li {
	text-align: center;
}
.error_page_wrap ul li:nth-child(1) {
	font-size: 18px;
	font-weight: 800;
	color: var(--t_c_darker);
	line-height: 1.5;
	padding-bottom: 20px;
}
.error_page_wrap ul li:nth-child(2) {
	line-height: 1.5;
}
.error_page_wrap a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 220px;
	height: 50px;
	border: 1px solid var(--m_c_dark);
	color: var(--m_c_dark);
	border-radius: 8px;
	font-size: 18px;
	font-weight: 700;
}
.error_page_wrap a:hover {
	background-color: var(--m_c_dark);
	color: white;
}

/* 로그인 */
.login_wrap .con {
	display: flex;
	justify-content: center;
	gap: 40px;
	padding-top: 120px;
}
.login_wrap .item {
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.login_wrap .item .title h2 {
	padding-bottom: 5px;
}
.login_wrap .item .title span {
	font-weight: 700;
}
.login_wrap .item .int {
	display: flex;
	flex-direction: column;
	gap: 15px;
	width: 400px;
}
.login_wrap .item .option {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.login_wrap .item .option .find {
	font-size: 14px;
}
.login_wrap .item .btn {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.login_wrap .item .btn a:nth-child(2) {
	border: 1px solid var(--m_c_darker);
	color: var(--m_c_darker);
}

/* 회원가입 */
.join_wrap .con {
	width: 760px;
	display: flex;
	flex-direction: column;
}
.join_wrap .title {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	padding-bottom: 20px;
	width: 100%;
}
.join_wrap .title .sub_txt {
	font-size: 14px;
}
.join_wrap .progress {
	display: flex;
	align-items: center;
	justify-content: space-around;
	background-color: var(--t_c_section);
	border: 1px solid var(--t_c_lighter);
	border-radius: 12px;
	padding: 20px 0px;
	margin-bottom: 80px;
	width: 100%;
}
.join_wrap .progress ul {
	position: relative;
	color: var(--t_c_light);
	font-weight: 800;
}
.join_wrap .progress ul li:first-child {
	font-size: 14px;
}
.join_wrap .progress ul:not(:last-child):after {
	content: "";
	position: absolute;
	left: 100%;
	top: 50%;
	transform: translate(50%, -50%);
	border-left: 45px solid var(--t_c_lighter);
	height: 1px;
}
.join_wrap .progress ul.on {
	color: var(--t_c_dark);
}
.join_wrap .progress ul.on:not(:last-child):after {
	border-color: var(--t_c_darker);
}
.join_wrap .join_phone_img {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 130px;
	height: 130px;
	border-radius: 50%;
	background-color: var(--t_c_section);
	margin: 0 auto;
	margin-bottom: 30px;
}
.join_wrap .join_phone_img .img {
	width: 100%;
	height: 100%;
	-webkit-mask: url("../img/join_phone_certify_icon.svg") no-repeat center;
	mask: url("../img/join_phone_certify_icon.svg") no-repeat 38px center;
	mask-size: 60px;
	background-color: var(--m_c_dark);
}
.join_wrap .join_form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.join_wrap .join_form .item {
	display: flex;
}
.join_wrap .join_form .item .txt {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	gap: 4px;
	font-weight: 600;
	width: 150px;
	height: 44px;
}
.join_wrap .join_form .item .int {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.join_wrap .join_form .item .int .row {
	position: relative;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
.join_wrap .join_form .item .int .row input {
	flex: 1 1 auto;
	height: 44px;
	width: initial;
}
.join_wrap .join_form .item .int .row a {
	flex: 0 0 auto;
}
.join_wrap .join_form .item .int .row .int_err_txt {
	flex: 0 0 100%;
	order: 2;
}
.join_wrap .join_form .item .int .row select {
	flex: 1 1 40%;
}
.join_wrap .join_form .item .int .row .count {
	position: absolute;
	top: 13px;
	right: 15px;
	font-size: 14px;
	font-weight: 700;
	color: var(--p_c_red);
}
.join_wrap .join_form .item .int .row:has(.count) input {
	padding-right: 68px;
}
.join_wrap .policy h3 {
	padding-bottom: 20px;
}
.join_wrap .policy .check_list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.join_wrap .policy .item {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.join_wrap .policy .item.all_check p {
	font-weight: 700;
}
.join_wrap .policy .item a {
	font-size: 14px;
	color: var(--t_c_light);
}
.join_wrap .con > a {
	margin-top: 50px;
	min-width: 200px;
	align-self: center;
}
.policy_popup_wrap .rule_wrap {
	display: flex;
	flex-direction: column;
	gap: 25px;
	font-size: 14px;
	line-height: 1.3;
}
.policy_popup_wrap .rule_wrap .title {
	font-size: 17px;
	color: var(--t_c_dark);
	font-weight: 700;
}
.policy_popup_wrap .rule_wrap .row {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.policy_popup_wrap .rule_wrap .sub_title {
	font-weight: 600;
}
.policy_popup_wrap .rule_wrap ul {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 6px 0px;
}
.policy_popup_wrap .rule_wrap .list {
	padding-top: 10px;
	padding-left: 22px;
}
.policy_popup_wrap .rule_wrap .list li {
	list-style: decimal-leading-zero;
}
.policy_popup_wrap .rule_wrap .list.circle li {
	list-style: circle;
}
.policy_popup_wrap .rule_wrap .list li .sub_list {
	padding-left: 22px;
}
.policy_popup_wrap .rule_wrap .list li .sub_list li {
	list-style: hangul;
}
/* 회원가입 완료*/
.join_complete_wrap .con {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.join_complete_wrap .con > h2 {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 4px;
	font-weight: 600;
	padding-bottom: 25px;
}
.join_complete_wrap h2 strong {
	font-weight: 800;
	color: var(--m_c_dark);
}
.join_complete_wrap .txt {
	font-size: 18px;
	line-height: 1.4;
}
.join_complete_wrap a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 220px;
	height: 50px;
	border: 1px solid var(--m_c_dark);
	color: var(--m_c_dark);
	border-radius: 8px;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 30px;
}
.join_complete_wrap a:hover {
	background-color: var(--m_c_dark);
	color: white;
}
.join_complete_wrap img {
	width: 700px;
}

/* 실시간 예약 */
.time_booking_res_pop_wrap .pop_con {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.time_booking_res_pop_wrap .wait_people {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	padding-bottom: 5px;
}
.time_booking_res_pop_wrap .wait_people:has(> a:last-child:nth-child(2n)) {
	grid-template-columns: repeat(2, 1fr);
}
.time_booking_res_pop_wrap .wait_people a:hover {
	background-color: var(--m_c_main);
	color: white;
}
.time_booking_res_pop_wrap .wait_people a {
	width: 100%;
	justify-content: flex-start;
	padding: 0 38px;
}
/* 3의배수 삭제
.time_booking_res_pop_wrap .wait_people:has(> a:last-child:nth-child(3n)) {
	grid-template-columns: repeat(3, 1fr);
}
*/
.time_booking_wrap .golf_zone_wrap {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}
.time_booking_wrap .golf_zone_wrap aside {
	width: 324px;
}
.time_booking_wrap .con > .title {
	padding-bottom: 20px;
}
.time_booking_wrap .golf_zone_wrap .list {
	flex: 0 0 1046px;
	width: 1046px;
}
.time_booking_wrap .golf_zone_wrap .list .sub_filter_wrap {
	margin-top: 0px;
}
.time_booking_wrap .golf_zone_wrap .mem_join_wait_wrap {
	position: relative;
}
.time_booking_wrap .golf_zone_wrap .mem_join_wait_wrap:has(.swiper) {
	position: relative;
	margin-bottom: 15px;
	padding: 20px;
	border: 1px solid var(--t_c_light);
	border-radius: 8px;
}
.time_booking_wrap .golf_zone_wrap .area_nav {
	display: flex;
	flex-direction: column;
	position: sticky;
	top: 130px;
}
.time_booking_wrap .golf_zone_wrap .area_nav .datepicker {
	width: 100%;
	height: 44px;
}
.time_booking_wrap .golf_zone_wrap .area_nav > .box {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	gap: 15px;
	padding: 20px;
	border-radius: 12px;
	background-color: var(--t_c_section);
	margin-bottom: 20px;
}
/*
.time_booking_wrap .golf_zone_wrap .area_nav:before {
	content: "";
	display: block;
	width: 100%;
	height: 40px;
	background-color: white;
}
	*/
.time_booking_wrap .golf_zone_wrap .area_nav .date_int {
	display: flex;
	align-items: center;
	width: 100%;
	height: 40px;
	border-radius: 8px;
	background-color: white;
	border: 1px solid var(--t_c_lighter);
	padding: 0px 20px;
	padding-left: 50px;
	background: url("../img/date_icon.svg") no-repeat;
	background-position: 20px center;
	background-color: white;
	cursor: pointer;
}
.time_booking_wrap .golf_zone_wrap .area_nav .date_int span {
	padding-left: 5px;
}
.time_booking_wrap .golf_zone_wrap .area_nav .snb_list {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.time_booking_wrap .golf_zone_wrap .area_nav .snb_list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0px 20px;
	border-radius: 8px;
	height: 44px;
}
.time_booking_wrap .golf_zone_wrap .area_nav .snb_list a p:nth-child(1) {
	font-weight: 800;
}
.time_booking_wrap .golf_zone_wrap .area_nav .snb_list a p:nth-child(2) {
	text-decoration: underline;
}
.time_booking_wrap .golf_zone_wrap .area_nav .snb_list a:hover {
	background-color: var(--t_c_thin);
}
.time_booking_wrap .golf_zone_wrap .area_nav .snb_list a.on {
	color: white;
	background-color: var(--m_c_main);
}
.time_booking_wrap .golf_zone_wrap .deadline_slide_wrap {
	padding: 22px 20px;
}
.time_booking_wrap .golf_zone_wrap .deadline_slide_wrap .swiper-button-prev {
	left: 10px;
}
.time_booking_wrap .golf_zone_wrap .deadline_slide_wrap .swiper-button-next {
	right: 10px;
}
.time_booking_wrap .golf_zone_wrap .view {
	display: grid;
	grid-template-columns: repeat(2, minmax(100px, 1fr));
	gap: 20px;
}
.time_booking_wrap .golf_zone_wrap .view .item {
	display: flex;
	align-items: center;
	gap: 20px;
}
.time_booking_wrap .golf_zone_wrap .view .item .img {
	flex: 0 0 auto;
	position: relative;
	width: 165px;
	height: 150px;
	border-radius: 10px;
	background: url() no-repeat center / cover;
}
.time_booking_wrap .golf_zone_wrap .view .item .img .label {
	position: absolute;
	top: 10px;
	left: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 16px;
	padding: 0 4px;
	border-radius: 3px;
	background-color: var(--p_c_yellow);
	font-size: 10px;
	color: white;
}
.time_booking_wrap .golf_zone_wrap .view .item .info {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.time_booking_wrap .golf_zone_wrap .view .item .info .title {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.time_booking_wrap .golf_zone_wrap .view .item .info .title h5 {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	text-overflow: ellipsis;
	overflow: hidden;
}
.time_booking_wrap .golf_zone_wrap .view .item .info .title p {
	flex: 0 0 auto;
	font-size: 12px;
	text-align: right;
}
.time_booking_wrap .golf_zone_wrap .view .item .info .day {
	display: flex;
	align-items: center;
	padding: 12px 10px 6px 10px;
	background-color: var(--t_c_section);
}
.time_booking_wrap .golf_zone_wrap .view .item .info .day ul {
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1 1 auto;
	align-items: center;
	font-size: 14px;
}
.time_booking_wrap .golf_zone_wrap .view .item .info .day ul .sun {
	color: var(--p_c_red);
}
.time_booking_wrap .golf_zone_wrap .view .item .info .day ul li {
	position: relative;
}
.time_booking_wrap .golf_zone_wrap .view .item .info .day ul li:nth-child(1) {
	padding-bottom: 8px;
	border-bottom: 1px solid var(--t_c_lighter);
	width: 100%;
	text-align: center;
}
.time_booking_wrap .golf_zone_wrap .view .item .info .day ul li:nth-child(2) a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	font-weight: 600;
}
.time_booking_wrap .golf_zone_wrap .view .item .info .day ul li:nth-child(2) a:hover {
	background-color: var(--t_c_thin);
}
.time_booking_wrap .golf_zone_wrap .view .item .info .day ul li:nth-child(2).on a {
	background-color: var(--m_c_main);
	color: white;
}
.time_booking_wrap .golf_zone_wrap .view .item .info .day ul li:nth-child(2).off a {
	background-color: var(--t_c_thin);
	color: var(--t_c_light);
	cursor: no-drop;
}
.time_booking_wrap .golf_zone_wrap .view .item .info .day ul li:nth-child(2).wait a {
	background-color: var(--p_c_blue);
	color: white;
}
.time_booking_wrap .golf_zone_wrap .view .item .info .day ul li:nth-child(2):hover .topTooltip {
	display: block;
}
.time_booking_wrap .golf_zone_wrap .view .item .info .price {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.time_booking_wrap .golf_zone_wrap .view .item .info .price h5 {
	color: var(--m_c_dark);
}
.time_booking_wrap .golf_zone_wrap .view .item .info .price a {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
}
.time_booking_wrap .golf_zone_wrap .view .item .info .price a img {
	height: 15px;
}
.time_booking_wrap .golf_zone_wrap .sub_filter_wrap:has(.search) .left {
	width: initial;
}
.time_booking_wrap .golf_zone_wrap .sub_filter_wrap .right:has(.search) {
	width: initial;
}
.tb_popup_wrap .time_booking {
	justify-content: flex-start;
}
.tb_popup_wrap .calendar_top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 60px;
	font-weight: 800;
	color: var(--t_c_dark);
	padding: 20px 0px;
	padding-top: 30px;
}
.tb_popup_wrap .calendar_top .year_month {
	display: flex;
	align-items: center;
	gap: 20px;
}
.tb_popup_wrap .calendar_top a {
	padding: 5px;
}
.tb_popup_wrap .calendar_table {
	/* padding-bottom: 20px; */
	border-bottom: 1px solid var(--t_c_lighter);
}
.tb_popup_wrap .calendar_table thead tr td {
	height: 46px;
	border-color: var(--t_c_lighter);
}
.tb_popup_wrap .calendar_table tbody tr td {
	text-align: center;
	height: initial;
	padding: 10px 12px;
	border: none;
}
.tb_popup_wrap .calendar_table tr td:first-child {
	color: var(--p_c_red);
}
.tb_popup_wrap .calendar_table tr td a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	font-weight: 700;
}
.tb_popup_wrap .calendar_table tr td a.off {
	background-color: var(--t_c_thin);
	color: var(--t_c_light);
	cursor: no-drop;
}
.tb_popup_wrap .calendar_table tr td a.on {
	background-color: var(--m_c_main);
	color: white;
}

/* 실시간 예약 뷰 */
.rv_status_wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
}
.rv_status_wrap .choice_info_wrap {
	order: 10;
}
.rv_status_wrap .time_list {
	flex: 1 1 auto;
	width: 990px;
}
.rv_status_wrap .golf_filter_wrap {
	position: sticky;
	top: 100px;
	background-color: white;
	z-index: 1;
}
.rv_status_wrap .golf_filter_wrap:before {
	content: "";
	display: block;
	width: 100%;
	height: 40px;
	background-color: white;
}
.rv_status_wrap .golf_filter_wrap .sub_filter_wrap {
	position: relative;
	margin: 0;
	top: 0;
	height: 90px;
	transition:
		height 0.3s ease,
		padding 0.3s ease;
}
.rv_status_wrap .time_list .golf_cc_inc {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	padding-bottom: 15px;
	height: 48px;
}
.rv_status_wrap .time_list .golf_cc_inc .info {
	display: flex;
	align-items: center;
	gap: 10px;
}
.rv_status_wrap .time_list .golf_cc_inc .info a ul {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: 9px;
}
.rv_status_wrap .time_list .golf_cc_inc .info a ul img {
	height: 24px;
}
.rv_status_wrap .time_list .sel_golf_day {
	position: relative;
	padding: 20px;
	background-color: var(--t_c_section);
	border-radius: 12px;
	height: 175px;
	max-height: 500px;
	overflow: hidden;
	transition: all 0.2s ease;
	opacity: 1;
	/* 높이 변화 시 레이아웃 시프트 최소화 */
	will-change: height, opacity;
}
.rv_status_wrap .time_list .choice_wait_day {
	/* 높이 변화 시 레이아웃 시프트 최소화 */
	/* max-height: 317px; */
	transition: all 0.2s ease;
	will-change: height, opacity;
	padding-top: 15px;
	border-top: 1px solid var(--t_c_lighter);
}
.rv_status_wrap .time_list .choice_wait_day.active {
	height: 0;
	padding-top: 0;
	padding-bottom: 0;
	opacity: 0;
	transition: all 0.1s ease;
	pointer-events: none;
}
.rv_status_wrap .time_list .choice_wait_day.active ~ .sub_filter_wrap {
	height: 60px;
}
.rv_status_wrap .time_list .choice_wait_day .mem_join_wait_wrap {
	margin-bottom: 15px;
}
.rv_status_wrap .time_list .sel_golf_day .date {
	display: flex;
	gap: 10px;
	align-items: center;
	padding-bottom: 15px;
}
.rv_status_wrap .time_list .sel_golf_day .date a {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0px 12px;
	height: 26px;
	border-radius: 15px;
	font-size: 14px;
	background-color: var(--t_c_dark);
	color: white;
}
.rv_status_wrap .time_list .sel_golf_day .date p {
	font-weight: 800;
}
.rv_status_wrap .time_list .sel_golf_day .swiper a ul {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	padding: 4px 0px;
}
.rv_status_wrap .time_list .sel_golf_day .swiper a ul:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 48px;
	height: 100%;
	border: 1px solid var(--t_c_lighter);
	border-radius: 24px;
	transition: all 0.3s;
	opacity: 0;
}
.rv_status_wrap .time_list .sel_golf_day .swiper a:hover ul:before {
	opacity: 1;
}
.rv_status_wrap .time_list .sel_golf_day .swiper a ul li {
	width: 100%;
	text-align: center;
	font-weight: 800;
	color: var(--t_c_light);
	transition: all 0.3s;
}
.rv_status_wrap .time_list .sel_golf_day .swiper a ul.sun li:not(:last-child) {
	color: var(--p_c_red);
}
.rv_status_wrap .time_list .sel_golf_day .swiper a .month {
	padding-bottom: 3px;
	margin-bottom: 3px;
	border-bottom: 1px solid var(--t_c_lighter);
}
.rv_status_wrap .time_list .sel_golf_day .swiper a .count {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: var(--t_c_thin);
}
.rv_status_wrap .time_list .sel_golf_day .swiper a.active li {
	color: var(--t_c_normal);
}
.rv_status_wrap .time_list .sel_golf_day .swiper a.active .count {
	background-color: var(--m_c_main);
	color: white;
}
.rv_status_wrap .time_list .sel_golf_day .swiper a.disable {
	pointer-events: none;
}
.rv_status_wrap .time_list .sel_golf_day .swiper a.disable .count {
	background-color: var(--t_c_light);
	color: white;
}
.rv_status_wrap .time_list .sel_golf_day div[role="button"] {
	width: 24px;
	height: 24px;
	border-radius: 4px;
	top: 32px;
	border: 1px solid var(--t_c_lighter);
}
.rv_status_wrap .time_list .sel_golf_day div[role="button"]:after {
	font-size: 12px;
}
.rv_status_wrap .time_list .sel_golf_day div[role="button"]:hover {
	border-color: transparent;
	background-color: var(--t_c_medium);
}
.rv_status_wrap .time_list .sel_golf_day div[role="button"]:hover:after {
	color: white;
}
.rv_status_wrap .time_list .sel_golf_day .swiper-button-next {
	right: 20px;
}
.rv_status_wrap .time_list .sel_golf_day .swiper-button-prev {
	left: initial;
	right: 50px;
}
.rv_status_wrap .time_list .sub_title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding-bottom: 10px;
}
.rv_status_wrap .time_list .sub_title p {
	font-size: 14px;
}
.rv_status_wrap .time_list .item {
	display: flex;
	justify-content: space-between;
	padding: 20px;
	border: 1px solid var(--t_c_lighter);
	border-radius: 12px;
	flex-wrap: wrap;
	background-color: white;
	transition: all 0.3s;
}
.rv_status_wrap .time_list .item .left {
	position: relative;
}
.rv_status_wrap .time_list .item .left h3 {
	display: flex;
	align-items: center;
	gap: 5px;
	padding-bottom: 2px;
}
.rv_status_wrap .time_list .item .left .label {
	position: absolute;
	bottom: 0;
	display: flex;
	align-items: center;
	gap: 5px;
}
.rv_status_wrap .time_list .item .left .label span {
	display: flex;
	align-items: center;
	padding: 0px 8px;
	height: 25px;
	border-radius: 4px;
	font-size: 14px;
	color: white;
	font-weight: 600;
	background-color: var(--t_c_medium);
	white-space: nowrap;
}
.rv_status_wrap .time_list .item .right {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 12px;
}
.rv_status_wrap .time_list .item .right .person_info {
	display: flex;
	gap: 12px;
}
.rv_status_wrap .time_list .item .right .person_info .mem_img {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background-color: var(--t_c_thin);
	font-weight: 600;
	color: var(--t_c_light);
}
.rv_status_wrap .time_list .item .right .person_info .mem_img .memBadgeRdMd {
	position: absolute;
	bottom: -3px;
	right: -2px;
}
.rv_status_wrap .time_list .item .right .person_info .user {
	position: relative;
}
.rv_status_wrap .time_list .item .right .person_info .user .partner_badge {
	position: absolute;
	top: -2px;
	right: -2px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	font-size: 10px;
	font-weight: 800;
	color: white;
	background-color: var(--m_c_darker);
}
.rv_status_wrap .time_list .item .right .person_info .user.man .mem_img:hover .mem_profile_wrap,
.rv_status_wrap .time_list .item .right .person_info .user.woman .mem_img:hover .mem_profile_wrap {
	display: block;
	top: 50%;
	transform: translateY(-50%);
	left: -185px;
	padding-left: 0px;
}
.rv_status_wrap .time_list .item .right .person_info .mem_img:before {
	content: "대기";
}
.rv_status_wrap .time_list .item .right .person_info .user.man .mem_img,
.rv_status_wrap .time_list .item .right .person_info .user.woman .mem_img {
	background: url() no-repeat center / cover;
	background-color: var(--t_c_thin);
}
.rv_status_wrap .time_list .item .right .person_info .user.man .mem_img {
	border: 4px solid var(--p_c_blue);
}
.rv_status_wrap .time_list .item .right .person_info .user.woman .mem_img {
	border: 4px solid var(--p_c_red);
}
.rv_status_wrap .time_list .item .right .person_info .user.man .mem_img:before,
.rv_status_wrap .time_list .item .right .person_info .user.woman .mem_img:before {
	content: "";
}
.rv_status_wrap .time_list .item .right > a {
	width: 190px;
	padding: 0px;
	align-self: flex-end;
}
.rv_status_wrap .time_list .res_cfm {
	display: flex;
	flex-direction: column;
	padding-bottom: 40px;
}
.rv_status_wrap .time_list .res_cfm .item {
	border: 2px solid var(--p_c_red);
}
.rv_status_wrap .time_list .res_cfm .item:not(:last-child) {
	margin-bottom: 20px;
}
.rv_status_wrap .time_list .res_cfm .item .sub_title h3 {
	color: var(--p_c_red_dk);
}
.rv_status_wrap .time_list .res_cfm .item .price_btn {
	background-color: var(--p_c_red);
}
.rv_status_wrap .time_list .res_cfm .item .price_btn:hover {
	background-color: var(--p_c_red_dk);
}
.rv_status_wrap .time_list .res_cfm .item:hover {
	border-color: var(--p_c_red_dk);
}
/*
.rv_status_wrap .time_list .res_wait .sub_title {
	padding-left: 20px;
	padding-right: 20px;
}
	*/
.rv_status_wrap .time_list .res_wait .item:hover {
	border: 1px solid var(--t_c_medium);
}
.rv_status_wrap .time_list .res_wait .item:not(:last-child) {
	margin-bottom: 20px;
}

/* 매니저 예약 */
.mg_booking_wrap .con {
	padding-top: 0;
}
.mgBookingWrapPop .pop_con {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.mg_status_wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
}
.mg_status_wrap .choice_info_wrap .time_select_img {
	height: 236px;
}
.mg_status_wrap .choice_info_wrap .golf_cc_info {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.mg_status_wrap .mg_list {
	flex: 1 1 auto;
	width: 990px;
}
.mg_status_wrap .mg_list .mem_join_choice {
	position: relative;
	z-index: 10;
	/* height: 292px; */
	transition: all 0.2s ease;
	will-change: height, opacity;
}
.mg_status_wrap .mg_list .mem_join_choice.active {
	height: 0;
	padding-top: 0;
	padding-bottom: 0;
	opacity: 0;
	transition: all 0.1s ease;
	pointer-events: none;
}
.mg_status_wrap .mg_list .mem_join_choice.active ~ .sub_filter_wrap {
	height: 54px;
}
.mg_status_wrap .mg_list .mem_join_wait_wrap:has(.swiper) {
	margin-bottom: 15px;
	padding: 20px;
	border: 1px solid var(--t_c_light);
	border-radius: 8px;
}
.mg_status_wrap .mg_list .area_filter_wrap {
	position: sticky;
	top: 100px;
	z-index: 1;
	width: 100%;
	background-color: white;
}
.mg_status_wrap .mg_list .area_filter_wrap:before {
	content: "";
	display: block;
	width: 100%;
	height: 40px;
	background-color: white;
}
.mg_status_wrap .mg_list .area_filter_wrap .choice {
	background-color: var(--t_c_section);
	border-radius: 8px;
	padding: 20px;
}
.mg_status_wrap .mg_list .area_filter_wrap .area {
	position: relative;
	display: flex;
	align-items: center;
	padding-bottom: 15px;
	border-bottom: 1px solid var(--t_c_lighter);
}
.mg_status_wrap .mg_list .area_filter_wrap .area > a {
	color: var(--t_c_normal);
}
.mg_status_wrap .mg_list .area_filter_wrap .area > a:hover {
	background-color: var(--t_c_thin);
}
.mg_status_wrap .mg_list .area_filter_wrap .area > a.active {
	background-color: var(--t_c_normal);
	color: white;
}
.mg_status_wrap .mg_list .area_filter_wrap .area .search {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	align-items: center;
	gap: 8px;
	width: 370px;
	z-index: 10;
}
.mg_status_wrap .mg_list .area_filter_wrap .area .search input {
	flex: 1 1 auto;
	padding-left: 42px;
	background: url("../img/search_icon.svg") no-repeat 15px center;
	background-color: white;
	background-size: 16px;
	height: 40px;
	font-size: 16px;
}
.mg_status_wrap .mg_list .area_filter_wrap .area .search .pop_box {
	display: none;
	flex-direction: column;
	gap: 15px;
	position: absolute;
	top: 50px;
	right: 0;
	width: 490px;
	padding: 20px;
	background-color: white;
	box-shadow: 0px 0px 12px rgba(55, 72, 86, 0.2);
	border-radius: 8px;
	border: 1px solid var(--t_c_lighter);
	margin-top: 5px;
	z-index: 1;
}
.mg_status_wrap .mg_list .area_filter_wrap .area .search .pop_box.on {
	display: flex;
}
.mg_status_wrap .mg_list .area_filter_wrap .area .search .pop_box .item {
	display: flex;
	gap: 15px;
	border-top: 1px solid var(--t_c_lighter);
}
.mg_status_wrap .mg_list .area_filter_wrap .area .search .sh_tab_menu ul li a {
	display: flex;
	align-items: center;
	font-size: 15px;
	height: 44px;
	padding: 0px 20px;
	background-color: var(--t_c_table);
	color: var(--t_c_medium);
}
.mg_status_wrap .mg_list .area_filter_wrap .area .search .sh_tab_menu ul li.on a {
	color: var(--t_c_normal);
	font-weight: 500;
	background-color: white;
}
.mg_status_wrap .mg_list .area_filter_wrap .area .search .sh_tab_con {
	display: none;
	flex-grow: 1;
}
.mg_status_wrap .mg_list .area_filter_wrap .area .search .sh_tab_con.on {
	display: block;
}
.mg_status_wrap .mg_list .area_filter_wrap .area .search .sh_tab_con ul {
	height: 396px;
	overflow-y: auto;
}
.mg_status_wrap .mg_list .area_filter_wrap .area .search .sh_tab_con ul li a {
	display: flex;
	align-items: center;
	font-size: 15px;
	height: 44px;
	padding: 0px 30px;
	border-bottom: 1px solid var(--t_c_lighter);
	gap: 40px;
}
.mg_status_wrap .mg_list .area_filter_wrap .area .search .sh_tab_con ul li a span {
	position: relative;
}
.mg_status_wrap .mg_list .area_filter_wrap .area .search .sh_tab_con ul li a span:first-child {
	width: 68px;
}
.mg_status_wrap .mg_list .area_filter_wrap .area .search .sh_tab_con ul li a span:not(:last-child):after {
	content: "|";
	position: absolute;
	right: -22px;
}

.mg_status_wrap .mg_list .area_filter_wrap .choice .day {
	padding-top: 15px;
}
.mg_status_wrap .mg_list .area_filter_wrap .choice .day ul {
	display: flex;
	flex-direction: column;
	gap: 4px;
	justify-content: center;
	align-items: center;
	width: 100%;
	color: var(--t_c_light);
	font-weight: 800;
	padding: 6px;
	border-radius: 8px;
	transition: all 0.3s;
}
.mg_status_wrap .mg_list .area_filter_wrap .choice .day ul.sun {
	color: var(--p_c_red);
}
.mg_status_wrap .mg_list .area_filter_wrap .choice .day ul li:last-child {
	font-weight: 700;
}
.mg_status_wrap .mg_list .area_filter_wrap .choice .day a:hover ul {
	background-color: var(--t_c_thin);
}
.mg_status_wrap .mg_list .area_filter_wrap .choice .day a.active ul {
	background-color: var(--m_c_main);
}
.mg_status_wrap .mg_list .area_filter_wrap .choice .day a.active ul {
	color: white;
}
.mg_status_wrap .mg_list .area_filter_wrap .sub_filter_wrap {
	margin-top: 0;
	position: relative;
	top: initial;
	height: 80px;
}
.mg_status_wrap .mg_list .be_not_list {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 200px;
}
.mg_status_wrap .mg_list .golf_cc_list {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}
.mg_status_wrap .mg_list .golf_cc_list .item {
	display: flex;
	flex-direction: column;
	gap: 22px;
	padding: 20px;
	border: 1px solid var(--t_c_lighter);
	border-radius: 8px;
	width: 100%;
	cursor: pointer;
	transition: all 0.3s;
}
.mg_status_wrap .mg_list .golf_cc_list .item:hover {
	border: 1px solid var(--t_c_light);
}
.mg_status_wrap .mg_list .golf_cc_list .item.active {
	border: 1px solid var(--t_c_medium);
}
.mg_status_wrap .mg_list .golf_cc_list .title {
	display: grid;
	grid-template-columns: 1fr auto 200px 90px 195px;
	align-items: center;
	height: 22px;
}
.mg_status_wrap .mg_list .golf_cc_list .title > p {
	text-align: right;
}
.mg_status_wrap .mg_list .golf_cc_list .title .price {
	color: var(--m_c_darker);
	text-align: right;
}
.mg_status_wrap .mg_list .golf_cc_list .item .list {
	display: none;
}
.mg_status_wrap .mg_list .golf_cc_list .item .list table td {
	font-size: 15px;
	text-align: left;
	white-space: nowrap;
	cursor: pointer;
	transition: all 0.3s;
	padding: 12px;
}
.mg_status_wrap .mg_list .golf_cc_list .item .list table td:first-child {
	padding-left: 20px;
	width: 10px;
}
.mg_status_wrap .mg_list .golf_cc_list .item .list table td:last-child {
	padding-right: 20px;
}
.mg_status_wrap .mg_list .golf_cc_list .item .list table th {
	text-align: left;
	padding: 12px;
}
.mg_status_wrap .mg_list .golf_cc_list .item .list table th:first-child {
	padding-left: 20px;
}
.mg_status_wrap .mg_list .golf_cc_list .item .list table th:last-child {
	padding-right: 20px;
}
.mg_status_wrap .mg_list .golf_cc_list .item .list table tbody tr:hover {
	background-color: rgb(191 222 199 / 17%);
}
.mg_status_wrap .mg_list .golf_cc_list .item .list table .etc {
	white-space: wrap;
	width: 35%;
	width: 190px;
}
.mg_status_wrap .mg_list .golf_cc_list .item .list table .etc span:not(:last-child):after {
	content: "/";
	margin-left: 5px;
	margin-right: 2px;
}
.mg_status_wrap .mg_list .golf_cc_list .item .list table .manager ul {
	display: flex;
	align-items: center;
	gap: 8px;
}
.mg_status_wrap .mg_list .golf_cc_list .item .list table .manager .mark {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 6px;
	height: 16px;
	background-color: var(--m_c_main);
	font-size: 10px;
	color: white;
	font-weight: 700;
	border-radius: 3px;
}
.mg_status_wrap .mg_list .golf_cc_list .item .list table .manager .update {
	font-size: 12px;
}
.mg_status_wrap .mg_list .golf_cc_list .item .list table .user {
	width: 180px;
}
.mg_status_wrap .mg_list .golf_cc_list .item .list table .price {
	font-weight: 800;
	color: var(--m_c_darker);
	font-size: 16px;
	width: 205px;
}
.mg_status_wrap .mg_list .golf_cc_list .item .list table td:has(.res_confirm) {
	width: 10px;
}
.mg_status_wrap .mg_list .golf_cc_list .item .list table td .res_confirm {
	display: flex;
}
.mg_status_wrap .mg_list .golf_cc_list .item .list table td .res_confirm p {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 12px;
	height: 30px;
	border-radius: 6px;
	color: white;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s;
	background-color: var(--p_c_red_dk);
}
.mg_status_wrap .mg_list .golf_cc_list .item .list table tr:has(.res_confirm) {
	background-color: rgb(191 222 199 / 35%) !important;
}
.mg_status_wrap .mg_list .golf_cc_list .item .list table td.user .img {
	position: relative;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 0px solid var(--t_c_normal);
	background: url("") no-repeat center / cover;
}
.mg_status_wrap .mg_list .golf_cc_list .item .list table td.user .img .memBadgeRdMd {
	position: absolute;
	bottom: -3px;
	right: -5px;
}
.mg_status_wrap .mg_list .golf_cc_list .item .list table td.user > div {
	display: flex;
	align-items: center;
	gap: 8px;
}
.mg_status_wrap .mg_list .golf_cc_list .item .list table td.user .woman .img {
	border-width: 2px;
	border-color: var(--p_c_pink);
}
.mg_status_wrap .mg_list .golf_cc_list .item .list table td.user .man .img {
	border-width: 2px;
	border-color: var(--p_c_blue);
}
.mg_status_wrap .mg_list .golf_cc_list .item .list table td.user ul .update {
	font-size: 12px;
}
.mg_status_wrap .mg_list .golf_cc_list .item .list table td.division .mem_view {
	display: inline-flex;
	gap: 6px;
}
.mg_status_wrap .mg_list .golf_cc_list .item .list table td.division .mem_view p {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 24px;
	padding: 0px 10px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 700;
	color: white;
	width: fit-content;
}
.mg_status_wrap .mg_list .golf_cc_list .item .list table td.division .mem_view p.with_people {
	background-color: var(--m_c_dark);
}
.mg_status_wrap .mg_list .golf_cc_list .item .list table td.division .mem_view p.wiat_member {
	background-color: var(--p_c_blue);
}

/* gps 셋팅 팝업 */
.gps_popup_wrap .pop_con {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.gps_popup_wrap .layer_popup .popup_btn {
	justify-content: space-between;
}

/* 골프장정보 팝업 */
.golf_info_popup_wrap .layer_popup {
	justify-content: flex-start;
}
.golf_info_popup_wrap .pop_con {
	display: flex;
	flex-direction: column;
	gap: 30px;
	border-top: none !important;
	padding-top: 0px !important;
	margin-top: 20px !important;
}
.golf_info_popup_wrap .golf_image_view {
	flex: 0 0 auto;
	width: 100%;
}
.golf_info_popup_wrap .golf_image_view .swiper-wrapper {
	display: grid;
	grid-template-columns: 420px 250px;
	grid-template-rows: 160px 160px;
	gap: 10px;
}
.golf_info_popup_wrap .golf_image_view .swiper-wrapper .swiper-slide {
	width: initial !important;
}
.golf_info_popup_wrap .golf_image_view .swiper-wrapper .swiper-slide:first-child {
	grid-row: 1 / span 2;
	border-radius: 12px 0px 0px 0px;
}
.golf_info_popup_wrap .golf_image_view .img {
	width: 100%;
	height: 100%;
	background: url() no-repeat center / cover;
	overflow: hidden;
}
.golf_info_popup_wrap .golf_image_view .swiper-slide:nth-child(1) .img {
	border-radius: 12px 0px 0px 0px;
}
.golf_info_popup_wrap .golf_image_view .swiper-slide:nth-child(2) .img {
	border-radius: 0px 12px 0px 0px;
}
.golf_info_popup_wrap #bc_tab_menu {
	position: sticky;
	top: 0px;
	z-index: 1;
	height: 54px;
	border-top: 1px solid var(--t_c_lighter);
	border-bottom: 1px solid var(--t_c_lighter);
	display: flex;
	align-items: center;
	background-color: white;
}
.golf_info_popup_wrap #bc_tab_menu h3 {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
.golf_info_popup_wrap #bc_tab_menu ul,
.golf_info_popup_wrap #bc_tab_menu li {
	height: 100%;
}
.golf_info_popup_wrap #bc_tab_menu li a {
	position: relative;
	display: flex;
	align-items: center;
	height: 100%;
}
.golf_info_popup_wrap #bc_tab_menu li a:after {
	content: "";
	display: flex;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	width: 0%;
	opacity: 0;
	border: 2px solid var(--m_c_main);
	transition: all 0.3s;
}
.golf_info_popup_wrap #bc_tab_menu li.on a {
	color: var(--m_c_main);
}
.golf_info_popup_wrap #bc_tab_menu li.on a:after {
	width: 100%;
	opacity: 1;
}
.golf_info_popup_wrap .basic_tab_menu {
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.golf_info_popup_wrap .basic_tab_menu .item .sub_title {
	color: var(--m_c_darker);
}
.golf_info_popup_wrap .basic_tab_menu .row {
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.golf_info_popup_wrap .basic_tab_menu .row .item {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.golf_info_popup_wrap .basic_tab_menu .row .item:not(:first-child) {
	padding-top: 30px;
	border-top: 1px solid var(--t_c_lighter);
}
.golf_info_popup_wrap .basic_tab_menu .row .item .info {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.golf_info_popup_wrap .basic_tab_menu .row .item .info ul {
	display: flex;
	align-items: center;
	font-weight: 700;
}
.golf_info_popup_wrap .basic_tab_menu .row .item .info ul li:first-child {
	width: 90px;
	font-weight: 400;
	color: var(--t_c_medium);
}
.golf_info_popup_wrap .bc_tab_con table thead th:first-child {
	width: 30%;
}
.golf_info_popup_wrap .bc_tab_con table tbody td:first-child {
	font-weight: 500;
	color: var(--t_c_darker);
}
.golf_info_popup_wrap .bc_tab_con strong {
	font-weight: 800;
	color: var(--p_c_red);
}
.golf_info_popup_wrap .bc_tab_con .penalty {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.golf_info_popup_wrap .bc_tab_con .penalty ul {
	padding-left: 22px;
}
.golf_info_popup_wrap .bc_tab_con .penalty ul li {
	list-style: circle;
	line-height: 1.4;
}
.golf_info_popup_wrap .bc_tab_con .accentuate {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}
.golf_info_popup_wrap .bc_tab_con .accentuate mark {
	background-color: var(--m_c_lighter);
	color: var(--t_c_darker);
	font-weight: 700;
}

/* 인근 골프장 팝업 */
.nearby_cc_popup_wrap .pop_con {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}
.nearby_cc_popup_wrap .pop_con:has(.item:only-child) {
	grid-template-columns: 1fr;
}
.nearby_cc_popup_wrap .pop_con .item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 0px 15px;
	height: 50px;
	border-radius: 8px;
	border: 1px solid var(--t_c_lighter);
	transition: all 0.3s;
}
.nearby_cc_popup_wrap .pop_con .item .golf_info {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-weight: 700;
}
.nearby_cc_popup_wrap .pop_con .item span {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 24px;
	border-radius: 6px;
	width: 52px;
	background-color: var(--t_c_normal);
	color: white;
	font-weight: 700;
	font-size: 14px;
}
.nearby_cc_popup_wrap .pop_con .item p {
	font-size: 12px;
}
.nearby_cc_popup_wrap .pop_con .item:hover {
	background-color: var(--t_c_table);
}

/* 기타비용 팝업 */
.other_price_popup_wrap .pop_con {
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.other_price_popup_wrap .item {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.other_price_popup_wrap .item:not(:first-child) {
	padding-top: 30px;
	border-top: 1px solid var(--t_c_lighter);
}
.other_price_popup_wrap .item .sub_title {
	color: var(--m_c_darker);
}
.other_price_popup_wrap .item .info {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.other_price_popup_wrap .item .info ul {
	display: flex;
	align-items: center;
	font-weight: 700;
}
.other_price_popup_wrap .item .info ul li:first-child {
	min-width: 120px;
	font-weight: 400;
	color: var(--t_c_medium);
}
.other_price_popup_wrap .item .penalty {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.other_price_popup_wrap .item .penalty p {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--p_c_red_dk);
	color: white;
	width: 100%;
	height: 40px;
	border-radius: 6px;
	font-weight: 800;
}
.other_price_popup_wrap .item .penalty ul {
	padding-left: 22px;
}
.other_price_popup_wrap .item .penalty ul li {
	list-style: circle;
	line-height: 1.4;
}
.other_price_popup_wrap .item .penalty span {
	font-size: 12px;
	color: var(--m_c_dark);
}

/* 마이페이지 - 내프로필 */
.mypage_wrap {
	min-height: 900px;
}
.mypage_wrap .con {
	display: flex;
	column-gap: 50px;
	padding-top: 0;
	flex-wrap: wrap;
}
.mypage_wrap .mypage_entire {
	position: relative;
	width: 100%;
	z-index: 1;
}
.mypage_wrap .mypage_entire > .box {
	background-color: white;
}
.mypage_wrap .mypage_entire > .box > .img {
	width: 100%;
	height: 250px;
	border-radius: 20px;
	overflow: hidden;
	background: url() no-repeat center / cover;
}
.mypage_wrap .mypage_entire .row {
	padding-left: 470px;
	display: flex;
	width: 1400px;
}
.mypage_wrap .mypage_entire .my_pr_wrap {
	position: absolute;
	top: 158px;
	left: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	width: 420px;
	z-index: 1;
}
.mypage_wrap .mypage_entire .my_pr_wrap .txtLineBadgeMd {
	position: absolute;
	top: 110px;
	left: 0;
	z-index: 100;
}
.mypage_wrap .mypage_entire .mem_profile {
	position: relative;
}
.mypage_wrap .mypage_entire .mem_profile .img {
	width: 160px;
	height: 160px;
	border-radius: 50%;
	border: 10px solid white;
	background: url() no-repeat center / cover;
}
.mypage_wrap .mypage_entire .mem_profile .badge {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--p_c_red);
	color: white;
	font-weight: 800;
}
.mypage_wrap .mypage_entire .mem_profile .ranking {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: url() no-repeat center / cover;
}
.mypage_wrap .mypage_entire .mem_profile .ranking.dealer {
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: none !important;
	background-color: var(--m_c_dark);
}
.mypage_wrap .mypage_entire .mem_profile .ranking.dealer::before {
	content: "딜러";
	display: flex;
	color: white;
	font-size: 16px;
	font-weight: 800;
}
.mypage_wrap .mypage_entire .my_pr_wrap .info {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	width: 100%;
}
.mypage_wrap .mypage_entire .nickname {
	display: flex;
	align-items: center;
	gap: 12px;
}
.mypage_wrap .mypage_entire .nickname .public:after {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	width: 50px;
	height: 20px;
	font-size: 10px;
	font-weight: 700;
	color: white;
}
.mypage_wrap .mypage_entire .nickname .public.all:after {
	content: "모두공개";
	background-color: var(--m_c_main);
}
.mypage_wrap .mypage_entire .nickname .public.friend:after {
	content: "친구만공개";
	color: white;
	background-color: var(--p_c_yellow);
}
.mypage_wrap .mypage_entire .nickname .public.private:after {
	content: "비공개";
	background-color: var(--t_c_normal);
}
.mypage_wrap .mypage_entire .info .hierarchy {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}
.mypage_wrap .mypage_entire .info .hierarchy ul,
.mypage_wrap .mypage_entire .info .hierarchy ul li {
	display: flex;
	align-items: center;
	font-size: 15px;
}
.mypage_wrap .mypage_entire .info .hierarchy ul li a {
	font-weight: 700;
}
.mypage_wrap .mypage_entire .info .hierarchy ul li span:before {
	content: "/";
	display: inline-flex;
	margin-left: 5px;
	margin-right: 3px;
}
.mypage_wrap .mypage_entire .info .hierarchy ul:nth-child(2) {
	gap: 10px;
}
.mypage_wrap .mypage_entire .info .hierarchy ul:nth-child(2) li a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 21px;
	width: 50px;
	border-radius: 4px;
	color: white;
	font-size: 11px;
	margin-bottom: 4px;
}
.mypage_wrap .mypage_entire .info .my_detail {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-columns: repeat(auto-fill, minmax(20%, auto));
	row-gap: 10px;
	column-gap: 15px;
	width: 100%;
	border: 1px solid var(--t_c_lighter);
	border-radius: 8px;
	padding: 11px 15px;
}
.mypage_wrap .mypage_entire .info .my_detail ul {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
}
.mypage_wrap .mypage_entire .info .my_detail ul li:last-child {
	font-weight: 700;
}
.mypage_wrap .mypage_entire .info .my_detail ul.area,
.mypage_wrap .mypage_entire .info .my_detail ul.rounding,
.mypage_wrap .mypage_entire .info .my_detail ul.overseas {
	grid-column: auto / span 2;
}
.mypage_wrap .mypage_entire .info .my_detail ul.frequent {
	grid-column: auto / span 3;
}
.mypage_wrap .mypage_entire .info .my_detail ul.rounding li:nth-child(1),
.mypage_wrap .mypage_entire .info .my_detail ul.frequent li:nth-child(1) {
	width: 90px;
}
.mypage_wrap .mypage_entire .info .my_detail ul.hash_tag {
	grid-column: auto / span 4;
	display: none;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
}
.mypage_wrap .mypage_entire .info .my_detail ul.hash_tag:has(li) {
	display: flex;
}
.mypage_wrap .mypage_entire .info .my_detail ul.hash_tag span {
	display: flex;
	align-items: center;
	height: 20px;
	border: 1px solid var(--t_c_light);
	border-radius: 4px;
	background-color: var(--t_c_table);
	white-space: nowrap;
	font-size: 10px;
	font-weight: 600;
	padding: 0 8px;
}
.mypage_wrap .mypage_entire .visitor {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
}
.mypage_wrap .mypage_entire .visitor ul {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	flex: 1 1 30%;
}
.mypage_wrap .mypage_entire .visitor ul img {
	height: 24px;
	display: block;
}
.mypage_wrap .mypage_entire .visitor ul li:nth-child(2) {
	font-size: 20px;
	font-weight: 900;
}
.mypage_wrap .mypage_entire .visitor ul li:nth-child(3) {
	font-size: 14px;
}
.mypage_wrap .mypage_entire .my_comment {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 100%;
	line-height: 1.7;
	border-top: 1px solid var(--t_c_lighter);
	padding-top: 20px;
	font-size: 15px;
}
.mypage_wrap .mypage_entire .blog_link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 0px 15px;
	height: 44px;
	border-radius: 8px;
	background-color: var(--t_c_normal);
	color: white;
	-ms-user-select: none;
	-moz-user-select: -moz-none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	user-select: none;
}
.mypage_wrap .mypage_entire .blog_link .blog_url {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-weight: 800;
}
.mypage_wrap .mypage_entire .blog_link .blog_url:before {
	content: "";
	width: 20px;
	height: 20px;
	background: url("../img/link_icon.svg") no-repeat center;
	display: inline-flex;
}
.mypage_wrap .mypage_entire .blog_link a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 14px;
}
.mypage_wrap .mypage_entire .blog_link a:after {
	content: "";
	width: 19px;
	height: 20px;
	background: url("../img/link_share_icon.svg") no-repeat center;
	display: inline-flex;
}
.mypage_wrap .mypage_entire .sns {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
}
.mypage_wrap .mypage_entire .sns a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: url() no-repeat center / cover;
}
.mypage_wrap .mypage_entire .sns .insta {
	background-image: url("../img/sns_icon_insta.svg");
}
.mypage_wrap .mypage_entire .sns .kakao {
	background-image: url("../img/sns_icon_kakao.svg");
}
.mypage_wrap .mypage_entire .sns .twitt {
	background-image: url("../img/sns_icon_twitt.svg");
}
.mypage_wrap .mypage_entire .sns .facebook {
	background-image: url("../img/sns_icon_facebook.svg");
}
.mypage_wrap .mypage_entire .sns .telegram {
	background-image: url("../img/sns_icon_telegram.svg");
}
.mypage_wrap .mypage_entire .my_sub_gnb {
	flex: 1 1 auto;
}
.mypage_wrap .mypage_entire .my_sub_gnb nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 50px;
	background-color: white;
	padding-top: 30px;
	padding-bottom: 30px;
}
.mypage_wrap .mypage_entire .my_sub_gnb nav ul {
	display: flex;
	align-items: center;
	gap: 50px;
}
.mypage_wrap .mypage_entire .my_sub_gnb nav ul a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 700;
	color: var(--t_c_medium);
	height: 40px;
}
.mypage_wrap .mypage_entire .my_sub_gnb nav ul a:after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0px;
	transform: translateX(-50%);
	width: 0%;
	border: 2px solid var(--m_c_main);
	opacity: 0;
	transition: all 0.3s;
}
.mypage_wrap .mypage_entire .my_sub_gnb nav ul a:hover {
	color: var(--m_c_main);
}
.mypage_wrap .mypage_entire .my_sub_gnb nav ul a.on {
	color: var(--m_c_main);
}
.mypage_wrap .mypage_entire .my_sub_gnb nav ul a.on:after,
.mypage_wrap .mypage_entire .my_sub_gnb nav ul a:hover:after {
	width: 100%;
	opacity: 1;
}
.mypage_wrap .mypage_entire .my_sub_gnb nav ul li a {
	display: flex;
	align-items: center;
	gap: 8px;
}
.mypage_wrap .mypage_entire .my_sub_gnb nav ul li .badge {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 18px;
	border-radius: 4px;
	padding: 0px 4px;
	background-color: var(--p_c_red);
	font-size: 10px;
	color: white;
}
.mypage_wrap .mypage_entire .my_sub_gnb nav .follow:before {
	content: "+ 팔로우 하기";
}
.mypage_wrap .mypage_entire .my_sub_gnb nav .follow.on {
	background-color: var(--m_c_main);
}
.mypage_wrap .mypage_entire .my_sub_gnb nav .follow.on:hover {
	background-color: var(--m_c_dark);
}
.mypage_wrap .mypage_entire .my_sub_gnb nav .follow.on:before {
	content: "+ 팔로우 삭제";
}
.mypage_wrap .mypage_entire .my_sub_gnb .sub_filter_wrap {
	position: relative;
	top: initial;
	margin-top: 0;
	height: 60px;
}
.mypage_wrap .mypage_row {
	flex: 1 1 auto;
}
.rquest_data_popup_wrap .pop_con {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.rquest_data_popup_wrap .txt {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding-right: 40px;
}
.rquest_data_popup_wrap .txt strong {
	font-weight: 800;
}
.rquest_data_popup_wrap .int {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.rquest_data_popup_wrap .int textarea {
	height: 212px;
}
.my_profile_wrap .insta_img_wrap {
	display: grid;
	/* grid-template-columns: repeat(auto-fill, minmax(30%, auto)); */
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.my_profile_wrap .insta_img_wrap .item .img {
	background: url() no-repeat center / cover;
	height: 350px;
	border-radius: 12px;
}

/* 예약현황 */
.my_reservation_wrap .recently_view {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.my_reservation_wrap .recently_view .box {
	position: relative;
	display: flex;
	flex-direction: column;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--t_c_lighter);
	background-color: white;
	transition: all 0.3s;
}
.my_reservation_wrap .recently_view .box:hover {
	border-color: var(--m_c_dark);
	box-shadow: 0px 0px 20px rgba(0, 120, 103, 0.2);
}
.my_reservation_wrap .recently_view .box .badge:after {
	position: absolute;
	top: 20px;
	left: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 24px;
	padding: 0px 10px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 700;
	color: white;
	z-index: 0;
}
.my_reservation_wrap .recently_view .box .badge.real:after {
	content: "실시간";
	background-color: var(--p_c_red);
}
.my_reservation_wrap .recently_view .box .badge.wait:after {
	content: "대기";
	background-color: var(--m_c_main);
}
.my_reservation_wrap .recently_view .box .badge.advance:after {
	content: "선태";
	background-color: var(--p_c_blue);
}
.my_reservation_wrap .recently_view .box .img {
	background: url() no-repeat center / cover;
	width: 100%;
	height: 140px;
}
.my_reservation_wrap .recently_view .box .item {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 20px;
}
.my_reservation_wrap .recently_view .box .item ul {
	display: flex;
	flex-direction: column;
	gap: 3px;
	font-size: 15px;
}
.my_reservation_wrap .recently_view .box .item ul li:last-child {
	height: 38px;
}
.my_reservation_wrap .recently_view .box .item .btn {
	display: flex;
	align-items: center;
	gap: 6px;
}
.my_reservation_wrap .recently_view .box .item .btn a {
	flex: 1 1 40%;
}
.my_reservation_wrap .recently_view .box.soldout:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(15, 28, 35, 0.5);
	z-index: 1;
}
.my_reservation_wrap .recently_view .box.soldout:after {
	content: "마감 되었습니다.";
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	width: 100%;
	height: 52%;
	color: white;
	font-weight: 800;
	z-index: 1;
}
.my_reservation_wrap .recently_view .box.soldout .item .btn {
	z-index: 1;
}
.my_reservation_wrap .recently_view .box.soldout .item .btn a.chat {
	display: none;
}

/* 나의친구 */
.my_friend_wrap .friend_list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
}
.my_friend_wrap .friend_list .item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px;
	border: 1px solid var(--t_c_lighter);
	border-radius: 8px;
}
.my_friend_wrap .friend_list .item.on {
	border-color: var(--m_c_main);
}
.my_friend_wrap .friend_list .item .checkBtnOnly {
	position: absolute;
	top: -1px;
	right: 22px;
}
.allDelBtnWrap {
	display: flex;
	align-items: center;
	gap: 8px;
}
.allDelBtnWrap a:last-child {
	display: none;
}
.allDelBtnWrap.on a:last-child {
	display: inline-flex;
}
.my_friend_wrap .friend_list .item .gr_mem_profile_wrap .detail {
	padding: 10px 12px;
	border-radius: 6px;
	background-color: var(--t_c_table);
	font-size: 14px;
	margin-top: 10px;
}
.my_friend_wrap .friend_list .item .left {
	display: flex;
	align-items: center;
	gap: 10px;
}
.my_friend_wrap .friend_list .item .left .img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: url() no-repeat center / cover;
	border: 1px solid var(--t_c_thin);
}
.my_friend_wrap .friend_list .item .left ul li {
	font-size: 12px;
}
.my_friend_wrap .friend_list .item .left .name {
	font-size: 16px;
	display: flex;
	align-items: center;
	font-weight: 700;
	gap: 8px;
	padding-bottom: 4px;
}
.my_friend_wrap .friend_list .item .left .name a {
	font-size: 12px;
	font-weight: 400;
	color: var(--m_c_main);
}
.my_friend_wrap .friend_list .item .btn {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.my_friend_wrap .friend_list .item .friend_choice {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
}
.my_friend_wrap .friend_list .item.regist .friend_choice:after {
	content: "+ 친구등록";
}
.my_friend_wrap .friend_list .item.friendly .friend_choice:after {
	content: "내친구";
}
.my_friend_wrap .friend_list .item.friendly .friend_choice:before {
	content: "";
	width: 14px;
	height: 10px;
	display: flex;
	background: url("../img/check_wt_icon.svg") no-repeat center;
}
.my_friend_wrap .friend_list .item.block .friend_choice:after {
	content: "X 차단";
}

/* 락채팅 */
.mypage_wrap.my_rock_chat_wrap .mypage_entire .row {
	padding-left: 0px;
}
.mypage_wrap.my_rock_chat_wrap .mypage_entire .my_sub_gnb {
	padding-left: 450px;
}
.my_rock_chat_wrap .chatting_box {
	position: relative;
	display: flex;
	gap: 30px;
	height: 560px;
}
.my_rock_chat_wrap .chatting_box .nav_skin_btn {
	position: absolute;
	top: 10px;
	left: -73px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	width: 74px;
}
.my_rock_chat_wrap .chatting_box .nav_skin_btn a {
	position: relative;
	width: 100%;
	font-size: 14px;
	height: 32px;
	border-radius: 6px 0px 0px 6px;
	color: var(--t_c_light);
	border: 1px solid var(--t_c_thin);
	border-right: 1px solid var(--t_c_thin);
}
.my_rock_chat_wrap .chatting_box .nav_skin_btn a:hover {
	color: var(--t_c_medium);
	background-color: var(--t_c_lighter);
}
.my_rock_chat_wrap .chatting_box .nav_skin_btn a.on {
	z-index: 5;
	border: 1px solid var(--t_c_lighter);
	border-right: 1px solid white;
	background-color: white;
	color: var(--t_c_normal);
	font-weight: 700;
}
.my_rock_chat_wrap .chatting_box .nav_skin_btn a.point:after {
	content: "";
	position: absolute;
	top: 8px;
	right: 8px;
	display: flex;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background-color: var(--p_c_red);
}
.my_rock_chat_wrap .chat_view {
	flex: 1 1 auto;
	display: flex;
	gap: 30px;
	overflow: hidden;
	background-color: white;
}
.my_rock_chat_wrap .chat_view .friend_list {
	flex: 0 0 auto;
	width: 420px;
	border: 1px solid var(--t_c_lighter);
	border-radius: 8px;
	z-index: 1;
}
.my_rock_chat_wrap .chat_view .friend_list .search {
	padding: 20px;
	border-bottom: 1px solid var(--t_c_lighter);
}
.my_rock_chat_wrap .chat_view .friend_list .search input {
	background: url(../img/search_icon.svg) no-repeat 15px center;
	background-size: 20px;
	padding-left: 44px;
}
.my_rock_chat_wrap .chat_view .friend_list .list {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	height: 560px;
	overflow: hidden;
	/* 스크롤 할때 다른 스크롤 안되게 방지 */
	scroll-behavior: smooth;
	overscroll-behavior: contain; /* 스크롤 체이닝 방지 */
}
.my_rock_chat_wrap .chat_view .friend_list .list .item {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px;
	height: 70px;
	cursor: pointer;
	border-bottom: 1px solid var(--t_c_thin);
	transition: all 0.3s;
}
.my_rock_chat_wrap .chat_view .friend_list .list .item:hover {
	background-color: var(--t_c_section);
}
.my_rock_chat_wrap .chat_view .friend_list .list .item.on {
	background-color: var(--m_c_lighter_03);
}
.my_rock_chat_wrap .chat_view .friend_list .list .item .mem_info {
	display: flex;
	align-items: center;
	gap: 10px;
}
.my_rock_chat_wrap .chat_view .friend_list .list .item .img {
	position: relative;
	flex: 0 0 auto;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 1px solid var(--t_c_lighter);
	background: url() no-repeat center / cover;
	cursor: pointer;
}
.my_rock_chat_wrap .chat_view .friend_list .list .item .mem_info.group {
	display: inline-block;
	position: relative;
}
.my_rock_chat_wrap .chat_view .friend_list .list .item .mem_info.group .img {
	display: inline-block;
	top: 50%;
	transform: translateY(-50%);
}
.my_rock_chat_wrap .chat_view .friend_list .list .item .nick_name {
	display: flex;
	align-items: flex-end;
	gap: 5px;
}
.my_rock_chat_wrap .chat_view .friend_list .list .item .nick_name {
	font-weight: 700;
}
.my_rock_chat_wrap .chat_view .friend_list .list .item .nick_name a {
	color: var(--m_c_main);
	font-size: 12px;
	margin-bottom: 2px;
}
.my_rock_chat_wrap .chat_view .friend_list .list .item .last_chat_txt {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	font-size: 12px;
	color: var(--t_c_medium);
}
.my_rock_chat_wrap .chat_view .friend_list .list .item .access {
	display: flex;
	gap: 5px;
}
.my_rock_chat_wrap .chat_view .friend_list .list .item .access .time {
	font-size: 12px;
	color: var(--t_c_medium);
}
.my_rock_chat_wrap .chat_view .friend_list .list .item .access .badge:after {
	content: "부재중";
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 14px;
	font-size: 9px;
	font-weight: 800;
	color: white;
	background-color: var(--t_c_normal);
	border-radius: 4px;
}
.my_rock_chat_wrap .chat_view .friend_list .list .item .access .badge.on:after {
	content: "접속중";
	background-color: var(--m_c_main);
}
.my_rock_chat_wrap .chat_view .friend_list .list .item .mem_info.group .img.on:after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -5px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: var(--m_c_main);
}
.my_rock_chat_wrap .chat_view .friend_list .gr_mem_profile_wrap {
	position: relative;
	flex-direction: row;
	gap: 20px;
	justify-content: space-between;
	padding-right: 48px;
}
.my_rock_chat_wrap .chat_view .friend_list .gr_mem_profile_wrap .mem_info {
	position: initial;
}
.my_rock_chat_wrap .chat_view .friend_list .gr_mem_profile_wrap .write_time {
	padding: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
	gap: 5px;
	white-space: nowrap;
}
.my_rock_chat_wrap .reserved_r {
	background-color: var(--p_c_pink);
}
.my_rock_chat_wrap .open_r {
	background-color: var(--p_c_yellow);
}
.my_rock_chat_wrap .waiting_r {
	background-color: var(--p_c_purple);
}
.my_rock_chat_wrap .connect_r {
	background-color: var(--m_c_main);
}
.my_rock_chat_wrap .absent_r {
	background-color: var(--t_c_normal);
}
.my_rock_chat_wrap .group_r {
	background-color: var(--p_c_blue);
}
.my_rock_chat_wrap .chat_view .friend_list .gr_mem_profile_wrap .more_btn_wrap {
	display: flex;
	align-items: center;
	top: 50%;
	transform: translateY(-50%);
	gap: 7px;
}
.my_rock_chat_wrap .chat_view .friend_list .gr_mem_profile_wrap .mem_info .txt p {
	align-items: center;
}
.my_rock_chat_wrap .gr_mem_profile_wrap .mem_info .txt strong {
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}
.my_rock_chat_wrap .chat_view .friend_list .gr_mem_profile_wrap .mem_info .txt strong span {
	color: var(--p_c_blue);
}
.my_rock_chat_wrap .gr_mem_profile_wrap .mem_info .user_count {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	font-weight: 900;
	min-width: 14px;
	height: 14px;
	border-radius: 3px;
	background-color: var(--t_c_thin);
	padding: 0 4px;
	padding-bottom: 1px;
}
.my_rock_chat_wrap .chat_view .friend_list .gr_mem_profile_wrap .mem_info .txt .user_spec {
	gap: 6px;
}
.my_rock_chat_wrap .chat_view .friend_list .gr_mem_profile_wrap .mem_info .txt .user_spec .chat_txt {
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}
.my_rock_chat_wrap .chat_view .friend_list .gr_mem_profile_wrap .mem_info .txt .user_spec .chat_txt:after {
	display: none;
}
.my_rock_chat_wrap .chat_view .friend_list .gr_mem_profile_wrap .mem_info .txt .user_spec .chat_count {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	font-weight: 900;
	min-width: 14px;
	height: 14px;
	border-radius: 7px;
	color: white;
	background-color: var(--p_c_red);
	padding: 0 4px;
	padding-bottom: 1px;
}
.my_rock_chat_wrap .chat_view .chat_window {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	border: 1px solid var(--t_c_lighter);
	border-radius: 8px;
}
.my_rock_chat_wrap .chat_window .add_list {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 15px;
	height: 70px;
	border-bottom: 1px solid var(--t_c_lighter);
	justify-content: flex-end;
}
.my_rock_chat_wrap .chat_window:has(.add_list > .gr_mem_profile_wrap) .add_list {
	justify-content: space-between;
}
.my_rock_chat_wrap .chat_window .add_list .mem_info {
	cursor: pointer;
}
.my_rock_chat_wrap .chat_window .friend_add .add_list > .gr_mem_profile_wrap {
	width: initial;
}
.my_rock_chat_wrap .chat_window .friend_add .add_list > .gr_mem_profile_wrap .txt {
	flex-direction: row;
	gap: 10px;
}
.my_rock_chat_wrap .chat_window .add_list .txt span {
	color: var(--p_c_blue);
}
.my_rock_chat_wrap .chat_window .add_list .my_badge {
	height: 16px;
	margin-top: 1px;
}
.my_rock_chat_wrap .chat_window .add_list .my_badge p {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 6px;
	border-radius: 3px;
	font-size: 9px;
	font-weight: 800;
	color: white;
	height: 16px;
	width: fit-content;
}
.my_rock_chat_wrap .chat_window .add_list .more_link_btn {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	gap: 15px;
}
.my_rock_chat_wrap .add_list .more_link_btn .link {
	position: absolute;
	right: 0;
	top: calc(100% + 5px);
	display: none;
	background: white;
	border: 1px solid var(--t_c_lighter);
	border-radius: 6px;
	padding: 8px 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	z-index: 10;
	cursor: default;
}
.my_rock_chat_wrap .add_list .more_link_btn .link.active {
	display: flex;
}
.my_rock_chat_wrap .add_list .more_link_btn > div .link > ul li {
	padding: 4px;
	font-size: 13px;
	font-weight: 500;
	white-space: nowrap;
}
.my_rock_chat_wrap .add_list .more_link_btn .room_info,
.my_rock_chat_wrap .add_list .more_link_btn .plus_btn {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
}
.my_rock_chat_wrap .add_list .more_link_btn .plus_btn .img {
	width: 26px;
	height: 26px;
	border: 1px solid var(--t_c_medium);
	border-radius: 50%;
}
.my_rock_chat_wrap .add_list .more_link_btn .plus_btn .img:after {
	content: "";
	display: inline-flex;
	width: 26px;
	height: 26px;
	-webkit-mask: url("../img/slim_close_icon.svg") no-repeat center / cover;
	mask: url("../img/slim_close_icon.svg") no-repeat center / cover;
	mask-size: 12px;
	background-color: var(--t_c_medium);
	transition: all 0.3s;
	transform: rotate(45deg);
	transform-origin: center;
}
.my_rock_chat_wrap .add_list .more_link_btn .plus_btn .img:hover:after {
	transform: rotate(225deg);
}
.my_rock_chat_wrap .add_list .more_link_btn .room_info .txt {
	font-size: 14px;
	font-weight: 500;
}
.my_rock_chat_wrap .add_list .more_link_btn .room_info .user_count {
	display: flex;
	align-items: center;
	gap: 3px;
	font-size: 13px;
	font-weight: 900;
	padding: 0 6px;
	height: 22px;
	border-radius: 4px;
	background-color: var(--t_c_thin);
	cursor: pointer;
}
.my_rock_chat_wrap .add_list .more_link_btn .room_info .user_count:before {
	content: "";
	display: inline-flex;
	width: 10px;
	height: 10px;
	-webkit-mask: url("../img/uset_fill_icon.svg") no-repeat center / cover;
	mask: url("../img/uset_fill_icon.svg") no-repeat center / cover;
	background-color: var(--t_c_normal);
}
.my_rock_chat_wrap .add_list .more_link_btn .room_info .link {
	padding: 12px;
	flex-direction: column;
}
.my_rock_chat_wrap .add_list .more_link_btn .room_info .link .gr_mem_profile_wrap:not(:last-child) {
	padding-bottom: 12px;
	margin-bottom: 12px;
	border-bottom: 1px solid var(--t_c_lighter);
}
.my_rock_chat_wrap .chat_view .chat_window .no_chat_speech {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 15px;
	padding: 20px;
	overflow: hidden;
	height: 100%;
}
.my_rock_chat_wrap .chat_view .chat_window .no_chat_speech img {
	width: 124px;
}
.my_rock_chat_wrap .chat_view .chat_window .chat_body {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	gap: 15px;
	padding: 20px;
	overflow: hidden;
	overflow-y: auto;
	/* 스크롤 할때 다른 스크롤 안되게 방지 */
	/* scroll-behavior: smooth; 스크롤 부드럽게를 css로 되는 코드 */
	overscroll-behavior: contain; /* 스크롤 체이닝 방지 - body 스크롤 막기 */
}
.my_rock_chat_wrap .chat_view .chat_window .chat_body .person_chat {
	display: flex;
	gap: 10px;
}
.my_rock_chat_wrap .chat_view .chat_window .chat_body .person_chat .mem_img {
	position: relative;
	flex: 0 0 auto;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 1px solid var(--t_c_lighter);
	background: url() no-repeat center / cover;
}
.my_rock_chat_wrap .chat_view .chat_window .chat_body .person_chat .mem_img .memBadgeRdMd {
	position: absolute;
	bottom: -3px;
	right: -5px;
}
.my_rock_chat_wrap .chat_view .chat_window .chat_body .speech {
	display: flex;
	flex-direction: column;
	gap: 7px;
}
.my_rock_chat_wrap .chat_view .chat_window .chat_body .speech .time {
	display: flex;
	align-items: flex-end;
	gap: 10px;
	padding-top: 4px;
	font-size: 12px;
	color: var(--t_c_medium);
}
.my_rock_chat_wrap .chat_view .chat_window .chat_body .speech .time .nick_name {
	font-size: 14px;
	font-weight: 700;
	color: var(--t_c_normal);
}
.my_rock_chat_wrap .chat_view .chat_window .chat_body .speech .balloon {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 10px 15px;
	background-color: var(--t_c_section);
	border-radius: 8px;
	max-width: 320px;
	word-break: normal;
	line-height: 1.3;
	font-size: 15px;
	width: fit-content;
}
.my_rock_chat_wrap .chat_view .chat_window .chat_body .speech:has(.importantNotice) .balloon {
	border: 1px solid var(--t_c_lighter);
}
.my_rock_chat_wrap .chat_view .chat_window .chat_body .speech .balloon:has(> .resInfoBoxWrap) {
	max-width: 260px;
}
.mypage_wrap.my_rock_chat_wrap .sub_filter_wrap .left .sub_nav {
	flex-direction: column;
	gap: 3.5px;
}
.mypage_wrap.my_rock_chat_wrap .sub_filter_wrap .left .sub_nav > a {
	min-width: 74px;
}

/* 1개일 때 */
.my_rock_chat_wrap .chat_view .chat_window .balloon .img_preview:has(.img_item:only-child) {
	width: 120px;
}

/* 2개 이상일 때 - 2열 그리드로 고정 */
.my_rock_chat_wrap .chat_view .chat_window .balloon .img_preview {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	width: 252px;
}

.my_rock_chat_wrap .chat_view .chat_window .balloon .img_preview .img_item {
	position: relative;
	width: 120px;
	overflow: hidden;
	border-radius: 8px;
}
.my_rock_chat_wrap .chat_view .chat_window .balloon .img_preview img {
	aspect-ratio: 1 / 1;
	width: 100%;
	display: block;
	object-fit: cover;
}
.my_rock_chat_wrap .chat_view .chat_window .balloon .img_preview .img_option {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	visibility: hidden;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background-color: rgba(15, 28, 35, 0.4);
	opacity: 0;
	transition: all 0.2s;
	display: flex;
}
.my_rock_chat_wrap .chat_view .chat_window .balloon .img_preview .img_item:hover .img_option {
	opacity: 1;
	visibility: visible;
}
.my_rock_chat_wrap .chat_view .chat_window .balloon .img_preview .img_option a {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 12px;
	height: 26px;
	border-radius: 6px;
	color: white;
	font-size: 12px;
	font-weight: 500;
	transition: all 0.3s;
	background-color: var(--p_c_yellow);
}
.my_rock_chat_wrap .chat_view .chat_window .balloon .img_preview .img_option a.save {
	background-color: var(--p_c_blue);
}
.my_rock_chat_wrap .chat_view .chat_window .chat_body .my_chat {
	display: flex;
	justify-content: flex-end;
}
.my_rock_chat_wrap .chat_view .chat_window .chat_body .my_chat .speech {
	align-items: flex-end;
}
.my_rock_chat_wrap .chat_view .chat_window .chat_body .my_chat .speech .balloon {
	background-color: rgb(200 250 214 / 60%);
}
.my_rock_chat_wrap .chat_view .chat_window .chat_body .giving_gift {
	display: flex;
	flex-direction: column;
	gap: 7px;
	align-items: flex-end;
}
.my_rock_chat_wrap .chat_view .chat_window .chat_body .giving_gift .speech {
	align-items: flex-end;
}
.my_rock_chat_wrap .chat_view .chat_window .chat_body .giving_gift .card {
	width: 188px;
	height: 290px;
	border-radius: 10px;
	background: url("../img/gift_card_img.png") no-repeat center / cover;
	color: white;
	font-size: 13px;
	padding: 20px;
}
.my_rock_chat_wrap .chat_view .chat_window .chat_body .giving_gift .card .point {
	font-size: 20px;
	font-weight: 800;
	text-align: right;
	padding-bottom: 15px;
}
.my_rock_chat_wrap .chat_view .chat_window .chat_body .giving_gift strong {
	font-weight: 800;
}
.my_rock_chat_wrap .chat_view .chat_window .chat_body .chat_mant_in {
	display: flex;
	align-items: center;
	justify-content: center;
}
.my_rock_chat_wrap .chat_view .chat_window .chat_body .chat_mant_in {
	display: inline-block;
	max-width: 60%;
	padding: 10px 15px;
	border-radius: 6px;
	background-color: var(--p_c_blue);
	font-size: 13px;
	text-align: center;
	word-break: keep-all;
	white-space: normal;
	margin: 0 auto;
}
.my_rock_chat_wrap .chat_view .chat_window .chat_body .chat_mant_in ul {
	display: inline;
	color: white;
	font-weight: 600;
}
.my_rock_chat_wrap .chat_view .chat_window .chat_body .chat_mant_in ul li {
	display: inline;
}
.my_rock_chat_wrap .chat_view .chat_window .chat_body .chat_mant_in ul li:after {
	content: "님과";
	margin-right: 2px;
}
.my_rock_chat_wrap .chat_view .chat_window .chat_body .chat_mant_in ul li:first-child:after {
	content: "님이";
}
.my_rock_chat_wrap .chat_view .chat_window .chat_body .chat_mant_in ul li:last-child:after {
	content: "님을";
}
.my_rock_chat_wrap .chat_view .chat_window .chat_body .chat_mant_in ul:after {
	content: "초대 했습니다.";
}
.my_rock_chat_wrap .chat_view .chat_window .chat_int {
	position: relative;
	border-top: 1px solid var(--t_c_thin);
}
.my_rock_chat_wrap .chat_view .chat_window .chat_int input {
	border-radius: initial;
	border: none;
	background: url("../img/chat_icon.svg") no-repeat 15px center / 18px;
	padding-left: 44px;
}
.my_rock_chat_wrap .chat_view .chat_window .chat_int textarea {
	display: flex;
	border-radius: initial;
	border: none;
	background: url("../img/chat_icon.svg") no-repeat 15px center / 18px;
	padding-left: 44px;
	padding-right: 170px;
	background-position-y: 2px;
	padding-top: 0px;
	padding-bottom: 0px;
	margin: 15px 0px;
}
.my_rock_chat_wrap .chat_view .chat_window .chat_int .btn_wrap {
	position: absolute;
	bottom: 10px;
	right: 20px;
	display: flex;
	align-items: center;
	gap: 12px;
}
.my_rock_chat_wrap .chat_view .chat_window .chat_int .btn_wrap a {
	width: 30px;
	height: 30px;
}
.my_rock_chat_wrap .chat_view .chat_window .chat_int .btn_wrap a:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-mask: url("") no-repeat 6px center;
	mask: url("") no-repeat 6px center;
	background-color: var(--t_c_medium);
	transition: all 0.3s;
}
.my_rock_chat_wrap .chat_view .chat_window .chat_int .btn_wrap a:hover:after {
	background-color: var(--t_c_dark);
}
.my_rock_chat_wrap .chat_view .chat_window .chat_int .btn_wrap .send {
	border-radius: 50%;
	background-color: var(--t_c_table);
	cursor: default;
}
.my_rock_chat_wrap .chat_view .chat_window .chat_int .btn_wrap .send:after {
	-webkit-mask-image: url("../img/msg_send_icon.svg");
	mask-image: url("../img/msg_send_icon.svg");
	background-color: var(--t_c_light);
}
.my_rock_chat_wrap .chat_view .chat_window .chat_int .btn_wrap .gift:after {
	-webkit-mask-image: url("../img/gift_icon.svg");
	mask-image: url("../img/gift_icon.svg");
}
.my_rock_chat_wrap .chat_view .chat_window .chat_int .btn_wrap .img_up:after {
	-webkit-mask-image: url("../img/image_icon.svg");
	mask-image: url("../img/image_icon.svg");
}
.my_rock_chat_wrap .chat_view .chat_window .chat_int .btn_wrap .total_more:after {
	-webkit-mask-image: url("../img/total_more_icon.svg");
	mask-image: url("../img/total_more_icon.svg");
}
.my_rock_chat_wrap .chat_view .chat_window .chat_int .btn_wrap .send.on {
	cursor: pointer;
	background-color: var(--m_c_main);
}
.my_rock_chat_wrap .chat_view .chat_window .chat_int .btn_wrap .send.on:after {
	background-color: white;
}
.my_rock_chat_wrap .membership_wrap {
	position: relative;
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	width: 269px;
	padding: 20px;
	border: 1px solid var(--t_c_lighter);
	border-radius: 12px;
	align-self: flex-start;
	padding-top: 30px;
}
.my_rock_chat_wrap .membership_wrap .my_badge {
	position: absolute;
	top: 15px;
	left: 20px;
}
.my_rock_chat_wrap .membership_wrap .my_badge p {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 12px;
	border-radius: 3px;
	font-size: 13px;
	font-weight: 800;
	color: white;
	height: 24px;
	width: fit-content;
}
.my_rock_chat_wrap .membership_wrap .img {
	width: 140px !important;
	height: 140px !important;
	border-radius: 50%;
	border: 1px solid var(--t_c_lighter) !important;
	background: url() no-repeat center / cover;
}
.my_rock_chat_wrap .membership_wrap .ranking {
	width: 50px !important;
	height: 50px !important;
}
.my_rock_chat_wrap .membership_wrap .item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	width: 100%;
}
.my_rock_chat_wrap .membership_wrap .item .cover_name {
	font-weight: 800;
}
.my_rock_chat_wrap .membership_wrap .item .txt {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 14px;
}
.my_rock_chat_wrap .membership_wrap .item a {
	font-weight: 800;
	color: var(--m_c_main);
}
.my_rock_chat_wrap .membership_wrap .item .info {
	font-size: 14px;
	font-weight: 700;
}
.my_rock_chat_wrap .membership_wrap:has(.item .golf_cc_info) .cover_name {
	border-bottom: 1px solid var(--t_c_lighter);
	width: 100%;
	align-items: center;
	text-align: center;
	padding-bottom: 10px;
}
.my_rock_chat_wrap .membership_wrap .item .golf_cc_info {
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-size: 14px;
}
.my_rock_chat_wrap .membership_wrap .item .golf_cc_info ul {
	display: flex;
	align-items: center;
	gap: 10px;
}
.my_rock_chat_wrap .membership_wrap .item .golf_cc_info ul li:last-child {
	font-weight: 700;
}
.my_rock_chat_wrap .membership_wrap > .btn {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
}
.my_rock_chat_wrap .membership_wrap > .btn a {
	flex: 1 1 auto;
	font-size: 15px;
	height: 36px;
	white-space: nowrap;
}
.my_rock_chat_wrap .membership_wrap .open_room_info {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 10px;
	font-size: 14px;
}
.my_rock_chat_wrap .membership_wrap .open_room_info .room_info {
	padding: 15px;
	border-radius: 12px;
	background-color: var(--t_c_section);
}
.my_rock_chat_wrap .membership_wrap .open_room_info .password {
	text-align: center;
}
.my_rock_chat_wrap .friend_add .add_list .gr_mem_profile_wrap .mem_info .txt .user_spec {
	white-space: nowrap;
}

/* 락채팅 링크공유 팝업 */
.chat_room_link_share_wrap .pop_con {
	display: flex;
	flex-direction: column;
	padding-bottom: 20px;
	gap: 20px;
}
.chat_room_link_share_wrap .pop_con .sns {
	display: flex;
	align-items: center;
	gap: 30px;
}
.chat_room_link_share_wrap .pop_con .sns a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: url() no-repeat center / cover;
}
.chat_room_link_share_wrap .pop_con .sns .insta {
	background-image: url("../img/sns_icon_insta.svg");
}
.chat_room_link_share_wrap .pop_con .sns .kakao {
	background-image: url("../img/sns_icon_kakao.svg");
}
.chat_room_link_share_wrap .pop_con .sns .twitt {
	background-image: url("../img/sns_icon_twitt.svg");
}
.chat_room_link_share_wrap .pop_con .sns .facebook {
	background-image: url("../img/sns_icon_facebook.svg");
}
.chat_room_link_share_wrap .pop_con .sns .telegram {
	background-image: url("../img/sns_icon_telegram.svg");
}
.chat_room_link_share_wrap .pop_con .share_url {
	display: flex;
	gap: 8px;
}
.chat_room_link_share_wrap .pop_con .share_url input {
	flex: 1 1 auto;
	width: 1005;
	height: 36px;
	border-color: var(--t_c_lighter);
	font-weight: 500;
	width: initial;
	font-size: 15px;
}
.chat_room_link_share_wrap .pop_con .share_url a {
	flex: 0 0 auto;
	height: 36px;
	font-weight: 500;
	font-size: 15px;
}

/* 락채팅 오픈채팅방 만들기 팝업 */
.open_chatting_room_make_wrap .popup_box {
	width: 500px;
}
.open_chatting_room_make_wrap .pop_con {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.open_chatting_room_make_wrap .info {
	display: flex;
	gap: 10px;
}
.open_chatting_room_make_wrap .item {
	width: 100%;
}
.open_chatting_room_make_wrap .sub_txt {
	flex: 0 0 auto;
	font-size: 14px;
	font-weight: 700;
	width: 90px;
	height: 44px;
	line-height: 45px;
	white-space: nowrap;
}
.open_chatting_room_make_wrap input,
.open_chatting_room_make_wrap textarea {
	font-size: 15px;
}
.open_chatting_room_make_wrap textarea {
	padding-top: 12px;
	padding-bottom: 12px;
	height: 86px;
	line-height: 1.3;
}
.open_chatting_room_make_wrap textarea + .count {
	top: initial;
	bottom: 10px;
}
.open_chatting_room_make_wrap .count {
	font-size: 12px;
	color: var(--t_c_medium);
}
.open_chatting_room_make_wrap .photo_up .upload-box {
	width: 127px;
	height: 127px;
	border-radius: 8px;
	border: 1px solid var(--t_c_lighter);
	background-color: white;
}
.open_chatting_room_make_wrap .photo_up .upload-text {
	font-size: 14px;
	color: var(--p_c_red);
}
.open_chatting_room_make_wrap .photo_up .upload-icon {
	width: 40px;
	height: 36px;
}
.open_chatting_room_make_wrap .photo_up .hover-delete-btn {
	padding: 0 10px;
	height: 26px;
	font-size: 12px;
}

/* 채팅방명 수정 팝업 */
.chat_room_name_modify_wrap .popup_box {
	width: 500px;
}
.chat_room_name_modify_wrap .pop_con {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.chat_room_name_modify_wrap .info {
	display: flex;
	gap: 10px;
}
.chat_room_name_modify_wrap .item {
	width: 100%;
}
.chat_room_name_modify_wrap .sub_txt {
	flex: 0 0 auto;
	font-size: 14px;
	font-weight: 700;
	width: 90px;
	height: 44px;
	line-height: 45px;
	white-space: nowrap;
}
.chat_room_name_modify_wrap input,
.chat_room_name_modify_wrap textarea {
	font-size: 15px;
}
.chat_room_name_modify_wrap textarea {
	padding-top: 12px;
	padding-bottom: 12px;
	height: 86px;
	line-height: 1.3;
}
.chat_room_name_modify_wrap textarea + .count {
	top: initial;
	bottom: 10px;
}
.chat_room_name_modify_wrap .count {
	font-size: 12px;
	color: var(--t_c_medium);
}
.chat_room_name_modify_wrap .photo_up .upload-box {
	width: 127px;
	height: 127px;
	border-radius: 8px;
	border: 1px solid var(--t_c_lighter);
	background-color: white;
}
.chat_room_name_modify_wrap .photo_up .upload-text {
	font-size: 14px;
	color: var(--p_c_red);
}
.chat_room_name_modify_wrap .photo_up .upload-icon {
	width: 40px;
	height: 36px;
}
.chat_room_name_modify_wrap .photo_up .hover-delete-btn {
	padding: 0 10px;
	height: 26px;
	font-size: 12px;
}

/* 락채팅 대화상대 초대 팝업 */
.point_talk_wrap .title {
	display: flex;
	align-items: flex-end;
	gap: 15px;
}
.point_talk_wrap .title .sub_txt {
	font-size: 12px;
}
.point_talk_wrap .pop_con {
	padding: 0px 20px !important;
	overflow: hidden !important;
}
.point_talk_wrap .user_add {
	padding: 15px 0px;
}
.point_talk_wrap .user_add .box {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	overflow: hidden;
	overflow-y: auto;
	max-height: 82px;
}
.point_talk_wrap .user_add a {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	padding: 0px 8px;
	height: 22px;
	border-radius: 4px;
	background-color: var(--t_c_normal);
	color: white;
}
.point_talk_wrap .user_add a:after {
	content: "X";
}
.point_talk_wrap .user_add a:hover {
	background-color: var(--t_c_darker);
}
.point_talk_wrap .search input {
	padding-left: 45px;
	background: url(../img/search_icon.svg) no-repeat 15px center;
	background-color: white;
	background-size: 15px;
}
.point_talk_wrap .item:not(:first-child) {
	border-top: 1px solid var(--t_c_lighter);
}
.point_talk_wrap .gr_mem_profile_wrap {
	flex-direction: row;
	justify-content: space-between;
	padding: 15px 0px;
}
.point_talk_wrap .gr_mem_profile_wrap .chk_info {
	display: flex;
	align-items: center;
	gap: 10px;
}
.point_talk_wrap .list {
	overflow: hidden;
	max-height: 424px;
}

/* 락채팅 포인트 선물 팝업 */
.give_points_gift_wrap .mem_point_gift {
	display: flex;
	flex-direction: column;
	gap: 15px;
	padding: 15px 0px;
}
.give_points_gift_wrap .current_point {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}
.give_points_gift_wrap .current_point .my_point span {
	font-size: 12px;
}
.give_points_gift_wrap .current_point .my_point a {
	font-size: 12px;
}
.give_points_gift_wrap .current_point p {
	font-size: 12px;
	font-weight: 600;
}
.give_points_gift_wrap .point_calc {
	padding: 4px 15px;
	background-color: var(--t_c_section);
	border-radius: 8px;
}
.give_points_gift_wrap .point_calc .point_item:not(:last-child) {
	border-bottom: 1px solid var(--t_c_lighter);
}
.give_points_gift_wrap .point_calc .point_item ul {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 42px;
	white-space: nowrap;
	gap: 20px;
}
.give_points_gift_wrap .point_calc .point_item ul li:nth-child(1) {
	font-size: 15px;
}
.give_points_gift_wrap .point_calc .point_item ul li:nth-child(2) {
	font-weight: 800;
}
.give_points_gift_wrap .point_calc .point_item ul li .nickname {
	font-weight: 800;
}
.give_points_gift_wrap .point_calc .point_item .point_btn {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
}
.give_points_gift_wrap .point_calc .point_item .point_btn a {
	flex: 1 1 20%;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	height: 36px;
	color: white;
}
.give_points_gift_wrap .point_calc .point_item .price_int {
	position: relative;
	margin-top: 15px;
}
.give_points_gift_wrap .point_calc .point_item:has(.point_item .price_int) {
	border-bottom: none;
}
.give_points_gift_wrap .point_calc .point_item .price_int span {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 15px;
}
.give_points_gift_wrap .point_calc .point_item .point_btn a.on {
	background-color: var(--m_c_main);
}
.give_points_gift_wrap .point_calc .point_item .total_point li:last-child {
	color: var(--p_c_red);
}
.give_points_gift_wrap .info_txt {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
}
.give_points_gift_wrap .list {
	max-height: 210px;
}
.give_points_gift_wrap:has(.reg_int) .point_item:nth-last-child(2) {
	border-bottom: none;
}
.give_points_gift_wrap .reg_int {
	position: relative;
	display: flex;
	align-items: center;
	gap: 15px;
	padding-top: 5px;
	padding-bottom: 20px;
}
.give_points_gift_wrap .not_card_regist {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 10px;
	height: 110px;
}
.give_points_gift_wrap .pop_con {
	overflow-y: auto !important;
}
.give_points_gift_wrap .pay_tab_con {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.refund_policy_pop_wrap .popup_box {
	max-width: 640px;
	height: 100%;
}
.refund_policy_pop_wrap .rule_wrap {
	display: flex;
	flex-direction: column;
	gap: 25px;
	font-size: 14px;
	line-height: 1.3;
}
.refund_policy_pop_wrap .rule_wrap .title {
	font-size: 17px;
	color: var(--t_c_dark);
	font-weight: 700;
}
.refund_policy_pop_wrap .rule_wrap .row {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.refund_policy_pop_wrap .rule_wrap .sub_title {
	font-weight: 600;
}
.refund_policy_pop_wrap .rule_wrap ul {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 6px 0px;
}
.refund_policy_pop_wrap .rule_wrap .list {
	padding-top: 10px;
	padding-left: 22px;
}
.refund_policy_pop_wrap .rule_wrap:has(.row .txt) .list {
	padding-top: 0px;
}
.refund_policy_pop_wrap .rule_wrap .list li {
	list-style: decimal-leading-zero;
}
.refund_policy_pop_wrap .rule_wrap .list.circle li {
	list-style: circle;
}
.refund_policy_pop_wrap .rule_wrap .list li .sub_list {
	padding-left: 22px;
}
.refund_policy_pop_wrap .rule_wrap .list li .sub_list li {
	list-style: hangul;
}

/* 락채팅 친구 추가 팝업 */
.add_friend_chat_popup {
	padding: 84px 15px;
}
.add_friend_chat_popup .popup_box {
	min-width: 612px;
}
.add_friend_chat_popup .popup_box > .title {
	padding: 20px;
}
.add_friend_chat_popup .popup_box > .title input {
	background: url(../img/search_icon.svg) no-repeat 15px center;
	background-size: 20px;
	padding-left: 44px;
}
/* .add_friend_chat_popup .pop_con {
	display: flex;
	flex-direction: column;
} */
.add_friend_chat_popup .pop_con .list {
	/* flex: 0 0 auto; */
	height: 540px;
	overflow: hidden;
	border-bottom: 1px solid var(--t_c_thin);
}
.add_friend_chat_popup .pop_con .list .item {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
	height: 90px;
	border-bottom: 1px solid var(--t_c_thin);
}
.add_friend_chat_popup .pop_con .list .item .mem_info {
	display: flex;
	align-items: center;
	gap: 10px;
}
.add_friend_chat_popup .pop_con .list .item .mem_info ul {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.add_friend_chat_popup .pop_con .list .item .img {
	position: relative;
	flex: 0 0 auto;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 1px solid var(--t_c_lighter);
	background: url() no-repeat center / cover;
	cursor: pointer;
}
.add_friend_chat_popup .pop_con .list .item .nick_name {
	display: flex;
	align-items: flex-end;
	gap: 5px;
}
.add_friend_chat_popup .pop_con .list .item .nick_name {
	font-weight: 700;
}
.add_friend_chat_popup .pop_con .list .item .nick_name a {
	color: var(--m_c_main);
	font-size: 12px;
	margin-bottom: 2px;
}
.add_friend_chat_popup .pop_con .list .item .last_chat_txt {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	font-size: 12px;
	color: var(--t_c_medium);
}
.add_friend_chat_popup .pop_con .list .item .access {
	display: flex;
	gap: 5px;
}
.add_friend_chat_popup .pop_con .list .item .access .time {
	font-size: 12px;
	color: var(--t_c_medium);
}
.add_friend_chat_popup .pop_con .list .item .access .badge:after {
	content: "부재중";
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 14px;
	font-size: 9px;
	font-weight: 800;
	color: white;
	background-color: var(--t_c_normal);
	border-radius: 4px;
}
.add_friend_chat_popup .pop_con .list .item .access .badge.on:after {
	content: "접속중";
	background-color: var(--m_c_main);
}
.add_friend_chat_popup .pop_con .mem_add_choice {
	display: flex;
	align-items: center;
	justify-content: center;
	row-gap: 15px;
	column-gap: 8px;
	padding: 10px 20px;
	border-bottom: 1px solid var(--t_c_lighter);
	border-top: 1px solid var(--t_c_lighter);
	background-color: var(--t_c_section);
}
.add_friend_chat_popup .pop_con .mem_add_choice .item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
}
.add_friend_chat_popup .pop_con .mem_add_choice .item .close_btn {
	position: absolute;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background-color: var(--p_c_red);
	color: white;
	z-index: 1;
}
.add_friend_chat_popup .pop_con .mem_add_choice .item .img {
	position: relative;
	flex: 0 0 auto;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 1px solid var(--t_c_lighter);
	background: url() no-repeat center / cover;
}
.add_friend_chat_popup .pop_con .mem_add_choice .item .badge:after {
	content: "부재중";
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 14px;
	font-size: 9px;
	font-weight: 800;
	color: white;
	background-color: var(--t_c_normal);
	border-radius: 4px;
}
.add_friend_chat_popup .pop_con .mem_add_choice .item .badge.on:after {
	content: "접속중";
	background-color: var(--m_c_main);
}

/* 락채팅 이미지 업로드 팝업 */
.upload_image_attachment_wrap .popup_box {
	min-width: initial;
	width: 315px;
}
.upload_image_attachment_wrap .feed_img_uplod_wrap {
	flex-wrap: wrap;
	justify-content: center;
}
.upload_image_attachment_wrap:has(.feed_img_uplod_wrap > .upload-box:nth-of-type(3)) .feed_img_uplod_wrap {
	justify-content: flex-start;
}

/* 내설정 setting */
.mypage_wrap.my_setting_wrap .mypage_entire .row {
	padding-left: 0;
}
.my_setting_wrap .my_info_modify {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	width: 960px;
	margin: 0 auto;
}
.my_setting_wrap .my_info_modify .title {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	width: 100%;
}
.my_setting_wrap .my_info_modify .title .sub_txt {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 14px;
}
.my_setting_wrap .my_info_modify a.modify_btn {
	width: 200px;
}
.my_setting_wrap .edit_info {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	width: 960px;
	row-gap: 20px;
	column-gap: 60px;
}
.my_setting_wrap .edit_info .item {
	display: flex;
	justify-content: space-between;
}
.my_setting_wrap .my_info_modify > a {
	margin-top: 40px;
}
.my_setting_wrap .edit_info .item .sub_title {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	gap: 4px;
	width: 118px;
	height: 40px;
	font-size: 14px;
	font-weight: 700;
}
.my_setting_wrap .edit_info .item .box {
	position: relative;
	flex: 1 1 auto;
	display: flex;
	align-items: center;
	gap: 10px;
}
.my_setting_wrap .edit_info .item .box input {
	height: 40px;
}
.my_setting_wrap .edit_info .item .box select {
	height: 40px;
}
.my_setting_wrap .edit_info .item .box .chk_switch_wrap {
	position: absolute;
	top: 8px;
	right: 10px;
}
.my_setting_wrap .edit_info .item .box.side_switch .chk_switch_wrap {
	right: -50px;
}
.my_setting_wrap .edit_info .item .box:has(.chk_switch_wrap) input {
	padding-right: 56px;
}
.my_setting_wrap .edit_info .item .box a[data-popup="nick_name_change_popup"] {
	width: 104px;
}
.my_setting_wrap .edit_info .item .box:has(a[data-popup="nick_name_change_popup"]) input {
	flex: 1 1 auto;
	width: initial;
}
.my_setting_wrap .edit_info .item .box .public_set_btn {
	flex: 1 1 30%;
}
.my_setting_wrap .edit_info .item .box .public_set_btn.on {
	color: white;
	border: none;
}
.my_setting_wrap .edit_info .item .box .public_set_btn.on:nth-child(1) {
	background-color: var(--m_c_main);
}
.my_setting_wrap .edit_info .item .box .public_set_btn.on:nth-child(2) {
	background-color: var(--p_c_yellow);
}
.my_setting_wrap .edit_info .item .box .public_set_btn.on:nth-child(3) {
	background-color: var(--t_c_normal);
}
.my_setting_wrap .edit_info .item:has(textarea) {
	grid-column: 1 / span 2;
}
.my_setting_wrap .edit_info .item:has(textarea) .box {
	position: relative;
	align-self: flex-start;
	height: 100%;
}
.my_setting_wrap .edit_info .item:has(textarea) .box .txt_count {
	position: absolute;
	right: 20px;
	bottom: 20px;
	font-size: 14px;
	color: var(--t_c_medium);
}
.my_setting_wrap .edit_info .item .box textarea {
	height: 100%;
	padding-bottom: 40px;
}
.my_setting_wrap .edit_info .item:has(.style_tag) {
	grid-column: 1 / span 2;
}
.my_setting_wrap .edit_info .item .box .style_tag {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}
.my_setting_wrap .edit_info .item .box .style_tag a {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 600;
	height: 30px;
	padding: 0px 13.5px;
	border-radius: 4px;
	border: 1px solid var(--t_c_lighter);
	color: var(--t_c_medium);
}
.my_setting_wrap .edit_info .item .box .style_tag a.on {
	background-color: var(--m_c_main);
	border-color: var(--m_c_main);
	color: white;
}
.my_setting_wrap .edit_info .item .box .style_tag .int_err_txt {
	position: absolute;
	bottom: 0;
	right: 0;
}
.my_setting_wrap .edit_info .item:has(.search) {
	grid-column: 1 / span 2;
}
.my_setting_wrap .edit_info .item:has(.search) .box {
	flex-direction: column;
	align-items: flex-start;
	height: 80px;
}
.my_setting_wrap .edit_info .item:has(.search) .box .golf_cc_select {
	display: flex;
	align-items: center;
	gap: 8px;
}
.my_setting_wrap .edit_info .item:has(.search) .box .golf_cc_select a {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 14px;
	font-weight: 600;
	color: var(--t_c_medium);
	background-color: var(--t_c_table);
	border-radius: 4px;
	height: 30px;
	padding: 0 10px;
}
.my_setting_wrap .edit_info .item:has(.search) .box .golf_cc_select a:hover {
	background-color: var(--t_c_thin);
	color: var(--t_c_normal);
}
.my_setting_wrap .edit_info .item:has(.search) .box .golf_cc_select a:after {
	content: "X";
}

/**/
.my_setting_wrap .edit_info .item .standardSsearch {
	width: calc(100% - 114px);
}
.my_setting_wrap .edit_info .item .standardSsearch .pop_box {
	top: initial;
	bottom: 100%;
}
.my_setting_wrap .edit_info .item:has(.standardSsearch) {
	grid-column: 1 / span 2;
}
.my_setting_wrap .edit_info .item:has(.standardSsearch) .box {
	flex-wrap: wrap;
	align-items: flex-start;
	height: 80px;
}
.my_setting_wrap .edit_info .item:has(.standardSsearch) .box .golf_cc_select {
	display: flex;
	align-items: center;
	gap: 8px;
}
.my_setting_wrap .edit_info .item:has(.standardSsearch) .box .golf_cc_select a {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 14px;
	font-weight: 600;
	color: var(--t_c_medium);
	background-color: var(--t_c_table);
	border-radius: 4px;
	height: 30px;
	padding: 0 10px;
}
.my_setting_wrap .edit_info .item:has(.standardSsearch) .box .golf_cc_select a:hover {
	background-color: var(--t_c_thin);
	color: var(--t_c_normal);
}
.my_setting_wrap .edit_info .item:has(.standardSsearch) .box .golf_cc_select a:after {
	content: "X";
}
.my_setting_wrap .edit_info .item .box a[data-popup="find_with_map_wrap"] {
	flex: 0 0 auto;
	width: 104px;
	white-space: nowrap;
}
.my_setting_wrap .edit_info .item .box .search {
	flex: 1 1 auto;
	display: flex;
	align-items: flex-start;
	gap: 8px;
	width: 100%;
}
.my_setting_wrap .edit_info .item .box .search .sh_tab_menu ul li a {
	display: flex;
	align-items: center;
	font-size: 15px;
	height: 44px;
	padding: 0px 20px;
	background-color: var(--t_c_table);
	color: var(--t_c_medium);
}
.my_setting_wrap .edit_info .item .box .search .sh_tab_menu ul li.on a {
	color: var(--t_c_normal);
	font-weight: 500;
	background-color: white;
}
.my_setting_wrap .edit_info .item .box .search .sh_tab_con {
	display: none;
	flex-grow: 1;
}
.my_setting_wrap .edit_info .item .box .search .sh_tab_con.on {
	display: block;
}
.my_setting_wrap .edit_info .item .box .search .sh_tab_con ul {
	height: 396px;
	overflow-y: auto;
}
.my_setting_wrap .edit_info .item .box .search .sh_tab_con ul li a {
	display: flex;
	align-items: center;
	font-size: 15px;
	height: 44px;
	padding: 0px 30px;
	border-bottom: 1px solid var(--t_c_lighter);
	gap: 40px;
}
.my_setting_wrap .edit_info .item .box .search .sh_tab_con ul li a span {
	position: relative;
}
.my_setting_wrap .edit_info .item .box .search .sh_tab_con ul li a span:first-child {
	width: 68px;
}
.my_setting_wrap .edit_info .item .box .search .sh_tab_con ul li a span:not(:last-child):after {
	content: "|";
	position: absolute;
	right: -22px;
}
.my_setting_wrap .edit_info .item .box .search .pop_box.on {
	display: flex;
}
.my_setting_wrap .edit_info .item .box .search .pop_box {
	display: none;
	flex-direction: column;
	gap: 15px;
	position: absolute;
	bottom: 100%;
	width: calc(100% - 112px);
	padding: 20px;
	background-color: white;
	box-shadow: 0px 0px 12px rgba(55, 72, 86, 0.2);
	border-radius: 8px;
	border: 1px solid var(--t_c_lighter);
	margin-bottom: 7px;
	z-index: 1;
}
.my_setting_wrap .edit_info .item .box .search .pop_box .title {
	padding-bottom: 0;
}
.my_setting_wrap .edit_info .item .box .search .pop_box .item {
	display: flex;
	gap: 15px;
	border-top: 1px solid var(--t_c_lighter);
}

/* 내설정 프라이버시모드 */
.my_setting_wrap .edit_info .item:has(.privacy_mode) {
	grid-column: 1 / span 2;
}
.my_setting_wrap .edit_info .privacy_mode {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	border: 1px solid #d9f5e3;
	border-radius: 8px;
	background-color: #edfaf2;
	padding: 15px 20px;
}
.my_setting_wrap .edit_info .privacy_mode ul {
	font-weight: 800;
	color: var(--m_c_dark);
}
.my_setting_wrap .edit_info .privacy_mode ul li:last-child {
	font-weight: 500;
	color: var(--t_c_normal);
	font-size: 14px;
	padding-top: 4px;
}
.my_setting_wrap .edit_info .privacy_mode .mode_check {
	display: flex;
	align-items: center;
	gap: 25px;
}
.mypage_wrap.my_setting_wrap .mypage_entire .my_pr_wrap {
	position: absolute;
	top: 160px;
}
.nick_name_change_popup .pop_con {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.nick_name_change_popup .pop_con strong {
	font-weight: 800;
}
.nick_name_change_popup .pop_con .int_err_txt ul {
	display: flex;
	gap: 5px;
}
.my_setting_wrap .my_setting_photo_up {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin-bottom: 20px;
}
.my_setting_wrap .my_setting_photo_up .upload-box {
	width: 180px;
	height: 180px;
	border-radius: 8px;
	border: 1px solid var(--t_c_lighter);
}
.my_setting_wrap .my_setting_photo_up .upload-box:hover {
	border: 1px solid var(--t_c_medium);
}
.my_setting_wrap .my_setting_photo_up .upload-box:not(:first-child) {
	background-color: white;
}
.my_setting_wrap .my_setting_photo_up .upload-box:not(:first-child) .upload-content {
	display: none;
}
.upload-box.has-image .upload-content {
	display: flex !important;
}
.upload-box.has-image .add_more_photo {
	display: none;
}
.upload-box .add_more_photo {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
	color: var(--t_c_light);
	transition: opacity 0.3s;
	gap: 14px;
}

/* 내포인트 */
.my_point_detail_wrap .sub_filter_wrap {
	height: 60px !important;
	padding-bottom: 20px !important;
}
.my_point_detail_wrap .point_dt_view {
	display: flex;
	align-items: flex-start;
	gap: 15px;
}
.my_point_detail_wrap .point_dt_view .point_list {
	flex: 1 1 auto;
	border: 1px solid var(--t_c_lighter);
	border-radius: 8px;
	padding: 15px;
	height: 554px;
}
.my_point_detail_wrap .point_dt_view .board_view_table > h5 {
	display: flex;
	align-items: center;
	height: 36px;
	margin-bottom: 5px;
}
.my_point_detail_wrap .point_dt_view .board_view_table table td {
	font-size: 15px;
}
.my_point_detail_wrap .point_module {
	flex: 0 0 380px;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	width: 380px;
}
.my_point_detail_wrap .point_module .item {
	flex: 1 1 40%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border: 1px solid var(--t_c_lighter);
	border-radius: 8px;
	padding: 15px;
	min-height: 105px;
}
.my_point_detail_wrap .point_module .item .title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 36px;
}
.my_point_detail_wrap .point_module .item h3 {
	font-size: 24px;
	font-weight: 900;
	text-align: right;
}
.my_point_detail_wrap .point_module.type_02 {
	flex: 0 0 182px;
	width: 182px;
}
.my_point_detail_wrap .point_module.type_02 .item {
	flex: 0 0 182px;
}
.my_point_detail_wrap .point_module .acc_reg {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
	height: 22px;
	border-radius: 4px;
	background-color: var(--t_c_normal);
	color: white;
}
.my_point_detail_wrap .point_module:has(.acc_reg) .bank_comple {
	display: none;
}
.my_point_detail_wrap .point_module .bank_comple {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}
.my_point_detail_wrap .point_module .bank_comple a {
	font-size: 10px;
	color: var(--p_c_red);
	font-weight: 700;
	margin-bottom: 3px;
}
.my_point_detail_wrap .point_module .bank_comple p {
	font-size: 15px;
	font-weight: 800;
	text-align: right;
}
.my_point_detail_wrap .point_module .integrate.item {
	border: none;
	background-color: var(--p_c_blue_dk);
	color: white;
}
.my_point_detail_wrap .point_module .credit_card.item {
	width: 100%;
	gap: 15px;
}
.my_point_detail_wrap .point_module .credit_card .info:has(.first) .card_list_wrap {
	display: none;
}
.my_point_detail_wrap .point_module .credit_card .info .card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 195px;
	height: 110px;
	border-radius: 8px;
	padding: 15px;
	color: white;
}
.my_point_detail_wrap .point_module .credit_card .info .first {
	width: 100%;
}
.my_point_detail_wrap .point_module .credit_card .info .first .card.card_reg {
	width: 100%;
}
.my_point_detail_wrap .point_module .credit_card .info .card.card_reg {
	color: var(--t_c_normal) !important;
	background-color: white !important;
	border: 2px solid var(--p_c_red) !important;
}
.my_point_detail_wrap .point_module .credit_card .info .card.card_reg .card_num span {
	font-size: 12px;
	line-height: 1.1;
}
.my_point_detail_wrap .point_module .credit_card .info .card.card_reg .reg_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
	color: white;
	height: 22px;
	width: 100%;
	border-radius: 4px;
	background-color: var(--p_c_red);
}
.my_point_detail_wrap .point_module .credit_card .info .card .card_type {
	font-size: 15px;
	font-weight: 900;
}
.my_point_detail_wrap .point_module .credit_card .info .card .card_num {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.my_point_detail_wrap .point_module .credit_card .info .card .card_num ul {
	display: flex;
	align-items: center;
	font-size: 13px;
	font-weight: 700;
	gap: 4px;
}
.my_point_detail_wrap .point_module .credit_card .info .card .bottom {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	height: 22px;
}
.my_point_detail_wrap .point_module .credit_card .info .card .bottom .card_name {
	font-size: 15px;
	font-weight: 800;
}
.my_point_detail_wrap .point_module .credit_card .info .card .bottom .del_btn {
	text-decoration: underline;
	font-size: 10px;
}
.my_point_detail_wrap tr .point {
	text-align: right;
}
.my_point_detail_wrap tr .date {
	text-align: right;
}
.my_point_detail_wrap tr .badge:after {
	content: "사 용";
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 20px;
	border-radius: 4px;
	background-color: var(--m_c_main);
	color: white;
	font-size: 12px;
	font-weight: 800;
}
.my_point_detail_wrap tr.pt_charge .badge:after {
	content: "충 전";
	background-color: var(--p_c_blue_dk);
}
.my_point_detail_wrap tr.pt_cancel .badge:after {
	content: "취 소";
	background-color: var(--p_c_red);
}
.my_point_detail_wrap tr.pt_charge .point {
	color: var(--p_c_blue_dk);
}
.my_point_detail_wrap tr.pt_cancel .point {
	color: var(--p_c_red);
}
.my_point_detail_wrap .point_dt_view .point_list:has(.row_table_wrap) {
	border-radius: 0;
	padding: 0;
	border: none;
	height: initial;
}
.my_point_detail_wrap .point_dt_view .point_list .row_table_wrap tbody td {
	width: 10px;
}
.my_point_detail_wrap .point_dt_view .point_list .row_table_wrap tbody td > div {
	width: fit-content;
	white-space: nowrap;
}
.my_point_detail_wrap .point_dt_view .point_list .row_table_wrap tbody td.post_title {
	width: auto;
}
.my_point_detail_wrap .point_dt_view .point_list .row_table_wrap tbody td.post_title > div {
	width: initial;
	white-space: initial;
}
.my_point_detail_wrap .point_dt_view .point_list .row_table_wrap .be_not_list {
	border: none;
	width: 100%;
	height: 300px;
}
.my_point_detail_wrap .point_dt_view .point_list .row_table_wrap table th > div {
	margin-top: 0;
}
.my_point_detail_wrap .point_dt_view .point_list .row_table_wrap table th {
	position: relative;
	top: initial;
}

/* 홍보글 */
.row_table_wrap.promotion:has(.checkbox_m) th:first-child {
	width: 10px;
}
.row_table_wrap.promotion:has(.checkbox_m) th > div:last-child {
	justify-content: center;
}

/* 출금통장 팝업 */
.withdrawal_account_regist_pop,
.credit_card_regist_pop {
	padding-top: 230px;
	justify-content: flex-start;
}
.withdrawal_account_regist_pop .pop_con,
.credit_card_regist_pop .pop_con {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.withdrawal_account_regist_pop .reg_int,
.credit_card_regist_pop .reg_int {
	position: relative;
	display: flex;
	align-items: center;
	gap: 15px;
}
.withdrawal_account_regist_pop .reg_int .sub_title,
.credit_card_regist_pop .reg_int .sub_title {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	width: 46px;
	font-size: 14px;
	font-weight: 700;
	text-align: justify;
}
.withdrawal_account_regist_pop .reg_int .count {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 15px;
	font-size: 12px;
	color: var(--p_c_red);
}

.my_point_detail_wrap .point_module .credit_card .card_list_wrap .swiper_round_btn {
	top: 50px;
}
.my_point_detail_wrap .point_module .credit_card .card_list_wrap {
	width: 100%;
	position: relative;
	overflow: hidden;
}
.my_point_detail_wrap .point_module .credit_card .cardList {
	overflow: visible !important;
}
.my_point_detail_wrap .point_module .credit_card .card_list_wrap .swiper-wrapper {
	display: flex;
	align-items: center;
}
.my_point_detail_wrap .point_module .credit_card .card_list_wrap .swiper-slide {
	width: 195px !important;
	flex-shrink: 0;
}
.my_point_detail_wrap .point_module .credit_card .cardList.single-slide {
	overflow: hidden !important;
}

.my_point_detail_wrap .point_module .credit_card .cardList.single-slide .swiper-wrapper {
	justify-content: center !important;
}

.my_point_detail_wrap .point_module .credit_card .cardList.single-slide .swiper-slide {
	opacity: 1 !important;
	transform: scale(1) !important;
}
.my_point_detail_wrap .point_module .credit_card .cardList.double-slide {
	overflow: hidden !important;
}

.my_point_detail_wrap .point_module .credit_card .cardList.double-slide .swiper-wrapper {
	justify-content: flex-start !important;
	padding-left: calc(100% - 410px);
}

.my_point_detail_wrap .point_module .credit_card .cardList.double-slide .swiper-slide {
	opacity: 1 !important;
	transform: scale(1) !important;
}
.my_point_detail_wrap .point_module .credit_card .cardList.multiple-slides {
	overflow: visible !important;
}
.my_point_detail_wrap .point_module .credit_card .cardList.multiple-slides .swiper-slide {
	opacity: 1 !important;
	transform: scale(1) !important;
}

/* 랭킹판 */
header.bg_wt,
header.bg_wt:after {
	background-color: transparent;
	border: none;
}
header.bg_wt .nav_bg {
	border: none;
	background-color: rgb(255 255 255 / 20%);
}
header.bg_wt.bg {
	background-color: rgb(25 25 50 / 80%);
}
header.bg_wt .h_nav_wrap .home a img {
	display: flex;
	width: 200px;
	height: 10px;
	overflow: initial;
}
header.bg_wt .h_nav_wrap .home a img:after {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	content: "1111111111";
	width: 200px;
	height: 19px;
	display: flex;
	background: url("../img/gr_logo_wt.svg") no-repeat center / cover;
}
header.bg_wt nav > ul {
	color: white;
}
header.bg_wt .top_user_wrap .map .img {
	width: 22px;
	height: 24px;
	background: none;
	-webkit-mask: url("../img/map_icon.svg") no-repeat center;
	mask: url("../img/map_icon.svg") no-repeat center;
	background-color: white;
}
.wrap:has(.week_ranking_wrap) {
	background: url("../img/week_ranking_bg_01.png") no-repeat center top / cover;
	background-color: #191932;
}
.wrap:has(.week_ranking_wrap):before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 1400px;
	height: 972px;
	background: url("../img/week_ranking_bg_02.png") no-repeat center top / cover;
}
.week_ranking_wrap {
	background: url("../img/week_ranking_bg_03.png") no-repeat left bottom / 350px;
}
.week_ranking_wrap .con {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 40px;
	padding-bottom: 80px;

	background: url("../img/week_ranking_bg_04.png") no-repeat right bottom / auto;
}
.week_ranking_wrap .rank_title {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}
.week_ranking_wrap .rank_title p {
	font-size: 40px;
	font-weight: 700;
	color: #c4883d;
}
.week_ranking_wrap .rank_title img {
	display: block;
	height: 58px;
}
.week_ranking_wrap .rank_top_three {
	display: flex;
	align-items: center;
	justify-content: center;
}
.week_ranking_wrap .rank_top_three > div {
	position: relative;
	padding-top: 30px;
}
.week_ranking_wrap .rank_top_three .ranking_icon img {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	height: 60px;
}
.week_ranking_wrap .rank_top_three .center {
	padding-top: 40px;
}
.week_ranking_wrap .rank_top_three .center .ranking_icon img {
	top: -10px;
	height: 110px;
}
.week_ranking_wrap .rank_top_three .mem_profile {
	position: absolute;
	top: 68px;
	left: 50%;
	transform: translateX(-50%);
	width: 130px;
	height: 130px;
	border-radius: 50%;
	border: 8px solid white;
	background: url("") no-repeat center top / cover;
}
.week_ranking_wrap .rank_top_three .center .mem_profile {
	width: 180px;
	height: 180px;
	top: 98px;
}
.week_ranking_wrap .rank_top_three .item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding-top: 5px;
}
.week_ranking_wrap .rank_top_three .item .point {
	font-size: 32px;
	font-weight: 800;
}
.week_ranking_wrap .rank_top_three .left .item {
	color: #c1c1c1;
}
.week_ranking_wrap .rank_top_three .right .item {
	color: #c0956a;
}
.week_ranking_wrap .rank_top_three .center .item {
	color: #d3a23c;
}
.week_ranking_wrap .rank_top_three .center .item .point {
	font-size: 40px;
}
.week_ranking_wrap .rank_range .item {
	display: flex;
	justify-content: center;
	gap: 40px;
}
.week_ranking_wrap .rank_range .item ul {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 5px;
	font-size: 14px;
	color: #9191fe;
	text-align: center;
}
.week_ranking_wrap .rank_range .item ul img {
	width: 50px;
	height: 50px;
	display: block;
}
.rank_list {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 760px;
	margin: 0 auto;
	gap: 20px;
}
.week_ranking_wrap .rank_list .rank_slide_wrap {
	display: flex;
	align-items: center;
	gap: 10px;
}

.week_ranking_wrap .rank_list .week_ranking {
	display: flex;
	align-items: center;
	overflow: hidden;
	border: 1px solid #6767b4;
	border-radius: 8px;
}

.week_ranking_wrap .rank_list .week_ranking .week_title {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 120px;
	height: 100%;
	white-space: nowrap;
	color: #bebee2;
	font-weight: 800;
}

.week_ranking_wrap .rank_list .rank_week_slide {
	flex: 1 1 auto;
	overflow: hidden;
}

.week_ranking_wrap .rank_list .rank_slide_con {
	display: flex;
	transition: transform 2s ease;
	width: max-content;
}

.week_ranking_wrap .rank_list .rank_slide_con .item {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-right: 20px;
	border-radius: 5px;
	height: 44px;
	color: #bebee2;
}
.week_ranking_wrap .rank_list .rank_slide_con .item img {
	width: 30px;
	height: 30px;
}
.week_ranking_wrap .rank_list .search_btn {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background-color: #6767b4;
	border-radius: 8px;
}
.week_ranking_wrap .rank_list .search_btn:after {
	content: "";
	display: flex;
	height: 100%;
	width: 100%;
	-webkit-mask: url("../img/search_icon.svg") no-repeat center / cover;
	mask: url("../img/search_icon.svg") no-repeat center / cover;
	mask-size: 20px;
	background-color: white;
}
.rank_table {
	z-index: 1;
}
.rank_table table th,
.rank_table table td {
	height: 45px;
	color: #bebee2;
	font-weight: 700;
	text-align: left;
	background-color: transparent;
}
.rank_table table th {
	border: none;
}
.rank_table table td {
	border-top: none;
	border-color: #34345b;
}
.rank_table table thead {
	position: relative;
}
.rank_table table thead:before {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #34345b;
	border-radius: 8px;
	top: 0;
	right: 0;
	z-index: -1;
}
.rank_table table .rank_num {
	text-align: right;
}
.rank_table table td.info > div {
	display: flex;
	align-items: center;
	gap: 10px;
	white-space: nowrap;
}
.rank_table table td.info > div img {
	height: 30px;
	margin-bottom: 2px;
}
.rank_table table td.link {
	font-size: 12px;
	width: 114px;
}
.rank_table table td.link .rank_profile {
	position: relative;
	cursor: pointer;
}
.rank_table table td.link .rank_profile:hover .mem_profile_wrap {
	display: block;
	top: 50%;
	transform: translateY(-50%);
	left: 20px;
}
.rank_table table td.link .rank_profile .mem_profile_wrap .box {
	box-shadow: none;
}
.week_ranking_wrap .page_num a {
	color: var(--t_c_light);
}
.week_ranking_wrap .page_num a:hover {
	color: var(--m_c_light);
}
.week_ranking_wrap .page_num a.on {
	color: var(--m_c_light);
	border-color: var(--m_c_light);
}
.rank_nickname_find_popup input {
	background: url("../img/search_icon.svg") no-repeat 15px center;
	background-size: 20px;
	padding-left: 44px;
}

/* 게시판 */
.board_wrap > .title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 44px;
}
.board_wrap .title a {
	display: flex;
	align-items: center;
	gap: 10px;
}
.board_wrap .sub_filter_wrap {
	position: relative;
	top: initial;
	height: 60px;
	margin-top: 30px;
}
.board_wrap .sub_filter_wrap .pagination ul {
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 5px;
}
.board_wrap .sub_filter_wrap .pagination ul li:nth-child(1) {
	font-weight: 800;
}
.board_wrap .sub_filter_wrap .pagination ul li:nth-child(3):before {
	content: "/";
	margin-right: 4px;
}
.board_wrap .board_view_table table th,
.board_wrap .board_view_table table td {
	padding: 12px 20px;
}
.board_wrap .board_view_table table th {
	white-space: nowrap;
}
.board_wrap .board_view_table td {
	white-space: nowrap;
	width: 50px;
}
.board_wrap .board_view_table .title {
	white-space: normal;
	text-align: left;
	width: auto;
}
.board_wrap .board_view_table .title ul {
	display: flex;
	align-items: center;
	gap: 7px;
}
.board_wrap .board_view_table .title ul .comment span {
	font-weight: 800;
	color: var(--t_c_darker);
}
.board_wrap .board_view_table .title ul .comment img {
	width: 14px;
}
.board_wrap .board_view_table .title ul .comment.depth_02 {
	padding-left: 25px;
}
.board_wrap .board_view_table .title ul .comment.depth_03 {
	padding-left: 50px;
}
.board_wrap .board_view_table .title ul .comment.depth_04 {
	padding-left: 75px;
}
.board_wrap .board_view_table .title ul .txt {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	padding-right: 10px;
}
.board_wrap .board_view_table .title ul .count {
	color: var(--p_c_red);
}

.board_wrap .board_view_table .author {
	text-align: left;
}
.board_wrap .board_view_table tr.notice {
	background-color: #edfaf2;
}
.board_wrap .board_view_table tr.notice td.num p {
	text-indent: -9999999999999px;
	display: none;
}
.board_wrap .board_view_table tr.notice td.num:after {
	content: "공지";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 20px;
	background-color: var(--m_c_main);
	border-radius: 4px;
	font-size: 12px;
	font-weight: 800;
	color: white;
}
tr.notice .board_mem_info_wrap .mem_img {
	display: none;
}
tr.notice .board_mem_info_wrap .nick_name {
	text-indent: -9999999999px;
	display: none;
}
tr.notice .board_mem_info_wrap:after {
	content: "골프락 관리자";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 500;
	color: var(--m_c_darker);
}
.board_mem_info_wrap {
	position: relative;
	display: flex;
	gap: 8px;
	align-items: center;
	cursor: pointer;
}
.board_mem_info_wrap:has(.memBadgeSqSm) {
	gap: 4px;
}
.board_mem_info_wrap .memBadgeSqSm {
	margin-left: 6px;
}
.board_mem_info_wrap .mem_img {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: 1px solid var(--t_c_lighter);
	background: url() no-repeat center / cover;
}
.board_mem_info_wrap .link {
	display: none;
	position: absolute;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 6px;
	padding: 8px 12px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	z-index: 10;
	cursor: default;
}
.board_mem_info_wrap .link ul li a {
	padding: 4px;
	font-size: 14px;
	font-weight: 500;
	white-space: nowrap;
}
.board_mem_info_wrap .link ul li a:hover {
	color: var(--m_c_main);
}
.board_mem_info_wrap .link.active {
	display: block;
}
.board_wrap .board_view_table td.reco > div {
	display: flex;
	align-items: center;
	gap: 5px;
}
.board_wrap .board_view_table td.reco .icon {
	width: 16px;
	height: 16px;
	background: url("../img/heart_line_icon.svg") no-repeat center / cover;
}
.board_wrap > .page_num {
	padding-top: 50px;
}

/* 게시판 뷰 읽기 */
.board_wrap .wiew_board .top_title {
	margin-top: 30px;
}
.board_wrap .wiew_board .top_title ul {
	display: flex;
	justify-content: space-between;
	min-height: 60px;
	background-color: var(--t_c_section);
	border-top: 1px solid var(--t_c_darker);
	border-bottom: 1px solid var(--t_c_lighter);
	padding: 20px;
	gap: 40px;
	font-weight: 700;
}
.board_wrap .wiew_board .top_title ul .time {
	white-space: nowrap;
	font-weight: 400;
	color: var(--t_c_medium);
}
.board_wrap .wiew_board .meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 20px;
	border-bottom: 1px solid var(--t_c_lighter);
}
.board_wrap .wiew_board .meta .count {
	display: flex;
	align-items: center;
	gap: 20px;
}
.board_wrap .wiew_board .meta .count ul {
	display: flex;
	align-self: center;
	font-size: 14px;
	color: var(--t_c_medium);
	gap: 10px;
}
.board_wrap .wiew_board .attach_file {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 25px;
	padding: 15px 20px;
	border-bottom: 1px solid var(--t_c_lighter);
}
.board_wrap .wiew_board .attach_file a {
	display: flex;
	align-items: center;
	gap: 8px;
}
.board_wrap .wiew_board .attach_file a:before {
	content: "";
	display: flex;
	width: 13px;
	height: 16px;
	background: url("../img/file_icon.svg") no-repeat center / contain;
}
.board_wrap .wiew_board .read_con {
	padding: 30px 20px;
	line-height: 1.6;
	border-bottom: 1px solid var(--t_c_lighter);
	min-height: 350px;
}
.board_wrap .wiew_board .read_con .hashTagWrap {
	padding-top: 30px;
}
.board_wrap .wiew_board .btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 20px;
}
.board_wrap .wiew_board .btn .right {
	display: flex;
	align-items: center;
	gap: 10px;
}
.board_wrap .comment_con_wrap {
	padding-top: 40px;
}
.board_wrap .comment_con_wrap .com_read_box {
	padding-bottom: 40px;
}
.board_wrap .comment_con_wrap .com_read_box .count_title {
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 12px 20px;
	background-color: var(--t_c_section);
	border-top: 1px solid var(--t_c_lighter);
	border-bottom: 1px solid var(--t_c_lighter);
}
.board_wrap .comment_con_wrap .com_read_box .count_title span:first-child {
	font-weight: 700;
}
.board_wrap .comment_con_wrap .com_read_box .item {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 30px;
	padding: 20px;
	border-bottom: 1px solid var(--t_c_lighter);
}
.board_wrap .comment_con_wrap .com_read_box .item.depth_01 {
	padding-left: 70px;
}
.board_wrap .comment_con_wrap .com_read_box .item.depth_02 {
	padding-left: 115px;
}
.board_wrap .comment_con_wrap .com_read_box .item.depth_03 {
	padding-left: 160px;
}
.board_wrap .comment_con_wrap .com_read_box .item.depth_04 {
	padding-left: 205px;
}
.board_wrap .comment_con_wrap .com_read_box .item.depth_01 .board_mem_info_wrap:before,
.board_wrap .comment_con_wrap .com_read_box .item.depth_02 .board_mem_info_wrap:before,
.board_wrap .comment_con_wrap .com_read_box .item.depth_03 .board_mem_info_wrap:before,
.board_wrap .comment_con_wrap .com_read_box .item.depth_04 .board_mem_info_wrap:before {
	content: "";
	position: absolute;
	left: -40px;
	width: 20px;
	height: 20px;
	background: url("../img/re_mark_icon.svg") no-repeat center / 16px;
	cursor: pointer;
	pointer-events: none;
}
.board_wrap .comment_con_wrap .com_read_box .item.depth_02:before {
	left: 56px;
}
.board_wrap .comment_con_wrap .com_read_box .item .board_mem_info_wrap {
	flex: 0 0 auto;
	width: 160px;
}
.board_wrap .comment_con_wrap .com_read_box .item .com_view {
	flex: 1 1 auto;
	line-height: 1.6;
	display: flex;
	flex-direction: column;
}
.board_wrap .comment_con_wrap .com_read_box .item .com_view strong {
	font-weight: 800;
	margin-bottom: 5px;
}
.board_wrap .comment_con_wrap .com_read_box .item .com_view .txt {
	min-height: 40px;
}
.board_wrap .comment_con_wrap .com_read_box .item .com_view .com_btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 15px;
}
.board_wrap .comment_con_wrap .com_read_box .item .com_view .com_btn .time {
	font-size: 14px;
	color: var(--t_c_medium);
}
.board_wrap .comment_con_wrap .com_read_box .item .com_view .com_btn .comment_btn {
	display: flex;
	align-items: center;
	gap: 8px;
}
.board_wrap .comment_con_wrap .com_read_box .item .com_view .comment_write {
	display: none;
	margin-top: 20px;
}
.board_wrap .comment_con_wrap .page_num {
	justify-content: flex-end;
	padding-bottom: 40px;
}
.board_wrap .comment_con_wrap .comment_write {
	border: 1px solid var(--t_c_lighter);
	border-radius: 8px;
	padding: 20px;
}
.board_wrap .comment_con_wrap .comment_write textarea {
	padding: 0;
	border: none;
	border-radius: 0;
	line-height: 1.6;
	height: 152px;
	margin-bottom: 12px;
}
.board_wrap .comment_con_wrap .comment_write .submit_comment {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	padding-top: 15px;
	border-top: 1px solid var(--t_c_lighter);
}
.board_wrap .comment_con_wrap .post_view {
	margin-top: 40px;
	border: 1px solid var(--t_c_lighter);
	border-radius: 8px;
	padding: 20px;
	background-color: var(--t_c_section);
}
.board_wrap .comment_con_wrap .post_view .item {
	display: flex;
	align-items: center;
	gap: 30px;
}
.board_wrap .comment_con_wrap .post_view .item span {
	font-weight: 800;
}
.board_wrap .comment_con_wrap .post_view .item:last-child {
	padding-top: 20px;
	margin-top: 20px;
	border-top: 1px solid var(--t_c_lighter);
}
.board_wrap .comment_con_wrap .post_view .item .no_next {
	pointer-events: none;
	cursor: default;
}

/* 게시판 쓰기 */
/* 일반 자유게시판 쓰기 */
.tab_title_wrap {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}
.tab_title_wrap ul {
	display: flex;
	align-items: center;
	gap: 8px;
}
.tab_title_wrap ul a.on {
	border-color: var(--m_c_darker);
	background-color: var(--m_c_darker);
	color: white;
}
.tab_title_wrap ul:nth-child(2) a.on {
	border-color: var(--m_c_main);
	background-color: var(--m_c_main);
	color: white;
}
.board_wrap .write_board {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 30px;
}
.board_wrap .write_board > input {
	height: 44px;
}
.board_wrap .write_board .editor_wrap {
	border: 1px solid var(--t_c_lighter);
	border-radius: 8px;
	overflow: hidden;
}
.board_wrap .write_board .attachment {
	display: flex;
	flex-direction: column;
	border: 1px solid var(--t_c_lighter);
	border-radius: 8px;
	padding: 20px;
}
.board_wrap .write_board .attachment a {
	width: 80px;
}
.board_wrap .write_board .attachment .upload_box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 15px;
	border-bottom: 1px solid var(--t_c_lighter);
}
.board_wrap .write_board .attachment .upload_box .title {
	font-weight: 800;
}
.board_wrap .write_board .attachment .upload_box input {
	display: none;
}
.board_wrap .write_board .attachment .state_txt {
	display: flex;
	align-items: end;
	justify-content: center;
	height: 40px;
}
.board_wrap .write_board .attachment .file_item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 10px;
}
.board_wrap .write_board .attachment .file_item:not(:first-child) {
	border-top: 1px solid var(--t_c_lighter);
	margin-top: 10px;
}
.board_wrap .write_board .attachment .file_item .file_name {
	/* font-size: 14px; */
}
.board_wrap .write_board .attachment .file_item .del_btn {
	border: 1px solid var(--p_c_red);
	color: var(--p_c_red);
}
.board_wrap .write_board .attachment .file_item .del_btn:hover {
	color: white;
	background-color: var(--p_c_red);
}
.board_wrap .write_board .btn {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
}

/* 이벤트 게시판 */
.board_wrap .event_view {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.board_wrap .event_view .item {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
}
.board_wrap .event_view .item img {
	width: 100%;
	object-fit: cover;
	display: block;
}
.board_wrap .event_view .item.soldout {
	cursor: default;
	pointer-events: none;
}
.board_wrap .event_view .item.soldout:after {
	content: "이벤트가 \A마감 되었습니다.";
	white-space: pre;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	color: white;
	font-size: 22px;
	font-weight: 700;
	text-align: center;
	background-color: rgba(15, 28, 35, 0.7);
}
/* 대기등록 */
.board_wrap:has(.waiting_reg_wrap) .tab_title_wrap {
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid var(--t_c_medium);
}
.board_wrap:has(.waiting_reg_wrap) .btn {
	width: 774px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding-top: 30px;
	margin-top: 30px;
	border-top: 1px solid var(--t_c_medium);
}
.board_wrap .waiting_reg_wrap {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 774px;
	margin: 0 auto;
}
.board_wrap .waiting_reg_wrap select,
.board_wrap .waiting_reg_wrap input {
	flex: 1 1 auto;
	height: 44px;
}
.board_wrap .waiting_reg_wrap .m_btn {
	height: 44px;
	width: 114px;
}

.board_wrap .waiting_reg_wrap .info {
	padding: 0px 20px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 60px;
}
.board_wrap .waiting_reg_wrap .item {
	display: flex;
	gap: 10px;
	flex: 1 1 100%;
}
.board_wrap .waiting_reg_wrap.recruit .item:nth-last-child(3),
.board_wrap .waiting_reg_wrap.recruit .item:nth-last-child(4),
.board_wrap .waiting_reg_wrap.recruit .item:nth-last-child(5),
.board_wrap .waiting_reg_wrap.recruit .item:nth-last-child(6) {
	flex: 1 1 40%;
}
.board_wrap .waiting_reg_wrap .item > p {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	font-size: 14px;
	font-weight: 700;
	width: 80px;
	height: 44px;
}
.board_wrap .waiting_reg_wrap .item .int_err_txt {
	width: initial;
}
.board_wrap .waiting_reg_wrap .item .set_value {
	position: relative;
	flex: 1 1 auto;
	position: relative;
}
.board_wrap .waiting_reg_wrap .item .set_value:has(> .int_err_txt) {
	height: 72px;
}
.board_wrap .waiting_reg_wrap .item .set_value .int_err_txt {
	position: absolute;
	bottom: 0;
}
.board_wrap .waiting_reg_wrap .item .set_value:has(.num_date_int) .datepicker {
	position: absolute;
	top: 2px;
	left: 2px;
	border: none;
	color: white;
	width: 42px;
	height: 40px;
	padding: 0;
	text-indent: -99999999999999px;
	background-position-x: 16px;
}
.board_wrap .waiting_reg_wrap .item .set_value:has(.datepicker) .num_date_int {
	padding-left: 45px;
}
.board_wrap .waiting_reg_wrap .item .set_value > span {
	position: absolute;
	top: 12px;
	right: 15px;
}
.board_wrap .waiting_reg_wrap .item .box_checkbox {
	align-self: self-start;
}
.board_wrap .waiting_reg_wrap .item .sh_input {
	padding-left: 45px;
	background: url(../img/search_icon.svg) no-repeat 20px center;
	background-color: white;
	background-size: 16px;
}
.board_wrap .waiting_reg_wrap .item .datepicker {
	width: 100%;
}
.board_wrap .waiting_reg_wrap .item .time_input {
	padding-left: 45px;
	background: url(../img/rl_time_icon.svg) no-repeat 20px center;
	background-color: white;
	background-size: 16px;
}
.board_wrap .waiting_reg_wrap .item .chk_list {
	display: flex;
	align-items: center;
	gap: 16px;
}
.board_wrap .waiting_reg_wrap .item .chk_list .row {
	display: flex;
	align-items: center;
	gap: 16px;
}
.board_wrap .waiting_reg_wrap .item:has(.row) .chk_list {
	flex-direction: column;
	row-gap: 8px;
	align-items: flex-start;
	justify-content: center;
}
.board_wrap .waiting_reg_wrap .item .chk_list label {
	min-width: 83px;
}
.board_wrap .waiting_reg_wrap .item .set_value .search .pop_box .item {
	display: flex;
	gap: 15px;
	border-top: 1px solid var(--t_c_lighter);
}
.board_wrap .waiting_reg_wrap .item .set_value .search .sh_tab_menu ul li a {
	display: flex;
	align-items: center;
	font-size: 15px;
	height: 44px;
	padding: 0px 20px;
	background-color: var(--t_c_table);
	color: var(--t_c_medium);
}
.board_wrap .waiting_reg_wrap .item .set_value .search .sh_tab_menu ul li.on a {
	color: var(--t_c_normal);
	font-weight: 500;
	background-color: white;
}
.board_wrap .waiting_reg_wrap .item .set_value .search .sh_tab_con {
	display: none;
	flex-grow: 1;
}
.board_wrap .waiting_reg_wrap .item .set_value .search .sh_tab_con.on {
	display: block;
}
.board_wrap .waiting_reg_wrap .item .set_value .search .sh_tab_con ul {
	height: 396px;
	overflow-y: auto;
}
.board_wrap .waiting_reg_wrap .item .set_value .search .sh_tab_con ul li a {
	display: flex;
	align-items: center;
	font-size: 15px;
	height: 44px;
	padding: 0px 30px;
	border-bottom: 1px solid var(--t_c_lighter);
	gap: 40px;
}
.board_wrap .waiting_reg_wrap .item .set_value .search .sh_tab_con ul li a span {
	position: relative;
}
.board_wrap .waiting_reg_wrap .item .set_value .search .sh_tab_con ul li a span:first-child {
	width: 68px;
}
.board_wrap .waiting_reg_wrap .item .set_value .search .sh_tab_con ul li a span:not(:last-child):after {
	content: "|";
	position: absolute;
	right: -22px;
}
.board_wrap .waiting_reg_wrap .item .set_value .search .pop_box.on {
	display: flex;
}
.board_wrap .waiting_reg_wrap .item .set_value .search .pop_box {
	display: none;
	flex-direction: column;
	gap: 15px;
	position: absolute;
	top: 50px;
	width: 100%;
	padding: 20px;
	background-color: white;
	box-shadow: 0px 0px 12px rgba(55, 72, 86, 0.2);
	border-radius: 8px;
	border: 1px solid var(--t_c_lighter);
	margin-top: 7px;
	z-index: 2;
}
.board_wrap .waiting_reg_wrap .item:has(.box_checkbox) .price_disabled:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	width: 100%;
	height: 44px;
	background-color: var(--t_c_table);
	cursor: no-drop;
	transition: all 0.3s;
	border: 1px solid var(--t_c_lighter);
	border-radius: 8px;
	color: var(--t_c_light);
	padding: 0 15px;
}
.board_wrap .waiting_reg_wrap .item .price_disabled:before {
	content: "조건선택에 선입금 선택시 입력할 수 있어요";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	width: 100%;
	background-color: var(--t_c_table);
	cursor: no-drop;
	transition: all 0.3s;
	border: 1px solid var(--t_c_lighter);
	border-radius: 8px;
	color: var(--t_c_light);
	padding: 0 15px;
}
.board_wrap .waiting_reg_wrap .add_box {
	padding: 20px;
	border-radius: 8px;
	border: 1px solid var(--t_c_lighter);
}
.board_wrap .waiting_reg_wrap div:not(:first-child) .add_box:not(:last-child) {
	margin-bottom: 20px;
}
.board_wrap .waiting_reg_wrap .add_box .sub_btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 15px;
	border-bottom: 1px solid var(--t_c_light);
	width: 100%;
}
.board_wrap .waiting_reg_wrap .add_box .sub_btn .right {
	display: flex;
	align-items: center;
	gap: 8px;
}
.board_wrap .waiting_reg_wrap .item .green_price {
	display: flex;
	align-items: center;
	gap: 30px;
}
/* 그린피 레인지 슬라이더 */
.greenPriceWrap {
	flex: 1 1 auto;
	display: flex;
	align-items: center;
	gap: 50px;
	border: 1px solid var(--t_c_lighter);
	border-radius: 8px;
	padding: 0 15px;
	height: 44px;
}
.greenPriceWrap .rangeSlider {
	flex: 1 1 auto;
}
.greenPriceWrap .rangeSlider input {
	border: none !important;
}
.rangeSlider .noUi-tooltip {
	display: none;
}
.rangeSlider .noUi-handle:after,
.rangeSlider .noUi-handle:before {
	display: none;
}
.rangeSlider .noUi-horizontal {
	height: 14px;
	border-color: var(--t_c_lighter);
	background-color: var(--t_c_thin);
	box-shadow: none;
}
.rangeSlider .noUi-horizontal .noUi-handle {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	border: none;
	background-color: var(--m_c_main);
	box-shadow: none;
}
.rangeSlider .noUi-connect {
	height: 14px;
	background-color: var(--m_c_main);
}
.greenPriceWrap .priceInt {
	display: flex;
	align-items: center;
}
.greenPriceWrap .priceInt > div {
	position: relative;
}
.greenPriceWrap .priceInt > div input {
	width: 90px;
	text-align: right;
	padding-right: 4px;
	padding-left: 8px;
	height: 36px;
	border-color: white;
	background-color: transparent;
	z-index: 1;
	border-radius: 6px;
}
.greenPriceWrap .priceInt > div input:focus {
	border-color: var(--m_c) !important;
	outline: none;
}
.greenPriceWrap .priceInt > span {
	margin-left: 4px;
}

.find_with_map_wrap .map_iframe_wrap {
	width: 1100px;
	height: 600px;
	background-color: var(--t_c_section);
	border-radius: 12px;
	overflow: hidden;
}
.find_with_map_wrap .map_iframe_wrap > p {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 70px;
}

/* 피드 게시판 리스트 */
.board_wrap .feed_view_table {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}
.board_wrap .feed_view_table > .info {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	padding: 15px;
	border: 1px solid var(--t_c_lighter);
	border-radius: 8px;
}
.board_wrap .feed_view_table > .info .item {
	width: 100%;
}
.board_wrap .feed_view_table > .info .img {
	flex: 0 0 auto;
	width: 129px;
	height: 129px;
	border: 1px solid var(--t_c_lighter);
	border-radius: 8px;
	background: url() no-repeat center / cover;
	background-color: white;
}
.board_wrap .feed_view_table > .info:has(.img) .detail {
	padding-left: 0;
}
.board_wrap .feed_view_table > .info:has(.img) .write_time {
	padding-left: 0;
}
.board_wrap .feed_view_table > .info:has(.img) .post_add_wrap {
	padding-left: 0;
}
.feed_detail_view_pop .feed_con_view {
	display: flex;
	align-items: flex-start;
	gap: 30px;
	height: 688px;
	padding: 0px 20px 20px 20px;
}
.feed_detail_view_pop .title h3.txt {
	display: flex;
	align-items: center;
	gap: 10px;
}
.feed_detail_view_pop .title h3.txt::before {
	content: "";
	display: flex;
	width: 26px;
	height: 26px;
	-webkit-mask: url("../img/home_fill_icon.svg") no-repeat center;
	mask: url("../img/home_fill_icon.svg") no-repeat center;
	background-color: var(--t_c_light);
	margin-bottom: 2px;
}
.feed_detail_view_pop .feed_con_view .feed_photo {
	display: none;
	position: relative;
	width: 570px;
	height: 668px;
}
.feed_detail_view_pop .feed_con_view .feedPhotoSlide {
	height: 100%;
	background-color: var(--t_c_section);
	border-radius: 12px;
}
.feed_detail_view_pop .feed_con_view .feed_photo .feed_img {
	height: 100%;
	background: url() no-repeat center / contain;
}
.feed_detail_view_pop .feed_con_view .feed_photo:has(.feed_img) {
	display: block;
}
.feed_detail_view_pop .feed_con_view .feed_photo .swiper_round_btn {
	top: 50%;
	transform: translateY(-50%);
}
.feed_detail_view_pop .feed_con_view .feed_photo .swiper-button-next {
	right: 10px;
}
.feed_detail_view_pop .feed_con_view .feed_photo .swiper-button-prev {
	left: 10px;
}
.feed_detail_view_pop .feed_con_view .feed_view {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 500px;
	height: 100%;
}
.feed_detail_view_pop .feed_con_view .feed_view .myself {
	flex: 0 0 auto;
}
.feed_detail_view_pop .feed_con_view .feed_view .myself .detail {
	flex: 0 0 auto;
	margin-top: 15px;
	padding: 15px 0px;
	border-top: 1px solid var(--t_c_lighter);
	border-bottom: 1px solid var(--t_c_lighter);
	height: initial;
	max-height: 146px;
	overflow: hidden;
	overflow-y: auto;
}
.feed_detail_view_pop .feed_con_view .feed_view .myself .detail .complaint {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	height: 26px;
	padding: 0 8px;
	border-radius: 4px;
	color: white;
	font-weight: 500;
	transition: all 0.3s;
	white-space: nowrap;
	background-color: var(--p_c_red_dk);
	margin-top: 12px;
}
.feed_detail_view_pop .feed_con_view .feed_view .another {
	flex: 1 1 auto;
	overflow-y: auto;
	min-height: 0;
}
.feed_detail_view_pop .feed_con_view .feed_view .another .gr_mem_profile_wrap {
	padding: 15px 0px;
}
.feed_detail_view_pop .feed_con_view .feed_view .another .post_box_con {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.feed_detail_view_pop .feed_con_view .feed_view .another .write_time {
	display: flex;
	align-items: center;
	gap: 10px;
}
.feed_detail_view_pop .feed_con_view .feed_view .another .write_time .btn {
	order: 2;
}
.feed_detail_view_pop .feed_con_view .feed_view .another .write_time .btn a {
	font-size: 12px;
	height: 26px;
	padding: 0 8px;
	border-radius: 4px;
}
.feed_detail_view_pop .feed_con_view .feed_view .another .mem_textarea_write {
	padding-top: 15px;
}
.feed_detail_view_pop .feed_con_view .another .gr_mem_profile_wrap {
	border-bottom: 1px solid var(--t_c_lighter);
}
.feed_detail_view_pop .feed_con_view .another .gr_mem_profile_wrap:last-child {
	border-bottom: none;
	padding-bottom: 0;
}
.feed_detail_view_pop .feed_con_view .another .gr_mem_profile_wrap.depth {
	padding-left: 52px;
}
.feed_detail_view_pop .feed_con_view .another .gr_mem_profile_wrap.depth .detail span {
	color: var(--m_c_main);
	font-weight: 700;
	padding-right: 10px;
}
.feed_detail_view_pop .feed_con_view .my_comment {
	position: relative;
	flex: 0 0 auto;
	width: 100%;
	background-color: white;
	padding-top: 20px;
}
.feed_detail_view_pop .feed_con_view .my_comment .btn {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.feed_detail_view_pop .feed_con_view .my_comment .btn a {
	font-size: 12px;
	height: 26px;
	padding: 0 8px;
	border-radius: 4px;
}
.feed_detail_view_pop .feed_con_view .my_comment .gr_mem_profile_wrap {
	flex-direction: row;
	justify-content: space-between;
}
.feed_detail_view_pop .feed_con_view .my_comment .gr_mem_profile_wrap > * {
	padding-left: 0;
}
.feed_detail_view_pop .feed_con_view .my_comment .gr_mem_profile_wrap .write_time {
	display: flex;
	align-items: center;
	gap: 10px;
}
.feed_detail_view_pop textarea {
	font-size: 15px;
}
.feed_detail_view_pop {
	padding: 0px 15px;
}

/* 회원 검색 */
.wrap:has(.new_mem_sh_wrap) {
	background-color: var(--t_c_section);
}
.wrap:has(.new_mem_sh_wrap) + footer {
	margin-top: 0;
}
.new_mem_sh_wrap .sh_top .con {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 940px;
	padding-bottom: 60px;
}
.new_mem_sh_wrap .sh_top .title {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}
.new_mem_sh_wrap .sh_top .title p {
	color: var(--t_c_medium);
}
.new_mem_sh_wrap .sh_top {
	position: relative;
}
.new_mem_sh_wrap .sh_top input {
	height: 64px;
	background-color: white;
	background-size: 20px;
	padding-right: 68px;
}
.new_mem_sh_wrap .sh_top .mem_search_btn {
	position: absolute;
	top: 103px;
	right: 40px;
	width: 47px;
	aspect-ratio: 1 / 1;
	background-color: var(--m_c_main);
	border-radius: 8px;
}
.new_mem_sh_wrap .sh_top .mem_search_btn::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-mask: url("../img/search_icon.svg") no-repeat center;
	mask: url("../img/search_icon.svg") no-repeat center;
	mask-size: 26px;
	background-color: white;
}
.new_mem_sh_wrap .sh_top .chk_filter {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 20px;
}
.new_mem_sh_wrap .sh_top .chk_filter label.filter {
	position: relative;
	display: flex;
	align-items: center;
	cursor: pointer;
	height: 130px;
}
.new_mem_sh_wrap label.filter input[type="checkbox"] {
	display: none;
}
.new_mem_sh_wrap label.filter .check_item {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 82px;
	width: 100%;
	height: 100%;
	gap: 10px;
	border: 1px solid var(--t_c_lighter);
	border-radius: 10px;
	background: url("../img/mem_sh_icon_01.svg") no-repeat;
	background-position: center 26px;
	transition: all 0.2s;
	background-size: 60px;
}
.new_mem_sh_wrap label.filter .check_img {
	position: absolute;
	top: 12px;
	right: 15px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: url("../img/check_icon.svg") no-repeat center / cover;
	background-size: 0px;
	transition: all 0.2s;
	background-color: var(--t_c_lighter);
}
.new_mem_sh_wrap label.filter p {
	font-size: 16px;
	font-weight: 600;
	color: var(--t_c_light);
	margin-top: 1px;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	transition: all 0.2s;
}
.new_mem_sh_wrap label.filter input[type="checkbox"]:checked + .check_item .check_img {
	background-image: url("../img/check_icon.svg");
	background-size: 10px;
	background-color: var(--p_c_blue);
	border-color: var(--m_c_main);
}
.new_mem_sh_wrap label.filter .check_item:hover {
	background-color: white;
	box-shadow: 0px 20px 40px rgba(145, 158, 171, 0.25);
}
.new_mem_sh_wrap label.filter .check_item:hover p {
	color: var(--t_c_medium);
}
.new_mem_sh_wrap label.filter input[type="checkbox"]:checked + .check_item {
	background-image: url("../img/mem_sh_icon_on_01.svg");
	background-color: white;
}
.new_mem_sh_wrap label.filter input[type="checkbox"]:checked + .check_item p {
	color: var(--t_c_dark);
}
.new_mem_sh_wrap label.filter:nth-child(1) .check_item {
	background-image: url("../img/mem_sh_icon_01.svg");
}
.new_mem_sh_wrap label.filter:nth-child(1) input[type="checkbox"]:checked + .check_item {
	background-image: url("../img/mem_sh_icon_on_01.svg");
}
.new_mem_sh_wrap label.filter:nth-child(2) .check_item {
	background-image: url("../img/mem_sh_icon_02.svg");
}
.new_mem_sh_wrap label.filter:nth-child(2) input[type="checkbox"]:checked + .check_item {
	background-image: url("../img/mem_sh_icon_on_02.svg");
}
.new_mem_sh_wrap label.filter:nth-child(3) .check_item {
	background-image: url("../img/mem_sh_icon_03.svg");
}
.new_mem_sh_wrap label.filter:nth-child(3) input[type="checkbox"]:checked + .check_item {
	background-image: url("../img/mem_sh_icon_on_03.svg");
}
.new_mem_sh_wrap label.filter:nth-child(4) .check_item {
	background-image: url("../img/mem_sh_icon_04.svg");
}
.new_mem_sh_wrap label.filter:nth-child(4) input[type="checkbox"]:checked + .check_item {
	background-image: url("../img/mem_sh_icon_on_04.svg");
}
.new_mem_sh_wrap label.filter:nth-child(5) .check_item {
	background-image: url("../img/mem_sh_icon_05.svg");
}
.new_mem_sh_wrap label.filter:nth-child(5) input[type="checkbox"]:checked + .check_item {
	background-image: url("../img/mem_sh_icon_on_05.svg");
}
.new_mem_sh_wrap label.filter:nth-child(6) .check_item {
	background-image: url("../img/mem_sh_icon_06.svg");
}
.new_mem_sh_wrap label.filter:nth-child(6) input[type="checkbox"]:checked + .check_item {
	background-image: url("../img/mem_sh_icon_on_06.svg");
}

/* 급상승 회원 리스트 */
.new_mem_sh_wrap .sh_spiral {
	background-color: var(--m_c_main);
}
.new_mem_sh_wrap .sh_spiral .ranking_slide {
	display: flex;
	align-items: center;
	padding-left: 20px;
	padding-right: 8px;
	height: 44px;
	width: 1460px;
	margin: 0 auto;
}
.new_mem_sh_wrap .sh_spiral .ranking_slide p {
	flex: 0 0 auto;
	padding-right: 20px;
	font-size: 15px;
	font-weight: 700;
	color: white;
}
.new_mem_sh_wrap .sh_spiral .ranking_slide .slide_con {
	flex: 1 1 auto;
	overflow: hidden;
	position: relative;
}
.new_mem_sh_wrap .sh_spiral .ranking_slide .box {
	display: flex;
	width: max-content;
	position: relative;
}
.new_mem_sh_wrap .sh_spiral .ranking_slide .box .item {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 30px;
	white-space: nowrap;
	font-size: 15px;
	color: white;
	opacity: 0.8;
	transition: all 0.3s;
}
.new_mem_sh_wrap .sh_spiral .ranking_slide .box .item:hover {
	opacity: 1;
}
.new_mem_sh_wrap .sh_spiral .ranking_slide .box .item.on {
	opacity: 1;
	font-weight: 700;
	color: #ffbe00;
}
.new_mem_sh_wrap .sh_spiral .ranking_slide .btn {
	display: none;
	padding-left: 30px;
}

/* 회원검색 리스트 */
.new_mem_sh_wrap .new_mem_list {
	background-color: white;
}
.new_mem_sh_wrap .new_mem_list .con {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 20px;
	padding-bottom: 80px;
}
.new_mem_sh_wrap .new_mem_list .item {
	position: relative;
	padding: 15px;
	border: 1px solid var(--t_c_lighter);
	border-radius: 8px;
	transition: all 0.3s;
}
.new_mem_sh_wrap .new_mem_list .item:hover {
	background-color: white;
	border-color: var(--t_c_light);
	box-shadow: 0px 20px 40px rgba(145, 158, 171, 0.25);
}
.new_mem_sh_wrap .new_mem_list .item .blog_home {
	position: absolute;
	top: 15px;
	right: 15px;
	display: flex;
	align-items: center;
	height: 14px;
	gap: 4px;
	font-size: 10px;
	font-weight: 700;
	color: var(--t_c_medium);
	z-index: 10;
	transition: all 0.2s;
}
.new_mem_sh_wrap .new_mem_list .item .blog_home:after {
	content: "";
	display: flex;
	width: 14px;
	height: 14px;
	-webkit-mask: url("../img/home_fill_icon.svg") no-repeat center / cover;
	mask: url("../img/home_fill_icon.svg") no-repeat center / cover;
	background-color: var(--t_c_lighter);
	transition: all 0.1s;
}
.new_mem_sh_wrap .new_mem_list .item .blog_home:hover {
	color: var(--m_c_main);
}
.new_mem_sh_wrap .new_mem_list .item .blog_home:hover:after {
	background-color: var(--m_c_main);
}
.new_mem_sh_wrap .new_mem_list .mem_info {
	flex-direction: column;
	align-items: flex-start;
}
.new_mem_sh_wrap .new_mem_list .mem_info .mem_img {
	pointer-events: none !important;
}
.new_mem_sh_wrap .new_mem_list .mem_info.woman .gender {
	color: var(--p_c_pink);
}
.new_mem_sh_wrap .new_mem_list .mem_info.man .gender {
	color: var(--p_c_blue);
}
.new_mem_sh_wrap .new_mem_list .mem_profile_wrap {
	padding: 0 20px;
}
.new_mem_sh_wrap .new_mem_list .no_search {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1400px;
	height: 400px;
	margin: 0 auto;
	font-size: 18px;
}
.new_mem_sh_wrap .new_mem_list .page_num {
	padding-bottom: 80px;
}

/* 마이페이지 - 내피드 */
.my_feed_wrap .feed_view_table {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}
.my_feed_wrap .feed_view_table > .info {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	flex-direction: row;
	padding: 15px;
	border: 1px solid var(--t_c_lighter);
	border-radius: 8px;
}
.my_feed_wrap .feed_view_table > .info .img {
	flex: 0 0 auto;
	width: 129px;
	height: 129px;
	border: 1px solid var(--t_c_lighter);
	border-radius: 8px;
	background: url() no-repeat center / cover;
	background-color: white;
}
.my_feed_wrap .feed_view_table > .info > .item {
	width: 100%;
}
.my_feed_wrap .feed_view_table > .info:has(.img) .detail {
	padding-left: 0;
}
.my_feed_wrap .feed_view_table > .info:has(.img) .write_time {
	padding-left: 0;
}
.my_feed_wrap .feed_view_table > .info:has(.img) .post_add_wrap {
	padding-left: 0;
}

/* 락체팅 골프장 검색 */
.chat_golf_cc_search_pop_wrap {
	justify-content: flex-start;
	padding-top: 250px;
}
.chat_golf_cc_search_pop_wrap .info {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.chat_golf_cc_search_pop_wrap .search {
	position: relative;
	width: 510px;
}
.chat_golf_cc_search_pop_wrap .search .pop_box .item {
	display: flex;
	gap: 15px;
	border-top: 1px solid var(--t_c_lighter);
}
.chat_golf_cc_search_pop_wrap .search .sh_tab_menu ul li a {
	display: flex;
	align-items: center;
	font-size: 15px;
	height: 44px;
	padding: 0px 20px;
	background-color: var(--t_c_table);
	color: var(--t_c_medium);
}
.chat_golf_cc_search_pop_wrap .search .sh_tab_menu ul li.on a {
	color: var(--t_c_normal);
	font-weight: 500;
	background-color: white;
}
.chat_golf_cc_search_pop_wrap .search .sh_tab_con {
	display: none;
	flex-grow: 1;
}
.chat_golf_cc_search_pop_wrap .search .sh_tab_con.on {
	display: block;
}
.chat_golf_cc_search_pop_wrap .search .sh_tab_con ul {
	height: 396px;
	overflow-y: auto;
}
.chat_golf_cc_search_pop_wrap .search .sh_tab_con ul li a {
	display: flex;
	align-items: center;
	font-size: 15px;
	height: 44px;
	padding: 0px 30px;
	border-bottom: 1px solid var(--t_c_lighter);
	gap: 40px;
}
.chat_golf_cc_search_pop_wrap .popup_box,
.chat_golf_cc_search_pop_wrap .pop_con {
	overflow: initial !important;
}
.chat_golf_cc_search_pop_wrap .search .sh_tab_con ul li a span {
	position: relative;
}
.chat_golf_cc_search_pop_wrap .search .sh_tab_con ul li a span:first-child {
	width: 68px;
}
.chat_golf_cc_search_pop_wrap .search .sh_tab_con ul li a span:not(:last-child):after {
	content: "|";
	position: absolute;
	right: -22px;
}
.chat_golf_cc_search_pop_wrap .search .pop_box.on {
	display: flex;
}
.chat_golf_cc_search_pop_wrap .search .pop_box {
	display: none;
	flex-direction: column;
	gap: 15px;
	position: absolute;
	top: 50px;
	width: 100%;
	padding: 20px;
	background-color: white;
	box-shadow: 0px 0px 12px rgba(55, 72, 86, 0.2);
	border-radius: 8px;
	border: 1px solid var(--t_c_lighter);
	margin-top: 7px;
	z-index: 10;
}
.chat_golf_cc_search_pop_wrap .date_choice .date_box {
	flex: 1 1 auto;
}
.chat_golf_cc_search_pop_wrap .date_choice .label_wrap {
	height: 44px;
}

/* 이미지 미리보기 팝업 */
.chat_image_preview_pop_wrap .pop_con .img_box {
	display: flex;
	height: 100%;
	width: fit-content;
	overflow: hidden;
	border-radius: 12px;
}
.chat_image_preview_pop_wrap .pop_con img {
	height: 100%;
}

.chat_image_preview_pop_wrap .popup_box {
	display: block;
}
.chat_image_preview_pop_wrap .popup_box .pop_con {
	height: calc(100% - 152px);
	overflow: hidden;
}

/* 포인트 충전 카드 리스트 */
.give_points_gift_wrap .payment_type {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 380px;
	padding-top: 10px;
}
.give_points_gift_wrap:has(.payCardType) {
	justify-content: flex-start;
}
.give_points_gift_wrap:has(.payCardType) .pop_con {
	padding-bottom: 20px !important;
}
.give_points_gift_wrap .payment_type .pay_tab_menu {
	position: relative;
	display: flex;
	align-items: center;
}
.give_points_gift_wrap .payment_type .pay_tab_menu::before {
	content: "";
	position: absolute;
	bottom: 0px;
	width: 100%;
	border-bottom: 1px solid var(--t_c_lighter);
}
.give_points_gift_wrap .payment_type .pay_tab_menu a {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-bottom: 8px;
	border-bottom: 5px solid transparent;
	font-size: 18px;
	font-weight: 800;
	color: var(--t_c_light);
	transition: all 0.3s;
	z-index: 1;
}
.give_points_gift_wrap .payment_type .pay_tab_menu a:hover {
	color: var(--t_c_medium);
}
.give_points_gift_wrap .payment_type .pay_tab_menu a.on {
	border-color: var(--m_c_main);
	color: var(--t_c_dark);
}
.give_points_gift_wrap .payment_type .card_select {
	display: flex;
	align-items: center;
	gap: 20px;
}
.payCardType .item .card {
	background-color: var(--t_c_lighter);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 195px;
	height: 110px;
	border-radius: 8px;
	padding: 15px;
	color: white;
}
/* 카드 슬라이더 */
.my_point_detail_wrap .swiper-slide .card,
.payCardType .owl-item .card {
	background-color: var(--t_c_medium);
}
.my_point_detail_wrap .swiper-slide .card.kook,
.payCardType .owl-item .card.kook {
	background-color: #72695f;
}
.my_point_detail_wrap .swiper-slide .card.hana,
.payCardType .owl-item .card.hana {
	background-color: #018c74;
}
.my_point_detail_wrap .swiper-slide .card.sin,
.payCardType .owl-item .card.sin {
	background-color: #0044f6;
}
.my_point_detail_wrap .swiper-slide .card.lotte,
.payCardType .owl-item .card.lotte {
	background-color: #df0011;
}
.my_point_detail_wrap .swiper-slide .card.nong,
.payCardType .owl-item .card.nong {
	background-color: #0063ad;
}
.my_point_detail_wrap .swiper-slide .card.woori,
.payCardType .owl-item .card.woori {
	background-color: #00279b;
}
.my_point_detail_wrap .swiper-slide .card.bc,
.payCardType .owl-item .card.bc {
	background-color: #f22f4e;
}
.my_point_detail_wrap .swiper-slide .card.sam,
.payCardType .owl-item .card.sam {
	background-color: #1577f7;
}
.my_point_detail_wrap .swiper-slide .card.hyun,
.payCardType .owl-item .card.hyun {
	background-color: #434343;
}
.payCardType .item .card.card_reg {
	color: var(--t_c_normal) !important;
	background-color: white !important;
	border: 2px solid var(--p_c_red) !important;
}
.payCardType .item .card.card_reg .card_num span {
	font-size: 12px;
	line-height: 1.1;
}
.payCardType .item .card.card_reg .reg_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
	color: white;
	height: 22px;
	width: 100%;
	border-radius: 4px;
	background-color: var(--p_c_red);
}
.payCardType .owl-item {
	opacity: 0.4;
	transition: all 0.3s;
}
.payCardType .owl-item.center {
	opacity: 1;
}
.payCardType .item .card .card_type {
	font-size: 15px;
	font-weight: 900;
}
.payCardType .item .card .card_num {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.payCardType .item .card .card_num ul {
	display: flex;
	align-items: center;
	font-size: 13px;
	font-weight: 700;
	gap: 4px;
}
.payCardType .item .card .card_num img {
	width: initial;
}
.payCardType .item .card .bottom {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	height: 22px;
}
.payCardType .item .card .bottom .card_name {
	font-size: 15px;
	font-weight: 800;
}
.payCardType .item .card .bottom .del_btn {
	text-decoration: underline;
	font-size: 10px;
}
.payCardCarousel .owl-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
}
.payCardCarousel button span {
	display: none;
}
.payCardCarousel button.disabled {
	opacity: 0.4;
	pointer-events: none;
}
.payCardCarousel button::after {
	content: "<";
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	width: 20px;
	height: 20px;
	background-color: white;
	border: 1px solid var(--t_c_light);
	border-radius: 50%;
	box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
	transition: all 0.3s;
}
.payCardCarousel button:hover::after {
	background-color: var(--m_c_main);
	border-color: var(--m_c_main);
	color: white;
}
.payCardCarousel button.owl-next {
	position: absolute;
	right: 0;
}
.payCardCarousel button.owl-next::after {
	content: ">";
}
.give_points_gift_wrap .mem_point_gift .refund_policy {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 10px;
	border-top: 1px solid var(--t_c_lighter);
}
.give_points_gift_wrap .mem_point_gift .refund_policy .refund_btn {
	font-size: 12px;
	text-decoration: underline;
}

/* 모집등록 상세보기 */
.recruit_view_wrap .option_info {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.recruit_view_wrap .option_info .left {
	flex: 1 1 auto;
}
.recruit_view_wrap .option_info .left .golf_cc_name {
	font-size: 24px;
	font-weight: 800;
	color: var(--m_c_dark);
	margin-top: 35px;
}
.recruit_view_wrap .option_info .left .row {
	display: flex;
	align-items: center;
	gap: 40px;
	margin-top: 16px;
}
.recruit_view_wrap .option_info .left .row ul {
	display: flex;
	align-items: center;
	gap: 15px;
	font-size: 20px;
	color: var(--t_c_medium);
}
.recruit_view_wrap .option_info .left .row ul li:last-child {
	font-weight: 700;
	color: var(--t_c_normal);
}

.recruit_view_wrap .option_info .right {
	flex: 0 0 auto;
}
.recruit_view_wrap .option_info .right .golf_cc_img {
	display: flex;
}
.recruit_view_wrap .option_info .right img {
	width: 320px;
	height: 230px;
	object-fit: cover;
	border-radius: 12px;
}
.recruit_view_wrap .change_info {
	display: flex;
	flex-wrap: wrap;
	margin-top: 30px;
	padding: 30px 0px;
	padding-top: 15px;
	border-top: 1px solid var(--t_c_light);
	border-bottom: 1px solid var(--t_c_light);
	background-color: var(--t_c_section);
}
.recruit_view_wrap .change_info .box {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 40px;
	padding: 0px 20px;
}
.recruit_view_wrap .change_info .sub_title {
	width: 100%;
	padding-bottom: 15px;
	border-bottom: 1px solid var(--t_c_lighter);
}
.recruit_view_wrap .change_info .item {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 1 1 20%;
}
.recruit_view_wrap .change_info .item > p {
	flex: 0 0 auto;
	font-size: 14px;
	font-weight: 700;
	width: 75px;
}
.recruit_view_wrap .change_info .item .set_value {
	flex: 1 1 auto;
	position: relative;
}
.recruit_view_wrap .change_info .item .set_value > span {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 15px;
}
.recruit_view_wrap .change_info select,
.recruit_view_wrap .change_info input {
	flex: 1 1 auto;
	height: 44px;
}
.recruit_view_wrap .change_info .item:has(> textarea) {
	width: 100%;
}
.recruit_view_wrap .sub_title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 30px;
}
.recruit_view_wrap .sub_title:has(> p) {
	padding-bottom: 20px;
}
.recruit_view_wrap .sub_title p {
	font-size: 24px;
	font-weight: 800;
	color: var(--t_c_dark);
}
.recruit_view_wrap .rec_info {
	margin-top: 60px;
}
.recruit_view_wrap .rec_info .list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(20%, 1fr));
	gap: 40px;
}
.recruit_view_wrap .rec_info .list .item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 24px;
	padding-top: 50px;
	border: 1px solid var(--t_c_lighter);
	border-radius: 15px;
	transition: border-color 0.3s;
}
.recruit_view_wrap .rec_info .list .item:hover {
	border-color: var(--t_c_medium);
}
.recruit_view_wrap .rec_info .list .item:has(.bg_partner) {
	border-color: var(--m_c_dark);
}
.recruit_view_wrap .rec_info .item > p {
	position: absolute;
	top: 24px;
	right: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 24px;
	padding: 0px 10px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 700;
	color: white;
}
.recruit_view_wrap .rec_info .item > p.bg_rep {
	background-color: var(--m_c_darker);
}
.recruit_view_wrap .rec_info .item > p.bg_partner {
	background-color: var(--t_c_normal);
}
.recruit_view_wrap .rec_info .item > p.bg_friend {
	background-color: transparent;
}
.recruit_view_wrap .rec_info .item > p.bg_recruit {
	background-color: var(--p_c_blue);
}
.recruit_view_wrap .rec_info .item .mem_img {
	position: relative;
	display: flex;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	border: 1px solid var(--t_c_lighter);
	object-fit: cover;
	aspect-ratio: 1 / 1;
	margin-bottom: 25px;
	background: url("") no-repeat center / cover;
}
.recruit_view_wrap .rec_info .item .mem_img .memBadgeRdLg {
	position: absolute;
	bottom: -5px;
	right: -10px;
}
.recruit_view_wrap .rec_info .item.woman .mem_img {
	border: 3px solid var(--p_c_pink);
}
.recruit_view_wrap .rec_info .item.man .mem_img {
	border: 3px solid var(--p_c_blue);
}
.recruit_view_wrap .rec_info .item.dealer .mem_img {
	background-image: none !important;
	border: none;
	background-color: var(--m_c_light);
}
.recruit_view_wrap .rec_info .item.dealer .mem_img:after {
	content: "딜 러";
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: 800;
	color: white;
	width: 100%;
	height: 100%;
}

.recruit_view_wrap .rec_info .item .nick_name {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
}
.recruit_view_wrap .rec_info .item .mem_info {
	width: 100%;
}
.recruit_view_wrap .rec_info .item .mem_info ul {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.recruit_view_wrap .rec_info .item .mem_info ul li {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 22px;
}
.recruit_view_wrap .rec_info .item .price_info {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 15px;
	margin-top: 15px;
	border-top: 1px solid var(--t_c_lighter);
	width: 100%;
	font-weight: 800;
	color: var(--m_c_dark);
}

.recruit_view_wrap .rec_info .item .mem_info ul:has(.charge) li {
	justify-content: space-between;
}
.recruit_view_wrap .rec_info .item .mem_info ul li .charge {
	font-size: 11px;
	text-decoration: underline;
}
.recruit_view_wrap .rec_info .item .mem_info ul li strong {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 6px;
	border-radius: 4px;
	font-size: 10px;
	font-weight: 800;
	height: 22px;
	color: white;
}
.recruit_view_wrap .rec_info .item .mem_info ul li strong.pc_all {
	background-color: var(--m_c_main);
}
.recruit_view_wrap .rec_info .item .mem_info ul li strong.pc_friend {
	background-color: var(--p_c_yellow);
}
.recruit_view_wrap .rec_info .item .mem_info ul li strong.pc_private {
	background-color: var(--t_c_normal);
}
.recruit_view_wrap .rec_info .item .description {
	width: 100%;
	padding-top: 43px;
}
.recruit_view_wrap .rec_info .item .description ul {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	padding-top: 22px;
	border-top: 1px solid var(--t_c_lighter);
}
.recruit_view_wrap .rec_info .item .description ul li:first-child {
	font-weight: 800;
	color: var(--m_c_dark);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	line-clamp: 1;
	text-overflow: ellipsis;
	overflow: hidden;
}
.recruit_view_wrap .rec_info .item .btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	gap: 10px;
}
.recruit_view_wrap .rec_info .item .btn a {
	flex: 1;
	background-color: var(--t_c_normal);
	min-width: 0;
	margin-top: 20px;
}
.recruit_view_wrap .rec_info .item .btn a.kakao {
	background-color: #ffab01;
}
.recruit_view_wrap .rec_info .item .btn a.cancel {
	background-color: var(--p_c_red_dk);
}
.recruit_view_wrap .rec_info .item .btn a.friend_reg {
	background-color: var(--m_c_main);
}
.recruit_view_wrap .rec_info .item.add .add_mem {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.recruit_view_wrap .rec_info .item.add .add_mem img {
	display: flex;
	width: 60px;
	height: 60px;
	margin-bottom: 20px;
}
.recruit_view_wrap .rec_info .item.add .add_mem p {
	font-size: 14px;
	text-align: center;
	line-height: 1.4;
}
.recruit_view_wrap .rec_wait_reg_info {
	margin-top: 60px;
	position: relative;
}
.recruit_view_wrap .rec_wait_reg_info .mem_profile_wrap {
	display: block;
	position: relative;
	padding: 0;
}
.recruit_view_wrap .rec_wait_reg_info .mem_profile_wrap .close_btn {
	position: absolute;
	top: 15px;
	right: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background-color: var(--t_c_normal);
	z-index: 1;
}
.recruit_view_wrap .rec_wait_reg_info .mem_profile_wrap .close_btn:after {
	content: "";
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	-webkit-mask: url("../img/slim_close_icon.svg") no-repeat center;
	mask: url("../img/slim_close_icon.svg") no-repeat center;
	background-color: white;
}
.recruit_view_wrap .rec_wait_reg_info .mem_profile_wrap .box {
	box-shadow: none;
	gap: 15px;
}
.recruit_view_wrap .rec_wait_reg_info .mem_profile_wrap .profile_img {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
}
.recruit_view_wrap .rec_wait_reg_info .mem_profile_wrap .profile_img .memBadgeRdLg {
	position: absolute;
	right: 10px;
	bottom: 10px;
}
.recruit_view_wrap .rec_wait_reg_info .mem_profile_wrap .sel_btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}
.recruit_view_wrap .rec_wait_reg_info .mem_profile_wrap .sel_btn a {
	flex: 1;
}
.recruit_view_wrap .rec_wait_reg_info .swiper-button-next,
.recruit_view_wrap .rec_wait_reg_info .swiper-button-prev {
	top: initial;
	bottom: 42%;
	transform: translateY(-50%);
}
.recruit_view_wrap .rec_wait_reg_info .swiper-button-next {
	right: -30px;
}
.recruit_view_wrap .rec_wait_reg_info .swiper-button-prev {
	left: -30px;
}
.recruit_view_wrap .rec_btn {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 50px;
}
.recruit_view_wrap .rec_btn a {
	width: 160px;
	height: 46px;
}

/* 락채팅 오픈채팅방 만들기 팝업 */
.partner_regist_popup_wrap .pop_con {
	display: flex;
	flex-direction: column;
	gap: 15px;
}
.partner_regist_popup_wrap .info {
	display: flex;
	gap: 10px;
}
.partner_regist_popup_wrap .item {
	width: 100%;
}
.partner_regist_popup_wrap .sub_txt {
	flex: 0 0 auto;
	font-size: 14px;
	font-weight: 700;
	width: 60px;
	height: 44px;
	line-height: 45px;
	white-space: nowrap;
}
.partner_regist_popup_wrap input,
.partner_regist_popup_wrap textarea {
	font-size: 15px;
}
.partner_regist_popup_wrap textarea {
	padding-top: 12px;
	padding-bottom: 12px;
	height: 86px;
	line-height: 1.3;
}
.partner_regist_popup_wrap textarea + .count {
	top: initial;
	bottom: 10px;
}
.partner_regist_popup_wrap .count {
	font-size: 12px;
	color: var(--t_c_medium);
}
.partner_regist_popup_wrap .photo_up .upload-box {
	width: 127px;
	height: 127px;
	border-radius: 8px;
	border: 1px solid var(--t_c_lighter);
	background-color: white;
}
.partner_regist_popup_wrap .photo_up .upload-text {
	font-size: 14px;
	color: var(--p_c_red);
}
.partner_regist_popup_wrap .photo_up .upload-icon {
	width: 40px;
	height: 36px;
}
.partner_regist_popup_wrap .photo_up .hover-delete-btn {
	padding: 0 10px;
	height: 26px;
	font-size: 12px;
}
.share_reservation_pop_wrap .res_list {
	display: grid;
	grid-template-columns: repeat(5, max-content);
	align-items: center;
}
.share_reservation_pop_wrap .pop_con {
	padding-top: 5px !important;
	padding-bottom: 5px !important;
}
.share_reservation_pop_wrap .res_list .row_tb {
	position: relative;
	display: contents;
	font-weight: 600;
}
.share_reservation_pop_wrap .res_list .row_tb > * {
	padding: 15px;
	min-height: 52px;
}
.share_reservation_pop_wrap .res_list .row_tb > *:first-child {
	padding-left: 0px;
}
.share_reservation_pop_wrap .res_list .row_tb > *:last-child {
	padding-right: 0px;
}
.share_reservation_pop_wrap .res_list .row_tb:not(:last-child) > * {
	border-bottom: 1px solid var(--t_c_lighter);
}
