@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR&display=swap');
body {
	background-color: #0f0f0f!important;
	font-family: 'Noto Sans KR', sans-serif!important;
}

button:focus {
	outline: none!important;
}

input {
	cursor: pointer;
}
input:focus {
	outline: none;
}

select:focus {
	outline: none;
}

a:focus {
	outline: none!important;

}


textarea:focus {
	outline: none;
}

input[name='mark-service'] {
	cursor: pointer;
}
.sidebar__button {
	width: 45px;
	margin-right: 5px;
	background: transparent;
	border: none;
	display: none;
	position: relative;
	top: 8px;
	cursor: pointer!important;
	z-index: 90;
	position: relative;
}


.text-green {
	color: #86e100!important;
}

a {
	text-decoration-style: none;
	color: #fff!important;
}

.container {
	max-width: 1300px!important;
	position: relative;
}
/*Navigation*/
.navigation__wrapper {
	z-index: 50;
	position: relative;
	width: 100%;
	background-image: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.1));
	transition: all 0.5s;
}

.btn-money {
    background: #202d0c;
    color: #fff;
    font-size: 12px;
    border-radius: 2px;
    position: relative;
    top: -2px;
    border: 1px solid #86e100;
}

.app__navigation {
	width: 100%;
	height: 70px;


}

.app__navigation .app__logo {
	width: 193px;
	height: 70px;
	float: left;
	z-index: 90;
	position: relative;

}

.app__navigation .app__menu {
	height: 100%;
	position: relative;
	width: 100%;
	z-index: 80;
	position: relative;
}

.app__navigation .app__menu ul {
	display: flex;
	list-style: none;
	color: #fff;
	align-items: center;
	height: 100%;

}

.app__navigation .app__menu ul li {
	margin: 5px 10px;
	cursor: pointer;
	border:1px solid #325005;
	padding: 5px 10px;
	border-radius: 5px;
	background: #24330e;
}

.app__navigation .app__menu ul li:hover {

	background: #86e100;
}


.app__accountMenu {
	position: absolute;
	right: 0;
	top: 25%;
}

.app__accountMenu button {
	border-radius: 100px;
	background: transparent;
	padding: 5px 20px;
	border:2px solid #86e100;
	color: #fff;
	font-size: 12px;
}

.app__accountMenu button:hover {
	background: #86e100;
	color: #000;
}

.app__banner {
	position: relative;
	z-index: 5;
}

.app__banner img {
	height: 300px;
	object-fit: cover;
}

.app__banner .banner__content {
	position: absolute;
	transform: translate(-50% , -50%);
	top: 55%;
	left: 27%;
	color: #fff;
}

.app__banner .banner__content h3 {
	font-size: 30px;
	margin: 0;
}

.app__banner .banner__content h2 {
	font-size: 70px;
	margin: 0;
	font-weight: 900;
}

.app__banner .banner__content label {
	display: block;
	margin: 0;
	line-height: 1.2;
	font-size: 16px;
}

.app__banner .banner__content button {
	padding: 15px 50px;
	font-size: 20px;
	background: #86e100;
	border-radius: 100px;
	margin-top: 10px;
	color: #fff;
	border: none;
	line-height: 1.5;
}

.app__category {
	width: 100%;
	background: #1f1f1f;
}

.app__category ul {
	list-style: none;
	padding: 0;
	display: flex;
	height: 100%;
}

.app__category ul li {
	width: 150px;
	text-align: center;
	height: 100%;
	padding-top: 15px; 
	padding-bottom: 10px;
	cursor: pointer;
	color: #fff;	
	border-top:5px solid transparent;
}


.app__category ul li.active{
	border-top:5px solid #86e100;
	color: #86e100;
}

.app__category ul li.active .on {
	display: block!important;
}

.app__category ul li.active .off {
	display: none;
}



.app__category ul li img {
	width: 50px;
	display: block;
	margin: auto;
	margin-bottom: 5px;
}


