@charset "UTF-8";
/* Import Google Font */
@import url("https://fonts.googleapis.com/css2?family=Black+Ops+One&display=swap");
@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');


/*
***************************************************
BASE 
***************************************************
*/
:root {
	/* System fallback (iOS/mac/Win/Android) */
	--ff-system: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
	/* Base stacks */
	--font-ff-body: "Pretendard", var(--ff-system);
	--font-ff-accent: "SBAggro", var(--ff-system);
	--font-ff-heading: "SBAggro", var(--ff-system);
	--font-ff-serif: "PT Serif", "Noto Serif", Georgia, "Times New Roman", serif;
	--font-fw-heading: 400;
	--color-f1-primary: #dd2025;
	--color-primary: #e0a053;
	--color-icon-primary: #efda44;
	--layout-maxwidth-site: 1480px;
}

::-webkit-scrollbar { 
	width: 6px;
	height: 6px; 
}
::-webkit-scrollbar-track {
	background-color: #181818;
}
::-webkit-scrollbar-thumb {
	background-color: #4b4c5b;
	border-radius: 3px;
	transition: background-color 0.2s ease;
}
::-webkit-scrollbar-thumb:hover {
	background-color: #606175;
}


/* reset */
* {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address,
big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center,
dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby,
section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
dl, ul, ol, menu, li {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote::before, blockquote::after, q::before, q::after {
	content: "";
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
body, th, td, input, select, textarea {
	font-family: var(--font-ff-body);
}
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-ff-heading);
	font-weight: var(--font-fw-heading);
}
button {
	font-family: var(--font-ff-body);
	font-weight: 300;
}
i>img { max-width: 100%; max-height: 100%;}
body, html {
	font-size: 10px;
	letter-spacing: 0;
}
html, body {
	background: #181818;
	line-height: 1.3;
	color: #fff;
}
fieldset, img {
	border: 0 none;
}
img {
	vertical-align: top;
}
a {
	text-decoration: none;
	cursor: pointer;
	color: #fff;
}
a:active,
a:hover {
	text-decoration: none;
}
input, select, textarea, button {
	vertical-align: top;
	cursor: pointer;
}
button {
	color: #222;
	border: 0 none;
	padding: 0;
	background-color: transparent;
	cursor: pointer;
}
address, caption, cite, code, dfn, em, var {
	font-style: normal;
	font-weight: 400;
}
legend,
caption {
	visibility: hidden;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 1px;
	font-size: 0;
	line-height: 0;
}
input {
	outline: none;
}
input[type="text"]::-ms-clear {
	display: none;
}
input[type="file"] {
	background: transparent;
	border: 0;
	cursor: pointer;
}

/* basic */
.hidden {
	visibility: hidden;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 1px;
	font-size: 0;
	line-height: 0;
}

/* site common style max-width:1480px */
#wrap {
	position: relative;
	width: 100%;
	margin: 0 auto;
}

/* header */
#header {
	z-index: 999;
	position: fixed;
	left: 0;
	top: 0;
	height: 80px;
	width: 100%;
	background-color: rgba(13, 18, 23, 1);
	box-shadow: 0 8px 16px -4px #000000cc;
	transition: box-shadow 0.5s ease, background-color 0.5s ease;
}
#header.scroll {
	box-shadow: 0 16px 24px 0 #000000cc;
	background-color:rgba(0,0,0,.95);
}

.header {
	position: absolute;
	height: 80px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	margin: 0 auto;
	background-color: rgba(13, 18, 23, 1);
	transition: all 0.5s;
}

.header_wrap {
	position: relative;
	height: 80px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 0 20px;
	max-width: var(--layout-maxwidth-site);
	margin: 0 auto;
}
.add_maintop {display: none !important;}

/* logo */
.theme_logo_img {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%, 0%);
	z-index: 899;
}
.theme_logo_img a {
	display: block;
	width: auto;
	height: 200px;
	filter: drop-shadow(8px 16px 16px rgba(0, 0, 0, 0.75)) drop-shadow(-1px 8px 24px rgba(0, 0, 0, 1));
	transition: height 0.3s;
}
.theme_logo_img img {
	width: auto;
	height: 100%;
}
header.scroll:not(.login header.scroll) .theme_logo_img a {
	height: 62px;
}
.login .theme_logo_img {
	transform: translate(-50%, 10%);
}

/* 우측메뉴 */
.theme_login {
	display: flex;
	z-index: 1000;
}
.mem_menu_wrapper {
	display: flex;
	align-items: center;
	height: 100%;
}
.mem_menu {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
}
.mem_menu li a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: fit-content;
	min-width: 90px;
	height: 38px;
	padding: 0 8px;
	line-height: 1;
	font-size: 1.4rem;
	color: #fff;
	text-align: center;
	font-family: var(--font-ff-heading);
	font-weight: var(--font-fw-heading);
	border-radius: clamp(4px, 1vw, 8px);
	position: relative;
	overflow: hidden;
	transition: box-shadow .2s ease, background .2s ease, opacity .2s ease, filter .2s ease;
}
.mem_menu li a::before {
	content: "";
	position: absolute;
	inset: 0;
	padding: 1px;
	border-radius: inherit;
	background: linear-gradient(135deg,
		#c3995f 0%,
		#f5e985 25%,
		#f5f3c5 50%,
		#f5e985 75%,
		#c3995f 100%
	);
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	mask-composite: exclude;
	pointer-events: none;
	z-index: 1;
}
.mem_menu li a > span { position: relative; z-index: 2; }
.mem_menu li a:hover { filter: brightness(1.06) saturate(1.04); box-shadow: 0 0 10px rgba(0,0,0,.28); }
.mem_menu li a:active { box-shadow: inset 0 2px 6px rgba(0,0,0,.45); }
.mem_menu li a:focus-visible { outline: 2px solid rgba(255,255,255,.9); outline-offset: 2px; }

.mem_menu li .m_login {
	background:
		linear-gradient(180deg, rgba(255,255,255,.08), rgba(0,0,0,.12)),
		linear-gradient(93deg, #374151 0%, #374151 30%, #0e2538 60%, #172c41 100%);
	box-shadow:
		inset 0 1px 0 rgba(255,255,255,.15),
		inset 0 -1px 0 rgba(0,0,0,.25);
}
.mem_menu li .m_login:hover {
	background:
		linear-gradient(180deg, rgba(255,255,255,.10), rgba(0,0,0,.10)),
		linear-gradient(93deg, #3d4756 0%, #3d4756 30%, #133149 60%, #1d3850 100%);
}

.mem_menu li .m_join {
	background:
		linear-gradient(180deg, rgba(255,255,255,.10), rgba(0,0,0,.12)),
		linear-gradient(93deg, #f87171 0%, #991b1b 100%);
	box-shadow:
		inset 0 1px 0 rgba(255,255,255,.2),
		inset 0 -1px 0 rgba(0,0,0,.25),
		0 0 0 rgba(239, 68, 68, 0);
}
.mem_menu li .m_join:hover {
	background:
		linear-gradient(180deg, rgba(255,255,255,.12), rgba(0,0,0,.10)),
		linear-gradient(93deg, #ff7d7d 0%, #a31d1d 100%);
	box-shadow:
		inset 0 1px 0 rgba(255,255,255,.22),
		inset 0 -1px 0 rgba(0,0,0,.28),
		0 0 10px rgba(239, 68, 68, .45);
}
@supports (top: env(safe-area-inset-top)) {
	.header .mem_menu { padding-right: env(safe-area-inset-right); }
}



/* select_lang */
.select_lang {
	z-index: 1;
	height: 100%;
	overflow: visible;
	position: relative;
	margin-right: -1rem;
	margin-left: 0.5rem;
}
.selectLangCont {
	height: fit-content;
	text-align: center;
	padding: 8px 16px;
	cursor: pointer;
}
.select_lang:hover .selectLangCont img,
.select_lang:active .selectLangCont img,
.select_lang:focus .selectLangCont img {
	border: 2px solid rgba(155, 80, 80, 0.8);
	border-radius: 50%;
}
.selectLangCont img {
	width: 24px;
	height: 24px;
}
.select_lang li {
	padding: 8px 17px;
	background-color: rgba(0, 0, 0, 1);
	margin-top: -1px;
}
.select_lang li img {
	width: 20px;
	height: 20px;
}
.select_lang li:hover {
	background-color: #a97378;
}
.lang_inner {
	display: none;
	overflow: hidden;
	position: absolute;
	top: 36px;
	right: 0;
	height: auto;
	border: 1px solid;
	border-color: rgba(155, 80, 80, 1);
	border-radius: clamp(4px, 1vw, 8px);
	transition: all 0.3s;
}
.lang_inner.show {
	display: block;
}
.theme_myMenu {
	display: none;
}

/* 로그인후 */
.login #header {
	height: 126px;
}
.login #header::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	display: block;
	max-width: 100%;
	height: 46px;
	background: linear-gradient(93deg, rgba(0, 0, 0, 1) 0%, rgb(255 174 12) 50%, rgba(0, 0, 0, 1) 100%);
	border-bottom: 1px solid #cc8b0e;
}
.login #header .header {
	background: transparent;
	transform: translate(-50%, -78%);
}
.login #header .header_wrap {
	height: 100%;
	flex-direction: column;
	justify-content: flex-start;
	padding: 0 0px;
}

@media screen and (max-width: 1418px) {
	.login #header .header_wrap {
		padding: 0 20px;
	}
}
.login .theme_login {
	width: 100%;
}
.theme_myMenu {
	width: 100%;
	height: 46px;
	padding: 0;
	display: none;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}
.theme_myMenu span {
	display: inline-block;
	font-size: 1.3rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.7);
	cursor: pointer;
}
.theme_myMenu .ico {
	width: 26px;
	height: 26px;
	display: inline-block;
	margin-top: 5px;
}
.theme_myMenu .ico img {
	width: 80%;
}
.theme_myMenu span.hover:hover {
	background: #6d4e17a6;
}
.myMenuPage {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
}
.myMenuPage span {
	display: inline-flex;
	border: 1px solid;
	border-color: #220408d4;
	border-radius: 4px;
	padding: 2px 12px 2px;
	color: #ffffffd0;
	font-size: 1.245rem;
	width: 65px;
	min-width: fit-content;
	height: 28px;
	word-break: keep-all;
	line-height: 1.15;
	text-align: center;
	font-weight: 500;
	background: #511f25;
	align-items: center;
	justify-content: center;
}
.myMenuPage span.myMenu_name {
	border: 0;
	cursor: default;
	background: none;
}
.myMenuPage span.myMenu_name strong {
	color: #fbff60;
	font-weight: bold;
	margin-right: 5px;
}
.myMenu_info {
	display: flex;
	flex-direction: row;
	align-items: center;
}
.myMenu_info span {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-left: 15px;
	justify-content: center;

	min-width: max-content;
}
.myMenu_info .btn_logout {
	display: inline-flex;
	margin-left: 10px;
	border: 1px solid;
	border-color: #220408d4;
	border-radius: 4px;
	padding: 2px 12px 2px;
	color: #ffffffd0;
	font-size: 1.245rem;
	width: fit-content;
	min-width: fit-content;
	height: 28px;
	word-break: keep-all;
	line-height: 1.15;
	text-align: center;
	font-weight: 500;
	background: #511f25;
	align-items: center;
	justify-content: center;
}
.myMenu_info .btn_logout:hover {
	background: #6d4e17;
}
.login .theme_myMenu {
	display: flex;
}
.login .theme_logo_img a {
	height: 104px;
	margin-top: 0;
}
.login .site_gnb {
	padding: 0 20px;
	transform: translate(-50%, 0%);
}
.login .select_lang {
	height: 100%;
	display: flex;
	align-items: center;
}
.login .select_lang .lang_inner {
	top: 42px;
}
.login #header .mem_menu {
	display: none;
}
.btn_sns {
	display: inline-block;
	width: 32px;
	height: 32px;
}
.btn_sns img {
	width: 100%;
	height: 100%;
}
.count_alarm {
	position: absolute;
	top: -5px;
	right: -2px;
	width: 25px;
	height: 25px;
	background: red;
	color: #fff;
	text-align: center;
	line-height: 25px;
	font-size: 1.1rem;
}
.layer_list {
	display: none;
	position: absolute;
	right: 0;
	top: 31px;
	border: 5px solid #444;
	background: #d5d3d3;
	z-index: 1002;
}
.mob_myMenu_info {
	display: none;
}

@media screen and (max-width: 1190px) {
	.header_wrap {
		max-width: 100%;
	}
	.login .site_gnb {
		padding: 0 20px 0 10px;
	}
	.theme_myMenu .ico {
		width: 20px;
		height: 20px;
	}
	.myMenu_info span,
	.myMenu_info .btn_logout,
	.myMenuPage span + span {
		margin-left: 5px;
	}
	.myMenuPage span.myMenu_name {
		padding: 0;
	}
}

