@charset "UTF-8";
/* Import Google Font */
@import url("https://fonts.googleapis.com/css2?family=Black+Ops+One&display=swap");

/*
***************************************************
BASE
***************************************************
*/
:root {
	--ctype-ff-body: "Pretendard", "Paperlogy", sans-serif;
	--ctype-ff-heading: "Paperlogy", "Pretendard", sans-serif;
	--ctype-ff-accent: "SBAggro", sans-serif;
	--ctype-color-point: #e0a053;
}

/* 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, p, a {
	font-family: var(--ctype-ff-body);
}
h1, h2, h3, h4, h5, h6, input, textarea, table th, button, .btn {
	font-family: var(--ctype-ff-heading);
}
body, html {
	font-size: 10px;
	letter-spacing: 0;
}
html, body {
	background: #181818;
	line-height: 1.3;
	color: #fff;
	font-weight: 400;
}
fieldset, img {
	border: 0 none;
}
img {
	vertical-align: top;
}
a {
	text-decoration: none;
	cursor: pointer;
	font-family: inherit;
	color: #fff;
}
a:active, a:hover {
	text-decoration: none;
}
input, select, textarea, button {
	vertical-align: top;
}
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;
}
::-webkit-scrollbar {
	width: 8px;
	height: 8px;
	border: 0;
}
::-webkit-scrollbar-track {
	background: #181818;
}
::-webkit-scrollbar-thumb {
	width: 8px;
	background: #4b4c5b;
	border-radius: 0;
}

/* site common style max-width:1400px */
#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: rgb(10, 10, 10);
	transition: box-shadow 0.5s ease, background-color 0.5s ease;

	background-image: url(../assets/images/content/gnb_in_background.jpg);
	background-position-y: bottom;
}
#header.scroll {
	box-shadow: 0 8px 25px -15px #ffe39c, 0 8px 10px -16px #fbbf24;
	background-color: rgba(13, 18, 23, 0.9);
}
.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 1rem;
	max-width: 1500px;
	margin: 0 auto;
}

/* logo */
.theme_logo_img {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%, 8px);
	z-index: 99;
}
.theme_logo_img a {
	display: block;
	width: auto;
	max-width: 300px;
	height: 100px;
}
.theme_logo_img img {
	width: auto;
	max-width: 100%;
	height: 100%;
	object-fit: scale-down;
	filter: drop-shadow(0px 4px 8px #000);
}
.login .theme_logo_img {
}

/* 우측메뉴 */
.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;
	font-family: var(--ctype-ff-heading);
	gap: 0.75rem;
}
.mem_menu li a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-width: 96px;
	font-size: 1.6rem;
	color: #fff;
	height: 40px;
	border-radius: 8px;
	font-weight: 500;
}
.mem_menu li .m_login {
	background: rgb(55, 65, 81);
	background: linear-gradient(93deg, rgba(55, 65, 81, 1) 0%, rgba(55, 65, 81, 1) 30%, rgba(17, 39, 25, 1) 60%, rgba(13, 18, 23, 0.75) 100%);
}
.mem_menu li .m_join {
	background: rgb(250, 204, 21);
	color: #1c1c1c;
	background: linear-gradient(93deg, rgba(250, 204, 21, 1) 0%, rgba(133, 77, 14, 1) 100%);
}
.btn-hover-border {
	position: relative;
	overflow: hidden;
	transition: all 0.3s;
}
.btn-hover-border::after {
	content: "";
	position: absolute;
	left: 0; top: 0; right: 0; bottom: 0;
	background-image: url(../assets/images/content/button-hover-border.png?v=20250);
	background-size: 110% 110%;
	background-position: center;
	filter: contrast(1.5) brightness(1.5);
	transition: all 0.3s;
	opacity: 0;
}
.btn-hover-border:hover {
	filter: contrast(1.15) brightness(1.25);
}
.btn-hover-border:hover::after {
	opacity: 1;
}

/* select_lang */
.select_lang {
	z-index: 1;
	height: 24px;
	overflow: visible;
	position: relative;
	margin-right: -20px;
}
.selectLangCont {
	height: 24px;
	text-align: center;
	padding: 0 20px;
}
.selectLangCont img {
	width: 24px;
	height: 24px;
}
.select_lang li {
	padding: 8px 20px;
	background-color: rgba(0, 0, 0, 1);
	margin-top: -1px;
}
.select_lang li img {
	width: 20px;
	height: 20px;
}
.select_lang li:hover {
	background-color: rgb(75, 85, 99);
}
.lang_inner {
	height: auto;
	padding-bottom: 5px;
	transition: all 0.3s;
	position: absolute;
	top: 34px;
	right: 0;
	display: none;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
.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(90deg, rgba(0, 0, 0, 1) 0%, rgb(43, 43, 43) 50%, rgba(0, 0, 0, 1) 100%);
}
.login #header .header {
	background: transparent;
	transform: translate(-50%, -78%);
}
.login #header .header_wrap {
	height: 100%;
	flex-direction: column;
	justify-content: flex-start;
	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: 300;
	color: rgba(255, 255, 255, 1);
	cursor: pointer;
}
.theme_myMenu .ico {
	width: 26px;
	height: 26px;
	display: inline-block;
	margin-right: 5px;
}
.theme_myMenu .ico img {
	width: 100%;
	height: 100%;
}
.theme_myMenu span.hover:hover {
	background: #88693a;
	border-color: #88693a;
}
.myMenuPage span {
	border: 1px solid rgb(255 185 50 / 50%);
	border-radius: 4px;
	padding: 4px 12px;
	transition: all 0.2s ease-in-out;
}
.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;
	flex-direction: row;
	align-items: center;
	padding-top: 2px;
}
.myMenu_info span {
	display: flex;
	flex-direction: row;
	align-items: center;
	margin-left: 16px;
	justify-content: center;
	gap: 6px;
}
.myMenu_info span strong {
}
.myMenu_info .btn_logout {
	display: inline-block;
	margin-left: 15px;
	border: 1px solid rgb(255 185 50 / 50%);
	border-radius: 4px;
	padding: 5px 16px 5px;
	color: rgba(255, 255, 255, 1);
	font-size: 1.3rem;
	width: 100px;
	height: 100%;
	transition: all 0.2s ease-in-out;
}
.myMenu_info .btn_logout:hover {
	background: #88693a;
	border-color: #88693a;
}
.login .theme_myMenu {
	display: flex;
	font-family: var(--ctype-ff-heading);
}

.theme_myMenu {}
.login .theme_logo_img a {
	height: 98px;
}
.login .site_gnb {
	padding: 0 20px;
	transform: translate(-50%, 0%);
}
.login .select_lang {
	height: 46px;
	display: flex;
	align-items: center;
}
.login .select_lang .lang_inner {
	top: 46px;
}
.login #header .mem_menu {
	display: none;
}
.btn_sns {
	display: inline-block;
	width: 32px;
	height: 32px;
}
.btn_sns img {
	width: 100%;
	height: 100%;
}

/* add */
.iconadd {
	font-size: 1.4rem;
	padding: 2px 4px 4px;
	line-height: 0px;
}
.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;
}

/* section */
.section {
	z-index: 10;
	position: relative;
	padding: 70px 0 70px;
	background-color: #181818;
}
.login .section {
	padding: 126px 0 100px;
}