.tabs__card {
	width: 50%;
	padding: 15px;
	float: left;
	z-index: 20;
}

.inner__card {
	height: 700px;
	width: 100%;
	position: relative;
	background: #333;
	text-align: center;
	border-radius: 5px;
	cursor: pointer;
	z-index: 20;
}

.inner__card:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(../images/background/slot-bg.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: top center;
    opacity: 1;
    transition: all .3s ease-out;
    pointer-events: none;
    z-index: 0;
}

.card__content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50% , -50%);
	z-index: 20;
	width: 100%;
	padding: 15px;

}

.card__content .gameICON {
	border-radius: 100%;
	width: 100%;
	margin-bottom: 10px;
	transition: all 0.3s ease-out;
}


.tabs__card:hover .gameICON{
	border-radius: 0;
}

.tabs__card:hover .inner__card:after{
	top: -30%;
	opacity: 0;
	transition: all 0.3s ease-out;
}

.inner__card:before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	box-shadow: 0 0 0 rgba(237,188,88,0.0);
	transition: all .5s ease-out;
	border-radius: 5px;
	pointer-events: none;
	z-index: -1;
}

.tabs__card:hover .inner__card:before {

	box-shadow: 0 0 45px rgba(134,225,88,0.8);
	transition: all 0.5s ease-out;
}


.card__content p {
	color: #86e100;
	margin: 0;
	font-size: 14px;
	margin-top: 5px;

}
.deco {
	height: 90px;
	width: 90px;
	position: relative;
	background: #0f0f0f;
	bottom: -80px;
	left: 28%;
	transform: rotate(45deg);
	z-index: 0;
	text-align: center;

} 

.deco-img {
	margin: auto;
	width: 35px;
	position: absolute;
	left: 42%;
	top: 13%;
	z-index: 6;
	transform: rotate(313deg) translate(-50%, -50%);
}

.app__info {
	border:1px solid #86e100;
	width: 100%;
	background-position: center;
	background-size: cover;
	padding: 20px 30px;
	color: #fff;
	min-height: 250px;
}


.app__info label {
	position: absolute; 
	width: 80px;  
	text-align: right; 
	right: 130px;
}

.app__info p {
	display: block;
	margin: 0;
	text-overflow: ellipsis;
	overflow: hidden;
	width: 70%;
	white-space: nowrap;
	margin-bottom: 10px;
}

.app__info .text-badge {
	position: absolute;
	right: 50px;
	font-size: 12px;
	color: #86e100;
	margin-top: 5px;
}
 .info__header {
	border:3px solid #86e100;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 50px;
	line-height: 1.2;
}


 .info__header h2 {
	font-size: 20px;
	color: #ccc;
	font-weight: 900;
	margin: 0;
}

footer {
	position: relative;
}


footer .copyright {
	background: url('../images/footer/footer-header.jpg');
	height: 95px;
	transform: rotate(180deg) scaleX(-1);
}

footer .copyright-text {
	color: #333;
	position: absolute;
	bottom: 0;
	left: 50%;
	bottom: 12px;
	transform: translate(-50% , -50%);
	z-index: 20;
}


.modal-body {
	background: #0e0e0e;
	border-top:5px solid #86e100;
	position: relative;
}


.no-bg:before, .no-bg:after {
    content: '';
    width: 0%!important;
    height: 0%!important;
    position: absolute;
    left: 0;
    top: 0;
    background-repeat: no-repeat;
    z-index:1;
}


.modal-body:before, .modal-body:after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-repeat: no-repeat;
    z-index:1;
}

.modal-body:before {
    background-image: url(../images/background/mdl-bg.png);
    background-position: top -30px left -100px;
    background-size: 1500px;
}
.modal-body:after {
     background-image: url(../images/background/mdl-bg2.png);
    background-position: bottom right;
    background-size: 1500px;
}