@media screen and (max-width: 1056px) {
	#header {
		height: 70px;
		background: transparent;
	}
	.login #header {
		height: 70px;
	}
	.login .select_lang {
		position: absolute;
		right: 12px;
		top: 0;
		background-color: transparent;
	}
	.login .select_lang .lang_inner {
		top: 54px;
	}
	.login #header .header {
		transform: translate(-50%, -50%);
	}
	.login #header .header_wrap::after {
		content: "";
		position: absolute;
		left: 0;
		top: 0;
		right: 0;
		display: block;
		max-width: 100%;
		height: 100%;
		background: linear-gradient(93deg, rgba(0, 0, 0, 1) 0%, rgb(255 174 12) 50%, rgba(0, 0, 0, 1) 100%);
		background-image: url(../assets/images/content/btbg.jpg);
		background-size: cover;
		opacity: 0.75;
		box-shadow: 0 0 16px 8px #000000;
	}
	.mob_myMenu_info {
		z-index: 1;
		position: relative;
		margin-top: -12px;
		height: 32px;
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
	.mob_myMenu_info span {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		width: 50%;
		font-size: 1.4rem;
		padding: 0 20px;
		height: 32px;
		background: linear-gradient(9deg, rgba(153, 27, 27, 0.5) 0%, rgba(0, 0, 0, 1) 24%, rgba(153, 27, 27, 0.5) 81%, rgba(0, 0, 0, 1) 100%);
	}
	.mob_myMenu_info span strong {
		font-weight: 100 !important;
		font-family: "Black Ops One", "Kumar One", cursive;
		font-size: 1.6rem;
	}
	.mob_myMenu_info span:nth-child(2) {
		background: linear-gradient(9deg, #3b0764 0%, rgba(0, 0, 0, 1) 24%, #3b0764 81%, rgba(0, 0, 0, 1) 100%);
	}

	/* */
	.myMenuPage {
		display: inline-flex;
		position: absolute;
		top: 8px;
		right: 0;
		width: calc(100% - 40px);
		gap: 0.25rem;
		align-items: center;
		justify-content: space-between;
		padding: 0 8px 0 0;
	}
}

/* gnb */
.site_gnb {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 100%;
	transform: translate(-50%, -50%);
	padding-left: 20px;
}
.gnb_menu {
	position: relative;
	width: 100%;
	height: 40px;
	max-width: var(--layout-maxwidth-site);
	margin: 0 auto;
}
.gnb_in {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	flex-direction: row;
	align-items: center;
}
.login .gnb_in {
	height: 90px;
}
.gnb_menu li {
	position: relative;
	display: inline-block;
}
.gnb {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.gnb li {
	display: inline-block;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
	height: 40px;
	line-height: 1;
}
.gnb li a {
	display: flex;
	padding: 1px;
	margin: -4px 0 0 0;
	color: #fff;
	font-size: 1.45rem;
	height: 48px;
	line-height: 1;
	border: 1px solid transparent;
	border-radius: clamp(4px, 1vw, 8px);
	background: linear-gradient(90deg, #463005 0%, #714e08 30%, #ffcf85 50%, #714e08 80%, #402c06 100%);
	font-family: var(--font-ff-accent);
	align-items: stretch;
	justify-content: center;
	transition: filter 0.3s, border-color 0.3s, color 0.3s;
}
.gnb li span {
	display: flex;
	padding: 0 16px;
	margin: 2px;
	min-width: 120px;
	border-radius: 6px;
	background: url(../assets/images/content/btbg.jpg);
	background-size: contain;
	align-items: center;
	justify-content: center;
	line-height: 1;
}
.gnb li a:hover {
	border-color: rgb(239 218 68 / 70%);
	filter: brightness(1.45);
}
.gnb li.active a,
.gnb li a:hover {
	color: var(--color-icon-primary);
}
.gnb_right {
	display: none;
	flex-direction: row;
}
.gnb_right li a {
	display: block;
	height: 20px;
	line-height: 20px;
	color: #fff;
	font-size: 1.4rem;
	margin-left: 20px;
	font-family: var(--font-ff-accent);
	font-weight: 400;
}
.gnb_right li a span {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}
.gnb_right svg {
	width: 20px;
	height: 20px;
	margin-right: 5px;
	color: var(--color-icon-primary);
}
.login .gnb_right {
	display: flex;
}
.all_menu_layer {
	display: none;
	position: absolute;
	z-index: 100;
	top: 60px;
	padding-top: 20px;
	width: 100%;
	border-bottom: 1px solid rgb(197, 154, 84);
}
.all_menu_layer::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
	display: block;
	width: 100%;
	height: calc(100% - 20px);
	background-image: linear-gradient(#000, #2c0c04);
}
.all_menu_layer .inner {
	position: relative;
	z-index: 2;
	overflow: hidden;
	width: 100%;
	max-width: 1980px;
	margin: 0 auto;
}
.all_menu_layer .menu {
	display: none;
}
.all_menu_layer .menu_list {
	overflow: hidden;
	padding: 15px 0 30px;
	width: 100%;
	margin: auto;
	display: flex;
}
.all_menu_layer .menu.sub01 .menu_list {
	padding: 30px 0;
}


.all_menu_layer .menu.sub02 {
    max-height: 60vh;
    max-height: 60dvh;
    overflow: scroll;
    scrollbar-width: none;
}
.all_menu_layer .menu.sub02 .menu_list .row_img ul li {
	width: 160px;
}
.all_menu_layer .menu_list .row_img {
	width: 100%;
}
.all_menu_layer .menu_list .row_img ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: clamp(8px, 2vw, 16px);
	width: 100%;
}
.all_menu_layer .menu_list .row_img ul li {
	width: 180px;
}
.all_menu_layer .menu_list .row_img ul li a {
	display: block;
	width: 100%;
	position: relative;
}
.all_menu_layer .menu_list .row_img .menu_img {
	overflow: hidden;
	display: block;
	width: 100%;
	height: 100%;
	border: 1px solid rgb(115 95 95 / 45%);
	border-radius: clamp(4px, 1vw, 8px);
}
.all_menu_layer .menu_list .row_img .menu_img img {
	width: 100%;
	height: 100%;
}
.all_menu_layer .menu_list .row_img .menu_tit {
	display: block;
	width: 100%;
	text-align: center;
	font-size: 1.4rem;
	padding: 8px 4px;
	line-height: 1.15;
	overflow: hidden;
	white-space: nowrap;
}
.all_menu_layer .menu_list .row_img ul li:hover .menu_img {
	border-color: rgb(255 220 90);
}
.all_menu_layer .menu_list .row_img ul li:hover .menu_tit {
	color: rgb(255 220 90);
}
.login .all_menu_layer {
	top: 100px;
}
.fixed {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
}
.mobGnb .gnb_login {
	display: none;
}
.mobGnb .gnb_tab {
	display: none;
}
.mobGnb .menu_type {
	display: none;
}
.mobGnb .gnb_afterLogin {
	display: none;
}
.gnb_afterLogin {
	display: none;
}

/* panel */
.panel {
	width: 100%;
}
.panel_logo {
	display: none;
}

@media screen and (max-width: 1480px) {
	.all_menu_layer .inner {		
		width: auto;	
	}
}



/* media */
@media screen and (max-width: 1190px) {
	.gnb li a {
		font-size: 1.4rem;
		/* 20250206 
		padding: 0 10px;
		*/
	}
	.all_menu_layer .inner {
		max-width: 100%;
		padding: 0 20px;
	}

	.login .theme_logo_img a {
		height: 78px;
	}
}

@media all and (max-width: 1056px) {
	#wrap {
		overflow: hidden;
		max-width: 100%;
	}
	.site_gnb,
	.login .site_gnb {
		background: transparent;
		margin: 0;
		padding: 0;
		transform: none;
		z-index: 1000;
	}
	.login .gnb_in {
		height: auto;
	}
	.login #header::before {
		display: none;
	}
	.gnb_menu {
		max-width: 100%;
	}
	.header {
		width: 100%;
		height: 70px;
		padding: 0;
	}
	.panel {
		z-index: 1000;
		display: block;
		height: 100vh;
		height: 100dvh; /* safari */
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		width: 0;
		background: rgba(0, 0, 0, 0.9);
	}
	.panel .btn_panel_toggle {
		position: fixed;
		z-index: 2010;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		top: 50%;
		left: 4px;
		transform: translateY(-50%);
		width: 40px;
		height: 40px;
		margin: 0;
		transition: all 0.2s ease-in-out;
		cursor: pointer;
	}
	.panel .btn_panel_toggle span,
	.panel .btn_panel_toggle span::before,
	.panel .btn_panel_toggle span::after {
		margin: 0 auto;
		width: 16px;
		height: 2px;
		background-color: var(--color-icon-primary);
		transition: all 0.3s ease-in-out;
		border-radius: 5px;
	}
	.panel .btn_panel_toggle span {
		display: inline-block;
		position: relative;
		margin: 0;
		width: 16px;
		text-align: center;
	}
	.panel .btn_panel_toggle span::before,
	.panel .btn_panel_toggle span::after {
		content: "";
		position: absolute;
		left: 0;
	}
	.panel .btn_panel_toggle span::before {
		top: -5px;
	}
	.panel .btn_panel_toggle span::after {
		top: 5px;
	}

	/* panel open */
	.panel.active .btn_panel_toggle span {
		background-color: transparent;
	}
	.panel.active .btn_panel_toggle span::before,
	.panel.active .btn_panel_toggle span::after {
		top: 0;
		width: 16px;
		background-color: #fff;
	}
	.panel.active .btn_panel_toggle span::before {
		transform: rotate(-135deg);
		-webkit-transform: rotate(-135deg);
		-moz-transform: rotate(-135deg);
		-o-transform: rotate(-135deg);
		-ms-transform: rotate(-135deg);
	}
	.panel.active .btn_panel_toggle span::after {
		-webkit-transition-delay: 0.09s;
		-moz-transition-delay: 0.09s;
		-o-transition-delay: 0.09s;
		-ms-transition-delay: 0.09s;
		transition-delay: 0.09s;
		transform: rotate(135deg);
		-webkit-transform: rotate(135deg);
		-moz-transform: rotate(135deg);
		-o-transform: rotate(135deg);
		-ms-transform: rotate(135deg);
	}

	/* panel fix */
	.panel-overlay {
		z-index: 900;
		display: none;
		position: fixed;
		top: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.9);
		cursor: pointer;
	}

	/* panel current */
	.panel.left.active {
		left: 0;
		width: 100%;
		max-width: 580px;
	}
	.panel.left.active .btn_panel_toggle {
		left: 2px;
		top: 32%;
	}

	/* panel scroll */
	.panel.active::-webkit-scrollbar {
		width: 4px;
	}
	.panel.active::-webkit-scrollbar-track {
		background: rgba(0, 0, 0, 0.1);
	}
	.panel.active::-webkit-scrollbar-thumb {
		width: 4px;
		background: #222;
	}
	.panel_logo {
		display: none;
	}
	.panel.active .panel_logo {
		position: fixed;
		right: 20px;
		top: -15px;
		height: 32px;
		display: block;
		z-index: 9999;
	}
	.panel.active .panel_logo img {
		height: 100%;
		width: auto;
	}

	/* gnb */
	.gnb_menu {
		height: 100%;
		position: relative;
		right: inherit;
		bottom: inherit;
		background-color: transparent;
	}
	.gnb_in {
		padding: 0;
		display: block;
		position: relative;
	}
	.gnb_in ul {
		width: 100%;
	}
	.gnb {
		display: none;
	}
	.gnb li {
		display: block;
		text-align: center;
		width: calc(33.33%-5px);
		background-color: #ffffff08;
	}
	.gnb li span {
		display: block;
	}
	.gnb li a {
		padding: 10px 0;
		font-size: 1.3rem;
		height: auto;
		line-height: inherit;
	}
	.gnb li + li {
		margin-top: 5px;
	}
	.gnb li a span::before {
		content: "";
		display: block;
		margin: 0 auto 8px;
		width: 30px;
		height: 30px;
		background-repeat: no-repeat;
		background-position: center;
	}
	.gnb li.active::after {
		display: none;
	}
	.gnb li:hover::after {
		display: none;
	}
	.panel.left .gnb_menu {
		display: none;
	}
	.panel.left.active .gnb_menu {
		display: flex;
	}
	.header_wrap {
		height: 70px;
		max-width: var(--layout-maxwidth-site);
		margin: 0 auto;
	}
	.login .section {
		padding: 76px 0 10px !important;
	}
	.theme_logo_img a {
		height: 54px !important;
		margin-top: 0;
		filter: none;
	}
	.login .theme_logo_img {
		margin-left: 0;
		left: 50%;
		transform: translate(-50%, 5%);
	}
	.login .theme_logo_img a {
		height: 54px;
        margin-top: 5px;
		filter: none;
	}
	.mem_menu_wrapper {
		margin-top: 0;
	}
	.mem_menu {
		display: none;
	}
	.mobGnb .gnb_login {
		display: block;
	}
	.gnb_login {
		padding-top: 20px;
	}
	.login_txt {
		font-size: 1.4rem;
		color: #fff;
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		font-weight: 600;
		margin-top: 10px;
	}
	.login_txt strong {
		margin-right: 5px;
		color: #828384;
		font-weight: 600;
		display: inline-block;
	}
	.login_btn {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		padding: 0 0.75rem;
		margin-top: 10px;
	}
	.login_btn button {
		color: #fff;
		display: block;
		width: calc(100% / 3 - 2px);
		margin: 0 1px;
		height: 28px;
		line-height: 28px;
		text-align: center;
		font-size: 1.2rem;
	}
	.login_btn button:nth-child(1) {
		color: rgb(253, 238, 186);
		background-color: #242424b3;
	}
	.login_btn button:nth-child(2) {
		background-color: rgba(100, 88, 61, 1);
	}
	.login_btn button:nth-child(3) {
		background-color: #facc15b3;
	}
	.mobGnb .menu_type {
		display: flex;
		padding: 0.75rem;
		height: fit-content;
		margin: 0;
		margin-bottom: 4px;
		flex-direction: row;
		flex-wrap: wrap;
		align-items: stretch;
	}
	.menu_type {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		flex-wrap: nowrap;
		margin: 0 0 8px;
		padding: 0;
		height: 40px;
	}
	.menu_type li {
		position: relative;
		display: flex;
		border: 1px solid rgb(100, 90, 60);
		/* width: calc(100% / 3); */
		margin-left: -1px;
		margin-top: -1px;
		height: 100%;
		flex: 1 1 0;
		min-width: fit-content;
	}
	.menu_type li a {
		display: flex;
		align-items: center;
		justify-content: center;
		color: #fff;
		width: 100%;
		padding: 8px 4px;
		font-size: 1.2rem;
		line-height: 1;
		text-align: center;
	}
	.menu_type li.menu_box span {
		position: relative;
		display: block;
		margin: 0 auto 5px;
		width: 30px;
		height: 30px;
	}
	.menu_type li a:hover {
		background-color: #facc15b3;
	}
	.all_menu_layer {
		display: none !important;
	}
	.mobGnb .gnb_tab {
		display: block;
	}
	.gnb_tab {
		position: relative;
		height: calc(100vh - 178px);
		height: calc(100dvh - 178px); /* safari */
		padding: 0;
	}
	.gnb_tab_scroll {
		height: 100%;
		overflow: hidden;
	}
	.gnb_tab_inner {
		overflow: auto;
		display: flex;
		flex-direction: column;
		height: 100%;
	}

	/* gnb login */
	.login .gnb_right {
		display: none;
	}
	.login .mobGnb .gnb_login {
		display: none;
	}
	.login .mobGnb .gnb_afterLogin {
		display: none;
	}

	/* gnb_afterLogin */
	.login .theme_myMenu {
		display: none;
	}
	.login .gnb_afterLogin {
		display: none;
	}
	.login .panel .gnb_afterLogin {
		display: none;
	}
	.login .panel.active .gnb_afterLogin {
		display: block;
	}
	.login .panel.active .gnb_afterLogin .theme_myMenu {
		display: flex;
	}
	.gnb_afterLogin .theme_myMenu span {
		font-size: 1.2rem;
		padding: 3px 8px 1px;
	}
	.gnb_afterLogin .theme_myMenu {
		padding-top: 0px;
		flex-direction: column;
		height: auto;
	}
	.gnb_afterLogin .myMenu_info {
		margin: 34px 0 -4px 0;
		padding: 0.75rem;
		width: 100%;
	}
	.gnb_afterLogin .myMenu_info span {
		background-color: #242424b3;
		font-size: 1.2rem;
		height: 38px;
		border-radius: 5px;
		padding: 0 20px;
	}
	.gnb_afterLogin .theme_myMenu .ico {
		display: none;
	}
	.myMenu_info .btn_logout {
		font-size: clamp(12px, 1.4vw, 14px);
		font-weight: 500;
		line-height: 1;
		margin: 0;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 32px;
		background-color: rgb(250 205 20 / 75%);
		border-color: rgb(255 255 255 / 20%);
	}
	.myMenuPage span.myMenu_name strong {
		color: #facc15;
	}
}

@media (max-width: 1056px) {
	.gnb_afterLogin .myMenu_info span {
		background-color: #373737;
		font-size: 1.2rem;
		height: 28px;
		line-height: 1;
		border-radius: 4px;
		padding: 0 8px;
		margin: 0;
		width: 100%;
		min-width: fit-content;
	}
	.gnb_afterLogin .myMenu_info .m_acount_box span span {
		padding: 0 6px 0 0;
	}
	.m_a_box_right {
		display: flex;
		justify-content: flex-start;
		align-items: center;
		gap: 4px;
	}
}

/* tab */
.menu_tab {
	position: relative;
	width: 50px;
}
.menu_tab ul {
	position: relative;
	width: 100%;
	height: fit-content;
	display: flex;
	flex-direction: row;
	background-color: #292929;
}
.menu_tab li {
	background-color: #292929;
	width: 100%;
	height: 25%;
	cursor: pointer;
	position: relative;
}
.menu_tab li button {
	position: relative;
	width: 100%;
	height: 100%;
	font-size: 1.275rem;
	color: #fff;
	text-align: center;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	padding: 10px 0 8px;
	font-family: var(--font-ff-accent);
	font-weight: 400;
	border: 1px solid transparent;
}

.menu_tab li.active button {
	color: rgb(250, 205, 20);
	background: #222;
	font-weight: 600;
	border-color: rgb(250 205 20 / 50%);
}
.menu_tab li img {
	width: 32px;
	height: 32px;
	margin-right: 10px;
}
.menu_tab li .img {
	display: inline-block;
}
.menu_tab li .img_on {
	display: none;
}
.menu_tab li:hover .img,
.menu_tab li.active .img {
	display: none;
}
.menu_tab li:hover .img_on,
.menu_tab li.active .img_on {
	display: inline-block;
}
.cont_tab {
	width: 100%;
}
.gnb_tab .menu_tab {
	position: sticky;
	top: 0;
	z-index: 997;
	height: fit-content;
	width: 100%;
}
.gnb_tab .cont_tab {
	padding: 0.75rem;
}

/* basic tab */
.basic_tab {
	position: relative;
}
.basic_tab ul {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row;
}
.basic_tab li {
	width: 25%;
	flex: 1 1 0;
	cursor: pointer;
	position: relative;
	height: 60px;
}
.basic_tab li + li {
	border-left: 1px solid #6c6148d1;
}
.basic_tab li:not(.active) {
	border-bottom: 1px solid #6c6148d1;
}
.basic_tab li button {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
	background-color: rgba(143, 136, 118, 0.8);
	font-weight: 500;
	font-family: var(--font-ff-heading);
	padding: 0 4px;
	transition: background-color 0.3s;
}
.basic_tab li button:hover {
	background-color: rgba(110, 100, 70, 0.8);
}
.basic_tab li button span {
	display: inline-block;
	font-size: clamp(12px, 1.6vw, 16px);
	color: #fff;
}
.basic_tab li.active button {
	background: #e9e9e9;
}
.basic_tab li.active button span {
	color: rgb(100, 88, 61);
}
.basic_tab.tab_02 li {
	width: 50%;
}
.basic_cont_tab {
	width: 100%;
	padding: 0;
}
.basic_cont_tab .cont_tab_area {
	padding: clamp(8px, 2vw, 16px);
}

.cont_tab_area .form_area {
	border: 1px solid rgba(95, 80, 41, 0.45);
	box-shadow: inset 0px 0px 16px -8px #625230;
	border-radius: clamp(4px, 1vw, 8px);
	overflow: hidden;
}
.cont_tab_area .form_area .form {}
.cont_tab_area .form_area .input_value {}
.cont_tab_area .form_area .form_title {
	width: 25%;
	justify-content: center;
	background: #64583d;
	border-right: 1px solid rgb(75, 65, 40);
	border-bottom: 1px solid rgb(75, 65, 40);
}
.cont_tab_area .form_area .form_text {
	width: 75%;
	min-height: 40px;
	padding: clamp(8px, 2vw, 16px);
	border-bottom: 1px solid rgba(75, 65, 40, 0.25);
}
.cont_tab_area .form_area .form .input {
	border: 1px solid rgba(100, 90, 60, 0.2);
	background-color: #6c6148;
}
.cont_tab_area .form_area .form .input input {
	/* border: 1px solid rgba(100, 90, 60, 0.2); */
	/* background-color: #6c6148; */
}
.cont_tab_area .form_area .form.input_value .input {
	background-color: transparent;
	border: none;
}
.cont_tab_area .form_area .form.input_value .input input {
	cursor: default;
}