@media screen and (max-width: 1256px) {
	.top-hiding {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: 1030px) {
	#header {
		height: 70px;
		background-position: 0 5px;
	}
	.login #header {
		height: 70px;
	}
	.login .select_lang {
		position: absolute;
		right: 20px;
		top: 11px;
		background-color: transparent;
	}
	.login #header .header {
		transform: translate(-50%, -50%);
	}
	.login .section {
		padding: 70px 0 100px;
	}
}

@media screen and (max-width: 767px) {
	.section {
		position: relative;
		padding: 70px 0 50px;
	}
	.login .section {
		padding: 70px 0 50px;
	}
}

/* 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:1400px; */
	max-width: 1500px;
	margin: 0 auto;
}
.gnb_in {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	flex-direction: row;
	align-items: center;
}
.login .gnb_in {
	height: 88px;
}
.gnb_menu li {
	position: relative;
	display: inline-block;
}

.gnb {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}
.gnb li {
	display: inline-block;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
	height: 100%;
	width: 100%;
	min-width: max-content;
	padding: 12px 24px;
	background-image: url(../assets/images/content/lefttop-button.png);
	background-size: 100% 100%;
	font-family: var(--ctype-ff-accent);
	font-weight: 400;
}
.gnb li a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	color: #faac15;
	font-size: 1.6rem;
	height: 100%;
	width: 100%;
}
.gnb li span {
	display: inline-block;
}
.gnb li.active a,
.gnb li:hover a {
	color: rgb(251, 191, 36);
}
.gnb li:hover {
	background-image: url(../assets/images/content/lefttop-button-hover.png);
}

.gnb_right {
	display: none;
	flex-direction: row;
}
.gnb_right li {
	background-image: url(../assets/images/content/righttop-button.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	width: 110px;
	height: 38px;
	margin: 0;
	padding: 0;
	font-family: var(--ctype-ff-heading);
}
.gnb_right li:hover {
	background-image: url(../assets/images/content/righttop-button-hover.png);
}
.gnb_right li a {
	display: block;
	height: 100%;
	line-height: 1;
	color: #facc15;
	font-size: 1.4rem;
	font-weight: 500;
}
.gnb_right li a span {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}
.gnb_right svg {
	width: 18px;
	height: 18px;
	margin-right: 5px;
}
.login .gnb_right {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

@media screen and (max-width: 1520px) {
	.gnb li {
		display: inline-block;
		transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
		min-width: 120px;
		padding: 8px 16px;
		background-image: url(../assets/images/content/lefttop-button.png);
		background-size: 100% 100%;
		background-repeat: no-repeat;
		line-height: 2;
	}
	.gnb li a {
	}
}

.all_menu_layer {
	display: none;
	z-index: 100;
	position: absolute;
	top: 80px;
	width: 100%;
	border-bottom: 2px solid transparent;
	border-top: 0 solid transparent;
	border-image: linear-gradient(90deg, #ffd165, #996800) 1;
	background-image: linear-gradient(#000000, rgba(0, 0, 0, 0.75));
}
.all_menu_layer .inner {
	overflow: hidden;
	width: 1400px;
	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_list .row_img {
	width: 100%;
}
.all_menu_layer .menu_list .row_img ul {
	display: flex;
	margin-left: 0;
	width: 100%;
	flex-wrap: wrap;
	flex-direction: row;
	gap: 1.25rem;
	justify-content: center;
}
.all_menu_layer .menu_list .row_img ul li {
	width: 112px;
}
.all_menu_layer .menu_list .row_img ul li a {
	display: block;
	width: 100%;
	position: relative;
	font-family: var(--ctype-ff-heading);
	font-weight: 500;
}
.all_menu_layer .menu_list .row_img .menu_img {
	overflow: hidden;
	display: block;
	width: 100%;
	height: 100%;
	border: 1px solid #000000e6;
	border-radius: 8px;
	transition: all 0.2s ease-in-out;
}
.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: 124px;
	text-align: center;
	font-size: 1.3rem;
	letter-spacing: 0.045rem;
	line-height: 28px;
	overflow: hidden;
	white-space: nowrap;
	transition: all 0.2s ease-in-out;
}
.all_menu_layer .menu_list .row_img ul li:hover .menu_img {
	border-color: rgb(251, 191, 36);
}
.all_menu_layer .menu_list .row_img ul li:hover .menu_tit {
	color: rgb(251, 191, 36);
}
.login .all_menu_layer {
	top: 126px;
}
.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 */
@media screen and (max-width: 1520px) {
	.gnb li a {
		font-size: 1.4rem;
	}
	.all_menu_layer .inner {
		max-width: 100%;
		padding: 0 20px;
	}
	.login .theme_logo_img a {
		height: 78px;
	}
	.gnb_right li {
		width: 100px;
	}
	.gnb_right li a {
		font-size: 1.3rem;
	}
	.gnb_right svg {
		width: 14px;
		height: 14px;
		margin-right: 5px;
	}
}

@media all and (max-width: 1030px) {
	#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: rgb(251, 191, 3);
		transition: all 0.3s ease-in-out;
		border-radius: 5px;
	}
	.panel .btn_panel_toggle span {
		display: inline-block;
		position: relative;
		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: 100vh;
		height: 100dvh;/* Safari */
		background-color: rgba(0, 0, 0, 0.5);
		cursor: pointer;
	}

	/* panel current */
	.panel.left.active {
		left: 0;
		width: 100%;
		max-width: 580px;
	}
	.panel.left.active .btn_panel_toggle {
		top: 0;
		left: 4px;
		transform: none;
	}

	/* 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;
		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: 1400px;
		margin: 0 auto;
	}
	.theme_logo_img {
	top: 50%;
	transform: translate(-50%, -50%);
}
	.theme_logo_img a {
		height: 60px;
	}
	.login .theme_logo_img {
		margin-left: 0;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	.login .theme_logo_img a {
		height: 54px;
	}
	.mem_menu_wrapper {
		margin-top: 0;
	}
	.mem_menu {
		display: none;
	}
	.mobGnb .gnb_login {
		display: block;
	}
	.gnb_login {
		padding-top: 20px;
	}
	.login_txt {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		margin: -8px 0 8px 0;
		color: #fff;
		font-size: 1.3rem;
		font-weight: 500;
	}
	.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: 8px;
	}
	.menu_type {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		flex-wrap: nowrap;
		margin: 0 0 8px;
		padding: 0;
		height: 40px;
		font-family: var(--ctype-ff-heading);
	}
	.menu_type li {
		position: relative;
		display: flex;
		border: 1px solid rgb(100, 90, 60);
		width: calc(100% / 3);
		margin-left: -1px;
		height: 100%;
	}
	.menu_type li a {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		color: #fff;
		width: 100%;
		font-size: 1.2rem;
		height: 30px;
		line-height: 1;
	}
	.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 {
		overflow: hidden;
		height: 100%;
	}
	.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: 0;
		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: #232323;
		font-size: 1.2rem;
		height: 28px;
		line-height: 1;
		border-radius: 8px;
		padding: 0 8px;
		margin: 0;
		width: 100%;
		min-width: fit-content;
	}
	.m_a_box_right {
		display: flex;
		justify-content: flex-start;
		align-items: center;
		gap: 4px;
	}
	.gnb_afterLogin .theme_myMenu .ico {
		display: none;
	}
	.gnb_afterLogin .myMenu_info .m_acount_box span span {
		padding: 0 6px 0 0;
	}


	.add_maintop {display: flex !important;}
	.add_maintop .myMenu_info {margin:0px;}
	.m_slide_mt {margin-top: 42px;};



	.myMenu_info .btn_logout {
		font-size: 1.1rem;
		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 {
		position: absolute;
		top: 10px;
		right: 8px;
	}
	.myMenuPage span.myMenu_name strong {
		color: #facc15;
	}
	.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 screen and (max-width: 500px) {
	.gnb_afterLogin .myMenu_info .m_a_box_right i {
		display: none;
	}
}

/* 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: fit-content;
	min-height: fit-content;
	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(--ctype-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%;
	max-width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
}
.basic_tab li {
	width: 100%;
	min-width: fit-content;
	cursor: pointer;
	position: relative;
	height: 60px;
}
.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: rgb(1 1 1);
	font-weight: 600;
	border: 1px solid transparent;
	border-image: linear-gradient(180deg, #ffcf5f, #ae7803) 1;
	padding: 0 8px;
}
.basic_tab li button span {
	display: inline-block;
	font-weight: 600;
	font-size: 1.6rem;
	color: #fff;
}
.basic_tab li.active button {
	background: #ffaf00;
	border: 1px solid transparent;
}
.basic_tab li.active button span {
	color: rgb(12, 12, 12);
}
.basic_tab.tab_02 li {
	width: 50%;
}
.basic_cont_tab {
	width: 100%;
	padding: 10px 0;
}

@media screen and (max-width: 767px) {
	.basic_tab li {
		height: 40px;
	}
	.basic_tab li button span {
		font-size: 1.3rem;
	}
}
.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-family: var(--ctype-ff-accent);
	font-size: 1.6rem;
}
.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);
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	text-align: left;
	font-family: var(--ctype-ff-heading);
	letter-spacing: 0.045rem;
}
.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;
}


/* footer */
#footer {
	display: none;
}
.web_footer {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	max-width: 1400px;
	margin: 0 auto;
}
.footer_top {
	text-align: center;
}
.footer_top .logo {
	display: block;
	margin: 0 auto;
}
.footer_top .logo img {
	height: 60px;
	margin-bottom: 30px;
}
.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: rgb(253, 230, 138);
	font-size: 2.2rem;
	font-weight: 600;
	font-family: var(--ctype-ff-accent);
}
.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: 0 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: 0 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(100, 100, 100, 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;
	}
	.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;
	}
	.web_footer {
		margin-bottom: 70px;
	}
	.footer_bottom {
		display: none;
	}
}