.close-modal {
	background: transparent;
	border: none;
	position: absolute;
	right: 15px;
	top: 15px;
}

.close-modal img {
	width: 20px;
}

.modalForm {
	padding-bottom: 20px;
	margin-top: 80px!important;
}

.modalForm label {
	color: #f1f1f1;
	z-index: 10;
	position: relative;
}

.modalForm input {
	width: 100%;
	background: #131313;
	border:none;
	border: none;
	padding: 5px;
	color: #fff;
	font-size: 14px;
	border-radius: 3px;
	padding: 10px;
	z-index: 10;
	position: relative;
}

.modalForm .grp-icon-parent {
	padding-left: 40px;
	position: relative;
	margin-bottom: 20px;
}


.modalForm .input-holder {
	position: relative;
	margin-bottom: 20px;

}
.input-holder .grp-icon {
	width: 42px;
	position: absolute;
	left: 0;
	height: 100%;
	background : #131313;
	z-index: 11;
}

.modalForm button {
	background: transparent;
	border: 2px solid #86e100;
	border-radius: 5px;
	padding: 5px 30px;
	margin-top: 5px;
	color: #fff;
	z-index: 10;
	position: relative;
	width: 150px;
}


.modalForm button:last-child {
	background: #86e100;
	color: #333;
}

.login-modal-logo  {
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	height: 60px;
	display: flex;
	align-items: center;
	padding-left: 20px;
	background: #151515;
	z-index: 10;
}

.login-modal-logo h2 {
	color: #fff;
	margin: 0;
}

.btn-float-grp {
	position: absolute!important;
	right: 2px;
	width: 75px!important;
	padding: 5px!important;
	top: -4px!important;
	background-color: #cccccc!important;
	color: #333!important;
	border:2px solid #cccccc!important;
}

.input-holder select {
	width: 100%;
	background: #131313;
	border:none;
	border: none;
	padding: 5px;
	color: #fff;
	font-size: 14px;
	border-radius: 3px;
	padding: 10px;
	z-index: 10;
	position: relative;
}

.modalTABLE {
	margin-top: 50px;
	z-index: 20;
	position: relative;
	width: 100%;
	
}

.modalTABLE thead td {
	color: #fff;
	padding: 10px;
	font-weight: 400;
	white-space: nowrap;
}

.modalTABLE tbody tr {
	cursor: pointer;
}

.modalTABLE tbody tr:hover td {
	background: #34382f;
}

.hover-none.modalTABLE tbody tr:hover td {
	background: transparent!important;
}

.modalTABLE tbody td {
	color: #fff;
	padding: 15px 5px;
	font-weight: 300;
	font-size: 12px;
	border-bottom: 1px solid #4c6922;
}

.modalTABLE tbody td label {
	margin: 0;
}

.ellipses {
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 95%;
	cursor: pointer;
}

.modal_pagination ul {
	list-style: none;
	display: flex;
	justify-content: center;
	margin-top: 20px;
	padding: 0;
}

.modal_pagination ul  li {
	padding: 5px;
	color: #fff;
	background: #5e9e00;
	width: 40px;
	text-align: center;
	border-radius: 5px;
	cursor: pointer;
}

#wp-tabs {
	position: relative;
	z-index: 20;
	margin-top: 50px;

}

#wp-tabs ul {
	display: flex;
}

#wp-tabs  li {
	width: 50%!important;
	border-radius: 0!important;
}
#wp-tabsContent {
	position: relative;
	z-index: 20;
}


.nav-tabs {
	border: none!important;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
	background: #5a9700!important;
	border:none;
}

.nav-tabs .nav-link, .nav-tabs .nav-link {
	border : 1px solid transparent!important;
	border-radius: 0!important;
	border: 1px solid #325005;
	background: #24330e;
}

.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
	border : 1px solid #86e100!important;
	background: #325005;
	color: #fff!important;
}