.cont_write_area {
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: clamp(8px, 2vw, 16px);
	padding: clamp(8px, 2vw, 16px);
}
.cont_write_area .form_area {
	border: 1px solid rgba(95, 80, 41, 0.45);
	box-shadow: inset 0px 0px 16px -8px #625230;
	border-radius: clamp(4px, 1vw, 8px);
	overflow: hidden;
}
.cont_write_area .form_area .form {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: flex-start;
}
.cont_write_area .form_area .input_value {}
.cont_write_area .form_area .form_title {
	width: 25%;
	justify-content: center;
	background: #64583d;
	border-right: 1px solid rgb(75, 65, 40);
	border-bottom: 1px solid rgb(75, 65, 40);
}
.cont_write_area .form_area .form_text {
	width: 75%;
	min-height: 40px;
	padding: clamp(6px, 2vw, 12px);
	border-bottom: 1px solid rgba(75, 65, 40, 0.25);
}
.cont_write_area .form_area .form_textarea {
	width: 75%;
	padding: clamp(6px, 2vw, 12px);
}
.cont_write_area .form_area .form .input input {
	width: 100%;
	height: 100%;
	border: 0;
	padding: 0;
	background-color: transparent;
	color: #615845;
	font-size: clamp(12px, 2vw, 15px);
	text-align: left;
	font-weight: 600;
}
.cont_write_area .form_area .form.input_value .input {
	background-color: transparent;
	border: none;
}
.cont_write_area .form_area .form.input_value .input input {
	cursor: default;
}

.csCenterinquireLayer .layer_content .form_area:not(.cont_write_area .form_area) {
	display: flex;
	flex-direction: column;
	width: 100%;
}
.csCenterinquireLayer .layer_content .form_area:not(.cont_write_area .form_area) .form {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: flex-start;
}
.csCenterinquireLayer .layer_content .form_area:not(.cont_write_area .form_area) .input_value {}
.csCenterinquireLayer .layer_content .form_area:not(.cont_write_area .form_area) .form_title {
	width: 25%;
	justify-content: center;
	background: #64583d;
	border-right: 1px solid rgb(75, 65, 40);
	border-bottom: 1px solid rgb(75, 65, 40);
}
.csCenterinquireLayer .layer_content .form_area:not(.cont_write_area .form_area) .form_text {
	width: 75%;
	min-height: 40px;
	padding: clamp(6px, 2vw, 12px);
	border-bottom: 1px solid rgba(75, 65, 40, 0.25);
}
.csCenterinquireLayer .layer_content .form_area:not(.cont_write_area .form_area) .form_textarea {
	width: 75%;
	padding: clamp(6px, 2vw, 12px);
}
.csCenterinquireLayer .layer_content .form_area:not(.cont_write_area .form_area) .form .input input {
	width: 100%;
	height: 100%;
	border: 0;
	padding: 0;
	background-color: transparent;
	color: #615845;
	font-size: clamp(12px, 2vw, 15px);
	text-align: left;
	font-weight: 600;
}
.csCenterinquireLayer .layer_content .form_area:not(.cont_write_area .form_area) .form.input_value .input {
	background-color: transparent;
	border: none;
}
.csCenterinquireLayer .layer_content .form_area:not(.cont_write_area .form_area) .form.input_value .input input {
	cursor: default;
}
.csCenterinquireLayer .layer_content .popup_button:not(.cont_write_area .popup_button) {
	padding: 16px;
}
@media screen and (max-width: 767px) {
	.basic_tab li {
		height: 40px;
	}
}


.game_menus h3 {
	line-height: 40px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	padding: 0 5px;
}
.game_menus h3 .tt {
	display: inline-block;
	font-size: clamp(14px, 1.8vw, 18px);
}
.game_menus h3 em {
	display: inline-block;
	font-weight: 300;
	font-size: 1.2rem;
}
.game_menus h3 strong {
	display: inline-block;
	font-weight: 600;
	color: #828384;
	font-style: italic;
}
.game_menus ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
}
.game_menus ul li {
	width: calc(100% / 2);
	border: 1px solid #000;
	margin-bottom: 3px;
	border-radius: 5px;
	text-align: center;
	background-color: #242424b3;
}
.game_menus ul li:nth-child(even) {
	margin-left: 3px;
	width: calc(100% / 2 - 3px);
}
.game_menus ul li a {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	font-size: 1.1rem;
	height: 40px;
	line-height: 40px;
	padding: 0 10px;
}
.game_menus ul li a span {
	width: calc(100% - 22px);
	padding-right: 5px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	text-align: left;
}
.game_menus ul li i {
	display: inline-block;
	width: 22px;
	height: 22px;
}
.game_menus ul li i img {
	width: 22px;
	height: 22px;
	object-fit: cover;
}

/* section */
.section {
	z-index: 10;
	position: relative;
	padding: 80px 0 0px;
	background-color: unset;
}
.login .section {
	padding-top: 126px;
}


@media screen and (max-width: 1056px) {
	.section {
		position: relative;
		padding: 70px 0 40px;
	}
	.login .section {
		padding: 115px 0 50px !important;
	}

	.add_maintop {
    display: flex !important;}
	.add_maintop .myMenu_info {margin: 0;background: rgba(0, 0, 0, 0.8);}	
	
}
.main_bg {
	position: relative;
	background-image: url(../assets/images/content/27231.jpg);
	background-repeat: no-repeat;
	background-position-y: 449px;
	background-position-x: center;
	background-repeat: repeat;
	background-size: contain;
}
.main_bg::before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #000000ad;
}

/* footer */
footer {
	position: relative;
	z-index: 98;
	background-color: #181818;
}
#footer {
	display: none;
}
.web_footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 25px 0 0;
	max-width: var(--layout-maxwidth-site);
	margin: 0 auto;
}
.footer_top {
	text-align: center;
}
.footer_top .logo {
	display: block;
	margin: 0 auto;
	max-width: 240px;
	height: auto;
}
.footer_top .logo img {
	height: 100%;
	width: 100%;
	object-fit: scale-down;
}
.footer_mid {
	margin-top: 20px;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
	width: 100%;
	padding: 0 20px;
}
.footer_mid .mid_left {
	width: 60%;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}
.footer_mid .mid_left a {
	display: flex;
	flex-direction: row;
	align-items: center;
	font-size: 1.4rem;
	margin-bottom: 20px;
}
.footer_mid .mid_left img {
	height: 64px;
	width: 64px;
	margin-right: 10px;
}
.footer_mid .mid_right {
	width: 40%;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-between;
}
.footer_mid .mid_right h3 {
	color: var(--color-icon-primary);
	font-size: 2.2rem;
	font-weight: 600;
}
.footer_mid .mid_right li {
	height: 30px;
}
.footer_mid .mid_right li a {
	color: #fff;
	text-align: center;
	display: block;
	line-height: 30px;
	font-size: 1.2rem;
	font-weight: 500;
}
.footer_mid .mid_right li a:hover {
	color: rgb(254, 243, 199);
}
.footer_bottom {
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	padding: 25px 20px 50px;
}
.footer_bottom span {
	width: 25%;
	display: block;
}
.footer_bottom span img {
	width: 100%;
}

@media screen and (max-width: 1190px) {
	.web_footer {
		max-width: 100%;
		padding: 16px 20px 24px 20px;
	}
}

@media screen and (max-width: 767px) {
	#footer {
		background-image: url(../assets/images/content/footer/bottom_nav_bg.png);
		bottom: 0;
		height: 60px;
		background-position: top center;
		background-size: 100% 100%;
		background-repeat: no-repeat;
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
		position: fixed;
		transition: all 0.5s;
		width: 100%;
		z-index: 99;
	}
	.footer_list {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		height: 60px;
		width: 100%;
	}
	#footer .footer_menu {
		position: relative;
		text-align: center;
		width: 100%;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		align-items: center;
		flex-wrap: nowrap;
		width: 100%;
		height: 100%;
	}
	#footer .footer_menu_icon {
		height: 60px;
		width: 68%;
		max-width: 60px;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -85%);
	}
	#footer .footer_menu_icon img {
		max-width: 100%;
		height: auto;
		display: block;
	}
	#footer .footer_menu_label {
		color: #dbbfbe;
		font-size: 1rem;
		font-weight: 600;
		letter-spacing: 0;
		z-index: 10;
		margin-bottom: 5px;
		text-shadow: 1px 0px 1px rgba(0, 0, 0, 0.6);
	}

	#footer .footer_menu.game_select::before {
		content: "";
		background: radial-gradient(circle, rgba(227, 85, 80, 1) 0%, rgba(0, 0, 0, 0) 60%);
		position: absolute;
		left: 0;
		top: 0;
		width: 120%;
		height: 175%;
		transform: translate(-10%, 0%);
	}

	#footer .footer_menu.game_select .footer_menu_icon {
		height: 60px;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -105%);
		filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.5)) brightness(1.25);
	}

	#footer .footer_menu.game_select .footer_menu_label {
		font-size: 1rem;
		font-weight: 600;
		color: #fff;
	}
	.footer_top .logo img {
		/* height: 40px; */
		max-width: 50vw;
		max-width: 50dvw;
	}
	.footer_mid {
		flex-direction: column;
	}
	.footer_mid .mid_left {
		flex-direction: row;
		justify-content: space-between;
		width: 100%;
	}
	.footer_mid .mid_left a {
		font-size: 1.2rem;
	}
	.footer_mid .mid_left img {
		width: 32px;
		height: 32px;
	}
	.footer_mid .mid_right {
		width: 100%;
	}
	.footer_mid .mid_right li {
		height: 20px;
	}
	.footer_bottom {
		flex-direction: column;
		margin-top: 20px;
	}
	.footer_bottom span {
		width: 100%;
		display: none;
	}
}

@media screen and (max-width: 375px) {
	#footer .footer_menu_icon {
		transform: translate(-50%, -70%);
		max-width: 48px;
	}

	#footer .footer_menu.game_select .footer_menu_icon {
		transform: translate(-50%, -80%);
	}
}

/* slide */
.slide_wrap {
	width: 100%;
	position: relative;
}
.slide_wrap .add_nav {
	height: 28px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}
.slide_wrap .swiper-pagination-bullet {
	opacity: 1;
	margin: 0 5px;
	width: 8px;
	height: 8px;
	background: #cbd5e1;
	transition: all 0.5s;
	cursor: pointer;
	border-radius: 10px;
}
.slide_wrap .swiper-pagination-bullet-active {
	width: 40px;
	background: rgb(239, 68, 68);
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
.slide {
	overflow: hidden;
	position: relative;
	width: 100%;
	margin: 0 auto;
	height: 100%;
}
.slide.mainSlide .swiper-slide {
	border-bottom: 4px solid transparent;
	border-image: linear-gradient(90deg, rgba(195, 153, 95, 0) 0%, rgba(195, 153, 95, 1) 10%, rgba(245, 233, 133, 1) 25%, rgba(245, 243, 197, 1) 50%, rgba(245, 233, 133, 1) 75%, rgba(195, 153, 95, 1) 90%, rgba(195, 153, 95, 0) 100%);
	border-image-slice: 1;
}
.slide .swiper-slide {
	width: 100%;
}
.slide .swiper-slide a {
	width: 100%;
	display: block;
}
.main_side .add_nav {
	display: none;
}
.main_side .tt {
	display: block;
	color: rgb(252, 211, 77);
	font-size: 6rem;
	line-height: 1;
	margin: 25px 0;
	font-family: var(--font-ff-accent);
	font-weight: 400;
}
.main_side span {
	display: inline-block;
	color: rgb(252, 255, 255);
	font-size: 2rem;
	line-height: 1;
	font-family: var(--font-ff-accent);
	font-weight: 400;
}
.main_side {
	padding: 0;
	margin-top: 0;
}
.main_side .swiper-slide a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0 50px;
	width: 100%;
	height: 500px;
	background-size: auto 100%;
	background-position: center top;
}

.login .main_side .swiper-slide a {
	background-position: center center;
}