@media screen and (max-width: 375px) {
	#footer .footer_menu_icon {
		transform: translate(-50%, -70%);
	}

	#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: #fbbf24;
	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 .swiper-slide {
	width: 100%;
}
.slide .swiper-slide a {
	width: 100%;
	display: block;
}
.slide .swiper-slide a img {
	width: 100%;
}

/* .boderbt-line { border-bottom: 1px solid #ecd07e;} */

.main_side {
	padding: 0;
	margin-top: 0;
}
.main_side .swiper-slide a {
	display: flex;
	align-items: flex-start;
	width: 100%;
	height: 500px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.notice_side {
	max-width: 1400px;
	margin: 50px auto;
	/* border-radius: 10px; */
	border-bottom: 4px solid #0000003b;
}
.notice_side .slide_inner {
	background: #1a1a1a;
	/* background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(69, 69, 69, 0.279) 50%, rgba(0, 0, 0, 0) 100%); */
	width: 100%;
	border-bottom: 1px solid transparent;
	border-top: 1px solid transparent;
	border-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 10%, rgb(255, 179, 0) 50%, rgba(0, 0, 0, 0) 90%) 1;
}
.notice_side .swiper-wrapper {
	display: flex;
	flex-direction: wrap;
	justify-content: space-between;
	align-items: center;
}
.notice_side .swiper-slide {
	width: calc(100% / 3) !important;
}
.notice_side .swiper-slide a {
	height: 56px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}
