@font-face {
	font-family: 'KoddiUDOnGothic-Regular';
	src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2105_2@1.0/KoddiUDOnGothic-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

* {
	font-family: 'KoddiUDOnGothic-Regular';
}

.cell {
	display: inline-block;
	width: 49%;
	text-align: center;
}

.circle {
	display: inline-block;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background: whiteSmoke;
	box-shadow: 4px -40px 60px 5px rgb(26, 117, 206) inset;
}

.square {
	display: inline-block;
	width: 100px;
	height: 100px;
	border-radius: 20px;
	background: whiteSmoke;
	box-shadow: 4px -40px 60px 5px rgb(26, 117, 206) inset;
}

.loader {
	background: linear-gradient(to right, rgb(22, 113, 202) 50%, transparent 50%);
	animation: spin 1s linear;
}

.loader:before {
	display: block;
	content: '';
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90px;
	height: 90px;
	background: #222;
	border-radius: 50%;
}

.gelatine {
	animation: gelatine 0.5s;
}

@keyframes gelatine {

	from,
	to {
		transform: scale(1, 1);
	}

	25% {
		transform: scale(0.9, 1.1);
	}

	50% {
		transform: scale(1.1, 0.9);
	}

	75% {
		transform: scale(0.95, 1.05);
	}
}

.spin {
	animation: spin 1s linear;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.elastic-spin {
	animation: elastic-spin 1s ease;
}

@keyframes elastic-spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(720deg);
	}
}

.pulse {
	animation: pulse 1s ease-in-out alternate;
}

@keyframes pulse {
	from {
		transform: scale(0.8);
	}

	to {
		transform: scale(1.2);
	}
}

.flash {
	animation: flash 500ms ease alternate;
}

