@charset "UTF-8";

:root	{
	--font-ff-body: "Pretendard", sans-serif;
	--font-ff-heading: "SBAggro", "Pretendard", sans-serif;
	--font-fw-heading: 400;
}

/* 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, button, select, caption, table th	{
	letter-spacing: 0.045rem;
	font-weight: normal;
	font-family: var(--font-ff-heading);
	font-weight: var(--font-fw-heading);
}
body, html	{
	font-size: 10px;
	letter-spacing: -1px;
}
html, body	{
	color: #fff;
	background: #000;
	line-height: 1.3;
	font-weight: 400;
}
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;
}

/* Scrollbar 전체 너비 및 높이 설정 */
::-webkit-scrollbar {
	width: 4px;
	height: 8px;
}
/* Scrollbar 트랙 */
::-webkit-scrollbar-track {
	background-color: #171717;
}
/* Scrollbar thumb Style */
::-webkit-scrollbar-thumb {
	background-color: #484848;
	border-radius: 4px;
}


/* site common style max-width:1500px */
#wrap {
	position: relative;
	width: 100%;
	margin: 0 auto;
}

/* header */
#header {
	z-index: 999;
	position: fixed;
	left: 0;
	top: 0;
	height: 154px;
	width: 100%;
	background-color: rgba(13, 18, 23, 1);
	transition: box-shadow 0.5s ease, background-color 0.5s ease;
}

#header.scroll {
	box-shadow: 0 20px 25px -15px rgba(245, 243, 197, 0.5), 0 8px 10px -16px rgba(245, 243, 197, 0.5);
	background-color: rgba(13, 18, 23, 0.8);
}
.header {
	position: relative;
	width: 100%;
	margin: 0 auto;
	background-color: rgba(13, 18, 23, 1);
	display: flex;
	flex-direction: column;
}
.header_wrap {
	position: relative;
	height: 100px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 0 20px;
	margin: 0 auto; 
}

/* logo */
.theme_logo_img {
	position: absolute;
	left: 50%;
	top: 60%;
	transform: translate(-50%, -50%);
	z-index: 1023;
}
.theme_logo_img a {
	display: block;
	width: auto;
	height: 104px;
	filter: drop-shadow(2px 4px 6px black);
}
.theme_logo_img img {
	width: auto;
	height: 100%;
}
.theme_logo_img img:hover {
	filter: brightness(1.3);

	scale: 1.02;
	transition: transform 10s;
}

/* 우측메뉴 */
.theme_login {
	position: relative;
	display: flex;
	z-index: 1000;
	width: 100%;
	justify-content: center;
	align-items: flex-end;
	flex-direction: column;
	max-width: 1476px;
	margin: 0 auto;
}
.mem_menu_wrapper {
	display: flex;
	align-items: center;
	height: 100%;
}
.mem_menu {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
	font-family: var(--font-ff-heading);
}
.m_login {
	background: linear-gradient(to right top, #ca9632 0%, #d6a635 20%, #f0c25c 40%, #e4cf5b 60%, #e4cf68 80%, #dbb544 100%);
	box-shadow: inset 0 0 4px #00000059;
	min-width: 100px;
	height: 34px;
	padding: 0 15px;
	line-height: 34px;
	display: inline-block;
	text-align: center;
	border-radius: 4px;
	border: 1px solid #fee08a;
	color: #272727;
	font-size: 1.3rem;
	letter-spacing: 0pt;
	margin-left: 5px;
}
.m_login:hover {
	background: linear-gradient(#432c0b 0%, #7a5d32 100%);
	color: #fff;
}
.m_join {
	background: linear-gradient(to right top, #ca9632 0%, #d6a635 20%, #f0c25c 40%, #e4cf5b 60%, #e4cf68 80%, #dbb544 100%);
	box-shadow: inset 0 0 4px #00000059;
	min-width: 100px;
	height: 34px;
	padding: 0 15px;
	line-height: 34px;
	display: inline-block;
	text-align: center;
	border-radius: 4px;
	border: 1px solid #fee08a;
	color: #272727;
	font-size: 1.3rem;
	letter-spacing: 0pt;
	margin-left: 5px;
}
.m_join:hover {
	background: linear-gradient(#2d2821 0%, #5e574e 100%);
	color: #fff;
}

/* site language dropdown */
.select_lang {
	position: relative;
	margin-left: 8px;
}
.dropdown {
	display: inline-block;
	color: #ffffff;
}
.dropdown img {
	max-width: 100%;
	max-height: 100%;
}
.dropbtn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: nowrap;
	background-color: #000000;
	color: #e0ce70;
	padding: 5px 5px;
	margin: 0;
	font-size: 14px;
	border-radius: 16px;
	width: fit-content;
	max-width: 150px;
	min-width: fit-content;
	height: fit-content;
	text-align: left;
}
.dropbtn .lang-select-tx {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	width: fit-content;
	height: 100%;
}
.dropbtn img {
	width: 24px;
	height: 24px;
	object-fit: scale-down;
}
/* .dropdown:hover .dropdown-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
} */
.dropdown-content.show {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.dropdown-content {
	display: none;
	margin-top: 0;
	margin-left: 0;
	right: 0;
	overflow: hidden;
	position: absolute;
	background-color: rgba(0, 0, 0, 0.75);
	color: #ffffff;
	font-size: 12px;
	width: fit-content;
	min-width: 100px;
	max-width: fit-content;
	border-radius: 6px 6px;
	box-shadow: 4px 4px 16px 0px rgba(0, 0, 0, 0.52);
	z-index: 1;
	text-align: left;
}
.dropdown-content a {
	display: inline-flex;
	justify-content: flex-start;
	gap: 0.5rem;
	width: 100%;
	min-width: max-content;
	padding: 6px 10px;
	text-decoration: none;
	color: #ffffff;
	font-size: 12px;
	align-items: center;
	letter-spacing: 0.025rem;
}
.dropdown-content a:first-child {
	padding-top: 12px;
}
.dropdown-content a:last-child {
	padding-bottom: 10px;
}
.dropdown-content a img {
	width: 18px;
	height: 18px;
}
.dropdown-content a:hover {
	background-color: #5d5d5d;
	color: #ffffff;
}
.dropdown:hover .dropbtn {
	background-color: #e1ce6a;
	border-color: #000000;
	color: #000000;
}
@media screen and (max-width: 767px) {
	.dropbtn {
		min-width: unset;
	}
	.mem_menu {
		justify-content: center;
		position: absolute;
		top: 53px;
		left: 50%;
		transform: translateX(-50%);
		width: calc(100% + 20px);
		padding: 10px 0;
		background: #000000a3;
	}
}

/* notice */
.head_notice {
	position: absolute;
	left: 0;
	top: 0;
}
.login .head_notice {
	top: 8px;
}
.head_noti {
	position: relative;
	width: 400px;
	height: 32px;
	padding: 0 10px;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 4px;
}
.head_noti .head_noti_inner {
	display: flex;
	flex-direction: row;
	align-items: center;
	height: 100%;
}
.head_noti .i_noti {
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #eae7ca;
	height: 30px;
	line-height: 30px;
	border-radius: 25px;
	text-align: center;
}
.head_noti .i_noti img {
	width: 25px;
	height: 18px;
	display: inline-block;
}
.notice-wrapper {
	width: calc(100% - 25px);
	position: relative;
	overflow: hidden;
}
.notice-content {
	display: flex;
	white-space: nowrap;
	animation: scroll 15s linear infinite;
	transform: translateX(100%);
}
.notice-content p {
	margin: 0 4rem;
	color: #ffd882;
	font-size: 1.3rem;
	font-weight: 600;
	height: 30px;
	line-height: 30px;
}
@keyframes scroll {
	from {
		transform: translateX(100%);
	}

	to {
		transform: translateX(-100%);
	}
}
@media screen and (max-width: 1190px) {
	.head_notice {
		display: none;
	}
	.theme_logo_img {
		left: 0;
		scale: 2;
		transform: translate(35%, -35%);
	}
}
@media screen and (max-width: 767px) {
	#header.scroll {
		box-shadow: none;
		background-color: transparent;
	}
	.head_noti .head_noti_inner {
		max-width: 100%;
	}
	.head_noti {
		background-color: #14141b;
		height: 30px;
	}
	.notice-wrapper {
		padding: 0;
		width: calc(100% - 32px);
		font-size: 1.3rem;
	}
	.head_noti .i_noti img {
		width: 18px;
		height: 18px;
		margin-right: 0;
	}
	.head_noti .i_noti {
		background-color: transparent;
		width: 32px;
		margin: 0;
	}
	.head_noti .i_noti em {
		display: none;
	}
	.theme_logo_img {
		left: 20px;
		top: 8px;
		transform: inherit;
		scale: 1;
	}
}

@media screen and (max-width: 320px) {
	.theme_logo_img {
		left: 0px;
		scale: 0.8;
	}
}

.theme_myMenu {
	display: none;
}

/* 로그인후 */
.login #header .header {
	background: rgba(13, 18, 23, 0.75);
}
.theme_myMenu {
	height: 46px;
	padding: 0;
	display: none;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}
.myMenuPage span {
	border: 2px solid #fff;
	border-radius: 20px;
	padding: 2px 8px 3px;
}
.myMenuPage span + span {
	margin-left: 15px;
}
.myMenuPage span.myMenu_name {
	border: 0;
	cursor: default;
}
.myMenuPage span.myMenu_name strong {
	color: #fff;
	font-weight: 600;
	margin-right: 5px;
}
.myMenu_info {
	display: flex;
	width: 466px;
}
.myMenu_info span {
	display: flex;
	flex-direction: row;
	/* margin: 0px 10px; */
	font-size: 1.2rem;
	/* color: #fff; */
	/* font-weight: 600; */
	/* width: calc(87% / 3 - 2px); */
	flex-wrap: nowrap;
	justify-content: center;
	/* float: left; */
	align-items: center;
	gap: 5px;
	height: 32px;
}
.myMenu_info span strong {
	color: #ffd882;
	font-size: 1.6rem;
	text-shadow: 1px 1px 1px #000000;
	font-weight: 600;
}
.myMenu_info .ico_level {
	width: 20px;
	margin-right: 5px;
	filter: drop-shadow(0px -1px 5px #ffffff82);
}
.myMenu_info .btn_logout {
	display: inline-block;
	margin-left: 15px;
	border: 2px solid #fff;
	border-radius: 20px;
	padding: 2px 8px 3px;
	color: rgba(255, 255, 255, 1);
	font-size: 1.3rem;
	width: 65px;
	height: 100%;
}
.myMenu_info .btn_logout:hover {
	background: #848382;
}
.login .theme_myMenu {
	display: flex;
}
.login #header .mem_menu {
	display: none;
}
.myMenu_info ul {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 8px;
	width: 100%;
	padding: 0;
}
.myMenu_info .leftlu {
	width: max-content;
	min-width: 80%;
	border: 1px solid rgb(226, 168, 5);	
	background: rgba(0, 0, 0, 0.75);
	border-radius: 6px;
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-evenly;
	padding: 0 16px;
	gap: clamp(8px, 1vw, 24px);
	gap: clamp(8px, 1dvw, 24px);
}
.myMenu_info .rightli {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.outside {
	display: none;
}

@media screen and (max-width: 767px) {
	.outside_slide {
		padding-top: 113px !important;
	}
	.outside {
		display: block;
		width: 100%;
	}
	.outside ul {
		display: flex;
		justify-content: center;
	}
	.outside ul li.leftlu {
		width: 100%;
		margin-top: -3px;
		border-radius: 0;
		border-width: 3px;
		padding: 8px 0 7px;
	}
	/* .outside .box1 {padding-left: 10px; width: 26% !important; }
	.outside .box2 {width:37%; }
	.outside .box3 {width:37%; } */
}

@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 strong {
		font-size: 1.3rem;
	}
	/* .myMenu_info span	{margin-right: 8px;margin-left: 0;} */
	.myMenuPage span.myMenu_name {
		padding: 0;
	}
}
@media screen and (max-width: 767px) {
	#header {
		height: 70px;
		background: transparent;
	}
	.login #header {
		height: 70px;
	}
	.theme_login {
		align-items: flex-end;
		justify-content: flex-end;
	}
	.login .theme_login {
		display: none;
	}
	.login .theme_login.show {
		z-index: 2000;
		display: flex;
		justify-content: center;
		align-items: center;
		position: fixed;
		width: 100%;
		max-width: 100%;
		left: 0;
		top: 70px;
	}
	.header_wrap {
		padding: 0 10px;
	}
	.login #header .header_wrap {
		flex-direction: column;
		justify-content: flex-start;
		padding: 0 20px;
	}
	.login .theme_login.show .theme_myMenu {
		width: 100%;
		padding: 10px;
		height: auto;
		border-top: solid 1px rgba(0, 0, 0, 0.99);
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		flex-direction: row;
		justify-content: center;
		align-items: center;
		background-color: rgba(30, 30, 30, 0.85);
	}
	.myMenu_info {
		flex-direction: inherit;
		flex-wrap: wrap;
		justify-content: center;
	}
	.myMenu_info ul li.rightli {
		justify-content: center;
		gap: 6px;
		width: 100%;
		margin-top: 6px;
	}
	.myMenu_info ul li.rightli > button {
		margin: 0;
		padding: 0 8px;
		line-height: 1;
		min-width: unset;
		font-size: 1.2rem;
		word-break: keep-all;
	}
	.myMenu_info .leftlu {
		width: 100%;
		padding: 8px 8px 7px;
	}
	.myMenu_info span {
		/* width: 33%;
		text-align: center;
		justify-content: center;
		margin-right: 0;
		margin-bottom: 0px; */
		height: fit-content;
	}
	/* .myMenu_info .myMenuId	{	font-size: 1.6rem;} */
}