.notice_side .swiper-slide a span {
	display: inline-block;
	font-size: 1.6rem;
}
.notice_side .swiper-slide a .text-tt {
	color: #fbbf24;
	margin-right: 10px;
}
.horizontal_side {
	max-width: 1400px;
	margin: 0 auto;
}
.horizontal_side .swiper-wrapper {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
}
.horizontal_side .swiper-slide {
	/* width: 220px !important; */
	border-radius: 12px;
	overflow: hidden;
}
.horizontal_side .swiper-slide a {
	display: block;
	position: relative;
	width: 100%;
	height: 220px;
	min-height: 100%;
	height: clamp(160px, 20vw, 250px);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	font-family: var(--ctype-ff-heading);
}
.horizontal_side .swiper-slide a .text-tt {
	z-index: 9;
	position: absolute;
	right: 0;
	top: 0;
	color: #fff;
	background-color: rgba(0, 0, 0, 0.5);
	font-size: 1.45rem;
	padding: 8px 16px;
	line-height: 1;
	border-radius: 0 0 0 12px;
	text-align: right;
	word-break: keep-all;
}
.bg_slide_hover {
	z-index: 1;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border-radius: 0px;
	z-index: 999;
}
/*
.bg_slide_hover:hover { box-shadow:0 0 10px 10px rgba(251, 191, 36, .2)}
*/
/*
.bg_slide_hover:hover .bg{background-color:rgba(251, 191, 36, 0.8);position:absolute;left:20px;border:1px solid #fff;width:100%;height:100%;border-radius:5px}
.bg_slide_hover:hover .bg.top{top:-3.6rem;height:2.5rem;transform:skewY(0deg) skewX(22deg) translateY(3.5rem) translateX(-3rem)}
.bg_slide_hover:hover .bg.center{bottom:4.5rem;transform:skewY(-17deg) skewX(13deg) translateY(7rem) translateX(-4rem);height:5.5rem;width:104%}
.bg_slide_hover:hover .bg.bottom{bottom:4.5rem;transform:skewY(10deg) skewX(19deg) translateY(8.7rem) translateX(-6rem);height:5.5rem;width:110%}
*/
.bg_slide_hover:hover .bg {
	position: absolute;
	left: 0px;
	border: 0px solid #fff;
	width: 100%;
	height: 100%;
	border-radius: 0px;
}
.bg_slide_hover:hover .bg.listbox {
	background-image: url(../assets/images/content/gameprovicon-hover.png);
	background-repeat: no-repeat;
	background-size: 100% 100%;
}
.slide_title {
	font-size: 3.2rem;
	font-weight: 600;
	margin: 40px 0 20px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	font-family: var(--ctype-ff-heading);
}
.slide_title .view_more {
	height: 32px;
	font-size: 1.2rem;
	line-height: 1;
	padding: 0 16px;
	border-radius: 4px;
	background: linear-gradient(90deg, #37404f, #181818);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

@media screen and (max-width: 1190px) {
	.main_side .swiper-slide a {
		height: 300px;
		background-position: center;
	}
	.notice_side {
		padding: 0 20px;
		max-width: 100%;
		margin: 20px auto;
	}
	.horizontal_side {
		max-width: 100%;
		padding: 0 20px;
	}
	.horizontal_side .swiper-slide {
		/* width: calc(25% - 4px) !important; */
	}
	.notice_side .swiper-slide {
		/* width: 100% !important; */
		width: calc(100% / 2) !important;
	}
}

@media screen and (max-width: 767px) {
	.notice_side {
		margin: 30px auto;
	}
	.notice_side .swiper-slide {
		width: 100% !important;
	}
	.horizontal_side .swiper-slide {
		/* width: calc(100% / 2 - 20px) !important; */
		position: relative;
		height: auto;
		padding-bottom: 50%;
	}
	.horizontal_side .swiper-slide a {
		height: 96%; /* 100% */
		position: absolute;
	}
	.slide_title {
		font-size: 2.2rem;
	}
	.notice_side {
		padding: 0px;
		margin: 10px auto;
	}
	.notice_side .swiper-slide a {
		height: 46px;
	}
	.notice_side .swiper-slide a span {
		font-size: 1.3rem;
	}
	.horizontal_side .swiper-slide a .text-tt {
		font-size: 1.2rem;
		padding: 6px 12px;
	}
}

.slide1 {
	background-image: url(../assets/images/content/banner-1.jpg);
}
.slide2 {
	background-image: url(../assets/images/content/banner-2.jpg);
}

@media screen and (max-width: 700px) {
	.slide1 {
		background-image: url(../assets/images/content/banner-m1.jpg) !important;
	}
	.slide2 {
		background-image: url(../assets/images/content/banner-m2.jpg) !important;
	}
	.main_side .swiper-slide a {
		/* max-height: 320px; */
		height: 70vw;
	}
}
@media screen and (max-width: 500px) {
	.main_side .swiper-slide a {
		max-height: 320px;
		height: 70vw;
	}
	.horizontal_side .swiper-slide a {
		/* height: 90%; */ /* 100% */
	}
}

.section_inner {
	background: url(../assets/images/content/section_inner_background.jpg);
	background-position: center 500px;
	background-size: auto;
	background-repeat: no-repeat;
	background-color: #010101;
}

@media screen and (max-width: 1190px) {
	.section_inner {
		background-position: center 20%;
	}
}

/* main_game_menu */
.main_game_menu {
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	align-items: center;
	height: 508px;
	max-width: 1400px;
	margin: 30px auto 0;
}
.main_game_menu .mgm {
	/* width: calc(100% / 2 - 10px); */
	/* 3 card */
	width: calc(100% / 3 - 10px);
	margin: 0px;
	border-radius: 0px;
	height: 100%;
	display: block;
	transition: transform 0.3s ease;
	/* 전체 요소 확대 및 기울이기 효과 */
}
.main_game_menu .mgm:hover,
.main_game_menu .mgm:hover a {
	transform: scale(1) skewX(0.5deg) skewY(0.5deg) rotateX(4deg);
}
.main_game_menu .mgm a {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%; width: 100%;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center top;
	transition: all 1s ease-out;
}
.main_game_menu .mgm .img {
	width: 100%;
	transition: transform 0.3s ease, opacity 0.3s ease;
	/* 이미지 크기와 투명도 변화에 대한 애니메이션 */
}
.main_game_menu .mgm .img img {
	width: 100%;
	object-fit: cover;
}

.main_game_menu .mainbtset {
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center top;
}
.main_game_menu .mainbtset:hover,
.main_game_menu .mainbtset:hover a {
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center top;
	transition: all 1s ease-out;
}

.main_game_menu .mgm_01 {
	background-image: url(../assets/images/content/img-casino.png);
}
.main_game_menu .mgm_01:hover a {
	background-image: url(../assets/images/content/img-casino-hover.png);
}
.main_game_menu .mgm_02 {
	background-image: url(../assets/images/content/img-slot.png);
}
.main_game_menu .mgm_02:hover a {
	background-image: url(../assets/images/content/img-slot-hover.png);
}

.main_game_menu .mgm_03 {
	background-image: url(../assets/images/content/img-mini.png);
}
.main_game_menu .mgm_03:hover a {
	background-image: url(../assets/images/content/img-mini-hover.png);
}
.main_game_menu .mgm_04 {
	background-image: url(../assets/images/content/img-holdem.png);
}
.main_game_menu .mgm_04:hover a {
	background-image: url(../assets/images/content/img-holdem-hover.png);
}
.main_game_menu .mgm_05 {
	background-image: url(../assets/images/content/img-sports.png);
}
.main_game_menu .mgm_05:hover a {
	background-image: url(../assets/images/content/img-sports-hover.png);
}

.mgm_title {
	display: flex;
	flex-direction: column;
	padding: 30px 0 0 30px;
}
.mgm_title .tt {
	font-size: 3.2rem;
	font-weight: 900;
}
.mgm_title .st {
	font-size: 1.6rem;
	font-weight: 300;
}

@media screen and (max-width: 1190px) {
	.main_game_menu {
		/* height: 515px; */
		/* 3 card */
		height: calc(1260px / 3 - 10px);
		/* gap:4px; */
		max-width: 100%;
		padding: 0 10px;
	}
	.mgm_title .tt {
		font-size: 2.6rem;
	}
	.mgm_title .st {
		font-size: 1.4rem;
	}
}

@media screen and (max-width: 767px) {
	.mgm_title {
		padding: 20px 0 0 20px;
	}
	.mgm_title .tt {
		font-size: 2rem;
	}
	.main_game_menu {
		height: auto;
		flex-direction: inherit;
		flex-wrap: wrap;
	}
	.main_game_menu .mgm {
		width: calc(100% / 2 - 10px);
		/* 3 card */
		/* width: calc(100% / 3 - 10px); */
		margin-bottom: 20px;
		height: auto;
	}
	.main_game_menu .mgm .img {
		height: 280px;
	}
}

/* 메인 하단 */
.box_2 {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin-top: 50px;
}
.box_2 .box {
	display: flex;
	width: 48%;
	height: 220px;
	padding: 0 30px;
	background: linear-gradient(100deg, rgb(45, 45, 45) 0%, rgb(45, 45, 45) 17%, rgba(255, 204, 0, 0.4) 30%, rgb(45, 45, 45) 75%, rgb(45, 45, 45) 100%) left center / auto 100%;
	border-radius: 16px;
}
.box_2 .box .img {
	width: 40%;
	height: 220px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.box_2 .box .img img {
	width: 176px;
	height: 176px;
}
.box_2 .box .info {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	font-size: 1.5rem;
	width: 60%;
	height: 220px;
	padding-left: 30px;
}
.box_2 .box .info a {
	display: inline-block;
	height: 40px;
	margin-top: 30px;
	line-height: 40px;
	padding: 0 30px;
	text-align: center;
	color: #fff;
	font-size: 1.5rem;
	background: linear-gradient(270deg, rgba(187, 123, 25, 1) 0%, rgba(253, 207, 57, 1) 100%);
	border-radius: 10px;
	box-shadow: 0 0 10px 10px rgba(251, 191, 36, 0.2);
}

@media screen and (max-width: 1190px) {
	.box_2 {
		max-width: 100%;
		padding: 0 20px;
		flex-direction: column;
	}
	.box_2 .box {
		width: 100%;
		margin-bottom: 20px;
	}
}

@media screen and (max-width: 767px) {
	.box_2 .box,
	.box_2 .box .info {
		height: 160px;
		align-items: center;
	}
	.box_2 .box .img {
		height: 100px;
	}
	.box_2 .box .img img {
		width: 100px;
		height: 100px;
	}
}

/* 메인 하단 */
.box_2v3 {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	row-gap: 1rem;
	column-gap: 2rem;
	max-width: 1400px;
	margin: 0 auto;
	margin-top: 48px;
}
.box_2v3 .box {
	display: flex;
	width: 100%;
	height: 100%;
	padding: 0;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: flex-start;
	row-gap: 2rem;
	column-gap: 2rem;
}
.box_2v3 .box .img {
	width: 100%;
	height: auto;
	padding: 0;
	margin: 0;
}
.box_2v3 .box .img img {
	width: 100%;
	height: auto;
}
.box_2v3 .box .info {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 0.75rem;
	font-size: 1.6rem;
	width: 100%;
	word-break: keep-all;
	font-family: var(--ctype-ff-heading);
}
.box_2v3 .box .info h4 {
	font-size: 2.4rem;
	color: #feb448;
	padding: 0;
	font-weight: 500;
}

@media screen and (max-width: 1190px) {
	.box_2v3 {
		max-width: 100%;
		padding: 0 20px;
	}
	.box_2v3 .box {
		width: 100%;
		margin-bottom: 20px;
	}
}

@media screen and (max-width: 767px) {
	.box_2v3	{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	margin-top: 32px;
}
	.box_2v3 .box,
	.box_2v3 .box .info {
		font-size: 1.425rem;
		margin: 0;
		display: flex;
		flex-direction: row;
		justify-content: flex-start;
		align-items: center;
	}
	.box_2v3 .box .info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}
	.box_2v3 .box .img {
	width: 60%;
	}
	.box_2 .box .img img {
		width: 100px;
		height: 100px;
	}
}

@media screen and (max-width: 400px) {
	.box_2v3 .box,
	.box_2v3 .box .info {
		font-size: 1.125rem;
		row-gap: 0.25rem;
		column-gap: 0.75rem;
	}
	.box_2v3 .box .info h4 {
		font-size: 1.4rem;
		color: #feb448;
		padding: 0;
	}
}

/* 메인 하단 공지사항, 이벤트 */
.box_3 {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	margin-top: 50px;
}
.box_3 .box {
	overflow: hidden;
	position: relative;
	display: flex;
	flex-direction: column;
	width: 48%;
	height: 420px;
	padding: 20px 50px 0;
	border-radius: 0px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: left top;
	border-bottom: 1px solid transparent;
	border-top: 1px solid transparent;
	border-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 5%, rgb(255, 179, 0) 50%, rgba(0, 0, 0, 0) 95%) 1;
}
.box_3 .box:before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(69, 69, 69, 0.279) 50%, rgba(0, 0, 0, 0) 100%);
	width: 100%;
	height: 100%;
	border-radius: 0px;
}
.box_3 .box .tt {
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	font-family: var(--ctype-ff-accent);
	font-weight: normal;
}
.box_3 .box .tt .ko {
	color: #fff;
	display: block;
	text-align: center;
	font-size: 1.8rem;
	letter-spacing: 1px;
	line-height: 1;
}
.box_3 .box .tt .en {
	color: #988a6b;
	display: block;
	text-align: center;
	font-size: 1.4rem;
	margin-top: 5px;
	letter-spacing: 1px;
}
.box_3 .box .list {
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	margin-top: 20px;
	font-size: 1.3rem;
	width: 100%;
}
.box_3 .box .list a {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	min-height: 32px;
	gap: 0.75rem;
	line-height: 125%;
	color: #fff;
	font-size: 1.4rem;
	margin-bottom: 16px;
	width: 100%;
}
.box_3 .box .list a span:last-child {
	color: #ffffffb3;
	font-size: 1.2rem;
	min-width: fit-content;
	line-height: 1.25;
}