@keyframes flash {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

.hithere {
	animation: hithere 1s ease;
}

@keyframes hithere {
	30% {
		transform: scale(1.2);
	}

	40%,
	60% {
		transform: rotate(-20deg) scale(1.2);
	}

	50% {
		transform: rotate(20deg) scale(1.2);
	}

	70% {
		transform: rotate(0deg) scale(1.2);
	}

	100% {
		transform: scale(1);
	}
}

.grow {
	animation: grow 2s ease;
}

@keyframes grow {
	from {
		transform: scale(0);
	}

	to {
		transform: scale(1);
	}
}

.fade-in {
	animation: fade-in 2s linear;
}

@keyframes fade-in {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.fade-out {
	animation: fade-out 2s linear;
}

@keyframes fade-out {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

.bounce {
	animation: bounce 3s ease;
}

@keyframes bounce {
	70% {
		transform: translateY(0%);
	}

	80% {
		transform: translateY(-15%);
	}

	90% {
		transform: translateY(0%);
	}

	95% {
		transform: translateY(-7%);
	}

	97% {
		transform: translateY(0%);
	}

	99% {
		transform: translateY(-3%);
	}

	100% {
		transform: translateY(0);
	}
}

.bounce2 {
	animation: bounce2 2s ease;
}

@keyframes bounce2 {

	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}

	40% {
		transform: translateY(-30px);
	}

	60% {
		transform: translateY(-15px);
	}
}

.shake {
	animation: shake 2s ease;
}

@keyframes shake {

	0%,
	100% {
		transform: translateX(0);
	}

	10%,
	30%,
	50%,
	70%,
	90% {
		transform: translateX(-10px);
	}

	20%,
	40%,
	60%,
	80% {
		transform: translateX(10px);
	}
}

.flip {
	backface-visibility: visible !important;
	animation: flip 5s ease;
}

@keyframes flip {
	0% {
		transform: perspective(400px) rotateY(0);
		animation-timing-function: ease-out;
	}

	40% {
		transform: perspective(400px) translateZ(150px) rotateY(170deg);
		animation-timing-function: ease-out;
	}

	50% {
		transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
		animation-timing-function: ease-in;
	}

	80% {
		transform: perspective(400px) rotateY(360deg) scale(.95);
		animation-timing-function: ease-in;
	}

	100% {
		transform: perspective(400px) scale(1);
		animation-timing-function: ease-in;
	}
}

.swing {
	transform-origin: top center;
	animation: swing 2s ease;
}

@keyframes swing {
	20% {
		transform: rotate(15deg);
	}

	40% {
		transform: rotate(-10deg);
	}

	60% {
		transform: rotate(5deg);
	}

	80% {
		transform: rotate(-5deg);
	}

	100% {
		transform: rotate(0deg);
	}
}

.wobble {
	animation: wobble 2s ease;
}

@keyframes wobble {
	0% {
		transform: translateX(0%);
	}

	15% {
		transform: translateX(-25%) rotate(-5deg);
	}

	30% {
		transform: translateX(20%) rotate(3deg);
	}

	45% {
		transform: translateX(-15%) rotate(-3deg);
	}

	60% {
		transform: translateX(10%) rotate(2deg);
	}

	75% {
		transform: translateX(-5%) rotate(-1deg);
	}

	100% {
		transform: translateX(0%);
	}
}

.fade-in-down {
	animation: fade-in-down 2s ease;
}

@keyframes fade-in-down {
	0% {
		opacity: 0;
		transform: translateY(-20px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-in-left {
	animation: fade-in-left 2s ease;
}

@keyframes fade-in-left {
	0% {
		opacity: 0;
		transform: translateX(-20px);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

.fade-out-down {
	animation: fade-out-down 2s ease;
}

@keyframes fade-out-down {
	0% {
		opacity: 1;
		transform: translateY(0);
	}

	100% {
		opacity: 0;
		transform: translateY(20px);
	}
}

.fade-out-right {
	animation: fade-out-right 3s ease;
}

@keyframes fade-out-right {
	0% {
		opacity: 1;
		transform: translateX(0);
	}

	100% {
		opacity: 0;
		transform: translateX(20px);
	}
}

.bounce-in {
	animation: bounce-in 2s ease;
}

@keyframes bounce-in {
	0% {
		opacity: 0;
		transform: scale(.3);
	}

	50% {
		opacity: 1;
		transform: scale(1.05);
	}

	70% {
		transform: scale(.9);
	}

	100% {
		transform: scale(1);
	}
}

.bounce-in-right {
	animation: bounce-in-right 5s ease;
}

@keyframes bounce-in-right {
	0% {
		opacity: 0;
		transform: translateX(2000px);
	}

	60% {
		opacity: 1;
		transform: translateX(-30px);
	}

	80% {
		transform: translateX(10px);
	}

	100% {
		transform: translateX(0);
	}
}

.bounce-out {
	animation: bounce-out 2s ease;
}

@keyframes bounce-out {
	0% {
		transform: scale(1);
	}

	25% {
		transform: scale(.95);
	}

	50% {
		opacity: 1;
		transform: scale(1.1);
	}

	100% {
		opacity: 0;
		transform: scale(.3);
	}
}

.bounce-out-down {
	animation: bounce-out-down 2s ease;
}

@keyframes bounce-out-down {
	0% {
		transform: translateY(0);
	}

	20% {
		opacity: 1;
		transform: translateY(-20px);
	}

	100% {
		opacity: 0;
		transform: translateY(20px);
	}
}

.rotate-in-down-left {
	animation: rotate-in-down-left 2s ease;
}

@keyframes rotate-in-down-left {
	0% {
		transform-origin: left bottom;
		transform: rotate(-90deg);
		opacity: 0;
	}

	100% {
		transform-origin: left bottom;
		transform: rotate(0);
		opacity: 1;
	}
}

.rotate-in-up-left {
	animation: rotate-in-up-left 2s ease;
}

@keyframes rotate-in-up-left {
	0% {
		transform-origin: left bottom;
		transform: rotate(90deg);
		opacity: 0;
	}

	100% {
		transform-origin: left bottom;
		transform: rotate(0);
		opacity: 1;
	}
}

.hinge {
	animation: hinge 2s ease;
}

@keyframes hinge {
	0% {
		transform: rotate(0);
		transform-origin: top left;
		animation-timing-function: ease-in-out;
	}

	20%,
	60% {
		transform: rotate(80deg);
		transform-origin: top left;
		animation-timing-function: ease-in-out;
	}

	40% {
		transform: rotate(60deg);
		transform-origin: top left;
		animation-timing-function: ease-in-out;
	}

	80% {
		transform: rotate(60deg) translateY(0);
		opacity: 1;
		transform-origin: top left;
		animation-timing-function: ease-in-out;
	}

	100% {
		transform: translateY(700px);
		opacity: 0;
	}
}

.roll-in {
	animation: roll-in 2s ease;
}

@keyframes roll-in {
	0% {
		opacity: 0;
		transform: translateX(-100%) rotate(-120deg);
	}

	100% {
		opacity: 1;
		transform: translateX(0px) rotate(0deg);
	}
}

.roll-out {
	animation: roll-out 2s ease;
}

@keyframes roll-out {
	0% {
		opacity: 1;
		transform: translateX(0px) rotate(0deg);
	}

	100% {
		opacity: 0;
		transform: translateX(100%) rotate(120deg);
	}
}
.sc-btn {
	width: fit-content;
	position: relative;
	display: inline-block;
	border-radius: 10px;
	!i;!;
	/* overflow: hidden; */
}

.sc-btn .g-char {
	position: absolute;
	left: 0;
	bottom: 75px;
	z-index: 40;
	right: 0;
	margin: auto;
}

.sc-btn .g-panel {
	width: fit-content;
	border-radius: 10px;
	overflow: hidden;
	background-color: #000000;
}

.casino-providers .sc-btn .g-panel,
.slot-providers .sc-btn .g-panel {
	border-radius: 20px;
}

.sc-btn .g-bg {
	opacity: 0.75;
	transition: 0.5s;
	width: 320px;
}

.sc-btn .g-footer {
	width: 100%;
	height: 60px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 4%;
	z-index: 49;
}

.sc-btn .g-footer img {
	/* max-width: 120px; */
	/* max-height: 34px; */
	/* filter: drop-shadow(0 0 10px rgba(0, 0, 0, 1.0)); */
}

.slot-providers .sc-btn .g-footer img {
	max-width: 110px;
	max-height: 30px;
}

@media(min-width: 1101px) {
	.sc-btn:hover .g-char {
		animation: scCharAnim 1s ease 1 backwards;
	}

	@keyframes scCharAnim {
		0% {
			opacity: 0;
			transform: translateY(5%);
		}

		100% {
			opacity: 1.0;
			transform: translateY(0);
		}
	}

	.sc-btn:hover .g-bg {
		opacity: 0.25;
		transform: scale(1.1);
	}

	.sc-btn:hover .play-btn {
		opacity: 1.0;
		transform: scale(1.0);
	}
}

.sc-btn .play-btn {
	width: 100%;
	max-width: 150px;
	height: 46px;
	border-radius: 25px;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	z-index: 50;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
	opacity: 0;
	transform: scale(0.25);
}

/* Button Styles */

.btn-orange,
.btn-gray,
.btn-orange-tr,
.btn-red {
	color: #ffffff;
	font-size: 18px;
	border-radius: 25px;
	border: none;
	position: relative;
	z-index: 1;
	background-color: #b8e144;
	overflow: hidden;
}

.btn-orange {
	font-weight: 500;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
	background-image: linear-gradient(#fdab01, #fb8f00);
}

.btn-orange i {
	color: rgba(0, 0, 0, 0.75);
	text-shadow: none;
	font-size: 20px;
}

.btn-gray {
	background-color: #383b3f;
}

.btn-orange-tr {
	background-color: rgba(68, 41, 2, 0.5);
	border: solid 1px #e88902;
}

.btn-orange-tr i {
	color: #fe9601;
}

.btn-red {
	background-color: #c9321c;
}

.btn-orange i,
.btn-gray i,
.btn-orange-tr i,
.btn-red i {
	margin-right: 2px;
}

.btn-orange:before {
	content: '';
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	position: absolute;
	background-image: linear-gradient(#e35f00, #cb2f00);
	opacity: 0;
	z-index: -1;
	transition: 0.3s;
}

.burger-icon span {
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.burger-icon.open span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}

.burger-icon.open span:nth-child(2) {
	opacity: 0;
}

.burger-icon.open span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

.fade-item {
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
}

.fade-item.visible {
	opacity: 1;
}

.slick-prev:before,
.slick-next:before {
	display: none;
}

.slick-prev,
.slick-next {
	top: 160px;
}

.popup-content {
	transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.modal-background {
	transition: opacity 0.5s ease-in-out;
}

#join-container {}

#join-container::-webkit-scrollbar {
	display: none;
}

.jackpot-number {
	font-size: 4rem;
	font-weight: bold;
	color: #FFD700;
	display: inline-block;
	position: relative;
}

@keyframes slide-up {
	0% {
		transform: translateY(20px);
		opacity: 0;
	}

	100% {
		transform: translateY(0);
		opacity: 1;
	}
}

.slide-up {
	animation: slide-up 1s ease-out;
}

#sliderMobile {
	height: 100%;
	width: 100%;
	overflow: hidden;
	background-size: 100% 100%;
	height: 210px;
}

#sliderMobile * {
	background-repeat: no-repeat;
	background-size: 100% 100%;
	height: 100% !important;
	width: 100% !important;
}

.my-slider {
	padding: 10px 70px;
}

.slick-initialized .slick-slide {

	margin: 0 15px 0 0;
	display: flex;
	align-items: center;
	justify-content: center;

}


.slick-next,
.slick-prev {

	z-index: 5;
	position: relative !important;
	top: 10% !important;
	width: 120px !important;
}

.slick-next {
	right: 15px;
}

.slick-prev {
	left: 15px;
}

.slick-next:before,
.slick-prev:before {
	color: #000;
	font-size: 26px;
}

.game-btn .g-panel .play-btn {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: auto;
    background-color: rgba(255, 255, 255, 0);
    border: none;
    border-radius: 50%;
    overflow: hidden;
    color: rgba(0, 0, 0, 0.75);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    font-size: 22px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 1.0);
    opacity: 0;
    transition: 0.3s;
    padding: 0 0 0 4px;
	color:#fff
}

.game-btn .g-panel .play-btn:hover {
    padding: 0;
}

.game-btn .g-panel .play-btn:before {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 50%;
    transition: 0.3s;
    background: linear-gradient(#141414, #333);
}

.game-btn:hover .g-panel .play-btn {
    animation: gamePlayAnim 0.8s ease 1 forwards;
}

@keyframes gamePlayAnim {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    40% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.game-btn .g-panel .play-btn i {
    transition: 0.3s;
}

/*슬롯 리스트 추가*/
.game-btn .g-panel .play-btn:hover i {
    opacity: 0;
    transform: rotate(360deg);
}

.game-btn .g-panel .play-btn .hover-icon {
    position: absolute;
    opacity: 0;
    transform: rotate(-360deg);
    color: rgba(0, 0, 0, 0.75);
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
}

.game-btn .g-panel .play-btn:hover .hover-icon {
    opacity: 1;
    transform: rotate(0deg);
}
/*추가 끝*/


/* With Depth */

.with-depth tr:nth-last-child(2) td:first-child {
    border-radius: 0 0 0 10px;
}

.with-depth tr:nth-last-child(2) td:last-child {
    border-radius: 0 0 10px 0;
}

.with-depth .message-content {
    display: none;
    height: 200px;
    margin: 2px 0 5px;
}

.with-depth tr.depth-click {
    cursor: pointer;
}

.with-depth tr.dropdown {
    background-color: transparent;
}

.with-depth tr.dropdown td {
    padding: 0;
    border: none;
    height: auto;
    box-shadow: none;
}

.with-depth tr.dropdown td {
    background-color: transparent;
    border: none;
}

.with-depth tr.dropdown:hover td {
    background-color: transparent;
    border: none;
}

/* Message Content */

.message-content {
    width: 100%;
    height: 400px;
    background-color: #111111;
    margin: 5px 0 0;
    padding: 10px;
    border-radius: 5px;
}

.message-content .inner-container {
    width: 100%;
    height: 100%;
    float: left;
    color: #fff;
    /*white-space: pre-wrap;*/
    text-align: left;
    padding: 5px 10px;
}
