@charset "UTF-8";

.popup_container .ck.ck-content h1[data-placeholder="Type your title"] {
    margin-bottom: 16px;
}

.rounded-pagination .page-link {
	padding: 0px;
	margin-right: 5px;
    border-radius: 50%!important; /* 원형 모양 */
    width: 36px; /* 원형이 되려면 너비와 높이가 같아야 합니다 */
    height: 36px; /* 원형이 되려면 너비와 높이가 같아야 합니다 */
    text-align: center; /* 텍스트 중앙 정렬 */
    line-height: 36px; /* 버튼 내부의 텍스트 위치 조정 */
}

.custom-tooltip {
  --bs-tooltip-bg: #460092;
  --bs-tooltip-color: white;
}

/* iconbanner1 */

.iconbanner1 {
    overflow: hidden;
    transition: box-shadow 0.3s ease; /* box-shadow에 대한 부드러운 전환 효과 추가 */
}

.iconbanner1:hover {
	cursor: pointer;
    outline: 2px solid rgba(0, 123, 255, 0.5); /* 파란색 형광 테두리 */
    outline-offset: -2px; /* 테두리의 오프셋 설정 */
    box-shadow: 0 0 30px 5px rgba(0, 123, 255, 0.7); /* 더 밝고 큰 파란색 형광 그림자 */
}

.iconbanner1 img[class^="card-img"] {
	background: linear-gradient(180deg, #21273a 0%, #0b0f11 100%);
    transition: transform 0.3s ease; /* 이미지 위치에 대한 부드러운 전환 효과 */
}

.iconbanner1 img[class^="logo-img"] {
    transition: transform 0.3s ease; /* 이미지 위치에 대한 부드러운 전환 효과 */
}

.iconbanner1:hover img[class^="card-img"],
.iconbanner1:hover img[class^="logo-img"] {
    transform: scale(1.10); /* 이미지를 5% 확대 */
}

.iconbanner1:hover .h6,
.iconbanner1:hover .h5,
.iconbanner1:hover .h4{
  animation: blinkColor1 1s linear infinite;
}
@keyframes blinkColor1 {
  0% {
    color: white;
  }
  50% {
    color: orange;
  }
  100% {
    color: white;
  }
}

/* iconbanner2 */

.iconbanner2 {
    overflow: hidden; /* 이미지가 카드를 벗어나지 않도록 설정 */
}

.iconbanner2 img[class^="card-img"] {
    transition: transform 0.3s ease-in-out; /* 부드러운 효과를 위한 전환 설정 */
}

.iconbanner2:hover img[class^="card-img"] {
    transform: scale(1.15) rotateZ(5deg); /* 5% 확대 후 우측으로 15도 회전 */
}


/* WEBMENU1 */
.webmenu1 ul li a span[class^="icmn-"] {
	flex: 0 0 40px;
    display: inline-block;
	font-size: 30px;
    background: linear-gradient(353.95deg,rgba(255,255,255,0) 0%,rgba(255,255,255,.75) 97.43%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: rotate(0deg);
    transition: -webkit-text-fill-color 0.3s ease-in-out, transform 0.3s ease-in-out; /* 추가 */
}

.webmenu1 ul li a span[class^="webmenu1-txt"] {
    flex-grow: 1;
    display: inline-block;
    color: #FFF; /* 원래의 텍스트 색상을 지정 (필요한 경우) */
    transition: color 0.3s ease-in-out; /* 추가 */
}

.webmenu1 ul li a:hover span[class^="icmn-"] {
    -webkit-text-fill-color: orange;
    transform: rotate(-15deg);
}

.webmenu1 ul li a:hover span[class^="webmenu1-txt"] {
    color: orange;
}

/* WEBMENU2 */
.webmenu2 { padding: 4px 0px; }
.webmenu2 a span[class^="icmn-"] {
	flex: 0 0 40px;
    display: inline-block;
	font-size: 30px;
    background: linear-gradient(353.95deg,rgba(255,255,255,0) 0%,rgba(255,255,255,.75) 97.43%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: rotate(0deg);
    transition: -webkit-text-fill-color 0.3s ease-in-out, transform 0.3s ease-in-out; /* 추가 */
}

.webmenu2 a span[class^="webmenu2-txt"] {
    flex-grow: 1;
    margin-right: 30px;
    display: inline-block;
    color: #FFF; /* 원래의 텍스트 색상을 지정 (필요한 경우) */
    transition: color 0.3s ease-in-out; /* 추가 */
}

.webmenu2 a:hover span[class^="icmn-"] {
    -webkit-text-fill-color: orange;
    transform: rotate(-15deg);
}

.webmenu2 a:hover span[class^="webmenu2-txt"] {
    color: orange;
}

#mobilemenu {
	display: none;
}

#left-menu {
    height: 100vh;
    overflow-y: auto;
    transition: width 0.3s ease;
    width: 250px;
    border-right: 1px solid rgb(94, 94, 94);
}

#left-menu.collapsed {
    width: 110px;
}