@media screen and (max-width: 1190px) {
	.box_3 {
		max-width: 100%;
		padding: 0 20px;
	}
	.box_3 .box {
		height: 340px;
		padding: 20px;
	}
	.box_3 .box .tt .ko {
		font-size: 1.5rem;
	}
	.box_3 .box .tt .en {
		font-size: 1.175rem;
		margin-top: 2px;
	}
	.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: 30px;
	}
	.box_3 .box {
		width: 100%;
		margin-bottom: 20px;
		overflow: auto;
	}
	.box_3 .box {
		height: auto;
	}
	.box_3 .box .list {
		margin-top: 10px;
	}
	.box_3 .box .list a {
		font-size: 1.2rem;
		margin-bottom: 5px;
	}
	.box_3 .box .list a span {
		display: block;
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
		width: 50%;
	}
	.box_3 .box .list a span:nth-child(2) {
		text-align: right;
		font-size: 1.1rem;
	}
}

/* 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: max-content;
	min-width: 680px;
	max-width: 820px;
	border: 3px solid transparent;
	border-image: linear-gradient(to right, #ffcd60, #cb8b00) 1;
	box-shadow: 0 4px 8px #0003, 0 6px 20px #00000030;
	background-color: #010101;
}

/* add 20250204 */
.popup_box.view {
	z-index: 9997;
	display: block;
	/*
	top: 10vh !important;
	left: 50% !important;
	transform: translateX(-50%) !important;
	*/
	max-height: 850px;
	height: 80vh;
	height: 80dvh;/*safari*/
}
.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: -20px;
	right: -20px;
	width: 40px;
	height: 40px;
	transition: all 0.3s;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
	background: #f4a700;
	border-radius: 30px;
	border: 1px solid #60460f;
	font-size: 1.5rem;
	color: #fff;
}
.popup_box .close:hover {
	opacity: 0.7;
	transform: scale(1.25);
}