.money-button-holder button {
	background: #ccc;
	border:2px solid #ccc;
	width: 100px;
	padding: 5px;
	color: #000;
}

.money-button-holder button:last-child {
	background: #222;
	padding: 5px;
	border:2px solid #333;
}

.money-button {
	position: absolute!important;
	z-index: 25!important;
	right: 0;
	top: -3px;
	background: #86e100!important;
	color: #000!important;
	padding: 5px!important;
}

.money-button img {
	position: relative;
	top: -3px;
}

.text-popup {
    height: 500px;
    background: #0c0c0c;
    border: none;
    color: white;
    font-weight: 300;
    overflow-y: scroll;
    font-size: 12px;
}

.text-popup::-webkit-scrollbar {
  display: none;
}

.prevModal {
	padding: 5px 20px;
	color: #fff;
	background: #5e9e00;
	text-align: center;
	border-radius: 5px;
	cursor: pointer;
	border: none;
}

.my-page-header {
	padding: 10px;
}

.my-page-header h2 {
	font-weight: 900;
	font-size: 20px;
}

.my-page-header img {
	width: 30px;
	position: relative;
	top: -3px;
	margin-right: 10px;
}

.my-page-content {
	position: relative;
	z-index: 20;
	margin-top: 70px;
}

.my-page-table {
	width: 100%;
}

.my-page-table td {
	padding: 10px;
	color: #fff;
	font-weight: 600;
	font-size: 15px;
	border-bottom:1px solid #4c6922;
	height: 65px;
}

.my-page-table td input {
	width: 100%;
	height: 100%;
	padding: 10px;
	border-radius: 5px;
	border:2px solid #86e100;
	background: transparent;
	color: #fff;
}

.my-page-table td input::placeholder { /* Internet Explorer 10-11 */
  color: #fff;
}

.submit-changes {
	width: 200px;
	height: 50px;
	display: flex;
	align-items: center;
	background: #4b4b4b;
	justify-content: center;
	margin: auto;
	color: #fff;
	cursor: pointer;
	border-radius: 5px;
	position: relative;
	overflow: hidden;
}

.submit-changes span {
	position: absolute;
	z-index: 30;
	font-weight: 600;
	transition: all 0.7s;
}

.submit-changes:hover  span{
	color: #000;

}


.submit-changes:hover .submit-overlay  {
	left: 0;
}
.submit-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background: #86e100;
	left: -100%;
	transition: all 0.5s;
}

.my-page-table label {
	position: relative;
	padding-left: 30px;
	margin-right: 10px;
}

.my-page-table .radio-btn {
	width: 20px;
	height: 20px;
	position: absolute;
	left: 0;
	cursor: pointer;
}

.my-page-table .phone-text {
	width: 50px;
	border:2px solid #ccc;
	height: 30px;
	text-align: center;
	padding-top: 5px;
	padding-top: 16px;
	position: relative;
	bottom: -5px;
	cursor: default;
}

.my-page-table small {
	z-index: 20;
	color: #888;
}
 .phoneInput{
	width: 70px!important;
	border: 2px solid #ccc;
	height: 100%;
	padding: 0px;
	border-radius: 5px;
	border: 2px solid #86e100;
	background: transparent;
	color: #fff;
}
.phoneInput option {
	background: #000;

}

.my-page-table select {
	border:2px solid #ccc;
	height: 100%;
	padding: 4px;
	border-radius: 5px;
	border: 2px solid #86e100;
	background: transparent;
	color: #fff;
	width: 100%;
}

.my-page-table select  option{
	background: #000;
}

.service-btns button {
	padding: 5px;
	color: #fff;
	background: #5e9e00;
	text-align: center;
	border-radius: 5px;
	cursor: pointer;
	padding: 10px;
	border: none;
}

.write-table-input {
	border: 2px solid #ccc;
	height: 100%;
	padding: 0px;
	border-radius: 5px;
	border: 2px solid #86e100;
	background: transparent;
	color: #fff;
	width: 100%;
	padding: 10px;
}