.slide_text {
	position: absolute;
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	flex-direction: row;
	align-items: flex-end;
	font-family: var(--font-ff-accent);
	font-weight: 400;
}
.slide_text .slide_textbox {
	background: linear-gradient(90deg, #46300500 0%, #c78b14 30%, #eae086 50%, #da9b1e 80%, #402c0600 100%);
	margin: 0px 0px 30px;
}
.slide_text p {
	font-size: 2.4rem;
	background: linear-gradient(90deg, #46300500 0%, #000000 30%, #000000 50%, #000000 80%, #402c0600 100%);
	margin: 1px 0px;
	padding: 10px 30px;
	text-align: center;
	word-break: auto-phrase;
}
/* 모바일용 로그인/회원가입 BTN */
.mobile-mem-login {
	display: none;
	position: relative;
	z-index: 1;
}
.mobile-mem-login .mem_menu {
	width: 100%;
	gap: 0;
	display: inline-flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
}
.mobile-mem-login .mem_menu li {
	width: 100%;
	display: inherit;
}
.mobile-mem-login .mem_menu li a {
	border-radius: unset;
	width: 100%;
}

@media screen and (max-width: 1056px) {
	.login .main_side .swiper-slide a {
		background-position: center 0px;
	}
}

@media screen and (max-width: 767px) {
	.slide.mainSlide .swiper-slide {
		border-bottom: none;
	}
	.slide_text p {
		font-size: 1.4rem;
	}
}

.horizontal_side {
	max-width: var(--layout-maxwidth-site);
	margin: 0 auto 40px;
}
.horizontal_side .swiper-wrapper {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
}
.horizontal_side .swiper-slide {
	width: 200px !important;
	height: 214px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}
.horizontal_side .swiper-slide a {
	display: block;
	position: relative;
	width: 200px !important;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
	border-radius: 5%;
	transition: filter 0.3s, box-shadow 0.5s;
}
.horizontal_side .swiper-slide .text-tt {
	font-size: clamp(12px, 2vw, 14px) !important;
	border-radius: 0 0 8px 8px;
}
.horizontal_side .swiper-slide a:hover {
	box-shadow: inset 0px 4px 24px 8px #000000c4;
	filter: brightness(1.45);
}
.horizontal_side .slide {
	padding-top: 70px;
	position: relative;
}
.horizontal_side .add_nav_prev_next {
	position: absolute;
	right: 0;
	top: 0;
	height: 32px;
	text-align: right;
}
.horizontal_side .add_nav_prev_next .swiper-button-prev,
.horizontal_side .add_nav_prev_next .swiper-button-next {
	border: 0;
	width: 32px;
	height: 32px;
	background-color: #ffffff1a !important;
	background-size: 10px 10px;
	border-radius: 4px;
	margin-top: 0;
	background-position: center;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2027%2044%22%3E%3Cpath%20d%3D%27M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z%27%20fill%3D%22%23ffffff%22%2F%3E%3C%2Fsvg%3E");
}
.horizontal_side .add_nav_prev_next .swiper-button-next {
	transform: rotate(-180deg);
}
.horizontal_side .add_nav_prev_next .swiper-button-prev {
	left: inherit;
	right: 60px;
	transform: rotate(0deg);
}
.horizontal_side .add_nav_prev_next .swiper-button-prev:hover,
.horizontal_side .add_nav_prev_next .swiper-button-next:hover {
	box-shadow: 0 0 0 0 #0000, 0 0 0 0 #0000, 0 0 10px 10px rgba(251, 191, 36, 0.2) !important;
}

@media screen and (max-width: 1190px) {
	.horizontal_side {
		max-width: 100%;
	}
	.main_side .swiper-slide a {
		height: 300px;
		background-position: center right;
	}
	.main_side span {
		font-size: 1.6rem;
	}
	.main_side .tt {
		font-size: 4rem;
		margin: 10px 0;
	}
	.main_side .swiper-slide a {
		padding: 0 20px;
		background-position: center;
	}
}

@media screen and (max-width: 767px) {
	.slide_title {
		font-size: 2.6rem;
	}
	.main_side span {
		font-size: 1.4rem;
	}
	.main_side .tt {
		font-size: 2.2rem;
		margin: 10px 0;
	}
	.horizontal_side .swiper-slide {
		width: calc(100% / 3 - 16px) !important;
		margin: 0 4px;
		height: auto;
	}
	.horizontal_side .swiper-slide a {
		width: 100% !important;
		height: auto;
		padding-bottom: 100%;
	}
	.horizontal_side .swiper-slide .text-tt {
		font-size: 1.3rem;
	}
}
.site_menu_2 {
	z-index: 1;
	position: relative;
	max-width: 1227px;
	margin: 30px auto;
	gap: 15px;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
}
.site_menu_2 .sm_item {
	/* width: calc(100% / 5 - 12px); */
	flex: 1 1 18%;
	max-width: 20%;
	color: #fff;
	font-size: clamp(13px, 2vw, 16px);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	/* margin: 6px 0; */
	padding: 6px;
	border-radius: 14px;
	background: linear-gradient(90deg, #463005 0%, #714e08 30%, #ffcf85 50%, #714e08 80%, #402c06 100%);
	transition: all 0.2s ease-in-out;
}
.site_menu_2 .sm_item:hover {
	transform: scale(1.05);
	box-shadow: 0 0 10px 10px rgba(251, 191, 36, 0.2);
}
.site_menu_2 .sm_item svg,
.site_menu_2 .sm_item img {
	height: 26px;
	margin-bottom: 8px;
}
.goldbox {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: url(../assets/images/content/btbg.jpg);
	background-size: cover;
	padding: 10px;
	box-shadow: inset 0 0 13px 4px #000000a8;
	border-radius: 8px;
	font-family: var(--font-ff-accent);
	font-weight: var(--font-fw-heading);
	text-align: center;
}

/* 흐르는 슬라이드 */
.partners {
	display: flex;
	flex-direction: row;
	align-items: center;
	max-width: var(--layout-maxwidth-site);
	margin: 40px auto 0;
}
.partners .swiper-container {
	width: 100%;
	overflow: hidden;
	padding: 10px 0px;
	background: #00000063;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 25%, rgba(57, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.75) 75%, rgba(0, 0, 0, 0) 100%);
	border: 4px solid transparent;
	border-image: linear-gradient(90deg, rgba(195,153,95,0) 0%, rgba(195,153,95,1) 10%, rgba(245,233,133,1) 25%, rgba(245,243,197,1) 50%, rgba(245,233,133,1) 75%, rgba(195,153,95,1) 90%, rgba(195, 153, 95, 0) 100%);
	border-image-slice: 1;
	border-left: none;
	border-right: none;
}
.partners .swiper-wrapper {
	display: flex;
	height: 66px;
	align-items: center;
	transition-timing-function: linear;
	width: fit-content;
}
.partners .swiper-slide {
	width: 66px !important;
	height: unset;
	flex-shrink: 0;
	margin-right: 40px;
}
.partners .swiper-slide img {
	height: unset;
	width: 100%;
}
.partners.miniGame .swiper-slide {
	height: 32px;
}
.partners.miniGame .swiper-slide img {
	height: 32px;
	width: auto;
}

/*
.partners.slot .swiper-container{background:linear-gradient(93deg, rgba(0,0,0,1) 0%, rgb(59,7,100,0.8) 50%, rgba(0,0,0,1) 100%)}
.partners.miniGame .swiper-container{background:linear-gradient(93deg, rgba(0,0,0,1) 0%, rgb(23,37,84,0.8) 50%, rgba(0,0,0,1) 100%)}
.partners.holdem .swiper-container{background:linear-gradient(93deg, rgba(0,0,0,1) 0%, rgb(55,65,81,0.8) 50%, rgba(0,0,0,1) 100%)}
*/

.main_text_1 {
	position: absolute;
	z-index: 99;
	top: 40px;
	left: 0;
	width: 100%;
	font-size: clamp(16px, 3vw, 24px);
	text-align: center;
	font-family: var(--font-ff-serif);
	font-weight: 400;
	filter: drop-shadow(1px 2px 4px rgba(0, 0, 0, 0.75));
}
.main_text_2 {
	position: absolute;
	width: 100%;
	z-index: 99;
	top: 80px;
	left: 0;
	filter: drop-shadow(1px 2px 4px rgba(0, 0, 0, 0.75));
	font-size: clamp(32px, 5vw, 56px);
	font-family: var(--font-ff-serif);
	font-weight: 700;
	text-align: center;
	line-height: 1;
	background: linear-gradient(to right, #ffd118 20%, #fa4700 30%, #e3ff10 70%, #76b310 80%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	background-size: 250% auto;
	animation: textShine 2s ease-in-out infinite alternate;
}

@keyframes textShine {
	0%	{ background-position: 0% 50%;}
	100%	{ background-position: 100% 50%;}
}

@media screen and (max-width: 1190px) {
	.site_menu_2 {
		max-width: 100%;
		padding: 0 12px;
		margin: 16px auto;
		justify-content: center;
	}
	.site_menu_2 .sm_item {
		/* width: calc(100% / 5 - 12px); */
	}
}

@media screen and (max-width: 767px) {
	.site_menu_2 .sm_item {
		/* font-size: 1.3rem; */
	}
	.partners {
		padding: 0;
	}
	.partners .swiper-slide {
		width: 36px !important;
		height: 50px;
	}
	.partners .swiper-slide img {
		height: 100%;
		width: 52px;
	}
	.partners .swiper-container,
	.partners .swiper-wrapper {
		height: unset;
	}
	.site_menu_2 {
		gap: 8px;
	}
	.site_menu_2 .sm_item {
		/* width: calc(100% / 3 - 6px); */
		padding: 3px;
		border-radius: 8px;
		flex: 1 1 31%;
		max-width: 31%;
		margin: 0;
	}
	.sm_item .goldbox {
		padding: 12px 4px;
		gap: 4px;
		border-radius: 6px;
	}
}

@media screen and (max-width: 500px) {
	.site_menu_2 .sm_item {
	/* max-width: unset; */
	}
	.goldbox span {
		/* font-size: 1.2rem; */
		letter-spacing: 0.045rem;
		word-break: keep-all;
	}
}

/* main list */
.main_list {
	max-width: var(--layout-maxwidth-site);
	margin: 30px auto;
}
.main_img_list {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	padding: 0 0 0 500px;
	justify-content: flex-start;
	position: relative;
}
.main_img_list .item {
	display: flex;
	border-radius: clamp(4px, 1vw, 8px);
	overflow: hidden;
	height: clamp(240px, 30vw, 300px);
	width: calc(100% / 3 - 15px);
	position: relative;
}
.main_img_list .item a {
	position: relative;
	display: block;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center bottom;
	width: 100%;
	height: 100%;
	transition: filter 0.3s, box-shadow 0.5s;
}
.main_img_list .item a:hover {
	filter: brightness(1.45);
	box-shadow: inset 0px 4px 24px 8px #ff3e43c4;
}
.horizontal_side .swiper-slide .text-tt,
.main_img_list .item a .text-tt {
	position: absolute;
	overflow: hidden;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	display: block;
	width: 100%;
	height: auto;
	padding-top: 30%;
	padding-bottom: 6%;
	padding-right: clamp(8px, 2vw, 16px);
	padding-left: clamp(8px, 2vw, 16px);
	background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 25%, rgba(0, 0, 0, 0.05) 75%); 
	font-size: clamp(13px, 2vw, 16px);
	font-family: var(--font-ff-heading);
	font-weight: var(--font-fw-heading);
	line-height: 1.1;
	text-shadow: -1px -1px 1px rgba(74, 8, 8, 0.75), 1px 1px 1px rgba(91, 10, 10, 0.5);
	white-space: nowrap;
	text-overflow: ellipsis;
	text-align: center;
	letter-spacing: 0.045rem;
	/* pointer-events: none; */ 
}
.main_img_list .item.full {
	overflow: auto;
	position: absolute;
	left: 0;
	top: 0;
	width: 485px;
	height: 500px;
	min-height: 100%;
}
.main_img_list .item.full a {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	padding: 10% 0 0 0;
	height: 100%;
	width: 100%;
	background-color: #0f0100;
	background-size: cover;
	background-position: right bottom;
	text-align: center;
	font-family: var(--font-ff-heading);
	font-weight: normal;
}
.main_img_list .item.full a:hover {
	box-shadow: inset 0px 4px 24px 8px #000000c4;
}
.main_img_list .item.full a .text-tt {	display: none;}
.miniGame .main_img_list {
	padding: 0 0 0 645px;
}
.miniGame .main_img_list .item {
	width: calc(100% / 2 - 15px);
	height: 221px;
}
.miniGame .main_img_list .item.full {
	width: 630px;
	height: 458px;
}
.holdem .main_img_list {
	padding: 0 0 0 645px;
}
.holdem .main_img_list .item {
	width: calc(100% / 2 - 15px);
	height: 400px;
}
.holdem .main_img_list .item.full {
	width: 630px;
	height: 400px;
}

@media screen and (max-width: 1190px) {
	.main_list {
		max-width: 100%;
		padding: 0 12px;
	}
	.main_img_list {
		gap: 0;
	}
	.main_img_list,
	.miniGame .main_img_list {
		padding: 0;
		justify-content: space-between;
	}
	.holdem .main_img_list {
		justify-content: center;
		padding: 0;
	}
	.main_img_list .item.full {
		display: none;
	}
	.main_img_list .item,
	.miniGame .main_img_list .item {
		width: calc(100% / 3 - 10px);
		margin-bottom: 10px;
	}
	.main_img_list .item,
	.miniGame .main_img_list .item,
	.holdem .main_img_list .item {
		/* height: 280px; */
	}
	.holdem .main_img_list .item {
		margin: 0 5px;
	}
	.main_img_list .item a {
		/* background-position: center top; */
	}
}

@media screen and (max-width: 767px) {
	.main_img_list .item,
	.holdem .main_img_list .item,
	.miniGame .main_img_list .item {
		width: calc(100% / 2 - 5px);
		border: 1px solid rgba(255, 255, 255, 0.1);
	}
	.main_img_list,
	.miniGame .main_img_list,
	.holdem .main_img_list {
		justify-content: space-between;
	}
	.main_img_list .item,
	.miniGame .main_img_list .item,
	.holdem .main_img_list .item {
		height: auto;
		padding-bottom: 50%;
	}
	.main_img_list .item a {
		/* background-position: center top; */
		position: absolute;
	}
	.holdem .main_img_list .item {
		margin: 0;
	}
}

/* 메인 하단 공지사항, 이벤트 */
.box_3 {
	max-width: var(--layout-maxwidth-site);
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin-top: 50px;
	padding-bottom: 50px;
}
.box_3 .box {
	overflow: hidden;
	position: relative;
	display: flex;
	flex-direction: column;
	width: 48%;
	height: 400px;
	padding: 0;
	padding-top: clamp(16px, 2.4vw, 24px);
	border-radius: 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center top;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-image: linear-gradient(90deg,
		rgba(195, 153, 95, 0) 0%,
		rgba(195, 153, 95, 1) 10%,
		rgba(245, 233, 133, 1) 25%,
		rgba(245, 243, 197, 1) 50%,
		rgba(245, 233, 133, 1) 75%,
		rgba(195, 153, 95, 1) 90%,
		rgba(195, 153, 95, 0) 100%);
	border-image-slice: 1;
}
.box_3 .box:first-child {
	background-image: url(../assets/images/content/bg_casino.jpg);
}
.box_3 .box:last-child {
	background-image: url(../assets/images/content/bg_casino.jpg);
}
.box_3 .box::before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.75);
	height: 100%;
	border-radius: 0;
}
.box_3 .box .tt {
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	font-family: var(--font-ff-accent);
	font-weight: 400;
}
.box_3 .box .tt .ko {
	color: #fff;
	display: block;
	text-align: center;
	font-size: 1.8rem;
	letter-spacing: 2px;
}
.box_3 .box .tt .en {
	color: var(--color-icon-primary);
	font-weight: 300;
	display: block;
	text-align: center;
	font-size: 1.5rem;
	margin-top: 5px;
	letter-spacing: 1px;
}
.box_3 .box .list {
	overflow: auto;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	/* margin-top: 16px; */
	padding: clamp(12px, 2.4vw, 24px);
	padding-bottom: unset;
	gap: 4px;
	width: 100%;
	height: 100%;
	margin-bottom: clamp(12px, 2.4vw, 24px);
}
.box_3 .box .list a {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 4px;
	height: fit-content;
	/* min-height: 32px; */
	line-height: 1;
	color: #fff;
	font-size: clamp(12px, 1.4vw, 14px);
	padding: clamp(8px, 1.2vw, 12px);
	padding-left: clamp(4px, .8vw, 8px);
	padding-right: clamp(4px, .8vw, 8px);
	/* margin-bottom: 20px; */
	width: 100%;
}
.box_3 .box .list a span:last-child {
	color: rgba(255, 255, 255, 0.65);
	min-width: fit-content;
	font-size: clamp(10px, 1.5vw, 12px);
}

@media screen and (max-width: 1190px) {
	.box_3 {
		max-width: 100%;
		padding: 0 12px;
	}
	.box_3 .box {
		height: 340px;
		/* padding: 20px; */
	}
	.box_3 .box .tt .ko {
		font-size: 1.5rem;
	}
	.box_3 .box .tt .en {
		font-size: 1.3rem;
		margin-top: 0;
	}
	.box_3 .box .list a {
		/* margin-bottom: 10px; */
		/* font-size: 1.3rem; */
	}
}

@media screen and (max-width: 767px) {
	.box_3 {
		flex-direction: column;
		margin-top: 24px;
	}
	.box_3 .box {
		width: 100%;
		margin-bottom: 20px;
		overflow: auto;
		/* padding: 10px; */
	}
	.box_3 .box {
		height: auto;
	}
	.box_3 .box .list {
	}
	.box_3 .box .list a {
		/* font-size: 1.2rem; */
	}
	.box_3 .box .list a span {
		display: block;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		width: max-content;
	}
	.box_3 .box .list a span:nth-child(2) {
		text-align: right;
		/* font-size: 1.1rem; */
		width: fit-content;
		min-width: max-content;
	}
}

/* popup */
.bg_mask {
	z-index: 8000;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
}
.bg_mask + .bg_mask {
	background-color: transparent;
}
.popup_box .close {
	z-index: 9999;
	position: absolute;
	top: calc(env(safe-area-inset-top, 0px) + 0px);
	left: 50%;
	transform: translate(-50%, -100%);
	width: 40px;
	height: 40px;
	padding: 4px;
	background: #82611b;
	color: #fff;
	border: 1px solid transparent;
	transition:
		transform .25s cubic-bezier(.4,0,.2,1),
		opacity .2s ease;
	transform-origin: bottom;
	will-change: transform, opacity;
}
@media (hover: hover) and (pointer: fine) {
	.popup_box .close:hover {
		opacity: .7;
		transform: translate(-50%, -100%) scale(1.2);
		transform-origin: bottom;
	}
}
.popup_box .close:focus-visible {	/* 키보드 접근성 */
	outline: 2px solid rgba(255,255,255,.9);
	outline-offset: 2px;
	border-color: rgba(255,255,255,.5);
}
@media (prefers-reduced-motion: reduce) {	.popup_box .close {	transition: none;}}
@media (max-width: 768px) and (orientation: landscape) {
	.popup_box .close {
		transform: unset;
		left: unset;
		right: calc(env(safe-area-inset-right, 0px) - 4px);
		top: calc(env(safe-area-inset-top,  0px) - 4px);
		transform-origin: top right;
	}
	.slot_g_searchbox {padding-right: 40px !important;}
	@media (hover: hover) and (pointer: fine) {
		.popup_box .close:hover {	opacity: .7;	transform: scale(1.2);	transform-origin: top right;}
	}
}
.popup_box {
	display: none;
	position: absolute;
	width: 800px;
	min-height: 300px;
	border: 8px solid transparent;
	border-image: linear-gradient(to right, #8d691e, #745616) 1;
	box-shadow: 0 4px 8px #0003, 0 6px 20px #00000030;
	/* background-color: rgba(204, 204, 204, 0.6); */
	background-color: #e9e9e9;
	padding-bottom: 0;
	/* padding-bottom: 20px; */
}
.popup_box.view {
	position: fixed !important;
	z-index: 9997;
	display: block;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.popup_box.view:not(.SlotDetail) {
	height: auto;
	min-height: max-content;
}
.popup_multi {
	display: none;
	overflow: hidden;
	min-width: 400px;
	position: absolute;
	border-radius: 10px;
	background: rgba(255, 255, 255, 1);
}
.popup_multi.view {
	z-index: 9998;
	display: block;
}
.layer_body {
	overflow: auto;
}
.popup_box.all_popup {
	max-width: 750px;
	height: 100%;
	width: 100%;
	margin: 0 auto;
}
.layer_content {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	max-height: 94vh;	max-height: 94dvh;
}
.layer_head {
	display: flex;
	align-items: center;
	width: 100%;
	height: 80px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.layer_head .title {
	display: block;
	line-height: 1;
	font-size: clamp(18px, 3vw, 26px);
	text-align: center;
	width: 100%;
	font-family: var(--font-ff-heading);
	font-weight: var(--font-fw-heading);
}
.popup_button {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}

.popup_button .btn {
	display: inline-block;
	height: auto;
	line-height: 1.15;
	margin: 0;
	padding: clamp(12px, 2vw, 16px);
	padding-left: clamp(8px, 1.5vw, 12px);
	padding-right: clamp(8px, 1.5vw, 12px);
	color: #fff;
	font-size: clamp(13px, 2vw, 16px);
	text-align: center;
	border-radius: 12px;
	font-weight: 500;
	letter-spacing: 0.045rem;
	position: relative;
	overflow: hidden;
	transition: all .25s ease;
	background: rgba(20, 20, 20, 0.9);
}
.popup_button .btn::before {
	content: "";
	position: absolute;
	inset: 0;
	padding: 3px;
	border-radius: inherit;
	background: linear-gradient(135deg,
		#c3995f 0%,
		#f5e985 25%,
		#f5f3c5 50%,
		#f5e985 75%,
		#c3995f 100%
	);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask-composite: exclude;
	pointer-events: none;
	z-index: 1;
}
.popup_button .btn span {
	position: relative;
	z-index: 2;
}

/* 기본 버튼 컬러*/
.popup_button .basic {
	background: linear-gradient(145deg, #735d48, #31291d);
}
.popup_button .basic:hover {
	background: linear-gradient(145deg, #3a352d, #22201d);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.6);
}
.popup_button .basic:active {
	transform: translateY(1px);
	box-shadow: inset 2px 2px 6px rgba(0,0,0,0.7);
}
/* primary 버튼 (레드+골드 조합) */
.popup_button .primary {
	background: linear-gradient(145deg, #8c1a1a, #4d0e0e);
}
.popup_button .primary:hover {
	background: linear-gradient(145deg, #a11f1f, #5c1111);
	transform: translateY(-1px);
	box-shadow: 0 0 12px rgba(239, 68, 68, 0.8);
}
.popup_button .primary:active {
	transform: translateY(1px);
	box-shadow: inset 2px 2px 6px rgba(0,0,0,0.6);
}
/* button 태그 리셋 */
.popup_button button {
	height: 36px;
	line-height: 36px;
	width: 100%;
	background: none;
	border: none;
	cursor: pointer;
}

.popup_button.btn_2 {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: clamp(6px, 1vw, 8px);
	margin: 16px 0 16px;
}
.popup_button .login_btn {
	margin: 20px 0 0;
	background: linear-gradient(270deg, #bb7b1a 0%, #ef4444 100%);
	transition: all 0.6s;
}
.popup_button .login_btn:hover {
	filter: hue-rotate(-165deg);
}
.popup_button .cancel {
	margin: 20px 0 0;
	background: linear-gradient(270deg, #374151 0%, #1f2937 100%);
}
.popup_button.btn_2 button {
	flex: 1 1 31%;
	max-width: 40%;
}
.popup_button.btn_2 .login_btn {
	margin: 0 5px;
}
.popup_button.btn_2 .cancel {
	margin: 0 5px;
}
.popup_table {
	width: 100%;
	margin: 0; /* 0206 */
}
.popup_table .table {
	width: 100%;
}
.popup_table .table .thead {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}
.popup_table .table .tbody {
	display: flex;
	flex-direction: column;
	width: 100%;
}
.noticeLayer .popup_table .table .tbody {
	height: 400px;
	overflow-y: auto;
}
.popup_table .table .tbody .t_item {
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	justify-content: space-between;
	width: 100%;
}
.popup_table .table .th {
	display: block;
	width: 25%;
	text-align: center;
	font-size: 1.2rem;
	padding: 10px 10px 9px;
	box-shadow: 0 10px 10px #00000080;
	border: 1px solid #4c422b;
	color: #c3bcac;
	background: #64583d;
}
.popup_table .table .td {
	display: block;
	width: 25%;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	text-align: center;
	font-size: 1.3rem;
	padding: 14px 10px 14px;
	color: #4c422b;
	border-bottom: 1px solid #c3bcac;
}
.popup_table .table .td a {
	color: #4c422b;
	display: block;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.popup_table .table .td.empty {
	width: 100% !important;
}

/* 공지사항 */
.popup_table.notice .table .th {
	width: 10%;
}
.popup_table.notice .table .th:nth-child(2) {
	width: 67%;
}
.popup_table.notice .table .th:nth-child(3) {
	width: 23%;
}
.popup_table.notice .table .td {
	width: 10%;
	padding: 20px 10px 20px;
	font-size: 1.3rem;
}
.popup_table.notice .table .td:nth-child(2) {
	width: 67%;
	text-align: left;
}
.popup_table.notice .table .td:nth-child(3) {
	width: 23%;
}

/* 고객센터 */
.popup_table.csCenter .table .th {
	width: 10%;
}
.popup_table.csCenter .table .th:nth-child(2) {
	width: 67%;
}
.popup_table.csCenter .table .th:nth-child(3) {
	width: 23%;
}
.popup_table.csCenter .table .td {
	width: 10%;
	padding: 20px 10px 20px;
	font-size: 1.3rem;
}
.popup_table.csCenter .table .td:nth-child(2) {
	position: relative;
	width: 67%;
	text-align: left;
}
.popup_table.csCenter .table .td:nth-child(3) {
	width: 23%;
}
.popup_table.csCenter .table .td a {
	padding-right: 50px;
}
.state_ing {
	position: absolute;
	right: 10px;
	top: 20px;
	display: inline-block;
	padding: 3px 10px 3px;
	background: rgb(255, 182, 77);
	border-radius: 4px;
	color: rgb(255, 255, 255);
	font-size: 1.1rem;
	line-height: 1;
}

/* 베팅내역 */
.popup_table.betting .table .th {
	width: 35%;
}
.popup_table.betting .table .th:nth-child(2) {
	width: 15%;
}
.popup_table.betting .table .th:nth-child(3) {
	width: 10%;
}
.popup_table.betting .table .th:nth-child(4) {
	width: 15%;
}
.popup_table.betting .table .th:nth-child(5) {
	width: 25%;
}
.popup_table.betting .table .td {
	width: 35%;
}
.popup_table.betting .table .td:nth-child(2) {
	width: 15%;
}
.popup_table.betting .table .td:nth-child(3) {
	width: 10%;
	color: royalblue;
	font-weight: 900;
}
.popup_table.betting .table .td:nth-child(4) {
	width: 15%;
	color: royalblue;
}
.popup_table.betting .table .td:nth-child(5) {
	width: 25%;
}
.muti_text {
	font-size: 2rem;
	margin: 30px 0 10px;
	color: #545454;
	padding: 0 20px;
	text-align: center;
}
.multi_btn_box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.multi_btn_box .btn {
	display: inline-block;
	color: #fff;
	background-color: #7066e0;
	outline: none;
	padding: 0 15px;
	text-align: center;
	border-radius: 5px;
	margin: 20px 10px;
	transition: all 0.1s;
	box-shadow: 0 0 0 3px rgba(0, 0, 0, 0);
	min-width: 150px;
	font-size: 1.6rem;
	height: 40px;
	line-height: 40px;
}
.multi_btn_box .btn:focus {
	box-shadow: none !important;
}

/* 로그인 팝업 */
.register {
	width: 448px;
	border-radius: 20px;
	border: 2px solid #ffe94c42;
	background: #000000e6 !important;
}
.register .layer_content {
	padding: 30px;
}
.register .pop_logo {
	height: 80px;
	text-align: center;
	margin-bottom: 20px;
	margin-top: -60px;
}
.register .pop_logo img {
	height: 100%;
	display: inline-block;
}
.register .pop_tt {
	font-size: clamp(16px, 2vw, 20px);
	color: #fff;
	margin-bottom: clamp(16px, 3vw, 30px);
	font-family: var(--font-ff-heading);
}
.register .form_area {
	padding: 0;
}
.register .form .form_title {
	width: 100%;
	color: rgb(209, 213, 219);
	margin-bottom: 8px;
}
.register .form .form_text {
	width: 100%;
}
.register .form .input {
	box-shadow: 0 5px 0 #0000, 0 5px 0 #0000, 0 5px 5px rgba(251, 191, 36, 0.3) !important;
}
.register .form .form_text.focus .input {
	border-color: rgb(252, 211, 77);
	border-radius: 24px;
	padding: 0;
	height: 48px;
}
.register .form .form_text.focus .input input {
	padding: 0 16px 0 16px;
}
.register .form + .form {
	margin-top: 30px;
}
.register_link_btm {
	margin: 40px 0 0;
	font-size: 1.3rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.register_link_btm span {
	display: inline-block;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 10px;
}
.register_link_btm .btn_join {
	color: #ef4444;
}
.register_link_btm .btn_pw {
	color: rgba(255, 255, 255, 0.8);
	font-weight: 600;
}
.register.joinLayer {
	height: auto;
	min-height: auto;
}
.register.passwordLayer {
	height: auto;
	min-height: auto;
}

@media screen and (max-width: 767px) {
	.popup_box {
		position: fixed;
		width: 96%;
		left: 50%;
		top: 50%;
		transform: translate(-50%, 0);
		border-radius: 0;
		border-width: 4px;
		height: fit-content;
		min-height: unset;
		padding: 0;
	}
	/* .popup_box {
		width: 96%;
		left: 50% !important;
		top: 5% !important;
		transform: translate(-50%, 0);
		border-radius: 0;
		border-width: 4px;
		min-height: unset;
		max-height: 90vh;
		overflow: visible;
		padding: 0;
	} */
	.popupWrap .popup_box {
		position: relative !important;
	}
	.popup_multi {
		min-width: 90%;
		width: 90%;
		border-radius: 5px;
	}
	.popup_box.m_all_popup {
		position: fixed;
		bottom: 0 !important;
		left: 0;
		top: 40px !important;
		border: 0;
		width: 100% !important;
	}
	.popup_box.m_all_popup .popup_close_button {
		top: 18px;
		right: 20px;
		width: 25px;
		height: 25px;
	}
	.popup_box.m_all_popup.view {
		display: block;
	}
	.layer_content {
		max-height: 90vh;
		max-height: 90dvh;
		overflow: auto;
	}
	.register .pop_logo {
		height: 60px;
		margin-bottom: 30px;
		margin-top: 0;
	}
	.layer_head {
		height: 50px;
	}
	.layer_head .title {
		/* font-size: 2rem; */
	}
	.table_list	{
		max-height: 80vh;
		max-height: 80dvh;
	}
	.popup_table.csCenter .table .td {
		padding: 10px;
		font-size: 1.2rem;
	}
	.state_ing {
		top: 10px;
	}
	.muti_text {
		font-size: 1.3rem;
	}
	.multi_btn_box .btn {
		padding: 0 10px;
		font-size: 1.3rem;
		min-width: 100px;
	}
	.register {
		border-width: 1px;
		width: 94%;
		border-radius: 20px;
	}
}

/* common */
.fontStrong {
	font-weight: 700 !important;
}
.clYellow {
	color: rgb(255, 226, 84) !important;
}
.clGreen {
	color: rgb(44, 255, 146) !important;
}

/* common form */
.input input::-webkit-input-placeholder {
	color: #aaa398;
	font-size: 1.4rem;
}
.input input:-ms-input-placeholder {
	color: #aaa398;
	font-size: 1.4rem;
}
.input input::placeholder {
	color: #aaa398;
	font-size: 1.4rem;
}
.inpClear {
	display: none;
	width: 35px;
	height: 36px;
	position: absolute;
	right: 5px;
	top: 0;
	cursor: pointer;
}
.inpClear img {
	width: 16px;
	height: 16px;
}
.form_area {
	margin: 0;
}
.form + .form {
	/* margin-top: 15px; */
	/* border-top: none; */
}
.form_text + .form_text {
	margin-top: 15px;
}
.form {
	position: relative;
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	flex-wrap: wrap;
}
.form .form_title {
	display: flex;
	flex-direction: row;
	align-items: center;
	color: #f4eee0b3;
	word-break: keep-all;
	font-size: clamp(12px, 2vw, 14px);
	text-align: center;
}
.form .form_title h3 {
	font-weight: 400;
}
.asc {
	color: #f87171;
	display: block;
	text-align: left;
	margin: 5px 0 0 0;
	padding-left: 5px;
	font-size: 1.3rem;
	font-weight: 400;
}
.desc {
	display: block;
	color: #f87171;
	text-align: left;
	margin: 5px 0 0 0;
	padding-left: 20px;
	word-break: keep-all;
	font-size: clamp(11px, 1.3vw, 13px);
	font-weight: 400;
}
.form .form_text .desc {
	margin: 0;
	padding: 0;
	width: 100%;
}
.form_noti {
	color: #000;
	font-size: 1.3rem;
	line-height: 23px;
	text-align: right;
	margin-bottom: 50px;
}
.form .form_text {
	display: flex;
	position: relative;
	height: fit-content;
	background: transparent;
	align-items: center;
	flex-wrap: wrap;
}
.form .input {
	overflow: hidden;
	position: relative;
	display: block;
	padding: clamp(8px, 1.6vw, 16px);
	padding-top: 0;
	padding-bottom: 0;
	width: 100%;
	height: 40px;
	font-size: clamp(13px, 1.6vw, 16px);
	border: 1px solid rgba(100, 88, 61, 0.2);
	background-color: rgba(160, 145, 120, 0.25);
	border-radius: 4px;
}
.form .input input {
	width: 100%;
	height: 100%;
	border: 0;
	padding: 0;
	font-size: clamp(13px, 1.5vw, 15px);
	color: #ffea54;
	text-align: left;
	background-color: transparent;
	font-weight: 600;
}
.form.input_value .input {
	border: 0;
	background: none;
	border-radius: unset;
	padding: 0;
	height: 100%;
}
.form.input_value .input input {
	color: rgb(100, 88, 61);
	/* font-weight: 600; */
	/* font-size: 1.6rem; */
}
input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0 1000px #22201b inset;
	-webkit-text-fill-color: white;
	color: inherit !important;
	-webkit-text-fill-color: white !important;
}
.form .form_textarea {
	position: relative;
	width: 80%;
}
.form .form_textarea .textarea {
	display: block;
	width: 100%;
	border: 1px solid #64583d33;
	background-color: #64583d33;
	border-radius: 6px;
}
.form .form_textarea .textarea textarea {
	width: 100%;
	min-height: 120px;
	font-size: clamp(12px, 2vw, 15px);
	color: #615845;
	background-color: transparent;
	border: 0;
	padding: clamp(8px, 1.6vw, 16px);
}
.btn_money {
	display: flex;
	gap: 6px;
	margin: clamp(8px, 2vw, 16px);
	width: 100%;
	/* padding-left: 20%; */
	justify-content: center;
	flex-direction: row;
	flex-wrap: wrap;
}

.btn_money .money_button {
	height: auto;
	flex: 1 1 13%;
	margin: 0;
	padding: 12px 8px;
	display: inline-block;
	color: #fff;
	font-size: clamp(11px, 1.5vw, 14px);
	font-family: var(--font-ff-heading);
	font-weight: var(--font-fw-heading);
	border-radius: clamp(4px, 1vw, 8px);
	background: linear-gradient(to bottom, #7a6a48 0%, #5a4d36 100%);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.2),
		inset 0 -1px 0 rgba(0, 0, 0, 0.25),
		0 2px 4px rgba(0, 0, 0, 0.4);
	transition: all .25s ease;
}
.btn_money .money_button:hover {
	background: linear-gradient(to bottom, #8c7a54 0%, #6a5c42 100%);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.25),
		inset 0 -1px 0 rgba(0, 0, 0, 0.3),
		0 3px 6px rgba(0, 0, 0, 0.5);
	transform: translateY(-1px);
}
.btn_money .money_button:active {
	transform: translateY(1px);
	box-shadow:
		inset 0 2px 4px rgba(0, 0, 0, 0.6);
}

/* primary 변형 */
.btn_money .money_button.primary {
	background: linear-gradient(to bottom, #ef4444 0%, #a11e1e 100%);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.25),
		inset 0 -1px 0 rgba(0, 0, 0, 0.25),
		0 2px 4px rgba(0, 0, 0, 0.4);
}
.btn_money .money_button.primary:hover {
	background: linear-gradient(to bottom, #f35c5c 0%, #b51f1f 100%);
	transform: translateY(-1px);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.25),
		inset 0 -1px 0 rgba(0, 0, 0, 0.3),
		0 3px 6px rgba(0, 0, 0, 0.5);
}

/* secondary 변형 */
.btn_money .money_button.secondary {
	background: linear-gradient(to bottom, #4b5563 0%, #1f2937 100%);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.15),
		inset 0 -1px 0 rgba(0, 0, 0, 0.25),
		0 2px 4px rgba(0, 0, 0, 0.4);
	color: #f3f4f6;
}
.btn_money .money_button.secondary:hover {
	background: linear-gradient(to bottom, #6b7280 0%, #374151 100%);
	transform: translateY(-1px);
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.2),
		inset 0 -1px 0 rgba(0, 0, 0, 0.3),
		0 3px 6px rgba(0, 0, 0, 0.5);
}

.btn_money .money_button.secondary:active {
	transform: translateY(1px);
	box-shadow:
		inset 0 2px 4px rgba(0, 0, 0, 0.6);
}




.btn_deposit {
	height: 32px;
	padding: 0 10px;
	/* margin: 0 3px; */
	display: inline-block;
	color: #fff;
	font-size: clamp(12px, 1.5vw, 14px);
	font-weight: 500;
	border-radius: 6px;
	background: linear-gradient(-270deg, #64583d 0%, rgba(100, 88, 61, 0.5) 100%);
}

/* select */
.select_basic {
	position: relative;
	width: 100%;
	text-align: center;
	background: #fff;
	border: 1px solid rgba(105, 105, 123, 0.3);
	border-radius: 4px;
}
.select_basic {
	height: 38px;
	text-align: left;
}
.select_basic .select_box {
	display: inline-block;
	padding: 0 20px;
	position: relative;
	height: 100%;
	width: 100%;
	line-height: 38px;
}
.select_basic .select_box label {
	position: absolute;
	font-size: 1.4rem;
	top: 0;
	left: 20px;
	color: #6a6a6a;
}
.select_basic .select_box::after {
	content: "";
	display: inline-block;
	position: absolute;
	right: 20px;
	top: 17px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 4px 4px 0 4px;
	border-color: #949494 transparent transparent transparent;
	vertical-align: top;
}
.select_basic .select_box .select {
	width: 100%;
	height: 40px;
	line-height: 38px;
	color: #6a6a6a;
	opacity: 0;
	filter: alpha(opacity=0);
	font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
	.input input::-webkit-input-placeholder {
		color: #aaa398;
		font-size: 1.3rem;
	}
	.input input:-ms-input-placeholder {
		color: #aaa398;
		font-size: 1.3rem;
	}
	.input input::placeholder {
		color: #aaa398;
		font-size: 1.3rem;
	}
	.form_area {
		/* padding: 10px 20px; */
	}
	.form + .form {
		/* margin-top: 5px; */
	}
	.form .form_title {
		/* font-size: 1.3rem; */
	}
	.form.input_value .input input {
		/* font-size: 1.3rem; */
	}
	.form .form_title {
		/* width: 25%; */
	}
	.form .form_text {
		/* width: 75%; */
	}
	.form .form_textarea {
		width: 75%;
	}
	.asc {
		font-size: 1.2rem;
	}
	.btn_money {
		/* padding-left: 25%; */
		flex-wrap: wrap;
	}
	.btn_money .money_button {
		/* width: calc(100% / 3 - 6px); */
		/* font-size: 1.2rem; */
		padding: 8px;
	}
	.btn_money.btn_6 .money_button {
		/* width: calc(100% / 3 - 6px); */
	}
	.select_basic .select_box .select,
	.datepickerWrap input {
		font-size: 1.3rem;
	}
	.btn_deposit {
		/* font-size: 1.3rem; */
	}
}

@media screen and (max-width: 425px) {
	.form_area {
		/* padding: 10px 10px; */
	}
	.btn_money .money_button {
		/* width: calc(100% / 2 - 6px); */
	}
	.btn_money.btn_6 .money_button {
		/* width: calc(100% / 2 - 6px); */
	}
}

/* datepicker */
.date_pick_search {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	background: #3368ff26;
	border: 1px solid #3368ff26;
	padding: 16px;
}
.date_pick_search .select_basic {
	width: 120px;
}
.datepicker_area {
	display: flex;
	flex-direction: row;
	align-items: center;
}
.datepickerWrap {
	overflow: hidden;
	position: relative;
	display: block;
	width: 138px;
	padding: 0 40px 0 16px;
	border: 1px solid rgba(105, 105, 123, 0.3);
	height: 40px;
	background-color: #fff;
	border-radius: 4px;
	line-height: 38px;
}
.datepickerWrap input {
	width: 100%;
	height: 100%;
	border: 0;
	padding: 0;
	font-size: 1.4rem;
	background-color: transparent;
	color: #6a6a6a;
}
.datepickerWrap input::-webkit-input-placeholder {
	color: #aaa;
	font-size: 1.4rem;
}
.datepickerWrap input:-ms-input-placeholder {
	color: #aaa;
	font-size: 1.4rem;
}
.datepickerWrap input::placeholder {
	color: #aaa;
	font-size: 1.4rem;
}
.datepickerWrap::after {
	content: "";
	display: inline-block;
	position: absolute;
	right: 15px;
	top: 12px;
	width: 15px;
	height: 15px;
	vertical-align: top;
	background: url(../assets/images/content/calendar.png) center no-repeat;
	background-size: cover;
}
.datepicker_area .to {
	color: #aaa;
	display: inline-block;
	font-size: 1.4rem;
	margin: 0 5px;
}
.datepicker_area .tt {
	font-size: 1.4rem;
	color: #5e5f6f;
	padding: 0 5px 0 10px;
	text-align: right;
}

/* 검색 버튼 */
.bt_search {
	margin-left: 10px;
	width: 80px;
	height: 40px;
	border: 1px solid #332c1d;
	border-radius: 4px;
	background: #64583e;
	text-align: center;
	color: #fff;
	font-size: 1.4rem;
	line-height: 38px;
	cursor: pointer;
}
.game_depth_area {
	overflow-x: auto;
	width: 100%;
	background: #3368ff66;
	border: 1px solid #3368ff66;
	padding: 16px;
	margin-top: 10px;
}
.game_guide_dep {
	overflow-x: scroll;
	display: flex;
	gap: 4px;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
}
.game_depth_area .game_guide_dep li {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: row;
	min-width: 126px;
}
.game_depth_area .game_guide_dep li a {
	height: 58px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(18, 70, 143, 0.25);
	border-color: #3368ffbf;
	background-color: #3368ffbf;
	font-size: 1.4rem;
	line-height: 100%;
	word-break: keep-all;
	color: #fff;
	text-align: center;
	width: 100%;
}
.game_depth_area .game_guide_dep li a:hover {
	background-color: #7a25ffa6;
	border-color: #7a25ffa6;
}
.game_depth_area .game_guide_dep li.select a {
	background-color: #7a25ff;
	border: 1px solid #00000045;
	font-weight: 600;
	color: #fff;
}
.game_guide_dep::-webkit-scrollbar {
	width: 8px;
	height: 8px;
	border: 0;
	background-color: transparent;
}
.game_guide_dep::-webkit-scrollbar-thumb {
	background: #a9a9a9;
	border-radius: 9999px;
	cursor: pointer;
}
.game_guide_dep::-webkit-scrollbar-thumb:hover {
	width: 8px;
	height: 8px;
	border: 0;
	background: #a9a9a9;
}
.game_guide_dep::-webkit-scrollbar-track {
	background: transparent;
}

@media screen and (max-width: 767px) {
	.date_pick_search {
		padding: 10px;
		flex-direction: column;
	}
	.date_pick_search .select_basic {
		width: 100%;
	}
	.datepicker_area {
		flex-wrap: wrap;
		width: 100%;
		justify-content: space-between;
		margin-top: 10px;
	}
	.datepicker_area .tt {
		display: none;
	}
	.datepickerWrap {
		width: 49%;
	}
	.datepicker_area .to {
		display: none;
	}
	.bt_search {
		width: 100%;
		margin-left: 0;
		margin-top: 10px;
	}
	.game_depth_area .game_guide_dep li {
		min-width: 110px;
	}
	.game_depth_area .game_guide_dep li a {
		height: 40px;
		font-size: 1.2rem;
	}
}

/* pagination */
ul.pagination {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	width: 100%;
	justify-content: center;
}

ul.pagination li {
	display: inline-block;
	margin-bottom: 2px;
}

ul.pagination li {
	margin: 0;
	margin-inline-end: 0 !important;
}

ul.pagination li > input {
	width: 60px;
	height: 32px;
	line-height: 32px;
	text-align: center;
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 0.3em 0.8em 0.3em 0.3em;
}

ul.pagination li a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 32px;
	width: 32px;
	border: 1px solid #ddd;
	padding: 0;
	border-radius: 0.4em;
	background: #dde2eb;
	color: #323945;
}

ul.pagination li a:hover {
	background: #323945;
	color: #dde2eb;
	border-color: #1b1e24;
}

ul.pagination li a > i {
	font-size: 1.2rem;
	line-height: 100%;
	color: #3f4551;
}

ul.pagination li:not(:first-of-type) {
	margin-inline-start: 3px;
}

ul.pagination li:not(:last-of-type) {
	margin-inline-end: 3px;
}

ul.pagination .next,
ul.pagination .prev {
	background-color: #f4f4f8;
}

/* 카지노게임 */
.casino_game_wrap {
	width: 100%;
	position: relative;
}
.casino_game_wrap::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(9deg, rgba(136, 16, 16, 0.5) 0%, rgba(0, 0, 0, 1) 33%, rgba(0, 0, 0, 1) 66%, rgba(153, 27, 27, 0.5) 100%);
}
.casino_game {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	max-width: var(--layout-maxwidth-site);
	margin: 0 auto;
	gap: clamp(8px, 2vw, 16px);
	padding: 48px 0 32px;
	z-index: 1;
	position: relative;
	flex-wrap: wrap;
}

.casino_game .cg_item {
	width: calc(100% / 4 - 12px);
	border: 1px solid transparent;
	background: linear-gradient(90deg, #463005 0%, #714e08 30%, #ffcf85 50%, #714e08 80%, #402c06 100%);
	padding: 4px;
	box-shadow: 0px 4px 8px -4px #000;
}
.casino_game .cg_item a {
	display: flex;
	width: 100%;
	height: 80px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: url(../assets/images/content/btbg.jpg);
	background-size: cover;
	filter: brightness(0.75);
	font-family: var(--font-ff-accent);
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}
.casino_game .cg_item a span {
	font-size: clamp(15px, 2vw, 22px);
}
.casino_game .cg_item a span:nth-child(2) {
	color: rgb(248, 113, 113);
	font-size: 1.25rem;
}
.casino_game .cg_item a:hover,
.casino_game .cg_item a.active {
	filter: brightness(1);
}
.casino_game .cg_item a.active {
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7), 0px 0px 2px rgba(0, 0, 0, 0.7);
	animation: glowPulse 2s ease-in-out infinite;
}
.casino_game .cg_item a.active::after {
	content: "";
	position: absolute;
	top: -30%; left: -50%;
	width: 60%; height: 160%;
	background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.4) 50%, transparent 100%);
	transform: rotate(20deg) translateX(-120%);
	animation: shineSweep 2.5s linear infinite;
	pointer-events: none;
}
/* keyframes */
@keyframes glowPulse {
	0%,100% {	filter: brightness(1);}
	50%     {	filter: brightness(2);}
}
@keyframes shineSweep {
	0%   { transform: rotate(20deg) translateX(-120%); }
	100% { transform: rotate(20deg) translateX(220%); }
}


@media screen and (max-width: 1190px) {
	.casino_game_wrap {
		padding: 0 20px;
	}
	.casino_game {
		max-width: 100%;
		flex-direction: inherit;
		padding: 20px 0;
	}
	.casino_game .cg_item {
		flex: 1 1 0;
	}
}

@media screen and (max-width: 767px) {
	.casino_game {
		/* gap: 0; */
		flex-direction: row;
		padding: 12px 0px;
	}
	.casino_game .cg_item {
		width: 100%;
		margin: 6px 0px;
		padding: 2px;
	}
	.casino_game .cg_item a {
		height: 48px;
	}
	.casino_game .cg_item a span {
		/* font-size: 1.4rem; */
	}
	.casino_game .cg_item a span:nth-child(2) {
		display: none;
	}
}

.casino_game_section	{
	position: relative;
	background-image: url(../assets/images/content/bg_casino.jpg);
	background-position: center bottom;
	background-repeat: repeat;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-attachment: fixed;
}
.casino_game_section::before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(25, 5, 1, 0.8);
}
@media (orientation: portrait) {	/* 세로 화면일 때 (모바일 or 높이가 더 클 때) */
	.casino_game_section {
		background-image: url(../assets/images/content/bg_casino.jpg);
	}
}

.casino_game_section .bg {
	background-color: rgba(0, 0, 0, 0.8);
	width: 100%;
	padding: 50px 0 50px;
}
.casino_naming_side {
	max-width: var(--layout-maxwidth-site);
	margin: 0 auto;
}
.casino_naming_side .swiper-slide {
	width: calc(100% / 7 - 10px) !important;
}
.casino_naming_side .name_card {
	padding: 10px 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: rgb(130, 125, 108);
	background: linear-gradient(45deg, rgba(130, 125, 108, 1) 0%, rgba(186, 186, 185, 1) 30%, rgba(219, 208, 172, 1) 70%, rgba(246, 225, 146, 1) 100%);
	border-radius: 10px;
}
.casino_naming_side .name_card span {
	display: block;
}
.casino_naming_side .name_img {
	height: 32px;
}
.casino_naming_side .name_img img {
	height: 100%;
}
.casino_naming_side .name {
	color: #000;
	font-size: 1.2rem;
	margin-top: 5px;
	width: 100%;
	padding: 0 10px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	text-align: center;
}

@media screen and (max-width: 1190px) {
	.casino_naming_side {
		padding: 0 20px;
	}
	.casino_naming_side .swiper-slide {
		width: calc(20% - 10px) !important;
	}
}

@media screen and (max-width: 767px) {
	.casino_game_section .bg {
		padding: 0;
	}
	.casino_naming_side .swiper-slide {
		width: calc(33% - 10px) !important;
	}
}
.casino_game_list {
	max-width: var(--layout-maxwidth-site);
	margin: 0 auto 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.badge-hot {
	/* max-width: max-content; */
	max-width: 35%;
    filter: drop-shadow(2px 4px 6px black);
}
.cg_container {
	width: 100%;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	/* margin-left: -15px; */
	gap: clamp(8px, 2vw, 16px);
}

/* 플립박스 컨테이너 */
.flip-container {
	perspective: 1000px;
	flex: 1 1 15%;
	max-width: 233px;
	/* width: calc(100% / 6 - 15px); */
	height: clamp(200px, 28vw, 280px);
	position: relative;
	border-radius: 6px;
	overflow: hidden;
	/* margin-left: 15px; */
	/* margin-bottom: 15px; */
	/* border: 1px solid; */
	box-shadow: 0px 4px 16px -4px #000000cc;
}
.casino_game_list.listHoldem .flip-container {
	width: calc(100% / 6 - 15px);
}

@media screen and (max-width: 1190px) {
	.casino_game_list {
		max-width: 100%;
		padding: 0 12px;
		padding-bottom: 10%;
		margin: 24px auto 0;
	}
	.cg_container {
		/* margin-left: 0; */
		/* justify-content: space-between; */
	}
	.flip-container {
		flex: 1 1 23%;
		max-width: 23%;
		/* width: 24%; */
		/* margin-left: 0; */
	}
}

@media screen and (max-width: 767px) {
	.flip-container {
		/* width: 50%; */
		flex: 1 1 31%;
		max-width: 31%;
		/* margin-left: 0; */
	}
	.casino_game_list.listHoldem .flip-container {
		width: calc(100% / 2 - 15px);
	}
}
.flip-container .badge {
	/* display: inline-block; */
	/* position: absolute; */
	/* right: 0; */
	/* top: 0; */
	/* background-color: rgba(0, 0, 0, 0.6); */
	/* color: #fff; */
	/* padding: 8px 12px; */
	/* border-radius: 0 0 0 12px; */
	/* font-size: clamp(13px, 2vw, 16px); */
	/* font-family: var(--font-ff-heading); */
	/* font-weight: normal; */
	position: absolute;
	overflow: hidden;
	left: 0;
	right: 0;
	bottom: 0;
	/* z-index: 2; */
	display: block;
	width: 100%;
	height: auto;
	padding-top: 30%;
	padding-bottom: 6%;
	padding-right: clamp(8px, 2vw, 16px);
	padding-left: clamp(8px, 2vw, 16px);
	background: linear-gradient(to top, rgb(176, 120, 8) 0%, rgba(154, 105, 7, 0.8) 25%, rgba(239, 218, 68, 0) 75%);
	font-size: clamp(12px, 2vw, 15px);
	font-family: var(--font-ff-heading);
	font-weight: normal;
	line-height: 1.15;
	text-shadow: -1px -1px 1px rgba(74, 8, 8, 0.75), 1px 1px 1px rgba(91, 10, 10, 0.5);
	/* white-space: nowrap; */
	/* text-overflow: ellipsis; */
	text-align: center;
	letter-spacing: 0.045rem;
}
.flip-box {
	width: 100%;
	height: 100%;
	position: relative;
	transform-style: preserve-3d;
	transition: transform 0.6s;
}
.flip-container:hover .flip-box {
	transform: rotateY(180deg);
}

/* 플립박스 안의 내부 영역 */
.flip-box-inner {
	position: absolute;
	width: 100%;
	height: 100%;
	transform-style: preserve-3d;
	transition: transform 0.6s;
	/* box-shadow: inset 10px 10px 10px 10px rgba(255, 255, 255, 1); */
}
.flip-box-front,
.flip-box-back {
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
}
.flip-box-front img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 뒤면 */
.flip-box-back {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 9;
	height: 100%;
	color: white;
	text-align: center;
	transform: rotateY(-180deg);
	box-shadow: inset 10px 10px 10px 10px rgba(255, 255, 255, 1);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.back_img {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	filter: blur(5px);
}
.back_img img {
	width: 110%;
	height: 110%;
	margin: -5%;
}
.back-logo {
	z-index: 1;
	height: 100%;
	max-height: 80px;
}
.back-logo img {
	height: 100%;
	filter: drop-shadow(2px 2px 2px #000000);
	max-width: 100%;
	object-fit: scale-down;
	/* max-height: max-content; */
}
.back-element {
	z-index: 1;
	margin: 8px 0 16px 0;
	font-size: 1.1rem;
	letter-spacing: 2px;
	color: #fff;
	text-shadow: 1px 0px 2px #000;
	text-transform: uppercase;
}
.fancy-btn {
	z-index: 10;
	width: 170px;
	height: 52px;
	cursor: pointer;
}
.fancy-btn a {
	display:block;
	width:100%;
	line-height:52px;
	color:#ffffff;
	border-radius:8px;
	padding:0 8px;
	box-shadow:0 16px 8px 4px #00000080;
	text-align:center;
	font-size:1.4rem;
	letter-spacing:-1px;
	font-weight:bold;
	transition:background-color 0.3s,color 0.3s;

	/* 보더를 투명으로 두고 이중 배경으로 처리 */
	border:2px solid transparent;
	background:
		linear-gradient(90deg,#9A161A 0%,#dd2025 100%) padding-box,   /* 내부 배경 */
		linear-gradient(90deg,#ffd700,#ffbe00,#ffa500) border-box;
}
.fancy-btn a:hover {
	background-color: #ffbe00;
	color: #fff;
}

/* 기본 텍스트 스타일 */
.btn-txt {
	position: relative;
	z-index: 3;
}
.lqd-words {
	display: inline-flex !important;
}
.lqd-chars {
	display: inline-block;
	opacity: 1;
	/* 기본 상태에서 글자가 보이도록 설정 */
	transform: translateX(0);
	/* 기본 상태에서 글자가 중앙에 오도록 설정 */
}
.fancy-btn a:hover .lqd-chars {
	animation: btnHoverTxtLiquidX 0.6s calc(var(--chars-index) * 0.03s) cubic-bezier(0.23, 1, 0.32, 1) both alternate;
}

/* 오른쪽에서 사라지고 왼쪽에서 나타나는 애니메이션 */
@keyframes btnHoverTxtLiquidX {
	0% {
		opacity: 0;
		transform: translateX(-0.3em);
		/* 오른쪽에서 왼쪽으로 슬라이드 */
	}

	50% {
		opacity: 0;
		transform: translateX(-0.3em);
		/* 계속 오른쪽에 있음 */
	}

	100% {
		opacity: 1;
		transform: translateX(0);
		/* 중앙으로 돌아오며 나타남 */
	}
}

@media screen and (max-width: 767px) {
	.flip-container {
		/* height: 220px; */
	}
	.fancy-btn {
		width: 80%;
		margin: 0 auto;
		height: 40px;
	}
	.fancy-btn a {
		line-height: 40px;
		font-size: 1.2rem;
	}
	.back-logo {
		height: 80px;
	}
}

@media screen and (max-width: 425px) {
	.flip-container {
		/* height: 220px; */
		flex: 1 1 48%;
		max-width: 48%;
	}
	.back-logo {
		height: 72px;
	}
}

/* 미니게임 */
.mini_game_wrap {
	width: 100%;
	margin-top: 20px;
}
.mini_game {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	max-width: var(--layout-maxwidth-site);
	margin: 0 auto;
}
.mini_game .mn_item {
	width: calc(100% / 4);
	height: 58px;
}
.mini_game .mn_item a {
	display: block;
	width: 100%;
	height: 100%;
	transition: all 0.3s;
	font-size: 2rem;
	background-image: url(../assets/images/content/miniGames/vitamin_main_normal.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	text-align: center;
	line-height: 58px;
}
.mini_game .mn_item a:hover,
.mini_game .mn_item.active a {
	background-image: url(../assets/images/content/miniGames/vitamin_main_hover.png);
}

@media screen and (max-width: 1190px) {
	.casino_game_wrap {
		padding: 0 20px;
	}
	.mini_game {
		max-width: 100%;
		flex-direction: inherit;
		padding: 0 0 30px;
	}
}

@media screen and (max-width: 767px) {
	.mini_game {
		gap: 0;
		padding: 10px 0 30px;
	}
	.mini_game .mn_item {
		height: 40px;
	}
	.mini_game .mn_item a {
		font-size: 1.4rem;
		line-height: 40px;
	}
}
.mini_game_section {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-top: 20px;
	max-width: 1600px;
	margin: 0 auto;
}
.mini_game_section .bet_set {
	width: 266px;
	height: 100%;
	background-image: url(../assets/images/content/miniGames/m-game-bg-021-1.jpg);
	background-position: center;
	background-repeat: repeat;
	background-size: auto;
	border-radius: 6px;
	border: 2px solid rgba(40, 30, 25, 0.75);
	padding: 4px;
}
.mini_game_section .game_sec {
	width: calc(100% - 266px);
}

/* game_sec는 기본적으로 스크롤이 될 수 있도록 설정 */
.game_sec {
	position: relative;
	overflow-y: scroll;
}
.game_wrap {
	min-height: 670px;
	background: url(../assets/images/content/miniGames/m-game-bg-021.jpg) center repeat;
	border: 6px solid rgba(25, 20, 15, 0.5);
	padding: 1vw;
}
.game_inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	/*box-shadow:0 0 12px 4px #322620bf;*/
}

/* bet_key가 스크롤을 따라다니도록 설정 */
.bet_key {
	position: sticky;
	top: 126px;
	z-index: 10;
}
.game_cart {
	border: 1px solid rgba(0, 0, 0, 0.7);
	padding: 8px;
	box-shadow: inset 3px 3px 10px rgba(0, 0, 0, 0.5);
	border-radius: 6px;
	width: 100%;
	background: rgb(80 56 37 / 60%);
}
.game_cart ul.myInfo {
	margin: 0 0 5px 0;
}
.game_cart ul.myInfo li {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	color: #2c3e50;
}
.game_cart ul.myInfo li:first-child {
	background: rgba(255, 255, 255, 0.75);
	border: 1px solid #32241a;
	border-bottom: 0;
	border-radius: 4px 4px 0 0;
	padding: 5px;
}
.game_cart ul.myInfo li span {
	display: inline-block;
	font-size: 1.1rem;
	font-weight: 600;
}
.game_cart ul.myInfo li strong {
	display: inline-block;
	width: fit-content;
	font-size: 1.6rem;
	font-family: "Black Ops One", "Kumar One", cursive;
	font-weight: 600;
}
.game_cart .betzone {
	height: 100px;
	width: 100%;
	overflow: hidden;
	margin: 0 auto 3px;
	background: url(../assets/images/content/miniGames/cart_mbetcoin_bg.png) top center no-repeat;
	text-align: right;
}
.game_cart .betzone p {
	font-size: 1.8rem;
	font-family: "Black Ops One", "Kumar One", cursive;
	position: relative;
}
.game_cart .betzone .amount input {
	position: absolute;
	right: 0;
	top: 10px;
	border: 0;
	text-align: right;
	font-size: 1.8rem;
	padding: 3px 10px 0 0;
	font-family: "Black Ops One", "Kumar One", cursive;
	background: transparent;
}
.game_cart .betzone .rate {
	position: relative;
	color: #ffd56b;
	font-size: 1.3rem;
	margin: 0;
}
.game_cart .betzone .rate span {
	display: inline-block;
	position: absolute;
	right: 10px;
	top: 52px;
	font-family: "Black Ops One", "Kumar One", cursive;
}
.game_cart .betzone .ratemoney {
	position: relative;
	color: #fff;
	margin: 0;
	font-size: 1.8rem;
	font-family: "Black Ops One", "Kumar One", cursive;
	background: transparent;
	font-style: normal;
}
.game_cart .betzone .ratemoney input {
	position: absolute;
	right: 6px;
	top: 69px;
	font-family: "Black Ops One", "Kumar One", cursive;
	display: inline-block;
	text-align: right;
	border: 0;
	color: #fff737;
	font-style: normal;
	font-size: 1.8rem;
	font-weight: 900;
}
.game_cart .betcoin01 {
	width: 100%;
	overflow: hidden;
	margin: 0 auto 4px;
	gap: 4px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
}
.game_cart .betcoin01 li {
	position: relative;
	width: 115px;
	height: 43px;
	background-image: url(../assets/images/content/miniGames/btn_betcoin.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	font-size: 1.6rem;
	transition: all 0.2s linear;
}
.game_cart .betcoin01 a {
	display: block;
	text-align: center;
	text-shadow: 1px 1px 2px #4e4830, -1px -1px 2px #615a3e;
	line-height: 44px;
	font-weight: 800;
}
.game_cart .betcoin01 li .won {
	display: none;
}
.game_cart .betcoin01 li:hover {
	background-image: url(../assets/images/content/miniGames/btn_betcoin_hover.png);
}
.game_cart .betcoin01 a:hover {
	text-shadow: -1px -1px 2px #831b09, 1px 1px 2px #731f09;
}
.game_cart .betcoin01 li.cancel,
.game_cart .betcoin01 li.reload {
	font-weight: 300;
	background-image: url(../assets/images/content/miniGames/btn_betcoin_dark.png);
	font-size: 1.4rem;
	transition: all 0.2s linear;
}
.game_cart .betcoin01 li.cancel:hover,
.game_cart .betcoin01 li.reload:hover {
	background-image: url(../assets/images/content/miniGames/btn_betcoin_dark_hover.png);
}
.game_cart .betbutton {
	width: 100%;
	overflow: hidden;
	margin: 5px auto 0;
	border: 1px solid #000;
	border-radius: 4px;
}
.game_cart .betbutton a {
	background: #ff7337;
	display: block;
	text-align: center;
	padding: 15px 0 13px 0;
	color: #fff;
	text-shadow: 1px 1px #b14f25;
	font-size: 1.6rem;
}
.game_cart .betbutton a:hover {
	background: #ff9b5f;
}
.game_cart ul.myInfo li.bet-guide {
	border: 1px solid #32241a;
	border-radius: 0 0 4px 4px;
	overflow: hidden;
}
.game_cart ul.myInfo li.bet-guide dl {
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 1px;
}
.game_cart ul.myInfo li.bet-guide dl > * {
	width: calc(100% / 2 - 1px);
	text-align: center;
	padding: 5px;
	background: #6d6358;
}
.game_cart ul.myInfo li.bet-guide dt {
	font-size: 1.1rem;
	background: rgba(0, 0, 0, 0.17);
	color: #e9e3d3;
}
.game_cart ul.myInfo li.bet-guide dd {
	font-size: 1.2rem;
	color: #e9e3d3;
}
.bet_type_wrap {
	width: 100%;
	position: relative;
	margin-top: 10px;
	background: url(../assets/images/content/miniGames/m-game-bg-021.jpg) center repeat;
	border: 6px solid rgba(25, 20, 15, 0.5);
	padding: 20px;
}
.bet_type_wrap .pb-tit {
	position: relative;
	font-size: 2.4rem;
	color: #fff;
	width: 100%;
	padding: 20px 32px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}
.bet_type_wrap .pb-tit::before,
.bet_type_wrap .pb-tit::after {
	content: "";
	position: absolute;
	top: 0;
	width: 51%;
	background-image: url(../assets/images/content/miniGames/pball-title-bg.png);
	background-size: auto 100%;
	background-repeat: no-repeat;
	filter: brightness(0.85);
	background-position: top left;
	height: 100%;
	left: 0;
}
.bet_type_wrap .pb-tit::after {
	transform: rotate(180deg);
	right: 0;
	left: inherit;
}
.bet_type_wrap .pb-tit p {
	display: flex;
	align-items: center;
	flex-direction: row;
	align-items: center;
	word-break: keep-all;
}
.bet_type_wrap .pb-tit .tit {
	z-index: 9;
	color: #fff;
	font-size: 2rem;
	gap: 16px;
}
.bet_type_wrap .pb-tit span {
	font-size: 1.4rem;
	opacity: 0.75;
}
.bet_type_wrap .pb-tit .betClosing {
	z-index: 9;
	color: #fff;
	font-size: 1.4rem;
	opacity: 0.75;
}
.gamelist_box {
	padding: 20px 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.gamelist_box .inbox {
	position: relative;
	flex: 1;
	background: #503825a6;
	border: 1px solid #00000078;
	padding: 8px;
	border-radius: 6px;
	box-shadow: inset 3px 3px 10px #00000059;
	transition: all 0.3s ease;
}
.gamelist_box .caption {
	color: #fff;
	font-size: 1.5rem;
	margin-bottom: 6px;
	text-align: center;
	height: 25px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.gamelist_box .caption em {
	opacity: 0.75;
	font-size: 1.1rem;
	margin: 0 5px 0 0;
	background-color: #2f261d;
	color: #d7c5b7;
	border-radius: 4px;
	padding: 2px 4px;
}
.gamelist_box .caption strong {
	margin-left: 5px;
}
.gtxt-pball {
	position: absolute;
	top: 9px;
	right: 9px;
	display: inline-block;
	font-size: 1.2rem;
	background: #1761a8;
	box-shadow: 0 0 4px #50bfff;
	border: 1px solid #9cb6fe;
	border-radius: 4px;
	padding: 4px 6px;
}
.gamelist_box .inbox ul {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	gap: 6px;
}
.gamelist_box .inbox ul li {
	width: 50%;
}
.gamelist_box .a-btn {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	min-width: 115px;
	margin: 0 0 4px;
	gap: 8px;
	filter: drop-shadow(-1px 2px 1px rgba(0, 0, 0, 0.75));
	border-radius: 6px;
	padding: 5px;
	position: relative;
	overflow: hidden;
}
.gamelist_box .a-btn .a-btn-symbol {
	display: flex;
	align-items: center;
	justify-content: center;
	text-wrap: nowrap;
	font-size: 1.6rem;
	font-weight: 800;
	border-radius: 4px;
	gap: 6px;
	padding: 0 6px;
	border: 1px solid transparent;
	width: 100%;
	line-height: 38px;
}
.gamelist_box .a-btn-text {
	font-size: 1.6rem;
	display: block;
	margin: 0 10px;
}
.gamelist_box .g-blue .a-btn-text {
	text-shadow: 0px 1px 0px #124d77;
	color: #fff;
}
.gamelist_box .g-blue {
	background: linear-gradient(to bottom, #007dc1 5%, #0061a7 100%);
	border: 1px solid #124d77;
	box-shadow: 0px 5px 0px 0px #124d77, 0 1px 1px #201813, 0 1px 0 rgba(255, 255, 255, 0.4) inset;
	transition: all 0.2s linear;
	color: #004e78;
}
.gamelist_box .g-red {
	background: linear-gradient(to bottom, #d0451b 5%, #bc3315 100%);
	border: 1px solid #942911;
	box-shadow: 0px 5px 0px 0px #971515, 0 1px 1px #201813, 0 1px 0 rgba(255, 255, 255, 0.4) inset;
	transition: all 0.2s linear;
	color: #851800;
}
.gamelist_box .a-btn .a-btn-symbol.red {
	background: #d0451b;
	border-color: #802307;
	color: #fff;
}
.gamelist_box .a-btn .a-btn-symbol.blue {
	background: #1b5a86;
	border-color: #073253;
	color: #fff;
}
.gamelist_box .g-blue:hover {
	background: linear-gradient(to bottom, #0061a7 5%, #007dc1 100%);
}
.gamelist_box .a-btn:active {
	transform: scale(0.97);
}
.gamelist_box .a-btn.active {
	border: 1px solid rgba(255, 245, 0, 0.25);
	filter: drop-shadow(0px 4px 8px #000000) !important;
	transform: scale(1.2);
	opacity: 1;
	z-index: 1;
}
.gamelist_box .a-btn i {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	margin-right: -5px;
	overflow: hidden;
	vertical-align: middle;
}
.gamelist_box .a-btn i img {
	width: 100%;
	height: 108%;
}
.gamelist_box .a-btn i.over {
	transform: rotate(-90deg);
	filter: hue-rotate(145deg);
}
.gamelist_box .a-btn i.under {
	transform: rotate(90deg);
}
.bet_type_finish {
	z-index: 10;
	color: #fff4a3;
	font-size: 4rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: rgba(42, 35, 33, 0.75);
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}
.betting-history {
	width: 100%;
	position: relative;
	margin-top: 10px;
	background: url(../assets/images/content/miniGames/m-game-bg-021.jpg) center repeat;
	border: 6px solid rgba(25, 20, 15, 0.5);
	padding: 20px;
}
.betting-title {
	margin-bottom: 20px;
	height: 40px;
	font-size: 2.2rem;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	padding: 0 0 0 10px;
	line-height: 40px;
}
.betting-title img {
	width: 40px;
	margin-right: 10px;
}
.betting-history .table {
	display: table;
}
.betting-history .table,
.betting-history .row {
	width: 100%;
	border-top: 1px solid #342c29;
	border-radius: 6px 6px 0 0;
	overflow: hidden;
}
.betting-history .row {
	display: table-row;
}
.betting-history .row.table_header {
	background: rgba(63, 55, 52, 0.75);
	color: #fff;
	text-align: center;
}
.betting-history .row.table_header .cell {
	display: table-cell;
	font-size: 1.4rem;
	color: #fff;
	padding-top: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #f0f0f0;
	line-height: 145%;
}
.bet_list_control {
	background: #f1f1f1;
	border-top: 1px solid #ddd;
	margin-bottom: 20px;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: flex-start;
	align-items: center;
	padding: 10px 0 10px 20px;
}
.bet_list_control li a {
	border: 1px solid #ccc;
	border-radius: 4px;
	padding: 4px 10px;
	font-size: 1.2rem;
	display: inline-block;
	margin: 0 3px;
	cursor: pointer;
	color: #54595f;
}
.bet_list_control .btn2_2 {
	color: #5b7bfb;
}
.bet_set.mobile_fix {
	display: none;
}

@media screen and (max-width: 1190px) {
	.bet_type_wrap {
		padding: 20px 20px 10px;
	}
	.mini_game_section {
		max-width: 100%;
		flex-direction: column;
	}
	.mini_game_section .game_sec {
		width: 100%;
	}
	.game_wrap {
		min-height: 100%;
	}
	.game_inner img {
		width: 100%;
	}
	.bet_type_wrap .pb-tit {
		font-size: 1.6rem;
	}
	.bet_type_wrap .pb-tit .tit {
		font-size: 1.6rem;
	}
	.bet_type_wrap .pb-tit .betClosing {
		font-size: 1.2rem;
	}
	.gamelist_box {
		padding: 20px 0 0;
	}
	.bet_type_finish {
		font-size: 2rem;
	}
	.bet_type_wrap .pb-tit {
		font-size: 1.2rem;
		padding: 20px 16px;
	}
	.bet_type_wrap .pb-tit .tit {
		font-size: 1.2rem;
	}
	.bet_type_wrap .pb-tit span {
		font-size: 1.1rem;
	}
}

@media screen and (max-width: 767px) {
	.a-btn i {
		display: none;
	}
	.gamelist_box .a-btn {
		justify-content: center;
	}
	.gtxt-pball {
		font-size: 1rem;
		padding: 4px;
	}
	.gamelist_box .caption em {
		font-size: 1rem;
	}
	.gamelist_box .caption {
		font-size: 1.1rem;
	}
	.a-btn .a-btn-symbol,
	.a-btn-text {
		font-size: 1.1rem;
	}
	.gamelist_box .a-btn {
		min-width: fit-content;
	}
	.betting-title {
		font-size: 1.6rem;
		margin-bottom: 0;
	}
	.betting-title img {
		width: 20px;
		height: 20px;
	}
	.betting-history {
		padding: 20px 0;
	}
	.betting-history .row.table_header .cell {
		font-size: 1.1rem;
	}
	.betting-history .table,
	.betting-history .row {
		border-radius: 0;
	}
	.bet_list_control li a {
		font-size: 1.1rem;
	}
	.bet_list_control {
		padding: 10px 20px;
	}
	.betting-history ul.pagination li > input {
		font-size: 1.1rem;
	}
	.bet_set {
		display: none;
	}
	.bet_set.mobile_fix {
		display: block;
		width: 100%;
		z-index: 1000;
		position: fixed;
		bottom: 0;
		top: inherit;
		height: auto !important;
	}
	.bet_set.mobile_fix .bet_key {
		width: 100%;
		position: fixed;
		bottom: 0;
		top: inherit;
		display: none;
	}
	.game_cart .betzone {
		width: 100%;
		background-size: 100% 100%;
		display: none;
	}
	.cart_view {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	.game_cart {
		background: rgb(80 56 37 /100%);
		padding: 10px;
	}
	.game_cart ul.myInfo {
		width: 100%;
	}
	.game_cart .betbutton {
		width: 20%;
		margin: 0;
	}
	.game_cart .betbutton a {
		width: 100%;
		height: 100%;
		padding: 0;
		font-size: 1.4rem;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.game_cart .betcoin01 {
		width: 80%;
		margin: 0;
	}
	.game_cart .betcoin01 li {
		width: calc(33% - 4px);
		height: 30px;
		font-size: 1.2rem;
	}
	.game_cart .betcoin01 li.cancel,
	.game_cart .betcoin01 li.reload {
		font-size: 1.2rem;
	}
	.game_cart .betcoin01 a {
		line-height: 30px;
	}
}

@media screen and (max-width: 576px) {
	.gamelist_box {
		gap: 0;
	}
	.gamelist_box .caption {
		text-align: left;
		justify-content: flex-start;
	}
	.gamelist_box .inbox {
		flex: auto;
		width: 50%;
		margin-bottom: 10px;
	}
	.gamelist_box .inbox ul li {
		width: 100%;
	}
	.gamelist_box .inbox.box_4 {
		width: 100%;
	}
	.gamelist_box .inbox.box_4 ul li {
		width: 24%;
	}
	.gamelist_box .inbox.box_4 ul li .a-btn {
		min-width: 100%;
	}
}

/* 스크롤 버튼 */
.scrollTop {
	z-index: 999;
	display: none;
	background: #ffffff26;
	border: 0;
	border-radius: 35px;
	width: 48px;
	height: 48px;
	color: var(--color-icon-primary);
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: fixed;
	right: 20px;
	bottom: 20px;
	transition: opacity 0.3s;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	cursor: pointer;
}
.scrollTop.show {
	display: flex;
}
.scrollTop svg {
	width: 30px;
	height: 30px;
}
.scrollTop:active {
	box-shadow: -2px -2px 10px 0 rgba(0, 0, 0, 0.9), 2px 2px 4px 0 hsla(0, 0%, 100%, 0.2);
	transition: all 0.2s;
}

@media screen and (max-width: 767px) {
	.scrollTop {
		bottom: 90px;
		width: 30px;
		height: 30px;
	}
	.scrollTop svg {
		width: 20px;
		height: 20px;
	}
}

.mob_full_item {
	display: none;
}

@media screen and (max-width: 767px) {
	.mob_full_item {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		gap: 10px;
		padding: 0 12px;
	}
	.mob_full_item .item {
		flex: 1 1 40%;
		padding-bottom: 28.125%;
		position: relative;
		border-radius: 16px;
		overflow: hidden;
		border: 1px solid rgb(255 255 255 / 10%);
	}
	.mob_full_item .item:nth-child(1),
	.mob_full_item .item:nth-child(2) {
		padding-bottom: 54.125%;
	}
	.mob_full_item .item a {
		position: absolute;
		width: 100%;
		height: 100%;
		background-repeat: no-repeat;
		background-size: cover;
		background-position: right bottom;
		background-color: #0f0100;
	}
	.mob_full_item .item .text-tt {
		position: absolute;
		left: 10%;
		top: 12%;
		display: inline-block;
		color: #fff;
		font-size: clamp(16px, 4vw, 40px);
		font-weight: normal;
		font-family: var(--font-ff-accent), var(--font-ff-serif);
	}
}

/* add 20250101 Slot detail */
.SlotDetail {
	width: 80%;
	max-width: 1980px;
	height: calc(82% - 9px);
	min-height: unset;
	padding-bottom: 0;
	background-color: rgba(204, 204, 204, 0.6);
}
.modal-dialog {
	height: 100%;
}
.modal-content {
	height: 100%;
	overflow: auto;
	padding: 0;
	margin: 0;
}
.SlotDetail .pop-header {
	position: sticky;
	top: -1px;
	z-index: 1;
}
.pop-header {
	height: 60px;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	font-size: 2.4rem;
	background: #4b2700;
}
.slotnav {
	overflow-y: unset !important;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: stretch;
	gap: clamp(0.75rem, 2vw, 2rem);
	padding: clamp(0.75rem, 2vw, 2rem);
	height: 100%;
	max-height: unset !important;
}
.slotnav li.trans {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	width: clamp(120px, 20vw, 280px);
	max-width: 33%;
	height: 100%;
	background: #fff;
	border-radius: clamp(4px, 1vw, 8px);
	padding: 4px;
	margin: 0;
	flex: 1 0 clamp(120px, 15vw, 280px);
	overflow: hidden;
}
.slotnav li.trans > a {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	height: clamp(120px, 14vw, 260px);
	border-radius: 6px;
	overflow: hidden;
}
.slotnav li.trans > a img {
	width: 100%;
	height: 100%;
	max-height: 100%;
	border-radius: 6px;
}
.slotnav li.trans > a .nm_sgame {
	position: absolute;
	bottom: 0;
	background: linear-gradient(to top, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.9) 45%, rgba(255, 255, 255, 0) 100%);
	padding: 40px 4px 8px;
}
.nm_sgame {
	width: 100%;
	margin: 0;
	padding: 10px 4px 6px 4px;
	color: #6a4920;
	border-radius: unset;
	word-break: keep-all;
	font-size: 1.4rem;
	text-align: center;
	font-family: var(--font-ff-heading);
	font-weight: var(--font-fw-heading);
	font-weight: 400;
	line-height: 1.2;
}

@media screen and (max-width: 1260px) {
	.slotnav li.trans {
		max-width: 33%;
	}
	.SlotDetail {
		width: 94%;
		height: calc(90% - 9px);
	}
}

@media screen and (max-width: 1200px) {
}

@media screen and (max-width: 986px) {
	.nm_sgame {
		font-size: 1.3rem;
	}
}

@media screen and (max-width: 730px) {
}

@media screen and (max-width: 500px) {
	.slotnav li.trans {
		max-width: 48%;
	}
}

@media screen and (max-width: 433px) {
	.nm_sgame {
		font-size: 1.2rem;
	}
}

.popup_box .close .h-10 {
	height: auto !important;
}

/* add 20250203 */
.trans img {
	max-height: max-content !important;
}

/* add 20250204 */
.slot_gtitle {
	width: 50%;
	text-align: left;
	padding-left: 20px;
	padding-top: 4px;
	font-family: var(--font-ff-accent);
}
.slot_g_searchbox {
	width: 50%;
	float: right;
	position: relative;
	top: 0px;
	display: flex;
	justify-content: flex-end;
	flex-direction: row;
	flex-wrap: nowrap;
	padding-right: 20px;
}
.searchbox {
	background: #fff;
	border: 1px solid #c9c9c9;
	padding: 2px;
	border-radius: 3px;
	width: fit-content;
	max-width: 70%;
}
.searchbox-txt {
	border: none;
	width: calc(100% - 30px);
	height: 30px;
	outline: none;
	font-size: 16px;
	padding-top: 2px;
	padding-left: 6px;
	color: #4a4a4a;
}
.searchbox-bt {
	float: right;
	border: 0px;
	background: #fff;
	width: 30px;
	height: 30px;
	line-height: 2;
}

@media (max-width: 1200px) {
}
@media (max-width: 768px) {
}
@media (max-width: 500px) {
	.pop-header h2 {
		font-size: 2rem;
		padding-left: 12px;
	}
	.slot_gtitle {
		width: fit-content;
		white-space: nowrap;
	}
	.slot_g_searchbox {
		width: fit-content;
		padding-right: 10px;
	}
}
@media (max-width: 420px) {
	.pop-header h2 {
		font-size: 1.6rem;
	}
}
@media (max-width: 320px) {
}

.search-icon {
	font-size: 16px;
	line-height: 0;
	position: relative;
	top: 4px;
}
.custombg1 {
	background: #000000cc;
}

/* */
.event_ansbox {
	width: 90% !important;
}
.event_ans {
	white-space: break-spaces !important;
	line-height: 2;
}
.csCenter_ans {
	width: 90% !important;
	padding-right: 10% !important;
	line-height: 2;
}
.ans_long {
	white-space: normal !important;
}
.notice_ans {
	width: 90% !important;
	padding-right: 10% !important;
	white-space: break-spaces !important;
	line-height: 2;
}

/* */
.p100 {
	width: 100% !important;
}
.site_menu_2 .sm_item {
	cursor: pointer;
}

/* add 0218 */
@media screen and (max-width: 460px) {
	.login_btn {
		flex-direction: column;
		gap: 6px;
		margin-bottom: 14px;
		margin-top: 8px;
	}
	.login_btn button {
		width: calc(100% / 1 - 2px);
	}
}

@media (max-width: 500px) {
	.gnb_tab_scroll {
		height: 78%;
	}
}
@media (max-width: 320px) {
	.gnb_tab_scroll {
		height: 84%;
	}
}

/* add */
@media (max-width: 1056px) {
	.m_acount_box {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: center;
		gap: 4px;
		width: 100%;
	}
	.m_acount_btbox {
		position: absolute;
		bottom: 0;
		left: 0;
		display: flex;
		gap: 4px;
		width: 100%;
		margin: 0;
		padding: 8px;
	}
}
@media (max-width: 420px) {}
@media screen and (max-width: 500px) {
	.gnb_afterLogin .myMenu_info .m_a_box_right i {
		display: none;
	}
}




/*	**********	NEW TABLE LIST	**********	*/
:root	{
	--tb-th-bg: #2b2b2b;
	--tb-tx-color: #fff;
	--tb-point-color: #000000;
	--tb-shadow: 0 1px 1px rgb(0 0 0 / 10%);
}
.table_list	{
	overflow: auto;
	width: 100%;
	max-width: 100%;
	height: auto;
	max-height: 60vh;
	max-height: 60dvh;
	/* padding: 18px; */
	/* background: linear-gradient(171deg, #494949 0%, #404040 13%, #393939 33%, #232323 83%, #181818 100%); */
	/* border-radius: 5px; */
	/* margin-top: 10px; */
	margin: 0;
}
.table_list .tb_common	{
	width: 100%;
	min-width: fit-content;
	border-collapse: initial;
	border-bottom: 1px solid rgb(255 255 255 / 10%);
	box-shadow: var(--tb-shadow);
}
.table_list .tb_common thead	{
	position: sticky;
	top: 0;
}
.tb_common th	{
	padding: clamp(8px, 1vw, 10px);
	color: #c3bcac;
	border-right: 1px solid #6c470054;
	border-bottom: 0px solid;
	box-shadow: inset 0 0 0px rgb(255 255 255 / 25%);
	word-break: keep-all;
	font-size: clamp(11px, 2vw, 13px);
	text-align: center;
	border-color: #4f483a;
	background: #64583d;
	box-shadow: 0 10px 10px #00000080;
}
/* .tb_common th + th	{
	border-left: 0px solid;
	border-bottom: 1px solid;
	border-color: rgb(255 255 255 / 25%);
}*/
.tb_common th:last-child	{
	border-right: none;
}
.tb_common td	{
	padding: clamp(8px, 1vw, 14px);
	padding-left: clamp(4px, 1vw, 14px);
	padding-right: clamp(4px, 1vw, 14px);
	vertical-align: middle;
	font-size: clamp(1.1rem, 1.75vw, 1.3rem);
	word-break: keep-all;
	text-align: center;
	color: #4c422b;
	border-bottom: 1px solid #6c470054;
}
.tb_common td:last-child	{
	border-right: none;
	font-size: clamp(1rem, 1.25vw, 1.2rem);
}
.tb_common td a	{
	color: #4c422b;
}
/* .tb_common tr	{
	background-color: #00000012;
	transition: background-color 0.2s;
} */
.tb_common tr:nth-child(even)	{
	background-color: rgba(255, 255, 255, 0.075);
}
.tb_common .subject	{
	text-align: left;
	font-size: clamp(1.2rem, 1.75vw, 1.4rem);
	padding: 0;
}
.tb_common .subject	a {
	display: block;
	padding: clamp(12px, 1vw, 16px);
	padding-left: clamp(4px, 1vw, 12px);
	padding-right: clamp(4px, 1vw, 12px);
	color: #4c422b;
	font-weight: 500;
}
.tb_common .none-article	{
	width: 100%;
	padding: 4rem 0 !important;
	text-align: center;
	font-size: clamp(1.2rem, 1.5vw, 1.5rem) !important;
}
.tb_common .read-article td	{
	padding: clamp(8px, 5vw, 24px);
	padding-right: clamp(4px, 2vw, 8px);
	text-align: left;
	line-height: 1.75;
	background: #c8963c26;
	/* border-top: 1px solid; */
	border-bottom: 1px solid;
	border-color: #c3bcac;
	font-size: clamp(1.275rem, 1.5vw, 1.4rem);
}
.table_list .tb_common img {max-width: 98%;}




/* sweetalert2 : Swal */
.swal2-popup	{
	font-size: clamp(12px, 1.22vw, 16px) !important;
}
.swal2-title	{
	font-family: var(--font-ff-heading) !important;
	font-weight: var(--font-fw-heading) !important;
}


/* maintenance : if the maintenance game is in progress */
.maintenance {
	position: relative;
	overflow: hidden;
}
.maintenance .text-mt {
	position: absolute;
	display: flex;
	top: 50%;
	left: 50%;
	width: 102%;
	height: 102%;
	transform: translate(-50%, -50%);
	font-size: 2rem;
	font-size: clamp(14px, 3vw, 22px);
	text-shadow: 1px 1px rgba(0, 0, 0, 0.4), 0px 0px rgba(0, 0, 0, 0.5);
	font-weight: normal;
	font-family: var(--font-ff-accent);
	color: #fff;
	text-align: center;
	z-index: 1;
	align-items: center;
	justify-content: center;
	background: #412a15;
	background: linear-gradient(310deg, rgb(0 0 0 / 25%) 0%, rgb(133 89 16 / 85%) 50%, rgb(50 30 5 / 85%) 100%);
}
.maintenance .text-mt > span,
.maintenance .text-mt > em {
	animation: mt-blink 1.5s infinite;
	font-style: normal;
	font-weight: inherit;
}
@keyframes mt-blink {
	0% { opacity: 1; }
	10% { opacity: 0; }
	20% { opacity: 1; }
	100% { opacity: 1; }
}

.promo {
	width: clamp(64px, 8vw, 80px) !important;
    filter: drop-shadow(0px 0px 4px #000000);
}

.heartbeat {
	-webkit-animation: heartbeat 1.5s ease-in-out infinite both;
	animation: heartbeat 1.5s ease-in-out infinite both;
}

@-webkit-keyframes heartbeat {
	from	{	-webkit-transform: scale(1);	transform: scale(1);	-webkit-transform-origin: center center;	transform-origin: center center;	-webkit-animation-timing-function: ease-out;	animation-timing-function: ease-out;}
	10%	{	-webkit-transform: scale(0.91);	transform: scale(0.91);	-webkit-animation-timing-function: ease-in;	animation-timing-function: ease-in;}
	17%	{	-webkit-transform: scale(0.98);	transform: scale(0.98);	-webkit-animation-timing-function: ease-out;	animation-timing-function: ease-out;}
	33%	{	-webkit-transform: scale(0.87);	transform: scale(0.87);	-webkit-animation-timing-function: ease-in;	animation-timing-function: ease-in;}
	45%	{	-webkit-transform: scale(1);	transform: scale(1);	-webkit-animation-timing-function: ease-out;	animation-timing-function: ease-out;}
}
@keyframes heartbeat {
	from	{	-webkit-transform: scale(1);	transform: scale(1);	-webkit-transform-origin: center center;	transform-origin: center center;	-webkit-animation-timing-function: ease-out;	animation-timing-function: ease-out;}
	10%	{	-webkit-transform: scale(0.91);	transform: scale(0.91);	-webkit-animation-timing-function: ease-in;	animation-timing-function: ease-in;}
	17%	{	-webkit-transform: scale(0.98);	transform: scale(0.98);	-webkit-animation-timing-function: ease-out;	animation-timing-function: ease-out;}
	33%	{	-webkit-transform: scale(0.87);	transform: scale(0.87);	-webkit-animation-timing-function: ease-in;	animation-timing-function: ease-in;}
	45%	{	-webkit-transform: scale(1);	transform: scale(1);	-webkit-animation-timing-function: ease-out;	animation-timing-function: ease-out;}
}	