/* gnb */
.site_gnb {
	position: relative;
	height: 60px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0 20px;
	background: url(../assets/images/content/bg_top2.jpg) center top no-repeat;
	background-size: cover;
}
.gnb_menu {
	position: relative;
	width: 100%;
	max-width: 1500px;
	margin: 0 auto;
}
.gnb_in {
	display: flex;
	justify-content: space-between;
	flex-direction: row;
	align-items: center;
	gap: 12px;
}
.gnb_menu li {
	position: relative;
	display: inline-block;
	width: fit-content;
}
/* .gnb_menu li + li	{	margin-left: 0px;} */
.gnb {
	display: flex;
	align-items: center;
	gap: 12px;
}
.gnb li {
	display: inline-block;
}
.gnb li a {
	display: block;
}
.gnb_right {
	display: flex;
	flex-direction: row;
	gap: 8px;
}
.gnb_right li a {
	display: block;
	color: #000;
	font-size: 1.6rem;
	margin-left: 20px;
	text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.3);
	letter-spacing: 0;
	font-weight: 400;
}
.gnb_right li a:hover {
	color: #00396a;
}
.gnb_right .custom-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	word-break: keep-all;
}

.custom-btn {
	width: fit-content;
	height: 40px;
	padding: 8px;
	padding-left: clamp(8px, 1.75vw, 16px);
	padding-right: clamp(8px, 1.75vw, 16px);
	border: 2px solid #000;
	background-color: transparent;
	cursor: pointer;
	position: relative;
	display: inline-flex;
	filter: drop-shadow(1px 1px 3px #000);
	font-family: var(--font-ff-heading);
	font-weight: var(--font-fw-heading);
	transition: all 0.3s ease;
	align-items: center;
	justify-content: center;
}

.btn-15 {
	background: #000;
	color: #fff;
	z-index: 1;
	border-radius: 6px;
}
.btn-15:after {
	position: absolute;
	border-radius: 3px;
	content: "";
	width: 0;
	height: 100%;
	top: 0;
	right: 0;
	z-index: -1;
	background: #ffd012;
	transition: all 0.3s ease;
}
.btn-15:hover {
	color: #000;
}
.btn-15:hover:after {
	left: 0;
	width: 100%;
}
.btn-15:active {
	top: 2px;
}

@media screen and (max-width: 1230px) {
	.gnb .custom-btn {
		max-width: 140px;
	}
	/*
	.gnb_right .custom-btn	{
		width: 90px !important;
	}
	*/
}
@media screen and (max-width: 1160px) {
	/*
	.gnb .custom-btn	{
		width: 128px !important;
	}
	.gnb_right .custom-btn	{
		width: 80px !important;
		padding: 10px 6px 6px;
	}
	.gnb .custom-btn	{
		width: 75% !important;
		padding: 3px 5px !important;
		word-break: auto-phrase;
		margin: 0px 3px;
	}
	*/
}
@media screen and (max-width: 936px) {
	/*
	.gnb_right .custom-btn	{
		width: 72px !important;
		margin: 0px 4px;
	}
	*/
}
@media screen and (max-width: 767px) {
	.gnb_right .custom-btn {
		width: 100%;
		margin: inherit;
	}
}

.mobGnb .gnb_login {
	display: none;
}
.mobGnb .gnb_tab {
	display: none;
}
.mobGnb .menu_type {
	display: none;
}

/* panel */
.panel {
	width: 100%;
}
.panel_logo {
	display: none;
}

/* media */
@media screen and (max-width: 1190px) {
	.theme_logo_img a {
		height: 36px;
	}
	.login .theme_logo_img a {
		height: 36px;
	}
}
@media all and (max-width: 767px) {
	#wrap {
		overflow: hidden;
		max-width: 100%;
	}
	.gnb_right li a {
		color: #fff;
	}
	.input_login::-webkit-input-placeholder {
		color: #fff;
		font-size: 1.2rem;
	}
	.input_login:-ms-input-placeholder {
		color: #fff;
		font-size: 1.2rem;
	}
	.input_login::placeholder {
		color: #fff;
		font-size: 1.2rem;
	}
	.site_gnb {
		position: absolute;
		background: transparent;
		left: 50%;
		top: 50%;
		width: 100%;
		margin-top: 0;
		transform: translate(-50%, -100%);
		z-index: 1000;
		display: block;
		height: auto;
		padding: 0;
	}
	.gnb_in {
		height: auto;
		width: 100%;
		display: flex;
		flex-direction: column-reverse;
		justify-content: flex-end;
	}
	.gnb_menu {
		max-width: 100%;
	}
	.header {
		width: 100%;
		height: 70px;
		padding: 0;
	}
	.panel {
		z-index: 1000;
		display: block;
		height: calc(100vh - 72px);
		height: calc(100dvh - 72px);
		position: fixed;
		top: -34px;
		top: 40px;
		bottom: 0;
		left: 0;
		width: 0;
		background-color: rgba(0, 0, 0, 0.9);
		background-image: url("../assets/images/content/bg.jpg");
		background-position: center top;
		background-repeat: repeat-y;
	}
	.panel .btn_panel_toggle {
		display: none;
	}
	.login .panel .btn_panel_toggle {
		z-index: 2010;
		display: inline-block;
		position: fixed;
		top: -22px;
		right: 8px;
		width: 40px;
		height: 40px;
		margin: 0;
		transition: all 0.2s ease-in-out;
		-webkit-transition: all 0.2s ease-in-out;
		-moz-transition: all 0.2s ease-in-out;
		-o-transition: all 0.2s ease-in-out;
		-ms-transition: all 0.2s ease-in-out;
		cursor: pointer;
	}
	.login .panel .btn_panel_toggle span,
	.login .panel .btn_panel_toggle span:before,
	.login .panel .btn_panel_toggle span:after {
		margin: 0 auto;
		width: 16px;
		height: 2px;
		background: linear-gradient(99deg, rgba(195, 153, 95, 1) 0%, rgba(245, 233, 133, 1) 14%, rgba(245, 243, 197, 1) 30%, rgba(195, 153, 95, 1) 46%, rgba(245, 233, 133, 1) 64%, rgba(245, 243, 197, 1) 83%, rgba(195, 153, 95, 1) 100%);
		-webkit-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
		border-radius: 5px;
	}
	.login .panel .btn_panel_toggle span {
		display: inline-block;
		position: relative;
		margin: 20px 0 0 12px;
		width: 16px;
		text-align: center;
	}
	.login .panel .btn_panel_toggle span:before,
	.login .panel .btn_panel_toggle span:after {
		content: "";
		position: absolute;
		left: 0;
	}
	.login .panel .btn_panel_toggle span:before {
		top: -5px;
	}
	.login .panel .btn_panel_toggle span:after {
		top: 5px;
	}

	/* panel open */
	.login .panel.active .btn_panel_toggle span {
		background: transparent;
	}
	.login .panel.active .btn_panel_toggle span:before,
	.login .panel.active .btn_panel_toggle span:after {
		top: 0;
		width: 16px;
	}
	.login .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);
	}
	.login .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 */
	.login .panel.left.active {
		right: 0;
		width: 100%;
		overflow-y: auto;
	}

	/* panel scroll */
	.panel.active::-webkit-scrollbar {
		width: 4px;
		height: 0;
		border: 0;
	}
	.panel.active::-webkit-scrollbar-track {
		background: rgba(0, 0, 0, 0.1);
	}
	.panel.active::-webkit-scrollbar-thumb {
		width: 4px;
		height: 2px;
		background: #222;
	}
	.panel_logo {
		display: none;
	}
	.panel.active .panel_logo {
		position: fixed;
		left: 20px;
		top: -18px;
		height: 36px;
		display: block;
		z-index: 9999;
	}
	.panel.active .panel_logo img {
		height: 100%;
		width: auto;
	}

	/* gnb */
	.gnb_menu {
		height: auto;
		position: relative;
		right: inherit;
		bottom: inherit;
		background-color: transparent;
	}
	.gnb_in ul {
		width: 100%;
		gap: 8px;
	}
	.gnb {
		display: none;
	}
	.panel.left .gnb_menu {
		display: none;
	}
	.panel.left.active .gnb_menu {
		display: flex;
		flex-wrap: wrap;
		flex-direction: column;
	}
	.login .panel.left.active .gnb_menu {
		padding-top: 110px;
	}
	.header_wrap {
		height: 70px;
		margin: 0 auto;
		border-bottom: 3px solid #e2a805;
	}
	.theme_logo_img a {
		height: 55px;
	}
	.login .theme_logo_img a {
		height: 55px;
	}
	.mem_menu_wrapper {
		margin-top: 0;
	}
	.m_login,
	.m_join {
		min-width: 62px;
		height: 30px;
		line-height: 30px;
	}
	.m_join {
		margin-left: 5px;
	}
	.gnb_right {
		/* flex-direction: column; */
		flex-wrap: wrap;
		padding: 0 20px 20px;
	}
	.gnb_right li {
		background-image: url(../assets/images/content/bg_top1.jpg);
		background-size: 100% 100%;
		background-position: center;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: auto;
		height: fit-content;
		max-width: 50%;
		line-height: 1;
		padding: 6px;
		text-align: center;
		color: #ffffff;
		font-size: 16px;
		font-weight: 500;
		border-radius: 6px;
		text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.4);
		border-bottom: 1px solid #000;
		flex: 1 1 125px;
	}
	.gnb_right li a {
		font-size: 1.6rem;
	}
	.gnb_right li a:hover {
		color: #fff;
	}
	.frame {
		margin: 0 auto;
	}
}