.app__sidebar {
	width: 300px;
	height: 100vh;
	position: fixed;
	left: -100%;
	top: 0;
	background: #0f0f0f;
	z-index: 120;
	box-shadow: 5px 5px 10px #1f1f1f;
	overflow-y : scroll;

}

.app__sidebar::-webkit-scrollbar {
  display: none;
}
.sidebar__header {
	height: 50px;
	background: #1f1f1f;
	width: 100%;
	cursor: pointer;
}

.sidebar-box {
	width: 100%;
	background: #1f1f1f;
	border-radius: 10px;
	position: relative;
	color: #fff;
	font-size: 12px;
}

.sidebar-box .userImage {
	position: absolute;
	left: 50%;
	transform: translate(-50%, -50%);
	top: 0px;
}

.sidebar-box table td {
	padding: 15px 5px;
	cursor: pointer;
}

.sidebar-box table tr {
	border-bottom: 1px solid #333;
}

.sidebar-box table tr:last-child {
	border-bottom: none;
}

.sidebar-overlay {
	position: fixed;
	height: 100vh;
	width: 100%;
	background: rgba(0,0,0,0.5);
	z-index: 89;
	left: 0;
	top: 0;
	display: none;
}

.mobile-menu {
	width: 100%;
	padding-top: 15px;
	border-top: 1px solid #222;
	display: none;
}

.mobile-menu ul {
	list-style: none;
	padding: 0;
	display: flex;
	color: #86e100;
}

.mobile-menu .button-top {
	margin: 5px 10px;
    cursor: pointer;
    border: 1px solid #325005;
    padding: 5px 10px;
    border-radius: 5px;
    background: #24330e;
    font-size: 12px;
}

.mobile-menu ul li {
	width: 100%;
	text-align: center;
	padding: 10px 5px;
	font-size: 12px;
}
.mobile-menu ul li.active{
	border: 1px solid #86e100;
	background-color:#86e100;
	color: #111;
}

.mobile-menu ul li.active .on {
	display: block!important;
}

.mobile-menu ul li.active .off {
	display: none;
}

.animated-tabs {
	animation: showTabs 1s ease-in;
	position: relative;

}

.button-data-moteherfucker button{
	border-radius: 100px;
	border: none;
	background: #ccc!important;
	color: #fff!important;
	

}

.button-data-moteherfucker button.active   {
	background: #ffc107!important; 
	color: #000!important;
}

.button-data-moteherfucker button.active:hover {
	background: #ffd24c!important;
}



@keyframes showTabs {
  from {
  	opacity: 0;
  }
  to {
  	opacity: 1;
  }
}

.partnership-text {
	width: 100%;
	background: #0f0f0f;
	color: #fff;
	position: relative;
	z-index: 20;
	margin-top:70px;
}
@media (max-width: 1299.98px) {

	.app__banner .banner__content h3 {
	    font-size: 20px;
	    margin: 0;
	}

	.app__banner .banner__content h2 {
	    font-size: 80px;
	    margin: 0;
	    font-weight: 900;
	}

	.app__banner .banner__content button {
		padding: 10px 40px;
		    font-size: 15px;
	}
} 