/* popup :all_popup */
.layer_body {
	overflow: auto;
	/* min-height: 50vh; */
	height: 100%;
	padding: 0.75rem;
	padding-bottom: 2.75rem;
}
.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%;
}
.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;
	width: 100%;
	padding-top: 5px;
	text-align: center;
	font-size: 3rem;
	line-height: 1;
	font-weight: 400;
	font-family: var(--ctype-ff-accent);
}
.popup_button {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.popup_button .btn {
	display: inline-block;
	height: 48px;
	line-height: 48px;
	white-space: nowrap;
	margin: 0 10px;
	padding: 0 20px;
	color: #fff;
	font-size: 1.625rem;
	text-align: center;
	text-shadow: 0 0 2px #000000d6;
	border-radius: 4px;
}
.popup_button .basic {
	background-color: #008b0287;
	border: 1px solid transparent;
	border-image: linear-gradient(180deg, #ffcf5f, #ae7803) 1;
}
.popup_button .basic:hover {
	background-color: #2ac100;
}
.popup_button .primary {
	background-color: #ae000087;
	border: 1px solid transparent;
	border-image: linear-gradient(180deg, #ffcf5f, #ae7803) 1;
}
.popup_button .primary:hover {
	background-color: rgb(255, 36, 36);
}
.popup_button button {
	height: 36px;
	line-height: 36px;
	width: 100%;
}
.popup_button.btn_2 {
	margin: 20px 0 0;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}
.popup_button .login_btn {
	margin: 20px 0 0;
	height: 48px;
	line-height: 48px;
	background: linear-gradient(100deg, #8f5600 0%, #fdcf39 100%);
}
.popup_button .cancel {
	margin: 20px 0 0;
	background: linear-gradient(270deg, #bb7b1a 0%, #ef4444 100%);
}
.popup_button.btn_2 button {
	width: 32%;
}
.popup_button.btn_2 .login_btn {
	margin: 0 5px;
}
.popup_button.btn_2 .cancel {
	margin: 0 5px;
}
.popup_table {
	display: contents;
	width: 100%;
	height: 100%;
	margin: 8px 0;
}
.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%;
}
.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 #000000;
	color: #ffffff;
	background: #cd9925;
}
.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: #e4e4e4;
	border-bottom: 1px solid;
	border-color: rgba(195, 190, 170, 0.25);
}
.popup_table .table .td a {
	color: #e4e4e4;
	display: block;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.popup_table .table .td.empty {
	width: 100% !important;
}
.table .tbody .article {
	background-color: rgba(200, 150, 60, 0.2);
	border-bottom: 1px solid;
	border-color: rgba(195, 190, 170, 0.25);
}
.table .tbody .article .td {
	border-bottom: none;
}
.table .tbody .article .subject {
	width: 100%;
	min-width: fit-content;
	white-space: normal;
	text-align: left;
	text-overflow: unset;
	padding: 16px 24px;
	color: #eeeeee;

	font-size: 1.3rem;
	word-break: auto-phrase;
	line-height: 2.5;
}

/* 공지사항 */
.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;
	white-space: normal;
	text-overflow: initial;
}
.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;
}

/* add 20250116 */
.csbbs_an_t2 {
	width: 77% !important;
	white-space: normal !important;
	word-break: auto-phrase;
	line-height: 1.8;
}

.csbbs_an_t3 {
	width: 13% !important;
}
.ico_top_cus {
	font-size: 1.45rem;
	line-height: 0;
	padding: 0;
	color: #bc9200;
}
.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: #fff355;
	font-weight: 900;
}
.popup_table.betting .table .td:nth-child(4) {
	width: 15%;
	color: #fff355;
}
.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,
.register.view {
	width: 448px !important;
	min-width: unset;
	height: fit-content;
	border-radius: 16px;
	border: 2px solid rgba(255, 205, 145, 0.25);
	background: #000000e6 !important;
}
.register .layer_content {
	padding: 30px;
}
.register .pop_logo {
	height: 40px;
	text-align: center;
	margin-bottom: 20px;
}
.register .pop_logo img {
	height: 100%;
	display: inline-block;
}
.register .pop_tt {
	font-size: 2rem;
	color: #ffd656;
	margin-bottom: 30px;
	font-family: var(--ctype-ff-heading);
	text-align: center;
}
.register .form_area {
	padding: 0;
}
.register .form {
	padding: 0;
	border: none;
}
.register .form .form_title {
	width: 100%;
	margin-bottom: 10px;
	padding-left: 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);
}
.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: #fdcf39;
}
.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 {
		width: 94%;
		min-width: unset;
		min-height: unset;
		border-radius: 0;
		border-width: 4px;
	}
	.popup_box.view:not(.popup_box.SlotDetail) {
		/*
		position: fixed;
		top: 5vh !important;
		left: 50% !important;
		transform: translateX(-50%) !important;
		*/
		max-height: 90vh;
		max-height: 90dvh;/*safari*/
	}
	.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 {
		right: -7px;
	}
	.layer_head {
		height: 50px;
	}
	.layer_head .title {
		font-size: 2rem;
	}
	.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;
		border-radius: 16px;
		width: auto !important;
		min-width: max-content;
		max-width: 90vw;
		height: fit-content !important;
	}
}