/* section */
.section {
	z-index: 10;
	position: relative;
	padding: 154px 0 0;
	background-color: #181818;
}
@media screen and (max-width: 767px) {
	.section {
		position: relative;
		padding: 70px 0 0;
	}
}

/* footer */
.web_footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	max-width: 1500px;
	margin: 0 auto;
}
.footer_top {
	text-align: center;
}
.footer_comp {
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	margin: 60px 0 0px;
}
.footer_comp > span {
	flex: 1 1 0;
}
.footer_comp img {
	width: 100%;
	max-width: fit-content;
}
.footer_text {
	width: 100%;
	text-align: center;
	margin: 40px 0 24px 0;
	line-height: 1.2;
	color: rgba(135, 135, 135, 0.75);
	font-size: 1.2rem;
	font-weight: 500;
	letter-spacing: initial;
}
.footer_copyright {
	width: 100%;
	text-align: center;
	margin: 20px 0 40px 0;
	line-height: 50px;
	color: rgba(135, 135, 135, 0.75);
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: 0px;
}
@media screen and (max-width: 1190px) {
	.web_footer {
		max-width: 100%;
		padding: 0 20px;
	}
}
@media screen and (max-width: 767px) {
	.footer_text {
		display: none;
	}
	.footer_comp {
		padding-top: 20px;
		margin-top: 10px;
	}
	.footer_comp > span {
		display: none;
	}
	.footer_copyright {
		font-size: 1.2rem;
		margin: 0 0 10px 0;
		line-height: 40px;
	}
}

/* slide */
.slide_wrap {
	width: 100%;
	position: relative;
}
.slide_wrap .add_nav {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}
.slide_wrap .swiper-pagination {
	bottom: 10px;
}
.slide_wrap .swiper-pagination-bullet {
	opacity: 1;
	margin: 0 5px;
	width: 12px;
	height: 12px;
	background: rgba(255, 255, 255, 0.3);
	transition: all 0.5s;
	cursor: pointer;
	border-radius: 10px;
	border: 1px solid rgba(0, 0, 0, 0.3);
}
.slide_wrap .swiper-pagination-bullet-active {
	background: #fff;
}
.slide_wrap .swiper-button-next,
.slide_wrap .swiper-button-prev {
	background-image: url(../assets/images/content/slide/arrow1_left.png);
	width: 29px;
	height: 53px;
	background-size: cover;
}
.slide_wrap .swiper-button-prev {
	filter: brightness(0) invert(1);
	left: 20px;
}
.slide_wrap .swiper-button-next {
	transform: rotate(-180deg);
	right: 20px;
}
.slide {
	overflow: hidden;
	position: relative;
	width: 100%;
	margin: 0 auto;
	height: 100%;
}
.slide .swiper-slide {
	width: 100%;
}
.slide .swiper-slide a {
	width: 100%;
	display: block;
}
.slide .swiper-slide a img {
	width: 100%;
}