/*// Large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) {

	.app__info p {
		font-size: 12px; 
	}
	.navigation__wrapper {
		position: relative;
		background: transparent;
		background-image: none!important;
	}



	.app__category ul li img {
	    width: 40px;
	}

	.app__category ul li {
		font-size: 12px;
	}

	.tabs__card {
		width: 50%;
		
	}

	.inner__card {
		height: 800px;
	}

	.deco {
		width: 100%;
		height: 100%;
	}

	.deco-img {
		left: 25%;
		    top: 11%;
	}


	.app__navigation {
		height: 50px;
	}

	.app__navigation .app__logo {
		width: 100px;
		top: 12px;
	}

	.app__accountMenu {
		top: 15%;
	}

	.app__navigation .app__menu ul li {
	    margin: 5px 5px;
	}

	.deco {
	    left: 5%;
	}

	.app__info .text-badge {
		margin-top: 0;
	}
}


/*// Medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) { 

	.mobile-menu {
		display: block;
	}
	.app__menu ul{
		display: none!important;
	}

	.navigation__wrapper {
		position: relative;
	}


	.tabs__card {
		width: 100%;
	}

	.inner__card {
		height: 1000px;
	}


	.app__banner .banner__content h3 {
	    font-size: 15px;
	    margin: 0;
	}

	.app__banner .banner__content h2 {
	    font-size: 50px;
	    margin: 0;
	    font-weight: 900;
	}
	
	.app__banner .banner__content label {
	    display: block;
	    margin: 0;
	    line-height: 1.2;
	    font-size: 12px;
	}

	.app__banner .banner__content button {
		padding: 8px 30px;
		font-size: 12px;
	}

	.deco {
		display: none;
	}


	.sidebar__button {
		display: block;
	}


	.app__category {
		display: none;
	}


	.login__information  {
		display: none;
	}


	footer .copyright-text {
		bottom: -10px;
	}



}


/*// Small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {

	.inner__card {
		height: 800px;
	}

	.tabs__card {
		padding: 5px;
	}





	.app__category ul li img {
	    width: 30px;
	}

	.app__category ul li {
		font-size: 10px;
	}

	.app__banner > img {
		height: 250px;
		object-fit: cover;
	}


}

/*// Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
	.inner__card {
		height: 600px;
	}

	.card__content {
		padding: 10px;
	}

	.app__banner .banner__content {
		left: 35%;
	}

	.app__banner .banner__content h3 {
	    font-size: 12px;
	    margin: 0;
	}

	.app__banner .banner__content h2 {
	    font-size: 35px;
	    margin: 0;
	    font-weight: 900;
	}

	.mobile-menu .button-top {
	    margin: 5px 5px;
	    font-size: 10px;
	    padding: 5px 1px;
	}

	.app__logo {
		width: 100px!important;
		top: 12px;
	}

	.sidebar__content {
		padding-bottom: 100px!important;
	}

	.ellipses {
		white-space: nowrap;
		cursor: pointer;
	}

	.money-button-holder button {
	    width: 100px;

	}

	.app__info p {
		font-size: 12px;
	}

	.app__info .text-badge {
		margin-top: 0;
		right: 20px;
	}

	.app__info {
		min-height: 200px;
		padding: 20px 20px;
	}
}

@media (max-width: 400.98px) {

	.sidebar__button {
		width: 60px;
		margin-right: 0;
	}

	.modalTABLE tbody td {

	    font-size: 10px;

	}

	.login-modal-logo h2 {
		font-size: 20px;
	}

	.modalForm .text-left button {
		width: 49%!important;
	}

	.modalForm .text-center button {
		width: 49%!important;
	}

	footer .copyright-text {
		bottom: 0px!important;
		font-size: 12px;
		text-align: center;

	}

	#ViewdataModal .modal-body {
		padding-bottom: 50px;
	}

	.text-popup {
		height: 200px;
	}

	.my-page-table td {
		font-size: 12px!important
	}

	.my-page-table td input {
		padding: 5px;
	}

	.my-page-table small {
		display: block;
		margin-top: 10px;
	}

	.phoneInput {
		width: 55px!important;
	}

	#CouponModal .modalTABLE thead td {
		padding: 5px 10px;
		font-size: 10px;
	}

	#CouponModal .modalTABLE label {
		font-size: 12px;
	}


	#CouponModal2 .modalTABLE thead td {
		padding: 5px 10px;
		font-size: 10px;
	}

	#CouponModal2 .modalTABLE label {
		font-size: 12px;
	}
}