/* 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;
}

/* add 20250110 */
input:-webkit-autofill {
	-webkit-box-shadow: 0 0 0 1000px #533500 inset;
	-webkit-text-fill-color: white;
	color: inherit !important;
	-webkit-text-fill-color: #ffc43b !important;
}
.inpClear {
	display: none;
	width: 35px;
	height: 36px;
	position: absolute;
	right: 5px;
	top: 0;
	cursor: pointer;
}
.inpClear img {
	width: 16px;
	height: 16px;
}
.form_area {
	padding: 12px;
}
.form + .form {
	margin-top: 6px;
}
.form_text + .form_text {
	margin-top: 6px;
}
.form {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	border: 1px solid;
	border-color: rgba(225, 160, 85, 0.35);
	padding: 12px;
}
.form .form_title {
	width: 20%;
	padding-left: clamp(0px, 2vw, 50px);
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	font-size: 1.4rem;
	color: #ffd656;
	font-weight: 400;
	align-items: center;
}
.form .form_title h3 {
	font-weight: 400;
}
.layer_content .cont_tab_area .form {
	background-color: rgba(225, 160, 85, 0);
	transition: all 0.23s ease-in-out;
}
.layer_content .cont_tab_area .form:hover {
	border-color: rgba(225, 160, 85, 0.75);
	background-color: rgba(225, 160, 85, 0.15);
}
.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: #f8d671;
	text-align: left;
	margin: 5px 0 0 0;
	padding-left: 20px;
	font-size: 1.3rem;
	font-weight: 400;
}
.form_noti {
	color: #000;
	font-size: 1.3rem;
	line-height: 23px;
	text-align: right;
	margin-bottom: 50px;
}
.form .form_text {
	position: relative;
	width: 80%;
}
.form .input {
	overflow: hidden;
	position: relative;
	display: inline-flex;
	padding: 0 32px 0 16px;
	width: 100%;
	height: 38px;
	font-size: 1.4rem;
	border: 1px solid #df9c007d;
	background-color: #533500;
	border-radius: 4px;
	align-items: center;
}
.form .input input {
	width: 100%;
	height: 100%;
	border: 0;
	padding: 0;
	font-size: 1.4rem;
	color: #ffc43b;
	text-align: left;
	background-color: transparent;
	font-weight: 700;
}
.form.input_value .input {
	border: 0;
	background-color: transparent;
}
.form.input_value .input input {
	color: rgb(255, 255, 255);
	font-weight: 700;
	font-size: 1.6rem;
}
.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;
	margin: 12px 0 0 0;
	width: 100%;
	/* padding-left: 20%;*/
}
.btn_money .money_button {
	height: 32px;
	width: 100%;
	min-width: fit-content;
	margin: 0;
	padding: 0 8px;
	display: inline-block;
	color: #fff;
	font-size: 1.375rem;
	font-weight: 600;
	border: 1px solid transparent;
	border-image: linear-gradient(180deg, #ffcf5f, #ae7803) 1;
}
.btn_money .money_button:hover {
	background: #815a0052;
}
.btn_money .money_button.primary {
	background-color: #ae000087;
}
.btn_money .money_button.primary:hover {
	background-color: rgb(255, 36, 36);
}
.btn_money.btn_6 .money_button {
	width: calc(100% / 6 - 6px);
}
.btn_deposit {
	height: 32px;
	padding: 0 10px;
	margin: 0 0px;
	display: inline-block;
	color: #ffcf5f;
	font-size: 1.4rem;
	font-weight: 600;
	border-radius: 5px;
	border: 1px solid transparent;
	border-image: linear-gradient(180deg, #ffcf5f, #ae7803) 1;
}

/* 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: 0;
	}
	.form {
		padding: 8px;
	}
	.form + .form {
		margin-top: 4px;
	}
	.form .form_title {
		font-size: 1.3rem;
	}
	.form.input_value .input input {
		font-size: 1.3rem;
	}
	.form .form_title {
		width: 30%;
	}
	.form .form_text {
		width: 70%;
	}
	.form .form_textarea {
		width: 70%;
	}
	.desc, .asc {
		font-size: 1.2rem;
	}
	.btn_money {
		flex-wrap: wrap;
		padding: 0;
		gap: 4px;
	}
	.btn_money .money_button {
		width: calc(100% / 3 - 6px);
		margin-bottom: 5px;
		font-size: 1.2rem;
	}
	.btn_money.btn_6 .money_button {
		width: calc(100% / 3 - 3px);
		min-width: unset;
		margin: 0;
	}
	.select_basic .select_box .select,
	.datepickerWrap input {
		font-size: 1.3rem;
	}
	.btn_deposit {
		font-size: 1.3rem;
	}
}

/* datepicker */
.date_pick_search {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	background: #000000;
	border: 1px solid transparent;
	border-image: linear-gradient(180deg, #ffcf5f, #ae7803) 1;
	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: #ffffff;
	padding: 0 5px 0 10px;
	text-align: right;
}

/* 검색 버튼 */
.bt_search {
	margin-left: 10px;
	width: 80px;
	height: 40px;
	border: 1px solid transparent;
	border-image: linear-gradient(180deg, #ffcf5f, #ae7803) 1;
	background: #7925ff00;
	text-align: center;
	color: #fff;
	font-size: 1.4rem;
	line-height: 38px;
	cursor: pointer;
}
.game_depth_area {
	overflow-x: auto;
	width: 100%;
	background: #000000;
	border: 1px solid transparent;
	border-image: linear-gradient(180deg, #ffcf5f, #ae7803) 1;
	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 transparent;
	border-image: linear-gradient(180deg, #ffcf5f, #ae7803) 1;
	background-color: #211a00df;
	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: #986f00a6;
	border-color: #7a25ffa6;
}
.game_depth_area .game_guide_dep li.select a {
	background-color: #b88a26;
	border: 1px solid transparent;
	border-image: linear-gradient(180deg, #ffcf5f, #ae7803) 1;
	font-weight: 700;
	color: #fff;
}
.game_guide_dep::-webkit-scrollbar {
	width: 8px;
	height: 8px;
	border: 0;
	background-color: transparent;
}
.game_guide_dep::-webkit-scrollbar-thumb {
	background: #886400;
	border-radius: 9999px;
	cursor: pointer;
}
.game_guide_dep::-webkit-scrollbar-thumb:hover {
	width: 8px;
	height: 8px;
	border: 0;
	background: #ffae00;
}
.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: 700;
	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 transparent;
	border-image: linear-gradient(180deg, #ffcf5f, #ae7803) 1;
	padding: 0;
	border-radius: 0.4em;
	background: #000000;
	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: #b0912c;
}

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%;
	background: rgb(91, 81, 55);
	background: linear-gradient(22deg, rgb(0, 0, 0) 0%, rgb(31, 31, 31) 50%, rgb(0, 0, 0) 100%);
	border-bottom: 1px solid transparent;
	border-top: 1px solid transparent;
	border-image: linear-gradient(180deg, #ffcf5f, #ae7803) 1;
	background-image: url(../assets/images/content/center_bg2.png);
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	vertical-align: bottom;
}
.casino_game {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	max-width: 1400px;
	margin: 0 auto;
	gap: 25px;
	padding: 50px 0 50px;
}
.casino_game .cg_item {
	width: calc(100% / 4 - 15px);
}
.casino_game .cg_item a {
	display: block;
	width: 100%;
	transition: all 0.3s;
}
.casino_game .cg_item a img {
	max-width: 100%;
}
.casino_game .cg_item a:hover {
	filter: drop-shadow(0px 0px 5px rgba(0, 0, 4, 0.65)) brightness(1.1);
	transform: rotate(-5deg);
	transform-origin: center;
	z-index: 5;
	opacity: 1;
}

@media screen and (max-width: 1190px) {
	.casino_game_wrap {
		padding: 0 20px;
	}
	.casino_game {
		max-width: 100%;
		flex-direction: inherit;
		padding: 20px 0 20px;
	}
	.casino_game .cg_item {
		width: clamp(140px, 40%, 280px);
	}
}

@media screen and (max-width: 767px) {
	.casino_game {
		/* gap: 0; */
		/* flex-direction: column; */
		padding: 20px 0;
		row-gap: 0;
	}
	.casino_game .cg_item {
		width: 100%;
		max-width: clamp(140px, 90%, 280px);
	}
}
.casino_game_section {
	background-image: url(../assets/images/content/bg_casino.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}
.casino_game_section .bg {
	background-color: rgba(0, 0, 0, 0.8);
	width: 100%;
	padding: 50px 0 50px;
}
.casino_naming_side {
	max-width: 1400px;
	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: rgba(130, 125, 108, 0);
	border: 1px solid transparent;
	border-image: linear-gradient(180deg, #ffcf5f, #ae7803) 1;
}
.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: #ffffff;
	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: 8px 0 16px;
	}
	.casino_naming_side .swiper-slide {
		width: calc(33% - 10px) !important;
	}
}
.casino_game_list {
	max-width: 1400px;
	margin: 80px auto 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.cg_container {
	width: 100%;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 2rem;
}

/* 플립박스 컨테이너 */
.flip-container {
	perspective: 1000px;
	width: calc(100% / 6 - 1.7rem);
	height: clamp(220px, 15vw, 280px);
	position: relative;
	border-radius: 12px;
	overflow: hidden;
}
.listHoldem .flip-container {
	width: calc(100% / 5 - 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 16px;
	border-radius: 0 0 0 12px;
	font-size: 1.4rem;
	font-family: var(--ctype-ff-heading);
	font-weight: 500;
	letter-spacing: 0.035rem;
	text-align: right;
}
.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;
}
.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;
	height: 100%;
	color: white;
	text-align: center;
	transform: rotateY(-180deg);
	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: 100%;
}
.back-logo {
	height: 30px;
	z-index: 1;
	height: 100px;
}
.back-logo img {
	height: 100%;
	filter: drop-shadow(2px 2px 2px #000000);
}
.back-element {
	z-index: 1;
	margin: 10px 0 20px 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: #ffbe00;
	border-radius: 0px;
	padding: 0 20px;
	box-shadow: 0 15px 10px 5px #00000080;
	text-align: center;
	background-color: #0000006a;
	border: 1px solid #ffbe00;
	transition: background-color 0.3s, color 0.3s;
	font-size: 1.4rem;
	letter-spacing: -1px;
	border-radius: 8px;
	font-family: var(--ctype-ff-accent);
}
.fancy-btn a:hover {
	background-color: #db7d00;
	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: 1190px) {
	.casino_game_list {
		max-width: 100%;
		padding: 0 20px;
		margin: 0 auto;
	}
	.flip-container {
		width: calc(100% / 4 - 1.5rem);
	}
	.listHoldem .flip-container {
		margin-left: 15px;
		width: calc(100% / 2 - 15px);
	}
}

@media screen and (max-width: 767px) {
	.cg_container {
	gap: 1.25rem;
	}
	.flip-container {
		width: calc(100% / 2 - 0.625rem);
		/* height: 220px; */
	}
	.flip-container .badge {
		font-size: 1.2rem;
		padding: 6px 10px;
	}
	.fancy-btn {
		width: 90%;
		margin: 0 auto;
		height: 30px;
	}
	.fancy-btn a {
		line-height: 40px;
		font-size: 1.2rem;
		padding: 0 8px;
	}
	.back-logo {
		height: 80px;
	}
}


/* 미니게임 */
.mini_game_wrap {
	width: 100%;
}
.mini_game {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	max-width: 1400px;
	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;
}


/* 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-family: var(--ctype-ff-accent);
	font-weight: 600;
}
.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;
	}
	.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: 998;
	display: none;
	background: transparent;
	border: 0;
	border-radius: 35px;
	width: 48px;
	height: 48px;
	box-shadow: 0 0 5px 0 #000, 0 5px 5px 0 #f59e0b;
	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: 90px;
		width: 30px;
		height: 30px;
	}
	.scrollTop svg {
		width: 20px;
		height: 20px;
	}
}

/* add 20250101 Slot detail */
.h-100 {
	height: 100%;
}
.SlotDetail,
.popup_box.SlotDetail {
	width: 95%;
	min-width: unset;
	max-width: 1980px;
	height: 82%;
	min-height: unset;
}
li.trans {
	width: calc(100% / 7 - 4.5rem);
	height: 100%;
	padding: 6px;
	margin: 0;
	overflow: hidden;
	background: #ffffff;
	border-radius: 8px;
	color: #37220d;
}
li.trans > a {
	display: block;
	height: 100%;
}
li.trans img {
	width: 100%;
	max-height: 180px;
	border-radius: 6px;
}
.modal-dialog {
	height: 100%;
}
.modal-content {
	height: 100%;
	padding: 0;
	margin: 0;
}

::-webkit-scrollbar {
}
.pop-header {
	height: 60px;
	display: flex;
	font-size: 2.4rem;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: center;
	background: #4b2700;
}
.SlotDetail .pop-header,
.popup_box.SlotDetail .pop-header {
	position: sticky;
	top: 0;
}
.SlotDetail .modal-content,
.popup_box.SlotDetail .modal-content {
	position: relative;
	overflow: auto;
}

.slotnav {
	background: rgba(199, 199, 199, 0.35);
	height: 100%;
	overflow: auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 1rem;
	padding: 1rem;
}
.nm_sgame {
	display: block;
	width: 100%;
	font-size: 1.6rem;
	margin: 0 !important;
	padding: 6px 0px 0px 0px !important;
	overflow: hidden;
	background: #ffffff;
	color: #37220d;
	font-weight: 500;
	letter-spacing: -0.045rem;
	text-align: center;
	word-break: keep-all;
	line-height: 1.2;
}

@media screen and (max-width: 1260px) {
	/* .popup_box { width: 94%;} */
	.SlotDetail,
	.popup_box.SlotDetail {
		width: 94%;
	}
}

@media screen and (max-width: 1200px) {
	li.trans {
	}
	.nm_sgame {
	}
}

@media screen and (max-width: 986px) {
	li.trans {
		width: calc(100% / 4 - 0.8rem);
	}
	.nm_sgame {
	}
}

@media screen and (max-width: 730px) {
	li.trans {
		width: calc(100% / 2 - 0.5rem);
		padding: 4px;
	}
	.nm_sgame {
		width: 100%;
	}
}

@media screen and (max-width: 500px) {
	.slotnav {
		justify-content: flex-start;
		gap: 0.75rem;
		padding: 0.75rem;
	}
	.trans {
	}
	.trans > a {
		display: block;
		height: 100%;
	}
	.nm_sgame {
		width: 100%;
		font-size: 12px;
		font-weight: 500;
		letter-spacing: -0.045rem;
	}
}

.popup_box .close .h-10 {
	height: auto !important;
}

/* add 20250204 */
.slot_gtitle {
	width: fit-content;
	text-align: left;
	padding-left: 16px !important;
	padding-top: 2px !important;
	font-weight: bold;
}
.slot_g_searchbox {
	width: fit-content;
	position: relative;
	top: 0;
	display: flex;
	justify-content: flex-end;
	flex-direction: row;
	flex-wrap: nowrap;
	padding-right: 16px;
	align-items: center;
}

.searchbox {
	background: #fff;
	border: 1px solid #c9c9c9;
	padding: 0px;
	border-radius: 4px;
	width: fit-content;
	/* max-width: 50%; */
	min-width: 10vw;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
}
.searchbox-txt {
	border: 0px;
	width: 85%;
	height: 100%;
	outline: none;
	font-size: 1.375rem;
	padding-left: 7px;
	color: #4a4a4a;
}
.searchbox-bt {
	border: none;
	background: #fff;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (max-width: 1200px) {
	.searchbox-txt {
		width: 80%;
	}
	.searchbox {
		width: 80%;
	}
}
@media (max-width: 768px) {
	.searchbox-txt {
		width: 80%;
	}
	.searchbox {
		width: 74%;
	}
}
@media (max-width: 500px) {
	.pop-header h2 {
		font-size: 18px !important;
		font-weight: bold;
		word-break: keep-all;
		min-width: 50%;
	}
	.searchbox {
		width: 100%;
		max-width: unset;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.slot_gtitle {
		width: fit-content;
	}
	.searchbox-txt {
		width: calc(100% - 30px);
	}
}
.search-icon {
	font-size: 16px;
	line-height: 0;
	position: relative;
}
.custombg1 {
	background: #000000cc;
}

/* add 0211 */
.text-tt {
	min-width: 45px;
}
.text-st {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

@media (max-width: 1030px) {




}

/* mainbanner-2set */
@media screen and (max-width: 1190px) {
	.main_game_menu .mgm .img {
		height: 480px;
	}
	/* 3 card */
	/* .main_game_menu .mgm .img {height: 436px;} */
	/* .main_game_menu .mainbtset { background-size: 60%;} */
	/* .main_game_menu .mainbtset:hover {} */
}
@media screen and (max-width: 767px) {
	.main_game_menu .mgm .img {
		height: 480px;
	}
	/* 3 card */
	/* .main_game_menu .mgm .img {height: calc(1062px / 3 - 10px);} */
}
@media screen and (max-width: 580px) {
	.main_game_menu .mgm .img {
		height: 400px;
	}
	/* 3 card */
	/* .main_game_menu .mgm .img {height: calc(813px / 3 - 10px);} 	*/
}
@media screen and (max-width: 500px) {
	.main_game_menu .mgm .img {
		height: 342px;
	}
	/* 3 card */
	/* .main_game_menu .mgm .img {height: calc(699px / 3 - 10px);} 	*/
}

@media screen and (max-width: 460px) {
	.login_btn button {
		width: calc(100% / 1 - 2px);
	}
	.login_btn {
		flex-direction: column;
		gap: 6px;
		margin-bottom: 14px;
		margin-top: 8px;
	}
}

@media screen and (max-width: 372px) {
	.main_game_menu .mgm .img {
		height: 200px;
	}
	.myMenuPage {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
	}
	.gnb_afterLogin .myMenu_info span {
		font-size: 1.1rem;
	}
}

@media screen and (max-width: 372px) {
	.m_a_box_right {
	}
}
@media (max-width: 460px) {
	.gnb_tab_scroll {
	}
}
@media (max-width: 320px) {
	.gnb_tab_scroll {
	}
}

/* add */ /* 공지사항 */
@media (max-width: 420px) {
	.popup_table.notice .table .th {
		width: 14%;
	}
	.popup_table.notice .table .th:nth-child(2) {
		width: 52%;
	}
	.popup_table.notice .table .th:nth-child(3) {
		width: 34%;
	}
	.popup_table.notice .table .td {
		width: 14%;
		padding: 15px 2px 15px;
		font-size: 1.3rem;
	}
	.popup_table.notice .table .td:nth-child(2) {
		width: 52%;
		text-align: left;
	}
	.popup_table.notice .table .td:nth-child(3) {
		width: 34%;
	}
	.popup_button.btn_2 button {
		width: 38%;
		font-size: 1.2rem;
		height: auto;
		line-height: 1;
		padding: 10px 0px;
	}
}




.maintenance {
	position: relative;
	overflow: hidden;
}
.maintenance .text-mt {
	position: absolute;
	display: flex;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	transform: translate(-50%, -50%);
	font-size: 2rem;
	color: #fff;
	font-weight: 600;
	text-align: center;
	z-index: 1;
	align-items: center;
	justify-content: center;
	background: #412a15;
	background: linear-gradient(310deg, rgba(131, 58, 180, 0) 0%, rgba(140, 100, 35, 0.8) 50%, rgba(65, 45, 25, 0.8) 100%);
}


.h-unset {
    height: unset !important;
}