.slide .swiper-slide .slidetext {
	position: absolute;
	text-align: center;
	top: 26%;
	width: 100%;
	height: max-content;
	font-size: 4rem;
	filter: drop-shadow(2px 4px 6px black);
	font-family: var(--font-ff-heading);
	font-weight: var(--font-fw-heading);
}
.slide .swiper-slide .slidetext p {
	font-size: 7rem;
	line-height: 1;
	padding: 10px;
	background-image: linear-gradient(to bottom, #ffd93f 0, #ffe47a 5%, #cb9b51 22%, #f6e27a 45%, #f6f2c0 50%, #f6e27a 55%, #cb9b51 78%, #462523 100%);
	color: transparent;
	background-clip: text;
	-webkit-background-clip: text;
	filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.56));
	letter-spacing: -4px;
	font-family: var(--font-ff-heading);
	font-weight: var(--font-fw-heading);
}
@media screen and (max-width: 767px) {
	.slide .swiper-slide .slidetext {
		top: 40%;
		font-size: 2rem;
		padding: 0 24px;
		word-break: auto-phrase;
	}
	.slide .swiper-slide .slidetext p {
		font-size: 4rem;
	}
}

.main_side {
	padding: 0;
	margin-top: 0;
}
.main_side .swiper-slide a {
	display: flex;
	align-items: flex-start;
	width: 100%;
	height: 480px;
	background-repeat: repeat-x;
	background-size: auto 100%;
	background-position: center top;
}
.main_side .swiper-pagination-bullet {	display: none;}
.main_side .swiper-slide a.pc {	display: block;}
.main_side .swiper-slide a.mob {	display: none;}
.slide1 {	background-image: url("../assets/images/content/slide/slideshow1.jpg");}
.slide2 {	background-image: url("../assets/images/content/slide/slideshow2.jpg");}
.slide3 {	background-image: url("../assets/images/content/slide/slideshow3.jpg");}
.slide1m {	background-image: url("../assets/images/content/slide/m_slideshow1.jpg");}
.slide2m {	background-image: url("../assets/images/content/slide/m_slideshow2.jpg");}
.slide3m {	background-image: url("../assets/images/content/slide/m_slideshow3.jpg");}
@media screen and (min-width: 1980px) { 
 .slide.mainSlide .swiper-slide { 
  max-width: 76vw; 
 } 
 .slide.mainSlide .swiper-slide.swiper-slide-active { 
  margin: 0; 
  opacity: 1; 
 } 
 .slide.mainSlide .swiper-slide.swiper-slide-prev, 
 .slide.mainSlide .swiper-slide.swiper-slide-next  { 
  opacity: 0.45; 
  filter: blur(4px); 
 } 
 .slide.mainSlide .swiper-slide.swiper-slide-prev a.pc { 
  background-position: right top; 
 } 
 .slide.mainSlide .swiper-slide.swiper-slide-next a.pc { 
  background-position: left top; 
 } 
}
@media screen and (max-width: 1190px) {
	.main_side .swiper-slide a {
		/* height: auto; */
		padding-bottom: 44px;
	}

	.slide_wrap .swiper-button-next,
	.slide_wrap .swiper-button-prev {
		height: 26px;
		width: 15px;
	}
	.main_side .swiper-pagination-bullet {
		display: inline-block;
	}
}




/* main_game_menu */
.main_game_menu {
	width: 100%;
	padding: 48px 0 50px;
	background-image: url(../assets/images/content/bg1.jpg);
	background-size: cover;
	background-color: #00000042;
	background-blend-mode: multiply;
	border-top: 3px solid #d3ba6e;
	border-bottom: 3px solid #d3ba6e;
}
.main_game_menu .mgm_inner {
	max-width: 1500px;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}
.main_game_menu .mgm {
	width: 400px;
	margin: 0 25px;
	display: block;
	background: linear-gradient(90deg, #463005 0%, #714e08 30%, #ffcf85 50%, #714e08 80%, #402c06 100%);
	box-shadow: 0px 8px 3px 2px #0000006e;
}
.main_game_menu .mgm a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	padding: 10px;
}
.main_game_menu .mgm .img_mob {
	display: none;
}
.main_game_menu .mgm .img_mob img {
	width: 100%;
}
.main_game_menu .mgm .img {
	width: 100%;
	position: relative;
}
.main_game_menu .mgm .img img {
	width: 100%;
	box-shadow: -4px 5px 5px #00000059;
	transition: all 0.35s ease-in-out;
}
.main_game_menu .image-normal {
	display: block;
}
.main_game_menu .image-hover {
	position: absolute;
	top: 0;
	opacity: 0;
}
.main_game_menu .image-toggle.active .image-normal {
	opacity: 0.25;
}
.main_game_menu .image-toggle.active .image-hover {
	display: block;
	filter:brightness(1.5);
	animation-name: mouseover2;
	-webkit-animation-name: mouseover2;
	animation-duration: 1s;
	-webkit-animation-duration: 1s;
	animation-timing-function: ease-in-out;
	-webkit-animation-timing-function: ease-in-out;
	animation-fill-mode: both;
	-webkit-animation-fill-mode: both;
	transform-origin: 90% 100%;
	-ms-transform-origin: 90% 100%;
	-webkit-transform-origin: 90% 100%;
	visibility: visible !important;
	opacity: 1;
}
@keyframes mouseover2 {
	0%		{	transform: rotate(0deg);}
	20%		{	transform: rotate(-1deg);}
	35%		{	transform: rotate(2deg);}
	50%		{	transform: rotate(-1deg);}
	65%		{	transform: rotate(1deg);}
	80%		{	transform: rotate(-1deg);}
	100%	{	transform: rotate(0deg);}
}
@media screen and (max-width: 1190px) {
	.main_game_menu {
		/* height:308px;padding:0 10px;*/
		max-width: 100%;
	}
	.main_game_menu .mgm_inner {
		max-width: 100%;
	}
}
@media screen and (max-width: 767px) {
	.main_game_menu {
		height: auto;
		display: flex;
		flex-direction: inherit;
		flex-wrap: wrap;
	}
	/* .main_game_menu .mgm_inner	{ flex-direction: column;} */
	.main_game_menu .mgm {
		width: calc(100% / 1 - 20px);
		height: auto;
		margin: 10px;
		box-shadow: 0px 3px 12px 2px #000000a6;
	}
	.main_game_menu .mgm .img {
		display: none;
	}
	.main_game_menu .mgm .img_mob {
		display: block;
		padding: 0px 0;
	}
	.main_game_menu {
		border-top: 1px solid #d3ba6e;
		border-bottom: 1px solid #d3ba6e;
		padding: 16px 0;
	}

	.main_side .swiper-slide a.pc {
		display: none;
	}
	.main_side .swiper-slide a.mob {
		display: block;
	}
}

@media screen and (max-width: 500px) {
	.main_game_menu {
		height: auto;
		display: flex;
		flex-direction: inherit;
		flex-wrap: wrap;
	}
	.main_game_menu .mgm_inner {
		flex-direction: column;
	}
}

/* 메인 하단 공지사항, 이벤트 */
.box_3 {
	padding: 70px 0 70px;
	background: url(../assets/images/content/bg2.jpg) center no-repeat;
	background-size: cover;
	border-bottom: 3px solid #d3ba6e;
}
@media screen and (max-width: 767px) {
	.box_3 {
		border-bottom: 1px solid #d3ba6e;
	}
}

