/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/
/* 공통 스타일 (모바일 및 PC) */
html, body {
  width: 100%;
}

/* 모바일 기기용 스타일 */
@media screen and (max-width: 768px) {
  html, body {
    overflow-x: hidden;
  }
}

/* PC용 스타일 */
@media screen and (min-width: 769px) {
  html, body {
    /* overflow-x: hidden;를 여기서 제거합니다 */
  }
}


.play-icon {
    position: absolute;
    bottom: 30px;
    right: 30px;
    color: #EEE;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 500;
}

.play-icon i {
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.85);
    text-align: center;
    line-height: 28px;
    color: #222;
    padding: 1px 0 0 3px;
    font-size: 10px;
    margin-right: 5px;
}

.button-border-icon i {
    margin-right: 0;
    border-radius: 50%;
    border: 1px solid #DDD;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    background-color: transparent !important;
}

.dark .big-video-button, .big-video-button.dark {
    background-color: #F5F5F5;
    color: #333 !important;
    text-shadow: none;
}

.small-video-button {
    width: 54px;
    height: 54px;
    line-height: 54px;
    font-size: 22px;
}

.big-video-button {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: #333;
    color: #F5F5F5 !important;
    font-size: 16px;
    text-align: center;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.1);
    opacity: 1;
    -webkit-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
    transition: opacity .3s ease;
}

#wrap {
    position: absolute;
    z-index: 199;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--themecolor);
}

.top-live {
    display: block;
    position: relative;
    top: 25px;
    left: 180px;
    right: 255px;
    font-size: 0.625rem;
    color: #FFF;
    width: 3rem;
    height: 1.125rem;
    line-height: 1.125rem;
    text-align: center;
    border-radius: 0%;
    z-index: 1;
    overflow: hidden;
}

.top-live::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #c32325;
    opacity: 0.8;
    z-index: -1;
}
.arrow-container {
  display: inline-block;
  position: relative;
}

.icon-arrow-right1 {
  position: relative;
  left: 0;
  transition: left 0.3s ease; /* 애니메이션 속성 설정 */
}

.arrow-container:hover .icon-arrow-right1 {
  left: 5px; /* 마우스 오버 시 이동할 거리 설정 */
}



.fbox-icon2 {
  position: relative;
  display: inline-block;
}

.fbox-icon2:hover h3 + .icon-arrow-right1 {
  transform: translateX(20px); /* 마우스 오버 시 h3와 인접한 icon-arrow-right1를 오른쪽으로 이동 */
  transition: transform 0.3s ease; /* 애니메이션 속성 설정 */
}

.icon-arrow-right1:hover {
  transform: translateX(20px); /* icon-arrow-right1에 대한 개별 마우스 오버 시 오른쪽으로 이동 */
  transition: transform 0.3s ease; /* 애니메이션 속성 설정 */
}


#rotate-icon {
  /* 초기 스타일 */
  transition: transform 0.3s ease; /* 회전 효과를 부드럽게 만듭니다. */
}

#rotate-icon:hover {
  /* 마우스 오버 시 스타일 */
  transform: rotate(360deg); /* 360도 회전합니다. */
}







/* Slider Section */

.slider-bottom-box {
	display: block;
	padding: 20px;
	background: #FFF;
	box-shadow: 0px 10px 40px 0px rgba(47,47,47,0.1);
	border-radius: 3px;
}

.slider-bottom-box li {
	font-size: 16px;
	font-weight: 500;
}

.content-wrap { overflow: visible; }

.slider-box-wrap {
	position: relative;
	top: -70px;
	margin-bottom: -50px;
	z-index: 2;
}

