#main-content {
    transition: padding-left 0.3s ease;
    padding-left: 250px;
}

#left-menu.collapsed + #main-content {
    padding-left: 110px;
}


#carousel1 .carousel-indicators [data-bs-target] {
	background-color: white!important;
}

#carousel1-div {
    position: static; /* 기본 값 */
}


@media (max-width: 1024px) { /* iPad의 가로 해상도에 맞게 설정 */
    #left-menu {
        width: 250px;
    }
    #main-content {
        padding-left: 250px;
    }
}

@media (max-width: 769px) { /* iPad의 가로 해상도에 맞게 설정 */
    #left-menu {
        width: 110px;
    }
    #main-content {
        padding-left: 110px;
    }
    #carousel1-div {
        position: -webkit-sticky;
        position: sticky;
        top: 64px;
        z-index: 1020;
    }
    .webmenu1 ul li a span[class^="webmenu1-txt"] {
		display: none;
	}
}

@media (max-width: 576px) { /* 모바일 크기 */
    #left-menu {
        display: none;
    }
    #mobilemenu {
		display: block;
	}
    #main-content {
        padding-left: 0;
    }
}

.marquee-container {
  overflow: hidden;
  height: 40px; /* Adjust as needed */
  position: relative;
}

.marquee-content {
  white-space: nowrap;
  position: absolute;
  top: 0; /* 초기 위치를 컨테이너 상단에 설정 */
}

.bgzone {
    background-size: cover;
    width: 91%;
    padding-bottom: 111%;
    position: relative;
}

.bgzone .animation1 {
    background-image: url(/images/etc/liveCasino_bg0.png);
    background-repeat: no-repeat;
    width: 119%;
    height: 0px;
    padding-bottom: 91%;
    background-size: cover;
    position: absolute;
    margin-left: -10%;
    margin-top: 15%;
}

.animation1 {
    -webkit-animation: animation1 1.5s infinite;
    animation: animation1 1.5s infinite;
}

@keyframes animation1 {
	0% {
		background-position-y:0px;
		transform:scale(1)
	}
	50% {
		background-position-y:5px;
		transform:scale(1.03)
	}
	to {
		background-position-y:0px;
		transform:scale(1)
	}
}

.rounded-home-btn {
    border: none;
    border-radius: 50%; /* Makes it round */
    width: 60px; /* Adjust as needed */
    height: 60px; /* Adjust as needed */
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Adding a little shadow for depth */
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for press effect and color */
}

.rounded-home-btn:active {
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1); /* Reduced shadow for pressed effect */
    transform: scale(0.95); /* Slightly scale down when pressed */
}

/* Only background color on hover */
.rounded-home-btn:hover {
    background-color: #0056b3; /* 조금 더 진한 파란색으로 변경 */
}

.rounded-home-btn:hover i {
    color: white; /* 아이콘 색상을 흰색으로 변경 */
}

@media (min-width: 992px) { /* lg breakpoint */
    .col-lg-mx10p {
        flex: 0 0 20%;
        max-width: 20%;
    }
    .col-lg-mx30p {
        flex: 0 0 30%;
        max-width: 30%;
    }
}


@media (min-width: 1600px) { /* lg breakpoint */
    .col-lg-mx10p {
        flex: 0 0 12.5%;
        max-width: 12.5%;
    }
    .col-lg-mx30p {
        flex: 0 0 30%;
        max-width: 30%;
    }
}