.box_3 .box_inner {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	max-width: 1500px;
	margin: 0 auto;
	align-content: stretch;
	flex-direction: row;
}
.box_3 .box {
	overflow: hidden;
	position: relative;
	display: flex;
	flex-direction: column;
	margin: 0px 22px;
	width: calc(100% / 3);
	padding: 5px 5px;
	border-radius: 12px;
	background: linear-gradient(174deg, #f7f599 0%, #ffe76a 10%, #feef7c 33%, #fdbc01 53%, #9a4802 73%, #fe9208 100%);
}
.box_3 .box > * {
	height: 100%;
}
.box_3 .box .tt {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	width: 100%;
	margin-bottom: 16px;
	border-radius: 6px;
	overflow: hidden;
}
.box_3 .box .tt::after {
	content: "";
	position: absolute;
	top: 0;
	height: 100%;
	width: 100%;
	background: #bf9a66;
	z-index: -1;
}
.box_3 .box .tt .ko {
	display: inline-flex;
	font-size: 1.875rem;
	height: 48px;
	line-height: 1;
	background: #000000d4;
	border-radius: 18px;
	align-items: center;
	justify-content: center;
}
.box_3 .box .list {
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	overflow: auto;
	min-height: 80px;
	max-height: 240px;
	width: 100%;
}
.box_3 .box .list a {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	height: 30px;
	line-height: 30px;
	color: #fff;
	font-size: 1.4rem;
	width: 100%;
	/* cursor: text; */
}

.box_3 .box .list a span:last-child {
	color: #c4b670;
	text-align: right;
	width: 1%;
	min-width: max-content;
	padding-right: 2px;
	font-size: 1.2rem;
}
.box_3 .box .list a .num {
	color: #ffc000;
	text-align: right;
}

.box_3 .box .list a .noticetext {
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	width: 99%;
	padding-left: 2px;
}

.box_3 .box.notice .list a {
	cursor: pointer;
}
.box_3 .box.realtimeWrap .list a {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.box_3 .box.realtimeWrap .list a span {
	width: calc(100% / 3);
	display: block;
}

.notice {
	background: linear-gradient(183deg, #494949 0%, #404040 13%, #393939 33%, #232323 83%, #181818 100%);
	border-radius: 8px;
	padding: 18px 20px;
}

.withdrawList {
	background: linear-gradient(183deg, #494949 0%, #404040 13%, #393939 33%, #232323 83%, #181818 100%);
	border-radius: 8px;
	/* padding: 18px 20px; */
}

.depositList {
	background: linear-gradient(183deg, #494949 0%, #404040 13%, #393939 33%, #232323 83%, #181818 100%);
	border-radius: 8px;
	/* padding: clamp(2px, 1vw, 20px); */
}

.gradient-text {
	/* background-image:linear-gradient(99deg, rgba(195,153,95,1) 0%, rgba(245,233,133,1) 14%, rgba(245,243,197,1) 30%, rgba(195,153,95,1) 46%, rgba(245,233,133,1) 64%, rgba(245,243,197,1) 83%, rgba(195,153,95,1) 100%); -webkit-background-clip:text; color:transparent; */
	color: #fff;
	font-family: var(--font-ff-heading);
	font-weight: var(--font-fw-heading);
}

/* 그라데이션 보더 */
.gradient-border {
	border: 4px solid transparent;
	text-align: center !important;
	border-image: linear-gradient(99deg, rgba(195, 153, 95, 1) 0%, rgba(245, 233, 133, 1) 14%, rgba(245, 243, 197, 1) 30%, rgba(195, 153, 95, 1) 46%, rgba(245, 233, 133, 1) 64%, rgba(245, 243, 197, 1) 83%, rgba(195, 153, 95, 1) 100%);
	border-image-slice: 1;
	border-radius: 8px;
}

/* 실시간 출금 현황 */
.realtime {
	height: 100%;
}
.realtime .swiper-container {
	width: 100%;
	height: 100%;
	overflow: auto;
}
.realtime .swiper-wrapper {
	width: 100%;
	height: 100%;
}
.realtime .swiper-slide {
	height: 30px;
}
@media screen and (max-width: 1190px) {
	.box_3 .box_inner {
		max-width: 100%;
		flex-wrap: wrap;
		padding: 0 24px;
		gap: clamp(12px, 2vw, 24px);
		gap: clamp(12px, 2dvw, 24px);
	}
	.box_3 .box {
		margin: 0;
	}
	.box_3 .box.realtimeWrap {
		width: calc(100% / 2 - 12px);
	}
	.box_3 .box:first-child {
		width: 100%;
	}
}
@media screen and (max-width: 945px) {
	.box_3 .box .list a {
		font-size: 1.3rem;
		height: auto;
		line-height: 18px;
		width: auto;
		margin-bottom: 8px;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		width: 100%;
	}
}
@media screen and (max-width: 810px) {
	.box_3 .box .list a .noticetext {
		min-width: 200px;
	}
}
@media screen and (max-width: 767px) {
	.box_3 {
		padding: 16px 0;
	}
	.box_3 .box_inner {
		flex-direction: column;
		padding: 0 10px;
	}
	.box_3 .box {
		width: calc(100% - 20px);
		margin-bottom: 0;
		overflow: auto;
	}
	.box_3 .box > .notice {
	padding: 10px;
}
	.box_3 .box.realtimeWrap {
		width: 100%;
	}
	.box_3 .box .list a {
		font-size: 1.3rem;
		height: auto;
		line-height: 25px;
		flex-direction: row;
		width: 100%;
	}
	.box_3 .box .list a span:last-child {
		font-size: 1.1rem;
	}
	.box_3 .box .tt .ko {
		font-size: 1.425rem;
		height: 40px;
		line-height: 100%;
	}
	.box_3 .box.notice .list {
		height: auto;
	}
	.realtime .swiper-container {
		height: 150px;
	}
	.realtime .swiper-slide {
		height: calc(100% / 6);
	}
}

/* popup */
.bg_mask {
	z-index: 8000;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.75);
}
.bg_mask + .bg_mask {
	background-color: transparent;
}
.popup_box {
	display: none;
	position: absolute;
	width: 800px;
	background: #222222;
	background-repeat: no-repeat;
	background-size: cover;
	box-shadow: 50px 50px 50px rgba(0, 0, 0, 0.8);
	border-radius: 10px;
}
.popup_box.view {
	z-index: 9997;
	display: block;
}
.popup_box.view {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.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;
}
.popup_box .close {
	z-index: 9999;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -125%);
	width: 128px;
	height: 48px;
	background-image: url(../assets/images/content/popup_close.png);
	background-size: 100% 100%;
	background-position: center;
}

.layer_content {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 8px;
}
.layer_head {
	display: flex;
	align-items: center;
	width: 100%;
}
.pop_logo {
	height: 50px;
	text-align: center;
}
.pop_logo img {
	height: 100%;
	display: inline-block;
}
.pop_tt {
	font-size: 2rem;
	margin: 10px auto;
	text-align: center;
	font-style: italic;
}
.pop_st {
	font-size: 1.6rem;
	margin: 16px auto;
	text-align: center;
	font-family: var(--font-ff-heading);
	font-weight: var(--font-fw-heading);
	letter-spacing: 0.015rem;
}
.popup_button {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.popup_button .btn {
	display: inline-block;
	width: 100%;
	height: 46px;
	line-height: 46px;
	margin: 5px 0 0;
	padding: 0 20px;
	color: #fff;
	font-size: 1.4rem;
	text-align: center;
	border-radius: 4px;
}
.popup_button .basic {
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
	background: linear-gradient(to bottom, #7a6432 0%, #6a5f13 100%);
	box-shadow: rgba(0, 0, 0, 0.3) 2px 2px 2px -1px;
}
.popup_button .basic:hover {
	background: linear-gradient(#432c0b 0%, #7a5d32 100%);
}
.popup_button .primary {
	background: linear-gradient(to right, #5e574e 0%, #2d2821 100%);
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
	box-shadow: rgba(0, 0, 0, 0.3) 2px 2px 2px -1px;
}
.popup_button .primary:hover {
	background: linear-gradient(#2d2821 0%, #5e574e 100%);
}
.popup_button.bg .basic {
	max-width: 300px;
	background-size: 100% 100%;
	margin-top: 10px;
}
.popup_button.bg .basic:hover {
	/* background:url(../assets/images/content/btn1over.jpg) center no-repeat;*/
	background-size: 100% 100%;
}

/* .popup_button.btn_2{margin:20px 0 0;display:flex;flex-direction:row;justify-content:center;align-items:center}
.popup_button.btn_2 button{width:30%}
.popup_button.btn_2 .login_btn{margin:0 5px}
.popup_button.btn_2 .cancel{margin:0 5px} */

/* 팝업 타이틀 */
.bg_title {
	width: 100%;
	height: 48px;
	line-height: 48px;
	background: url("../assets/images/content/bg_top2.jpg") center no-repeat;
	background-size: 100% 100%;
	color: #2f1104;
	text-align: center;
	font-size: 2.2rem;
	font-family: var(--font-ff-heading);
	font-weight: var(--font-fw-heading);
	text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.3);
	box-shadow: rgba(0, 0, 0, 0.5) 2px 2px 5px -1px;
	padding: 4px 8px 4px;
	border-radius: 6px 6px 0 0;
}

/* 로그인 팝업 */
.register {
	width: 400px;
	/*
  background-image:url(../assets/images/content/bg1.jpg);*/
}
.register .form .form_title {
	display: none;
}
.register .form .form_text.focus .input {
	border-color: rgb(252, 211, 77);
}
.popup_table {
	width: 100%;
	margin: 0;
	margin-top: 4px;
}
.popup_table .popup_table_inner {
	height: 100%;
	/* max-height: 360px; */
	/* overflow: auto; */
}
.popup_table .table {
	width: 100%;
	height: auto;
}
.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-wrap: wrap;
	width: 100%;
	max-height: 300px;
	overflow-y: auto;
	margin-bottom: 8px;
}
.popup_table .table .tbody .t_item {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	/* justify-content: space-between; */
	width: 100%;
}
.popup_table .table .th {
	display: block;
	width: 25%;
	text-align: center;
	font-size: 1.3rem;
	padding: 10px 10px 9px;
	color: #fff;

	background: #00000042;
}
.popup_table .table .td {
	display: block;
	width: 20%;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	text-align: center;
	font-size: 1.3rem;
	padding: 10px 10px;
	color: #f0f0f0;
	background: rgb(0 0 0 / 50%);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.popup_table .table .td a {
	color: #fff;
	display: block;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.popup_table .table .td.empty {
	width: 100% !important;
}

/* 공지사항 */
.popup_table .table .th,
.popup_table.notice .table .th {
	width: 10%;
	flex: 1 1 10%;
}
.popup_table.notice .table .th:nth-child(2) {	width: 50%;}
.popup_table.notice .table .th:nth-child(3) {	width: 10%;}
.popup_table.notice .table .th:nth-child(4) {	width: 10%;}
.popup_table .table .td,
.popup_table.notice .table .td {
	width: 10%;
	font-size: 1.3rem;
	flex: 1 1 10%;
}
.popup_table.notice .table .td:nth-child(2) {
	width: 50%;
	text-align: left;
}
.popup_table .table .m_memo_title,
.popup_table.notice .table .m_notice_title {
		flex: 1 1 50%;
	}
.popup_table.notice .table .td:nth-child(3) {	width: 10%;}
.popup_table.notice .table .td:nth-child(4) {	width: 10%;}

.noticeCont {
	display: none;
	transition: all 0.25s;
	width: 100%;
	padding: 10px 10% 10px 10%;
	font-size: 1.3rem;
	line-height: 26px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	background: #2a2a2a;
}
.noticeCont.open {
	display: block;
}
.m_memo_date {
	display: none;
}
.m_notice_date {
	display: none;
}
.m_cs_date {
	display: none;
}
.m_ans_title {
	display: none;
}

@media screen and (max-width: 767px) {
	.popup_box {
		width: 95%;
		top: 2vh !important;
		top: 2dvh !important;
		position: fixed;
	}
	.popup_box.view {
		transform: unset;
		transform: translateX(-50%);
	}
	.popup_box.gameListPop {
		height: 96vh; height: 96dvh;
	}
	.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;
	}
	.popup_box .close {
		left: unset;
		right: 0;
		height: 44px;
		transform: translate(-5px, 6px);
		width: 44px;
		background-color: #222222;
		background-image: url(../assets/images/content/popup_close_m.png);
		background-size: auto 60px;
		border: 2px solid #222222;
		border-radius: 0 6px 0 0;
	}
	.layer_content {
		border: 4px solid #ffd836;
		border-radius: 10px;
		padding: 4px;
		max-height: 96vh;
		max-height: 96dvh;
		overflow: hidden;
	}
	.pop_tt {
		font-size: 2.2rem;
	}
	.pop_logo {
		height: 40px;
	}
	.layer_head {
		height: 40px;
		min-height: max-content;
	}
	.layer_head + .layer_body {
		height: 100%;
		overflow: auto;
	}
	.bg_title {
		font-size: 1.6rem;
		background-size: 100% 100%;
		height: 40px;
		line-height: 1;
		border-radius: 4px 4px 0 0;
		display: inline-flex;
		align-items: center;
		justify-content: flex-start;
		padding: 0 0 0 12px;
	}
	.popup_table .table .th {
		font-size: 1.1rem;
	}
	.popup_table.notice {
		width: 100%;
		margin: 1px 0;
		padding: 2px;
		border-radius: 0 0 8px 8px;
	}
	.popup_table .table_list {
		max-height: unset;
	}
	.popup_table.notice .table .th {
		width: 16%;
	}
	.popup_table.notice .table .th:nth-child(2) {
		width: 44%;
	}
	.popup_table.notice .table .td {
		width: 16%;
		font-size: 1.2rem;
		padding: 10px 5px;
		text-overflow: clip;
	}
	.popup_table.notice .table .td:nth-child(2) {
		width: 44%;
	}
	.popup_table.notice .table img {
		height: auto;
		width: fit-content;
		max-width: 90%;
	}
	.noticeCont {
		padding: 10px 17% 10px 17%;
		word-break: keep-all;
		font-size: 1.2rem;
		line-height: 22px;
	}
	.popup_button {
		padding-bottom: 2px;
	}
	.popup_button.bg .basic {
		margin-top: 3px;
	}

	.m_hiding {
		display: none !important;
	}
	.m_memo_title {
		width: 64% !important;
	}
	.m_memo_date {
		display: block;
		font-size: 1.1rem;
		color: #ffffff80;
		padding: 0px;
	}
	.m_text_bg {
		background: rgba(0, 0, 0, 0.5);
	}
	.m_text_bg .td {
		background: none !important;
		border: 0px !important;
	}
	.m_notice_num {
		width: 21% !important;
	}
	.m_notice_title {
		width: 59% !important;
	}
	.m_notice_date {
		display: block;
		font-size: 1.1rem;
		color: #ffffff80;
		padding: 0px;
	}
	.m_cs_title {
		width: 62% !important;
	}
	.m_cs_etc {
		width: 22% !important;
	}
	.m_cs_date {
		display: block;
		font-size: 1.1rem;
		color: #ffffff80;
		padding: 0px;
	}
}

.m_hiding_small {
	display: block;
	font-size: 1.4rem !important;
}
@media screen and (max-width: 420px) {
	.m_ans_title {
		display: block;
		line-height: 1.8rem;
		color: #999;
	}
	.m_hiding_small {
		display: none;
	}
}

/* common form */
.input input::-webkit-input-placeholder {
	color: #cacaca;
	font-size: 1.3rem;
}
.input input:-ms-input-placeholder {
	color: #cacaca;
	font-size: 1.3rem;
}
.input input::placeholder {
	color: #cacaca;
	font-size: 1.3rem;
}
.inpClear {
	display: none;
	width: 35px;
	height: 36px;
	position: absolute;
	right: 5px;
	top: 0;
	cursor: pointer;
}
.inpClear img {
	width: 16px;
	height: 16px;
}
.form + .form {
	margin-top: 5px;
}
.form_text + .form_text {
	margin-top: 15px;
}
.form {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
.form .form_title {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-end;
	font-size: 1.4rem;
	color: #fff;
}
.form .form_title h3 {
	font-weight: 400;
	word-break: keep-all;
}
.asc {
	color: #f8717199;
	display: block;
	text-align: left;
	margin: 5px 0 0 0;
	padding-left: 5px;
	font-size: 1.3rem;
	font-weight: 400;
}
.desc {
	display: block;
	color: #fff;
	text-align: left;
	margin: 5px 0 0 0;
	padding-left: 20px;
	font-size: 1.3rem;
	font-weight: 400;
}
.form .form_text {
	position: relative;
	width: 100%;
}
.form .input {
	overflow: hidden;
	position: relative;
	display: block;
	padding: 0 10px 0 10px;
	width: 100%;
	height: 46px;
	font-size: 1.4rem;
	border: 1px solid #000;
	background-color: #000;
	border-radius: 4px;
}
.form .input input {
	width: 100%;
	height: 100%;
	border: 0;
	padding: 0;
	font-size: 1.4rem;
	color: #fff;
	text-align: left;
	background-color: transparent;
	font-weight: 600;
}
input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0 1000px #000 inset;
	-webkit-text-fill-color: white;
	/* color: inherit !important; */
	-webkit-text-fill-color: white !important;
}
.form.input_value .input {
	border: 0;
	background-color: transparent;
}
.form.input_value .input input {
	font-weight: 600;
	font-size: 1.4rem;
}
.form .form_textarea {
	position: relative;
	width: 80%;
}
.form .form_textarea .textarea {
	display: block;
	width: 100%;
	border: 1px solid #64583d33;
	background-color: #64583d33;
	border-radius: 8px;
}
.form .form_textarea .textarea textarea {
	width: 100%;
	min-height: 100px;
	font-size: 1.4rem;
	color: #847c6a;
	background-color: transparent;
	border: 0;
	padding: 10px 20px;
}
.btn_money {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 4px;
	margin: 8px 0;
	width: 100%;
	padding: 0 10px;
}
.btn_money .money_button {
	height: 34px;
	line-height: 34px;
	width: calc(100% / 7 - 4px);
	margin: 0;
	display: inline-block;
	color: #fff;
	font-size: 1.2rem;
	border-radius: 4px;
	background-image: url(../assets/images/content/btn2.jpg);
	background-size: 100% 100%;
	background-size: cover;
	background-color: #000;
	border: 1px solid #676767;
}
.btn_money .money_button:hover {
	background: url(../assets/images/content/btn2over.jpg) center no-repeat;
	color: #f8ff9e;
	background-size: cover;
}
.btn_money .money_button.primary {
	/* background:url(../assets/images/content/btn1.jpg) center no-repeat; */
	background-size: cover;
	background-color: #852929;
}
.btn_money .money_button.primary:hover {
	background-image: none;
	background-color: #e62e2e;
	color: #fff;
}
.btn_deposit {
	height: 32px;
	padding: 0 20px;
	margin: 0 3px;
	display: inline-block;
	color: #fff;
	font-size: 1.4rem;
	font-weight: 600;
	border-radius: 4px;
	/* background: url(../assets/images/content/btn1.jpg) center no-repeat; */
	background-size: cover;
	background-color: #000;
	border: 1px solid #c9c9c9;
}
.btn_deposit:hover {
	/* background:url(../assets/images/content/btn1over.jpg) center no-repeat; */
	background-color: #2d2d2d;
	background-size: 100% 100%;
}
.row_form .form .form_title {
	width: 20%;
	height: 60px;
	background: rgba(0, 0, 0, 0.3);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 0 20px;
}
.row_form .form .form_text {
	width: 80%;
	height: 60px;
	background: rgba(0, 0, 0, 0.3);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.row_form .form + .form {
	margin-top: 0;
}
.row_form .form .input {
	height: 60px;
	display: flex;
	align-items: center;
	background-color: transparent;
	border: 0;
}
.row_form .form .input input {
	padding: 0 10px;
	color: #f7f7f7;
	height: 34px;
	background-color: #222;
	border: 1px solid #000;
	border-radius: 4px;
}
.row_form .form .form_text_btn {
	position: relative;
	width: 80%;
	height: 60px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	background: rgba(0, 0, 0, 0.3);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.row_form .form .form_text_btn .input {
	width: calc(100% - 110px);
}
.row_form .form .form_text_btn .btn {
	width: 100px;
	margin: 0 10px 0 0;
}
.row_form .form .form_text_btn .btn button {
	width: 100px;
	height: 34px;
	display: inline-block;
	color: #fff;
	font-size: 1.4rem;
	border-radius: 4px;
	background: url(../assets/images/content/btn1.jpg) center no-repeat;
	background-size: cover;
}
.row_form .form .form_text_btn .btn button:hover {
	background: url(../assets/images/content/btn1over.jpg) center no-repeat;
	background-size: 100% 100%;
}
.chargeMoney.form .form_text {
	height: 120px;
}
.chargeMoney.form .form_title {
	height: 120px;
}
.row_form .depositName.form .input {
	display: flex;
	flex-direction: row;
	align-items: center;
}
.row_form .depositName.form .input input {
	width: 30%;
}
.row_form .num {
	color: #e2a826;
	font-size: 1.6rem;
	margin: 0 5px 0 0;
	display: inline-block;
	text-shadow: 1px 1px 1px #000000;
	font-weight: 600;
	font-style: italic;
}

/* select */
.select_basic {
	display: block;
	position: relative;
	width: 100%;
	height: 38px;
	text-align: left;
	background-color: #222;
	border: 1px solid #000;
	border-radius: 4px;
}
.select_basic .select_box {
	display: inline-block;
	padding: 0 10px;
	position: relative;
	height: 100%;
	width: 100%;
	line-height: 38px;
}
.select_basic .select_box label {
	position: absolute;
	font-size: 1.3rem;
	top: 0;
	left: 10px;
	color: #cacaca;
}
.select_basic .select_box:after {
	content: "";
	display: inline-block;
	position: absolute;
	right: 10px;
	top: 17px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 4px 4px 0 4px;
	border-color: #fff transparent transparent transparent;
	vertical-align: top;
}
.select_basic .select_box .select {
	width: 100%;
	height: 40px;
	line-height: 38px;
	color: #f7f7f7;
	opacity: 0;
	filter: alpha(opacity=0);
	font-size: 1.3rem;
}
.select_basic .select_box label.on {
	color: #f7f7f7;
	font-size: 1.4rem;
}
.joinRegister {
	height: calc(100vh - 150px);
	height: calc(100dvh - 150px); /* safari */
}
.joinRegister .layer_content {
	height: 100%;
}
.joinRegister .layer_body {
	height: 100%;
	overflow: hidden;
}
.form_scroll {
	position: relative;
	width: 100%;
	height: 100%;
	overflow-y: auto;
}
@media screen and (max-width: 767px) {
	.joinRegister {
		height: calc(100vh - 130px);
		height: calc(100dvh - 130px); /* safari */
	}
}
@media screen and (max-width: 767px) {
	.form .form_title {
		font-size: 1.3rem;
	}
	.form.input_value .input input {
		font-size: 1.3rem;
	}
	.asc {
		font-size: 1.2rem;
	}
	.desc {
		font-size: 1.2rem;
	}
	.btn_money {
		margin: 0;
		gap: 5px;
	}
	.btn_money .money_button {
		width: calc(100% / 3 - 4px);
		margin-bottom: 1px;
		font-size: 1.2rem;
	}
	.btn_money .money_button:last-child {
		width: 100%;
	}
	.row_form .form .form_title {
		width: 20%;
		padding: 0 10px;
		height: 50px;
	}
	.row_form .form .form_text {
		width: 80%;
		height: 50px;
	}
	.row_form .form .input {
		height: 50px;
	}
	.row_form .chargeMoney.form .input {
		height: 50px;
	}
	.chargeMoney.form .form_text {
		height: 170px;
	}
	.chargeMoney.form .form_title {
		height: 170px;
	}
	.row_form .depositName.form .form_title {
		height: 70px;
	}
	.row_form .depositName.form .form_text {
		height: 70px;
	}
	.row_form .depositName.form .input {
		height: 70px;
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
	}
	.row_form .depositName.form .input input {
		width: 100%;
	}
	.row_form .depositName .desc {
		padding-left: 8px;
		margin: 5px 0 0 0;
		font-size: 1.1rem;
	}
	.btn_deposit {
		font-size: 1.2rem;
	}
	.row_form .form .form_text_btn .btn button {
		font-size: 1.2rem;
	}
}
.scrollTop {
	z-index: 999;
	display: none;
	background: transparent;
	border: 0;
	border-radius: 35px;
	width: 48px;
	height: 48px;
	box-shadow: 0 0 5px 0 #000, 0 5px 5px 0 rgba(245, 243, 197, 0.5);
	color: #afafaf;
	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: 30px;
		width: 30px;
		height: 30px;
	}
	.scrollTop svg {
		width: 20px;
		height: 20px;
	}
}

/* 게임리스트 */
.gameListPop {
	width: 1300px;
	height: 84vh;
	height: 84dvh; /* safari */
}
.gameListPop .layer_content {
	height: 100%;
}
.gameListPop .layer_body {
	height: 100%;
	overflow: hidden;
}
.game_list_wrap {
	position: relative;
	width: 100%;
	height: 100%;
	overflow-y: auto;
}
.game_list {
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	padding: 3rem 2rem;
	justify-content: flex-start;
	align-items: stretch;
	gap: 1.75rem;
}
.game_list .mgm {
	width: calc(100% / 5 - 1.4rem);
	margin: 0;
	display: block;
}
.game_list .mgm a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}
.game_list .mgm .img_mob {
	display: none;
}
.game_list .mgm .img_mob img {
	width: 100%;
}
.game_list .mgm .img {
	width: 100%;
}
.game_list .mgm .img img {
	width: 100%;
}

.game_list .mgm .img .badge_hot {
	position: absolute;
    left: -14px;
    top: -12px;
    width: 35%;
    height: auto;
    filter: drop-shadow(2px 4px 6px black);
}


.game_list .mgm .img .promo {
    width: 72px !important;
    top: -6px !important;
    left: -6px !important;
    filter: drop-shadow(0px 2px 6px #000000a0);
}


.game_list .image-normal {
	display: block;
}
.game_list .image-hover {
	display: none;
}
.game_list .image-toggle.active .image-normal {
	display: none;
}
.game_list .image-toggle.active .image-hover {
	display: block;
	animation-name: mouseover2;
	-webkit-animation-name: mouseover2;
	animation-duration: 2s;
	-webkit-animation-duration: 2s;
	animation-timing-function: ease-in-out;
	-webkit-animation-timing-function: ease-in-out;
	transform-origin: 90% 100%;
	-ms-transform-origin: 90% 100%;
	-webkit-transform-origin: 90% 100%;
	visibility: visible !important;
}

.game_list .image-toggle.active .image-normal {
	display: none;
}


.game_slot_detail_wrap .game-title-txt {
	position: absolute;
	z-index: 98;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 24% 0 8px;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 80%);
	font-size: clamp(13px, 1.6vw, 16px);
	text-align: center;
	letter-spacing: normal;
	word-break: keep-all;
	line-height: 1.25;
	font-weight: var(--font-fw-heading);
	font-family: var(--font-ff-heading);
	transition: all 0.25s;
}
@media screen and (max-width: 1190px) {
	.gameListPop {
		width: 95%;
	}
	.game_list .mgm {
		width: calc(100% / 4 - 1.4rem);
	}
}
@media screen and (max-width: 767px) {
	.popup_box.gameListPop .close {
		transform: translate(-4px, 4px);
		border-radius: 6px 6px 0 0;
		height: 40px;
		width: 40px;
		background-size: auto 54px;
	}
	.popup_box.gameListPop.SlotDetail .close {
		border-radius: 6px;
	}
	.gameListPop .layer_content {
		padding: 0;
		border-radius: 8px;
	}
	.game_list {
		margin: 0;
		padding: 2rem 1.25rem;
		gap: 1rem;
	}
	.game_list .image-normal,
	.game_list .image-toggle.active .image-normal {
		display: block !important;
	}
	.game_list .image-toggle.active .image-hover {
		display: none !important;
	}
	.game_list .mgm {
		width: calc(100% / 3 - 0.675rem);
	}
}
.panel_site_menu {
	display: none;
}
@media screen and (max-width: 767px) {
	.panel_site_menu {
		display: flex;
		width: 100%;
		justify-content: space-between;
		padding: 0 20px;
		flex-direction: row;
		margin: 0 auto;
		margin-bottom: 15px;
	}
	.panel_site_menu .sm_item {
		width: 48%;
		cursor: pointer;
		margin: 0px 2px;
	}
	.panel_site_menu .sm_item img {
		width: 100%;
	}
	.panel_site_menu .sm_item img:hover {
		filter: brightness(1.4);
	}
}

.colorselect {
	position: fixed;
	top: 25%;
	left: -1px;
	width: 72px;
	padding: 0 6px 0 8px;
	background: rgb(255 255 255 / 50%);
	color: #000000;
	z-index: 98;
	text-align: right;
	line-height: 2.5;
	cursor: default;
	border-top-right-radius: 8px;
	border-bottom-right-radius: 8px;
	border: 1px solid #ffffff3d;
}
.colorselect > p {
	font-size: 1rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: normal;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: row;
	flex-wrap: nowrap;
}
.colorselect .clickyellow span {
	color: rgb(255, 145, 0);
	text-shadow: 0px 1px 3px black;
	padding: 0;
	line-height: 1;
}
.colorselect .clickred span {
	color: rgb(255, 42, 0);
	text-shadow: 0px 1px 3px black;
	padding: 0;
	line-height: 1;
}
.colorselect .clickblue span {
	color: rgb(0, 104, 208);
	text-shadow: 0px 1px 3px black;
	padding: 0;
	line-height: 1;
}
.colorselect:hover {
	background: #ffffff66;
	box-shadow: 0 0 #000;
}

@media screen and (max-width: 767px) {
	.m-display-n {
		display: none !important;
	}
}

.bg_title_detail {
	/* height: 106px !important; */
	height: max-content;
	line-height: 1.15;
	padding: 10px 8px 12px;
}
.slot_gtitle {
	padding: 2px 0 0 0;
	margin: 0px;
	line-height: 2;
}

.slot_g_searchbox {
	width: 30%;
	overflow: hidden;
	padding: 0px;
	margin: 0 auto;
	background: linear-gradient(132deg, #ffe200 0%, #ffe276 49%, #ffb813 100%);
	padding: 4px;
	border-radius: 9px;
	filter: drop-shadow(0px 0px 4px #00000033);
}

@media (max-width: 768px) {
	.slot_g_searchbox {
		width: fit-content;
		/* float: right; */
		margin: 0;
		margin-right: 40px;
		height: 40px;
	}
}

.searchbox {
	float: right;
	background: #fff;
	border: 1px solid #a2851570;
	padding: 2px;
	border-radius: 6px;
	width: 100%;
	height: 36px;
}
.searchbox-txt {
	border: 0px;
	width: 88%;
	height: 30px;
	outline: none;
	font-size: 1.8rem;
	padding-top: 1px;
	padding-left: 6px;
	color: #4a4a4a;
}
.searchbox-bt {
	float: right;
	border: 0px;
	background: #fff;
	width: 30px;
	height: 30px;
	line-height: 3rem;
	margin: 1px;
	color: #000;
}

@media (max-width: 1200px) {
	.searchbox-txt {
		width: 80%;
	}
}
@media (max-width: 768px) {
	.searchbox-txt {
		width: 84%;
	}
	.searchbox {
		margin: 0;
		height: 32px;
		padding: 0;
	}
	.slot_gtitle {
		/* float: left; */
		font-size: clamp(16px, 2.0vw, 20px);
		letter-spacing: normal;
		/* padding: 4px; */
	}
	.bg_title_detail {
		/* height: 50px !important; */
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-wrap: wrap;
		gap: 6px;
		/* background: aqua; */
		padding-left: 12px;
	}
	.searchbox-bt {
		margin: 0px;
		border-radius: 6px;
	}
	.search-icon {
		top: 7px !important;
	}
}

@media (max-width: 500px) {
	.game_list {
		padding: 1rem 0.75rem;
		gap: 0.75rem;
	}
	.game_list .image-normal,
	.game_list .image-toggle.active .image-normal {
		display: block !important;
	}
	.game_list .image-toggle.active .image-hover {
		display: none !important;
	}
	.game_list .mgm {
		width: calc(100% / 2 - 0.375rem);
	}

	.bg_title_detail {
		/* height: 50px !important; */
	}
	.searchbox-bt {
		margin: 0;
		padding: 0;
		border-radius: 6px;
	}
	.pop-header h2 {
		font-size: 26px !important;
	}
	.searchbox {
		width: 100%;
		height: 32px;
		margin-top: 0px;
	}
	.slot_gtitle {
		width: fit-content;
		line-height: 1.15;
		/* float: left; */
		/* text-align: left; */
		/* padding: 4px; */
	}
	.searchbox-txt {
		width: 80% !important;
		/* height: 28px; */
	}
}

.search-icon {
	font-size: 17px;
	line-height: 0;
	position: relative;
	top: 4px;
}
.custombg1 {
	background: #000000cc;
}

.SlotDetail .game_list .mgm .img img {
	height: 140px;
}

@media (max-width: 768px) {
	.SlotDetail .game_list .mgm .img img {
		height: 94px;
	}
}

@media screen and (max-width: 400px) {
	.form .input {
		padding: 0 10px 3px 10px;
		font-size: 1.3rem;
	}
	.row_form .form .form_title {
		background: rgb(24, 24, 24);
	}
	.form .form_title {
		font-size: 1.1rem;
	}
	.btn_money .money_button {
		width: calc(100% / 2 - 4px);
		margin-bottom: 1px;
		font-size: 1.1rem;
	}

	.chargeMoney.form .form_text {
		height: 216px;}
	.chargeMoney.form .form_title {
		height: 216px;}
	

}


/*	**********	NEW TABLE LIST	**********	*/
:root	{
	--tb-th-bg: #2b2b2b;
	--tb-tx-color: #fff;
	--tb-point-color: #000000;
	--tb-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}
.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; */
}
.table_list .tb_common	{
	width: 100%;
	min-width: fit-content;
	border-collapse: initial;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: var(--tb-shadow);
}
.table_list .tb_common thead	{
	position: sticky;
	top: 0;
}
.tb_common th	{
	padding: clamp(8px, 1vw, 10px);
	background: var(--tb-th-bg);
	-webkit-background: var(--tb-th-bg);
	color: var(--tb-tx-color);
	border-right: none;
	border-bottom: 1px solid;
	box-shadow: inset 0 0 0px rgba(255, 255, 255, 0.25);
	word-break: keep-all;
	font-size: clamp(11px, 2vw, 13px);
	text-align: center;
	border-color: #181818;
}
.tb_common th + th	{
	/* border-left: 0px solid; */
	/* border-bottom: 1px solid; */
	/* border-color: rgba(255, 255, 255, 0.25); */
}
.tb_common td	{
	padding: clamp(8px, 1vw, 14px);
	padding-left: clamp(4px, 1vw, 14px);
	padding-right: clamp(4px, 1vw, 14px);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	border-right: 1px solid #ffffff0a;
	vertical-align: middle;
	font-size: clamp(1.1rem, 1.75vw, 1.3rem);
	word-break: keep-all;
	text-align: center;
	font-weight: normal;
}
.tb_common td:last-child	{
	border-right: none;
}
.tb_common tr	{
	background-color: #0000009c;
	transition: background-color 0.2s;
}
.tb_common tr:nth-child(even)	{
	background-color: rgba(255, 255, 255, 0.075);
}
.tb_common tr:hover	{
	background-color: rgba(0, 0, 0, 0.47);
}
.tb_common .subject	{
	text-align: left;
	font-size: clamp(1.2rem, 1.75vw, 1.4rem);
}
.tb_common .none-article	{
	width: 100%;
	padding: 4rem 0 !important;
	text-align: center;
	font-size: 1.4rem;
}
.tb_common .read-article td	{
	padding: clamp(8px, 5vw, 24px);
	padding-right: clamp(4px, 2vw, 8px);
	text-align: left;
	line-height: 1.75;
	background: #0e0e0e;
}
.table_list .tb_common img {max-width: 98%;}







/* 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: 600;
	font-weight: var(--font-fw-heading);
	font-family: var(--font-ff-heading);
	color: #fff;
	text-align: center;
	z-index: 1;
	align-items: center;
	justify-content: center;
	background: #412a15;
	background: linear-gradient(310deg, rgba(0, 0, 0, 0.25) 0%, rgba(133, 89, 16, 0.85) 50%, rgba(50, 30, 5, 0.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; }
}




.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;}
}	