body,html {
	color:#000;
	font-family:Noto Sans KR,sans-serif;
	font-size:15px;
	min-width:320px;
	background: #f9f9f9;    
	overflow-x: hidden;
	touch-action: pan-x pan-y; /*  📌 터치 동작 완전 차단 (확대 방지) */
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}
body {
	height:auto;
	overflow-x:hidden;
	overflow-y:scroll;
}
/* 📌 Safari에서 터치로 확대되는 문제 해결 */
@supports (-webkit-touch-callout: none) {
    body {
		max-width: 100%;
        /* width: 100vw; */
		overflow-x: hidden;
        position: relative;
        /* position: fixed; */
    }
}

/* 📌 Chrome, Safari (Webkit) */
html, body {
    overflow-y: scroll; /* 스크롤 기능 유지 */
    -webkit-overflow-scrolling: touch; /* 부드러운 스크롤 */
}

::-webkit-scrollbar {
    display: none; /* 📌 크롬 & 사파리 스크롤바 숨김 */
}

/* 📌 Firefox */
html {
    scrollbar-width: none; /* 📌 파이어폭스 스크롤바 숨김 */
}

/* 📌 IE & Edge */
body {
    -ms-overflow-style: none; /* 📌 IE & Edge에서 스크롤바 숨김 */
}


a:hover {
	text-decoration:none
}
label,p,ul {
	margin-bottom:0
}
button,input,textarea {
	font-family:Noto Sans KR,sans-serif
}
input.form-control::-moz-placeholder,textarea::-moz-placeholder {
	color:black;
	font-size:1.1rem
}
input.form-control:-ms-input-placeholder,textarea:-ms-input-placeholder {
	color:black;
	font-size:1.1rem
}
input.form-control::placeholder,textarea::placeholder {
	color:black;
	font-size:1.1rem
}
#header .logo{
	width:250px;
}

.top_search {
	margin-top: 1rem;
    width: 90%;
}

@media (min-width: 992px) { /* 화면이 992px 이상일 때 */
    .top_search {
		margin-top: 0;
        width: 50%;
    }
}

.top_search svg{
	color:black;
}


.popup_wrap {
    position: fixed;
    top: 20%; /* 네비게이션 아래 위치 */
    left: 50%;
    transform: translateX(-50%);
    width: 1400px; /* 웹에서는 자동 크기 조정 */
    display: flex;
    flex-wrap: wrap; /* 배너가 줄 바꿈되도록 설정 */
    justify-content: center; /* 중앙 정렬 */
    gap: 10px; /* 배너 간격 */
    z-index: 9999;
    transition: opacity 0.3s ease-in-out, max-height 0.3s ease-in-out;
}

.popup {
    position: relative;
    width: 400px; /* 배너 크기 */
    /* max-width: 100%; */
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

/* 모든 팝업이 닫히면 popup_wrap을 숨김 */
.popup_wrap:empty {
    display: none !important;
}


.popup img {
    width: 100%;
    height: auto;
    display: block;
}

.popup .close {
	width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px;
    background: #000;
    color: #fff;
    opacity: 1;
    font-size: 14px;
}

.popup .close .popup_close_btn {
    cursor: pointer;
    padding-right: 10px;
}

.popup_wrap:empty {
    display: none !important;
}

@media (max-width: 1200px) {
    .popup_wrap {
		width: 900px;
    }

    .popup {
        position: relative;
        width: calc(50% - 10px); /* 📌 기본적으로 두 개씩 배치 */
        max-width: 320px;
        min-width: 200px; /* 📌 너무 작아지지 않도록 */
        transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    }
	.popup:nth-child(odd):last-child {
        flex-basis: 100%; /* 📌 마지막 배너가 하나만 남으면 한 줄 차지 */
        text-align: center;
    }
}


@media (max-width: 768px) {
	#header .logo{
		width:200px;
	}

	.popup_overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.5);
		z-index: 9998;
		display: none;
		opacity: 0;
		transition: opacity 0.3s ease-in-out;
	}

	/* 📌 팝업이 열리면 body 스크롤 방지 */
	body.no-scroll {
		overflow: hidden;
		height: 100vh; /* 📌 전체 높이를 고정 */
		touch-action: none; /* 📌 터치 스크롤 방지 */
	}

    .popup_wrap {
        position: fixed;
        top: 80px;
        left: 50%;
        transform: translateX(-50%);
        width: 95%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0px;
        z-index: 9999;
        overflow: hidden;
        transition: opacity 0.3s ease-in-out, max-height 0.3s ease-in-out;
    }

    .popup {
        position: relative;
        width: 100%;
        max-width: 350px;
        transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    }

    /* 📌 모든 팝업이 닫히면 popup_wrap을 숨김 */
    .popup_wrap:empty {
        display: none !important;
    }

    .popup img {
        max-width: 100%;
        height: auto;
    }

    .popup .close {
        font-size: 12px;
        padding: 6px;
    }
}


.video_list_line{
	margin-top:0rem !important;
}
.video_line{
	margin-top:1rem !important;
}

@media(min-width:1200px) {
	.video_list_line{
		margin-top:5rem !important;
	}
	.video_line{
		margin-top:.5rem !important;
		margin: 5px;
		background: #fff;
		border-radius: 5px;
		padding: 10px;
	}
}
.slide_col{
	padding-left: 5px;
    padding-right: 5px;
    position: relative;
    width: 100%;
}
@media(min-width:992px) {
	.slide_col{
		flex-basis: 0;
		flex-grow: 1;
	}
}

.video_list{
	background: #ffffff;
    padding-top: 20px;
}


.slide_list{
	overflow:hidden;
	background: #fff;
	padding: 10px;
    border-radius: 0 0 5px 5px;
    margin-bottom: 10px;;
}
.slide_list .common_list_swiper{
	padding: 0 10px;
}
.slide_list img{
	width:100%;
	height: 80px;
}
.list_col{
	flex-basis: 0;
    flex-grow: 1;
    padding: 5px;
    border-radius: 5px;
	width: 100%;
}
.banner_controller {
	display:flex;
	height:0;
	position:relative;
	top:50%;
	width:100%;
	z-index:2
}
.banner_controller .banner_btn_next,.banner_controller .banner_btn_prev {
	color:#fff;
	cursor:pointer;
	height:30px;
	margin-top:-80px;
	position:absolute;
	text-align:center;
	top:50%;
	width:30px
}
.banner_controller .banner_btn_next img,.banner_controller .banner_btn_prev img {
	width:30px
}
.banner_controller .banner_btn_prev {
	left: -5px;
}
.banner_controller .banner_btn_next {
	right:-5px
}

.top_notice {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: black;
    color: white;
    font-size: 14px;
    font-weight: bold;
    padding: 8px 40px 8px 10px;
    text-align: center;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    max-height: 30px; /* 기본 높이 */
    overflow: hidden; /* 부드럽게 사라질 때 내용 안 보이게 */
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.notice_text {
    flex-grow: 1;
    color: #ffeb3b;
    font-size: 14px;
    text-align: center;
}

.close_notice {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    cursor: pointer;
    color: white;
    font-weight: bold;
}

/* 📌 닫혔을 때 상태 */
.top_notice.hidden {
    max-height: 0;
    opacity: 0;
}


.top_category{
	background: #fff;
    display: flex;
    padding: 5px;
    align-items: center;
    justify-content: flex-start;
    margin: 0px auto 0px auto;
	width:99.2%;
}
.top_category .category_img{
	margin: 5px 2px;
}
.top_category .category_img a{
	color:#5A54FF;
	font-weight:bold;
}
.top_category .category_img img{
	width:294px;
	cursor:pointer;
}
.middle_category{
	background: #fff;
    margin: 5px auto;
    display: grid;
    justify-items: center;
	height: 60px;
	line-height: 60px;
    align-items: center;
    grid-template-columns: repeat(10, 1fr);
}
.middle_category .content_line{
	width:100%;
	height: 60px;
	text-align: center;
	cursor:pointer;
}

.middle_category .content_line:hover{
	background:#c1c1c1;
	color:#fff;
}

.middle_category .activity{
	background:#c1c1c1;
}

.middle_category .activity a{
	color:#fff !important;
}

.middle_category .content_line a{
	color:#000;
}
.middle_category .content_line a:hover{
	color:#fff;
}

.top_arrow{
	display: none;
    z-index: 999;
    position: fixed;
    bottom: 10px;
    right: 10px;
    text-align: center;
    cursor: pointer;
    border: 2px #000 solid;
	background: #fff;
}
.top_arrow:hover{
	background: #cfcfcf;
}
.ser_select {
    margin-left: 210px;
}
.ser_select img{
    margin-right:20px;
	height:35px;
}

.ser_search{
	margin-left:5px;
}
.main-section .searchbar-wrap {
	background:#fff;
    padding: 5px;
    border-radius: 15px;
    width: 380px;
    height: 40px;
    display: flex;
    justify-content: space-evenly;
    align-content: center;
    padding-left: 8px;
    padding-right: 8px;
}
.main-section .searchbar-wrap button {
    background: #fff;
	border:0;
}
.main-section .searchbar-wrap i {
    line-height: 32px;
    color: #999fa6;
}
.main-section .searchbar-wrap .search-input {
    width: 300px;
    height: 30px;
    font-size: 16px;
    border: none;
    outline: none;
}
@media(max-width:991px){
	.top_arrow{
		bottom: 10px;
		right: 10px;
	}
}
.top_arrow img{
	width: 15px;
    margin: 15px;
}
.bottom_list{
	background: #3B3D4A;
    margin: 5px auto;
    border-radius: 5px;
}
.bottom_list .list{
	width: 100%;
	padding:5px;
	display: grid;
    justify-items: center;
    grid-template-columns: repeat(8, 1fr);
}
.bottom_list .list .content_img{
	width: 20px;
	margin-right:5px;
}
.bottom_list .list .name{
	margin: 10px auto;
}
.bottom_list .list span{
	color:#fff;
	font-size:14px;
}
.bottom_list .list a{
	color:#fff;
	font-size:12px;
}
.bottom_list .list .title{
	margin-left: 0px;
    margin-bottom: 20px;
}

.bottom_list .list ul{
	display: block;
    width: 145px;
    text-align: center;
}

.bottom_list .list li{
	color:#000;
	font-size: 16px;
    line-height: 28px;
}

.bottom_list .list li a{
	color:#000;
	display: block;
    width: 128px;
    height: 20px;
    font-size: 14px;
    text-align: left;
    padding-top: 0;
    margin: 10px;
}
.bottom_list .list li a i{
	display: block;
	float: right;
	font-size: 10px;
	color: #ccc;
	margin-top: 8px;
	margin-right: 8px;
}

.pc_logo{
	top: 0px;
    position: relative;
}
.download{
	border: 1px solid #4e4e4e;
    padding: 13px;
    display: inline-block;
	color: red;
}
.download:link, .download:visited {
    color: red;
    text-decoration: none;
}
.download:hover{
	background:#83b0f3;
	color:#fff;
}
.main_top_txt {
    background: #3B3D4A;
    text-align: left;
    position: relative;
    width: 1200px;
	margin: 10px auto;
    height: 50px;
    top: 0;
    z-index: 1051;
    transition: all .5s;
	border-radius: 5px;
}
@media(max-width:992px){
	.main_top_txt {
		width: 100%;
	}
	.main_title span{
		font-size: 20px;
	}

	.popup_wrap {
        position: fixed;
        top: 60px; /* 📌 네비게이션 아래로 배치 */
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0px; /* 📌 배너 간격 줄이기 */
        z-index: 9999;
        overflow-y: auto; /* 📌 배너가 많을 경우 스크롤 가능 */
        padding: 5px 0;
        transition: opacity 0.3s ease-in-out, max-height 0.3s ease-in-out;
    }

    .popup {
        position: relative;
        width: 100%;
        max-width: 320px; /* 📌 모바일에서 적절한 크기 유지 */
        transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    }
}

.main_top_txt>div{
    margin: 0 auto;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    width: 1200px;
	display: flex;
    justify-content: space-between;
}

.main_top_txt a{
	color:#fff;
	font-weight: bold;
	font-size: 13px;
	line-height: 30px;
}

.main_top_txt a:hover{
	color:#ff5252;
}

#float {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
	height:62px;
    padding: 5px 0;
    background: #181818;
	z-index: 999;
}

#float div {
    display: block;
    width: 14%;
    margin: 0 5px 0 5px;
}

#float div a {
    display: block;
    text-align: center;
    color: #999;
	margin-top: 5px;
}

#float div a .icon {
    font-size: 15px;
}

#float div a p {
    font-size: .6em;
}

#float div .active{
	color:#8523cd !important;
}

@media(max-width:991px){
	.main_top_txt a{
		color:#ffffff;
		font-weight: bold;
		font-size: 13px;
	}

	#float {
		display: flex;
	}

}
.baord_free{
	margin-right:15px;
}
.keyword_type{
    background:#000000;
	border: none;
	color:#ffffff;
	font-size: 11px;
}
.keyword_type option{
	color:#ffffff;
	background:#000000;
	font-size: 11px;
}
.blur {
    filter: blur(5px);
    -webkit-filter: blur(5px);
}
.small {
	font-size:inherit
}
.pc {
	display:none
}
.btn {
	font-size:1.1rem
}
.border_top {
	border-top:1px solid #3b3e48
}
.border_left {
	border-left:1px solid #3b3e48
}
.border_right {
	border-right:1px solid #3b3e48
}
.border_bottom {
	border-bottom:1px solid #3b3e48;
	padding-bottom:.75rem
}
.form_control {
	background-clip:padding-box;
	background-color:#e5e5e5;
	border:1px solid #212121;
	border-radius:.25rem;
	color:#000000;
	display:block;
	font-size:1.1rem;
	font-weight:400;
	line-height:1.5;
	padding:.8rem 1rem;
	transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;
	width:100%
}
input:-webkit-autofill,input:-webkit-autofill:active,input:-webkit-autofill:focus {
	-webkit-text-fill-color:#fff;
	caret-color:#fff;
	-webkit-transition:background-color 5000s ease-in-out 0s;
	transition:background-color 5000s ease-in-out 0s
}
input:-webkit-autofill:first-line {
	font-family:Noto Sans KR,sans-serif;
	font-size:16.5px!important
}
input {
	filter:none
}
.hover_main:hover {
	color:#9929ea!important
}
.text_normal {
	color:#000
}
.text_sub {
	color:#000;
}
.text_danger {
	color:#ff607a
}
.text_info {
	color:#606060
}
.page_title_h2 {
	font-size:2rem
}
.btn_main {
	background:#4c1475;
	border:1px solid #4c1475;
	color:#fff
}
.btn_main:focus,.btn_main:hover {
	background:#4c1475;
	border:1px solid #9929ea!important;
	color:#fff
}
.btn_join {
	background:#000000;
	border:1px solid #000000;
	color:#fff
}
.btn_join:focus,.btn_join:hover {
	background:#000000;
	border:1px solid #000000!important;
	color:#fff
}
.btn_sub,.btn_sub:hover {
	background:#393939;
	border:1px solid #393939;
	color:#fff
}
.btn_tag,.btn_tag:hover {
	background:transparent;
	border:1px solid transparent;
	color:#3b83ff
}
.btn_text_highlight,.btn_text_highlight:hover {
	background:none;
	border:none;
	color:#ffffff
}
.btn_large {
	height:45px;
	padding:0.5rem 1rem
}
.header_m {
	background:#1d1d1d;
	display:none;
	height:50px;
	justify-content:space-between;
	position:fixed;
	width:100%;
	z-index:1050;
}
.header_m .open_gnb {
	align-items:center;
	color:#fff;
	display:flex;
	font-size:1.2rem;
	height:100%;
	justify-content:center;
	width:50px
}
.gnb_m {
	margin-top:50px;
	overflow:hidden;
	position:absolute;
	width:100%;
	z-index:1050
}
.gnb_m.right_to_left {
	margin-left:auto;
	max-width:300px;
	right:-60vw;
	transition:right .2s linear;
	width:60vw
}
.gnb_m.right_to_left.show {
	right:0
}
.gnb_m.left_to_right {
	left:-70vw;
	max-width:300px;
	transition:left .2s linear;
	width:70vw
}
.gnb_m.left_to_right.show {
	left:0
}
.gnb_m.top_to_bottom {
	top:-100vh;
	transition:top .2s linear;
	width:100%
}
.gnb_m.top_to_bottom.show {
	top:0
}
.gnb_m .gnb_inner {
	-ms-overflow-style:none;
	background:#101010;
	height:calc(100vh - 50px);
	overflow:auto;
	position:relative;
	scrollbar-width:none;
	z-index:1050
}
.gnb_m .gnb_inner::-webkit-scrollbar {
	display:none!important
}
.gnb_m .btn_wrap_auth {
    display: flex;
    text-align: center;
    flex-direction: column;
	color:#fff;
}
.gnb_m .btn_wrap_auth a{
	color:#fff;
}

.gnb_m .btn_wrap_auth a{
	margin-left: 0px;
	margin-right: 0px !important;
}

.gnb_m .btn_wrap_auth .btn {
	border-radius:15px;
	display:block;
	font-size:.9rem;
	width:100%
}
.gnb_m .btn_warp_mypage {
	background-color:#212121
}
.gnb_m .btn_warp_mypage .user_name {
	width:calc(100% - 47.5px)
}
.gnb_m .btn_warp_mypage .user_name .name {
	width:calc(100% - 54px)
}
.gnb_m .btn_warp_mypage .user_name .logout:hover {
	color:inherit
}
.gnb_m .btn_warp_mypage .user_link {
	box-shadow:inset 0 1px 0 #000
}
.gnb_m .btn_warp_mypage .user_link .mypage {
	box-shadow:1px 0 0 #000
}
.gnb_m .btn_warp_mypage .user_link img {
	width:25px
}
.gnb_m .depth_1>li {
	border-bottom:1px solid #373737;
	margin:0 15px
}
.gnb_m .depth_1>li.hidden_menu .gnb_title {
	color:#ffdf61
}
.gnb_m .depth_1 .gnb_title {
	color:#9929ea;
	cursor:pointer;
	display:block;
	padding:10px 0;
	position:relative
}
.gnb_m .depth_1 .gnb_title.collapsed {
	background:transparent;
	color:#fff
}
.gnb_m .depth_1>li:hover .gnb_title {
	color:#9929ea
}
.gnb_m .depth_1 svg {
	color:#878787;
	position:absolute;
	right:0;
	top:12px;
	transform:rotate(180deg);
	transition:transform .3s linear
}
.gnb_m .depth_1 .gnb_title.collapsed svg {
	float:right;
	transform:rotate(0deg);
	transform-origin:center
}
.gnb_m .depth_2 {
	padding:0 0 10px
}
.gnb_m .depth_2>li {
	padding:5px 10px 5px 15px
}
.gnb_m .depth_2>li a {
	color:#9b9b9b;
	display:block;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap
}
.emergency {
	background:#cc2944;
	color:#fff
}
.emergency a,.emergency a:hover {
	color:#ffd36b;
	text-decoration:underline
}
.show_video div div{
	overflow: visible !important;
}

.show_video video{
	background:#000000;
}

.show_video iframe{
	position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 0px;
}
.btn_wrap_info{
	text-align: right;
    height: 50px;
    line-height: 50px;
}
.btn_wrap_info a{
	margin-left: 20px;
}
.btn_wrap_info a:first-child{
	margin-left: 20px;
}

.btn_wrap_auth {
	text-align: right;
    height: 50px;
    line-height: 50px;
}
.btn_wrap_auth a:first-child{
	margin-left: 0px;
}
.btn_wrap_auth a{
	margin-left: 30px;
}
.btn_wrap_auth a:last-child{
	margin-right: 30px;
}
@media(min-width:1751px){
	.show_video{
		padding-top:calc(100vw - 63vw) !important;
		position: relative;
	}
}

@media(min-width:1700px) and (max-width:1751px){
	.show_video{
		padding-top:calc(100vw - 63vw) !important;
		position: relative;
	}
}

@media(min-width:1625px) and (max-width:1700px){
.show_video{
		padding-top:calc(100vw - 63vw) !important;
		position: relative;
	}
}
@media(min-width:1500px) and (max-width:1625px){
	.show_video{
		padding-top:calc(100vw - 63vw) !important;
		position: relative;
	}
}
@media(min-width:992px) and (max-width:1500px){
	.show_video{
		padding-top:calc(100vw - 63vw) !important;
		position: relative;
	}
}

@media(max-width:991px){
	.show_video{
		padding-top:calc(100vw - 45vw) !important;
		position: relative;
	}
}

@media(min-width:992px) {
	#header {
		background: #ffffff;
		position: relative;
		width: 100%;
		margin: 0 auto;
		z-index: 1050;
		transition: all .5s;
		border-radius: 5px;
		
	}
	#header .header_pc {
		height:75px;
		margin: 10px 30px;
	}
	#header .header_pc .logo{
		cursor:pointer;
	}
	#header .header_pc .btn_wrap_auth {
		display:flex;
	}
	#header .header_pc .btn_wrap_auth .btn {
		border-radius:20px;
		display:block;
		font-size:.9rem;
		min-width:90px;
		padding:.592rem .75rem;
		width:100%
	}
	#header .header_pc .btn_wrap_mypage .dropdown_menu {
		background-color:#212121;
		border-color:#373737;
		border-radius:10px;
		color:#d4d4d4;
		width:200px
	}
	#header .header_pc .btn_wrap_mypage .dropdown_menu .user_name {
		width:123px
	}
	#header .header_pc .btn_wrap_mypage .dropdown_item {
		color:#d4d4d4;
		display:block;
		padding:.25rem 1rem
	}
	#header .btn_search {
		color:#878787
	}
	#header .btn_search:hover {
		color:#9929ea
	}
	
	.gnb_pc .depth_1>li {
		float:left;
		position:relative;
		z-index:1
	}
	.gnb_pc .depth_1 .gnb_title {
		color:#5A54FF;
		cursor:pointer;
		display:block;
		padding:10px 15px;
		text-align:center;
		font-weight: bold;
	}
	.gnb_pc .depth_1 svg {
		margin-top:-5px
	}
	.gnb_pc .depth_1>li.hidden_menu .gnb_title {
		color:#ffdf61
	}
	header .category_detail{
		position: fixed;
		display: none;
		width: 100%;
		height: 60px;
		top: 84px;
		left: 0;
		background-color: rgba(29,29,29);
		overflow: hidden;
		z-index: 999;
	}
	header .depth_2 {
		display: block;
		width: 100%;
		max-width: 1920px;
		height: 100%;
		margin: 0 auto;
		text-align: left;
		overflow: hidden;
	}

	header .depth_2>li {
		display: inline-block;
		padding: 0 20px;
	}

	header .depth_2>li a {
		color:#ffffff;
		display:block;
		font-size:14px;
		font-weight:500;
		padding:8px 15px
	}
	.gnb_pc .depth_1>li:hover .gnb_title {
		color:#9929ea
	}
	.gnb_pc .depth_1>li:hover .category_detail {
		display:block;
	}
	.gnb_pc .depth_2>li:hover>a {
		background-color: rgba(85,85,85);
	}
	.gnb_pc #gnb_category.grid_align .depth_1 {
		display:grid;
		grid-template-columns:repeat(auto-fit,minmax(0,auto))
	}
}
.update_date {
    color: #000000;
    font-size: 14px;
	font-weight: bold;
}

.header_search_modal .modal-dialog {
	margin-top:10vh
}
#navigation {
	background:#ffffff;
	max-width: 1190px;
	margin: auto;
}
#navigation ul li .current,#navigation ul li a {
	font-size:14px
}
#navigation ul li .current {
	color:#000000;
}
#navigation ul li .fas,#navigation ul li a {
	color:#000000;
}
#navigation ul li .fas {
	font-size:17px
}
.clash_top{
    position: absolute;
    width: 250px;
    height: 70px;
    top: 15px;
    right: 15px;
    display: flex;
    align-content: center;
    z-index: 1;
}

.clash_bottom{
    position: absolute;
    width: 250px;
    height: 70px;
    bottom: 100px;
    right: 20px;
    display: flex;
    align-content: center;
    z-index: 1;
}

.clash_top .banner_item{
	max-width:100% !important;
	display:none;
}
.clash_top .banner_item:first-child{
	display:block;
}
.clash_bottom .banner_item{
	max-width:100% !important;
	display:none;
}
.clash_bottom .banner_item:first-child{
	display:block;
}
.close_btn_top{
	position: absolute;
    right: 5px;
    top: -5px;
    cursor: pointer;
    z-index: 2;
}
.close_btn_bottom{
	position: absolute;
    right: 5px;
    top: -10px;
    cursor: pointer;
    z-index: 2;
}

.top_category.scroll {
	display: flex;
	justify-content: center;
}

@media(max-width:992px) {
	.top_category.scroll {
		display: flex;
		justify-content: flex-start; /* 왼쪽부터 정렬 */
		overflow-x: auto; /* 스크롤 가능하도록 유지 */
		scroll-padding-left: 10px; /* 스크롤 시 첫 요소가 반만 보이는 문제 방지 */
	}

	.header_pc>div{
		flex-direction: column;
	}
	.top_logo {
		margin-right: 0 !important;
	}
	.top_search {
		margin-right: 0;
	}
	.top_category{
		width: 100%;
		border-radius: 10px !important;
	}
	
	.clash_top{
		position: absolute;
		width: 130px;
		height: 40px;
		top: 20px;
		right: 30px;
		display: flex;
		align-content: center;
		z-index: 1;
	}

	.clash_bottom{
		position: absolute;
		width: 130px;
		height: 40px;
		bottom: 25px;
		right: 30px;
		display: flex;
		align-content: center;
		z-index: 1;
	}

	.clash_top .banner_item{
		max-width:100% !important;
		display:none;
	}
	.clash_top .banner_item:first-child{
		display:block;
	}
	.clash_bottom .banner_item{
		max-width:100% !important;
		display:none;
	}
	.clash_bottom .banner_item:first-child{
		display:block;
	}
	.close_btn_top{
		position: absolute;
		right: 0px;
		top: -10px;
		cursor: pointer;
		z-index: 2;
	}
	.close_btn_bottom{
		position: absolute;
		right: 0px;
		top: -10px;
		cursor: pointer;
		z-index: 2;
	}
}
.video_list .thumbnail .medal{
	position: absolute;
    top: 0px;
    left: 0px;
}

.video_list .thumbnail .medal img{
	width: 30px;
}

.play_list .thumbnail,.video_list .thumbnail {
	overflow:hidden;
	position:relative
}
.play_list .thumbnail .img_centered,.video_list .thumbnail .img_centered {
	position:relative
}
.play_list .thumbnail .centered,.video_list .thumbnail .centered {
	width: 100%;
    background: #fff;
    /* border-radius: 5px; */
    height: 80px;
}
.play_list .thumbnail img,.video_list .thumbnail img {
	width:100%;
	height:100%;
	transform:translate(0%,0%);
}
.play_list .thumbnail .thumb_over,.video_list .thumbnail .thumb_over {
	border:1px solid #9929ea;
	border-radius:6px;
	height:100%;
	left:0;
	opacity:0;
	position:absolute;
	top:0;
	transition:all .2s linear;
	width:100%
}
.play_list .thumbnail .icon,.video_list .thumbnail .icon {
	height:100%;
	left:0;
	position:absolute;
	top:0;
	width:100%
}
.play_list .thumbnail .icon .count,.video_list .thumbnail .icon .count {
	background:rgba(0,0,0,.5);
	border-radius:3px;
	color:#fff;
	font-size:1rem;
	left:3%;
	overflow:hidden;
	padding:0 6px;
	position:absolute;
	top:7%;
	transform:scale(.8) translate(-4px,-2px);
	transition:all .3s linear;
	white-space:nowrap;
	width:50px
}
.play_list .thumbnail .icon .count .fas,.video_list .thumbnail .icon .count .fas {
	font-size:.6rem;
	margin-right:5px
}
.play_list .thumbnail .icon .count .fas:before,.video_list .thumbnail .icon .count .fas:before {
	display:inline-block;
	height:18px;
	vertical-align:middle
}
.play_list .thumbnail .icon .hd,.video_list .thumbnail .icon .hd {
	background:rgba(0,0,0,.5);
	border-radius:3px;
	color:#fff;
	font-size:.9rem;
	font-style:italic;
	font-weight:900;
	line-height:1;
	padding:5px 2px 5px 0;
	position:absolute;
	right:3%;
	text-align:center;
	top:7%;
	transition:all .3s linear;
	width:30px
}
.play_list .video_title,.video_list .video_title {
	color:#ffffff;
	background: #9a64c9;
	margin-top:10px
}
.play_list li:hover .thumbnail .thumb_over,.video_list li:hover .thumbnail .thumb_over {
	border-width:2px;
	opacity:1
}
.play_list li:hover .thumbnail .icon .count,.play_list li:hover .thumbnail .icon .hd,.video_list li:hover .thumbnail .icon .count,.video_list li:hover .thumbnail .icon .hd {
	background:#9929ea
}
.play_list li:hover .video_title,.video_list li:hover .video_title {
	color:#fff;
	transition:all .2s linear
}

.series_btn .series_btn_data.open{
	display:flex;
}
.series_btn .series_btn_data{
	display:none;
}
.series_btn button{
	width:60px;
}
.series_btn button.active{
	border: 1px #b3b3b3 solid;
    background: #737373;
}
body::-webkit-scrollbar {
	width:5px;
}
body::-webkit-scrollbar-thumb {
    background-color: #2f3542;
}
body::-webkit-scrollbar-track {
    background-color: grey;
}

#recommend_video::-webkit-scrollbar {
	width:5px;
}
#recommend_video::-webkit-scrollbar-thumb {
    background-color: #2f3542;
}
#recommend_video::-webkit-scrollbar-track {
    background-color: grey;
}

.play_list::-webkit-scrollbar {
	width:5px;
}
.play_list::-webkit-scrollbar-thumb {
    background-color: #2f3542;
}
.play_list::-webkit-scrollbar-track {
    background-color: grey;
}

.video_list>li {
	flex: 0 0 47.9%;
    max-width: 47.9%;
    margin: 3px;
    border-radius: 5px;
    padding: 5px;
}
.video_list .ellipsis_multiLine {
	-webkit-line-clamp:2;
	height:2.7rem
}
.play_list .ellipsis_multiLine,.video_list .ellipsis_multiLine {
	-webkit-box-orient: vertical;
    display: block;
    display: -webkit-box;
    font-size: .9rem;
    line-height: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
    font-weight: bold;
    text-align: center;
}
.list_col .video_list a:hober{
	color:#8589FF;
}
.video_list .ellipsis_multiLine span:hover {
	color:#8589FF;
}
.play_list .ellipsis_multiLine {
	-webkit-line-clamp:3;
	height:4.05rem
}
.video {
	padding-top:calc(100vw - 66vw);
	position:relative
}
.video>.col {
	height:100%;
	left:0;
	position:absolute;
	top:0;
	width:100%
}
.video>.col video {
	height:100%!important
}
.video .video-js {
	background-color:#252525
}
.video_info {
	color:#fff
}
.video_info .title {
	font-size:1.5rem;
	font-weight:700;
	margin-bottom:0;
	padding:5px;
	position:relative;
	color:#666EDB;
}
.video_info .view_link {
	margin-bottom:0;
	padding:5px;
	position:relative;
}
.video_info .view_link a{
	font-size:1.3rem;
	font-weight:700;
	margin-bottom:0;
	color:#666EDB;
}
.video_info .view_count {
	font-size:1.3rem;
	font-weight:700;
	margin-bottom:0;
	padding:5px;
	position:relative;
	color:#666EDB;
}
.video_info .view_search_txt {
	font-size:1.1rem;
	padding:5px;
	position:relative;
	color:#000;
}
.video_info .video_intro {
	overflow:hidden
}
.video_info .video_intro .board_content {
	color:#fff;
	display:none
}
.video_info .video_intro.open .btn_more {
	display:none
}
.video_info .video_intro.open .board_content {
	display:block
}
.video_info .rating {
	text-align:center
}
.video_info .rating.btn-group {
	align-items: center;
    border: 2px #2b2b2b solid;
    border-radius: 23px;
    height: 35px;
    width: 95px;
}
.video_info .rating button {
	align-items:center;
	color:#fff;
	display:flex;
	justify-content:center;
	padding:0;
	font-size: 13px;
}
.video_info .rating button svg {
	color:#fff
}
.video_info .rating button.active svg,.video_info .rating button:hover svg {
	color:#9929ea
}
.video_info .rating .divider {
	background-color:#696e7a;
	display:block;
	height:24px;
	width:1px
}
.video_content{
	flex-direction: row;
    justify-content: center;
    display: flex;
    align-items: flex-start;
}
.video_info_img{
	display: block;
    width: 450px;
    height: 200px;
    border: 2px #494949 solid;
    border-radius: 5px;
}
.video_info_img img{
	width: 100%;
	height: 100%;
	border-radius: 3px;
}
.video_info_data{
	display: block;
	width: 90%;
	margin: 10px 10px 10px 25px;
}
.video_info_data div{
	width: 100%;
    margin-bottom: 5px;
}
.video_info_data div > span{
	color: #6c757d;
	font-size: 0.9em;
	font-weight: 400;
    line-height: 1.5;
}
.video_info_data div > span:first-child{
	    display: block;
    float: left;
    color: #6c757d;
}
.video_info_data div > span:nth-child(2){
	display: block;
    margin-left: 120px;
	color: #939ba2;
}

.video_info_data div > .story{
    margin-left: 0px !important;
	margin-bottom: 20px;
}
@media(max-width:772px) {
	.bottom_list .list{
		grid-template-columns: repeat(4, 1fr);
	}
	.video_info_img{
		display: none;
	}
	.video_info_data{
		width: 100%;
		margin: 10px;
	}
	.video_info_data div > span:nth-child(2){
		display: block;
		margin-left: 0px;
		color: #939ba2;
	}
}
.right_content_col .play_list_top {
	border-bottom:1px solid #373737
}
.right_content_col .play_list_top>li {
	margin-top:-1px
}
.right_content_col .play_list_top>li .nav-link {
	background-color:transparent;
	border:none;
	border-bottom:2px solid transparent;
	color:#fff
}
.right_content_col .play_list_top>li .nav-link.active {
	background-color:transparent;
	border-color:#a1a1a1;
	color:#fff
}
.right_content_col .play_list_top .title {
	color:#fff;
	font-size:1.5rem
}
.right_content_col .tab-content {
	background-color:#13161f;
	height:auto;
	/*height:1a4vw;*/
	max-height:1200px
}
.right_content_col .tab-pane {
	height:auto;
	overflow:auto
}
.right_content_col .play_list {
	height:100%;
	overflow-y:auto
}
.right_content_col .play_list>.row {
	padding:.5rem 0
}
.right_content_col .play_list .number {
	font-size:1.1rem;
	max-width:37px;
	text-align:center
}
.right_content_col .play_list .thumbnail {
	max-width:170px
}
.right_content_col .play_list .thumbnail .img_centered {
	padding-top:56%
}
.right_content_col .play_list .title {
	color:#ffffff;
	font-weight:bold;
}
.right_content_col .play_list .sub {
	color:#ffffff;
}
.right_content_col .play_list>.row.active {
	background-color:#838383;
}
.right_content_col .video_list>li {
	flex:0 0 33.3%;
	max-width:33.3%
}
@media(min-width:992px) {
	.video_list>li {
		flex: 1 0 20%;
		max-width: 19.4%;
	}
	.right_content_col .tab-content {
		height:49vw;
		max-height:800px
	}
	.right_content_col .video_list .thumbnail {
		flex:0 0 51.67%
	}
	.right_content_col .video_list .video_title {
		flex:1 1 auto;
		margin-top:0;
		padding-left:.5rem;
		padding-right:.5rem
	}
	
}
.notice_list li {
	background-color:#1e242d
}
.notice_list li .card-title {
	color:#fff
}
.notice_list li .ellipsis_multiLine {
	-webkit-line-clamp:3;
	-webkit-box-orient:vertical;
	display:block;
	display:-webkit-box;
	font-size:1.1rem;
	height:4.95rem;
	line-height:1.5;
	overflow:hidden;
	text-overflow:ellipsis;
}
.notice_list li .card-footer small,.notice_list li .card-text {
	color:#8b939f
}
.notice_list li:hover .card-title {
	color:#9929ea
}
@media(min-width:992px) {
	.notice_list .col_img {
		max-width:400px
	}
}
.notice_view .notice_footer .prev_next,.notice_view .notice_header {
	background-color:#1e242d
}
.notice_view .notice_body .notice_text {
	min-height:250px
}
@media(min-width:992px) {
	.notice_view .notice_body .notice_text {
		min-height:500px
	}
}
.contents_pagination .page-link {
	background-color:#1a1b25;
	border:none;
	border-radius:17px;
	color:#fff;
	font-size:.9rem;
	margin:0 3px;
	padding:.65rem .965rem
}
.contents_pagination .page-link:hover {
	background-color:#5457b9;
	border:none
}
.contents_pagination .page-item.disabled .page-link {
	background-color:#2c3542;
	border:none;
	border-radius:17px;
	color:#6a7079
}
.contents_pagination .fas {
	font-size:.9rem;
	line-height:.9rem
}
.contents_pagination .page-item.active .page-link {
	background-color:#102a43;
	border:none;
	color:#fff
}
@media(min-width:992px) {
	.contents_pagination .page-link {
		border-radius:0;
		font-size:1.1rem;
		margin:0 5px;
	}
	.contents_pagination .page-item.disabled .page-link {
		border-radius:0;
	}
	.contents_pagination .fas {
		font-size:1.1rem;
		line-height:1.1rem
	}
}
.footer_swiper_wrap {
	background-color:#595959;
	font-size:1.1rem;
	display:none;
}
.footer_swiper_wrap .title {
	color:#ffffff
}
.footer_swiper_wrap .footer_swiper {
	color:#ffffff;
	max-width:calc(100% - 100px);
	width: 90%;
    height: 30px;
}
#footer .footer_inner {
	max-width:1000px;
	padding:27px 0
}
#footer .footer_link li {
	display:inline-block;
	font-size:0
}
#footer .footer_link li:not(:first-child):before {
	background:#8b939f;
	content:"";
	display:inline-block;
	height:10px;
	width:1px
}
#footer .footer_link li a {
	color:#878787;
	font-size:13px
}
#footer .copyright {
	color:#878787
}
.footer_inner{
	text-align:center;
}
.container-fluid.content {
	margin-top:0px;
}
.login_content{
	padding-right:30px;
}
.join_content{
	padding-right:30px;
}
#app.non_scroll {
	height:100vh;
	overflow:hidden
}
.m-0{
margin:0px;
}
.header_height {
	padding-top:0px
}
.content,.max_content {
    max-width: 1200px;
}
.content_col_notice {
	width: 100%;
    display: unset;
	background: #fff;
	border-radius: 10px;
    padding: 10px;
}
.content_col,.right_content_col {
	width: 100%;
    display: grid;
    justify-items: center;
    grid-template-columns: repeat(6, 1fr);
}
.content_col .content_line{
	margin: 0 5px;
	padding:5px;
    width: 100%;
}
.content_col .content_line .main_list{
	padding: 5px 5px;
}
.content_col .content_line .rank_first{
	background:#FFFAAF;
}
.content_col .content_line .rank_two{
	background:#D9BFFF;
}
.content_col .content_line .rank_thirth{
	background:#FFB8B8;
}
.content_col .content_line .main_list a{
	color: #FF479D;
	font-size:13px;
	font-weight: bold;
}
.content_col .content_line .main_list a:hover{
	color: #858585;
}
.right_content_col .banner_list {
	text-align:left!important
}
.main_top_banner {
	position:relative;
	width:100%
}
.main_top_banner>img {
	width:100%
}
.justify-content-end {
    justify-content: flex-end !important;
}
/* .searchbar {
	background: #fff;
    border: 3px solid #5A54FF;
    border-radius: 10px;
} */

.searchbar {
    width: 100%;
    background: white;
    border-radius: 6px;
    padding: 4px 10px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.searchbar input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
    padding: 8px;
}

.searchbar .btn_search {
    background: transparent;
    border: none;
    cursor: pointer;
}


/* .searchbar>input {
	background-color:transparent;
	border:none;
	border-radius:0;
	color:black;
	text-align:center;
} */
.searchbar .form-control {
	height:38px
}
.searchbar .form-control:focus {
	background-color:transparent;
	color:black;
	font-weight:bold;
}
.ad_banner,.common_list {
	position:relative
}

.main_topclass_swiper .banner_btn_next,.main_topclass_swiper .banner_btn_prev {
	color:#fff;
	cursor:pointer;
	height:30px;
	margin-top:-17px;
	position:absolute;
	text-align:center;
	top:50%;
	width:30px
}
.main_topclass_swiper .banner_btn_next svg,.main_topclass_swiper .banner_btn_prev svg {
	width:15px
}
.main_topclass_swiper .banner_btn_prev {
	left:0
}
.main_topclass_swiper .banner_btn_next {
	right:0
}

.main_topclass_swiper .carousel_mov {
    position: relative;
    display: block!important;
    width: 100%;
    height: 100%;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    padding-top: 0;
    padding-bottom: 0;
    color: transparent;
    text-align: center;
    overflow: hidden;
}

.main_topclass_swiper .carousel_mov a.slider_play {
    width: 110px;
    height: 110px;
    background: url(/images/btn_play.png) no-repeat;
    background-size: 100% auto;
    z-index: 101;
    top: 50%;
    left: 50%;
    margin-top: -40px;
    margin-left: -40px;
    display: inline-block;
    position: absolute;
}

.main_topclass_swiper .carousel_mov a.slider_play:hover {
	background: url(/images/btn_play_active.png) no-repeat;
	background-size: 100% auto
}

.main_topclass_swiper .slider_info_wrap {
    position: absolute;
    display: block;
    width: calc(100% - 120px);
    margin: 0 60px;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    transition: all .5s;
}
.main_topclass_swiper .slider_info {
    position: absolute;
    width: 34%;
    height: auto;
    top: 50%;
    left: 4vw;
    color: #fff;
    text-align: left;
    transform: translateY(-45%);
    -ms-transform: translateY(-45%);
    -webkit-transform: translateY(-45%);
    -moz-transform: translateY(-45%);
}
.banner_controller_top {
	display:flex;
	height:0;
	position:absolute;
	top:50%;
	width:100%;
	z-index:2;
}
.banner_controller_top .banner_btn_next,.banner_controller_top .banner_btn_prev {
	color:#fff;
	cursor:pointer;
	height:30px;
	margin-top:-17px;
	position:absolute;
	text-align:center;
	top:50%;
	width:30px;
}
.banner_controller_top .banner_btn_next svg,.banner_controller_top .banner_btn_prev svg {
	width:20px
}
.banner_controller_top .banner_btn_prev {
	left:30px
}
.banner_controller_top .banner_btn_next {
	right:30px
}

.slider_info span.info_msg {
    width: 80%;
    max-height: 100px;
    line-height: 25px;
    margin-bottom: 3%;
    -webkit-line-clamp: 4;
}

.top_ad_banner{
	display: block;
    position: relative;
    width: 100%;
    max-width: 1920px;
    height: auto;
    max-height: 710px;
    margin: 0px;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    -ms-transform: translate(-50%);
    -webkit-transform: translate(-50%);
    -moz-transform: translate(-50%);
}
.slider_info h3.info_h {
    width: 100%;
    height: auto;
    max-height: 136px;
    font-size: 3.6em;
    line-height: 66px;
    letter-spacing: -3.6px;
    font-weight: 300;
    margin: 6px 0 16px;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.slider_info h3.info_h, .slider_info span.info_msg {
    display: -ms-flexbox;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: normal;
}

.slider_info small, .slider_info span.info_msg {
    height: auto;
    font-size: 1.1em;
    font-weight: 300;
    overflow: hidden;
    text-overflow: ellipsis;
}
.slider_info small {
    display: inline-block;
    width: 100%;
    line-height: 1.2;
    color: #bbb;
    margin-top: 1%;
    white-space: nowrap;
}
span.slider_like {
    background: url(/images/ic_like.png) 0 no-repeat;
    background-size: 24px auto;
}
span.slider_score {
    background: url(/images/ic_star.png) 0 no-repeat;
    background-size: 24px auto;
}
span.slider_likeclip {
    background: url(/images/ic_clip.png) 0 no-repeat;
    background-size: 24px auto;
}
span.slider_like, span.slider_likeclip, span.slider_scene, span.slider_score {
    display: inline-block;
    font-size: 20px;
    line-height: 24px;
    padding-left: 30px;
    margin-right: 10px;
}

.video_view{
	margin-top:97px;
}
@media (min-width: 1279px){

	.main_topclass_swiper .slider_info {
		top: 30%;
		transform: translateY(-25%);
		-ms-transform: translateY(-25%);
		-webkit-transform: translateY(-25%);
		-moz-transform: translateY(-25%);
	}

	.main_topclass_swiper .carousel_mov a.slider_play {
		width: 100px;
		height: 100px;
		margin-top: -50px;
		margin-left: -50px;
	}
}
@media (max-width: 1279px){
	.main_topclass_swiper .banner_item {
		height: 40vw;
	}
	.slider_info h3.info_h {
		max-height: 100px;
		line-height: 50px;
		font-size: 3em;
		letter-spacing: -1.6px;
		margin: 2px 0 3%;
	}
	.slider_info small {
		margin-top: 0;
		line-height: 1;
		font-size: 1em;
	}
	.slider_info_wrap {
		width: 88%;
		left: 0;
		margin-left: 6vw;
	}
}
@media (max-width: 1200px){
	.content_col {
		flex-basis: 0;
		flex-grow: 1;
		padding: 0 5px;
		background: #fff;
		border-radius: 5px;
	}
	.content_col,.right_content_col {
		grid-template-columns: repeat(2, 1fr);
		margin: 0 10px;
	}
	.main_top_txt{
		display:none;
	}
	.top_ad_banner {
		margin-top: 0px;
	}
	.main_top_txt>div{
		padding-left: 2%;
		padding-right: 2%;
		width:100%;
	}

	.video_view{
		margin-top:27px;
	}

	.top_category{
		background: #fff;
		border-radius: 0px;
		display: flex;
		padding: 0px;
		margin-bottom: 5px;
		align-items: center;
		justify-content: flex-start;
		height: 81px;
	}
	.top_category .category_img{
		margin: 3px;
	}
	.top_category .category_img img{
		width:244px;
		height: 81px;
		cursor:pointer;
	}

	.middle_category{
		grid-template-columns: repeat(5, 1fr);
		height:120px;
	}
}

@media (max-width: 992px){
	.slider_info span.info_msg {
		max-height: 60px;
		line-height: 20px;
		font-size: .8em;
		margin-bottom: 4%;
		-webkit-line-clamp: 3;
	}
	.slider_info h3.info_h {
		max-height: 88px;
		line-height: 44px;
		font-size: 2.6em;
		letter-spacing: -1.6px;
		margin: 0 0 2%;
	}
	.slider_info small {
		font-size: .9em;
	}
	.slider_info span.slider_like, .slider_info span.slider_score, .slider_info span.slider_likeclip {
		font-size: .9em;
		padding-left: 24px;
		margin-right: 10px;
		background-size: 20px auto;
	}

	.video_view{
		margin-top:0;
	}
	
}

@media (max-width: 767px){
	.main_topclass_swiper .carousel_mov a.slider_play{
		top:50%;
		width:80px;
		height:80px;
	}
	.main_topclass_swiper .slider_info_wrap {
		width: 675.8px;
		height: 307px;
		left: 0;
		margin-left: 6vw;
	}
	.main_topclass_swiper .slider_info {
		width: 300px;
		height: auto;
		left: 10vw;
		top:70%;
	}
	.banner_controller_top .banner_btn_next svg,.banner_controller_top .banner_btn_prev svg {
		width:15px
	}
	.swiper-pagination{
		display:none;
	}
	.slider_info h3.info_h {
		max-height: 76px;
		line-height: 25px;
		font-size: 1.2em;
		letter-spacing: -1.6px;
		margin: 0 0 2%;
	}
	.slider_info span.info_msg {
		max-height: 57px;
		line-height: 15px;
		font-size: .8em;
		margin-bottom: 4%;
		-webkit-line-clamp: 3;
		display:none;
	}
	.slider_info small {
		font-size: 12.2px;
	}
	.slider_info span.slider_like, .slider_info span.slider_score, .slider_info span.slider_likeclip {
		font-size: 12.6px;
		padding-left: 22px;
		margin-right: 10px;
		background-size: 18px auto;
	}

	.banner_controller_top {
		top:50%;
	}
	
	.main_top_txt{
		padding-left: 15px;
	}
}
.main_title {
	/* border-radius: 5px 5px 0px 0px; */
    font-size: 26px;
    word-break: break-all;
    background: #ffffff;
	cursor:pointer;
	padding: 7px 0;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;

}
.main_title .btn:hover {
	color:#a1a1a1;
}
.main_title img {
	position: relative;
    top: -4px;
    width: 15px;
    margin-right: 5px;
}
.main_title a{
	margin:0 auto;
}
.btn_wrap .btn_filter {
	white-space:nowrap
}
.btn_wrap .btn_filter svg {
	margin-top:-5px
}
.btn_wrap.show .btn_filter {
	color:#9929ea
}
.filter_menu {
	background:#e5e9f0;
	border:none;
	border-radius:5px;
	min-width:0;
	overflow:hidden;
	padding:0;
	width:100px
}
.filter_menu .dropdown-item {
	border-bottom:1px solid rgba(255,255,255,.1);
	color:#0a0a14;
	font-weight:100;
	padding:.5rem 1rem
}
.filter_menu .dropdown-item:focus,.filter_menu .dropdown-item:hover {
	background:#d8dee9;
	outline:none
}
.banner_list {
	display:flex;
	flex:0 0 100%;
	flex-wrap:wrap;
	justify-content:center;
	max-width:100%;
}
.banner_list>.long {
	max-width: 50%;
}
.banner_list>.banner_item,.swiper-wrapper>.banner_item {
	max-width:100%;
	padding-left:2px;
	padding-right:2px;
	padding-top:0px;
	text-align:center
}
.main_topclass_swiper {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.main_topclass_swiper .banner_item {
    width: 100%;
    height: 37vw ;
    max-height: 710px;
    overflow: hidden;
}
.main_topclass_swiper .banner_item img {
    /*position: absolute;*/
    width: 90%;
    height: auto;
	min-height:300px;
	max-height:710px;
    top: -10%;
    left: 10%;
    background-color: #13161f;
    opacity: .85;
}
.carousel_mask {
    background-size: cover;
    background: linear-gradient(90deg,#13161f 11%,rgba(19,22,31,.9) 25%,rgba(19,22,31,.4) 45%,rgba(19,22,31,.1) 60%,rgba(19,22,31,0));
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0013161f",endColorstr="#13161f",GradientType=1);
    z-index: 99;
}
.carousel_mask, .carousel_mask_bottom {
    position: absolute;
    width: 100%;
    height: 100%;
    max-height: 710px;
    top: 0;
    left: 0;
}
.carousel_mask_bottom {
    background-size: cover;
    background: linear-gradient(180deg,rgba(19,22,31,0) 0,rgba(19,22,31,0) 84%,#13161f 98%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0013161f",endColorstr="#13161f",GradientType=0);
    z-index: 98;
}
.swiper-pagination-bullet {
    width: 16px;
    height: 16px;
    margin-right: 5px;
    margin-left: 5px;
    background-color: #888;
    border-radius: 50%;
}



article.mov_detail {
    display: none;
    position: relative;
    width: -webkit-fill-available;
    height: auto;
    margin: 20px -45px 20px 0px;
    left: -30px;
    background-color: #000;
    overflow: hidden;
}

.mov_detail_contents {
    position: relative;
    display: block;
    width: calc(100% - 140px);
    height: 560px;
    min-height: 560px;
    max-height: 560px;
    margin: 0 70px;
    z-index: 99;
}

.move_close{
    position: absolute;
    right: 10px;
    top: 10px;
    width: 35px;
    height: 35px;
    display: inline-block;
    z-index: 99;
	cursor: pointer;
}

.slider_choice_wrap {
    display: inline-block;
    position: relative;
    width: 100%;
    height: calc(100% - 60px);
    margin: 30px 0;
    z-index: 100;
}

.mov_detail_contents .info_detail {
	display: block;
    min-width: 460px;
    max-width: 32%;
    height: 90%;
    margin-top: 50px;
    margin-left: 20px;
    color: #fff;
    text-align: left;
    overflow: hidden;
    transition: all .2s;
    -webkit-transition: all .2s;
    -ms-transition: all .2s;
    -moz-transition: all .2s;
    -o-transition: all .2s;
}

.mov_detail_contents a.slider_play {
	width: 110px;
	height: 110px;
	background: url(/images/btn_play.png) no-repeat;
	background-size: 100% auto;
	z-index: 101;
	top: 50%;
    left: 50%;
    margin-top: -55px;
    margin-left: -55px;
	display: inline-block;
    position: absolute;
}

.mov_detail_contents a.slider_play:active,a.slider_play:hover {
	background: url(/images/btn_play_active.png) no-repeat;
	background-size: 100% auto
}

article.mov_detail .slider_mov_wrap {
    position: absolute;
    width: 80%;
    height: calc(100% - 65px);
    top: 65px;
    left: 20%;
    background-position: 0 0;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: .8;
    z-index: 10;
}

.info_detail h3.info_h, .info_detail small {
    width: 100%;
    height: auto;
    font-weight: 300;
    overflow: hidden;
    text-overflow: ellipsis;
}

.info_detail small {
    display: inline-block;
    line-height: 1.2;
    font-size: 14px;
    color: #bbb;
    margin-top: 5px;
    white-space: nowrap;
}

.info_detail h3.info_h {
    max-height: 104px;
    font-size: 48px;
    line-height: 52px;
    letter-spacing: -3.2px;
    margin: 6px 0 0;
    word-break: break-all;
}

.info_detail h3.info_h, .info_detail span.info_msg {
    display: -ms-flexbox;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
}

.info_detail span.info_detail_in {
    display: flex;
    line-height: 1.8;
    font-size: 15px;
    font-weight: 300;
    margin-top: 20px;
    margin-bottom: 6px;
    flex-direction: column;
}

.info_detail span.info_detail_in span{
    line-height: 1.6;
    font-size: 13px;
    margin-top: 0;
    margin-bottom: 6px;
}

.info_detail span.info_detail_in .info_master{
    line-height: 1.6;
    font-size: 13px;
    margin-top: 0;
    margin-bottom: 6px;
}

.info_detail span.info_detail_in .info_wordlist{
    line-height: 1.6;
    font-size: 13px;
    margin-top: 0;
    margin-bottom: 6px;
}

.info_detail span.info_detail_in .info_make{
    line-height: 1.6;
    font-size: 13px;
    margin-top: 0;
    margin-bottom: 6px;
}

.info_detail span.info_msg, .info_detail span.info_msg_full {
    width: 100%;
    font-weight: 300;
    line-height: 20px;
    margin-bottom: 0;
}

.info_detail span.info_msg_full {
    display: inline-block;
    height: 80px;
    font-size: 15px;
    padding-right: 10px;
    white-space: normal;
    word-break: break-all;
    overflow-y: auto;
    overflow-x: hidden;
}

.scroll::-webkit-scrollbar {
	width:5px;
}
.scroll::-webkit-scrollbar-thumb {
    background-color: #2f3542;
}
.scroll::-webkit-scrollbar-track {
    background-color: grey;
}

article.mov_detail .mov_detail_contents .carousel_mask_bottom {
    position: absolute;
    width: calc(100% + 140px);
    height: 100%;
    top: 0;
    left: -70px;
    background-size: cover;
    background: linear-gradient(180deg,transparent 0,transparent 89%,#13161f 99%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0013161f",endColorstr="#00000000",GradientType=0);
    z-index: 11;
}

article.mov_detail .slider_mov_wrap .carousel_mask {
    width: calc(100% + 1px);
    left: -1px;
    background-size: cover;
    background: linear-gradient(90deg,#000 0,#000 5%,rgba(0,0,0,.4) 40%,rgba(0,0,0,.1) 75%,transparent);
}

article.mov_detail .slider_mov_wrap .carousel_mask, article.mov_detail .slider_mov_wrap .carousel_mask_right {
    position: absolute;
    height: 100%;
    top: 0;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000",endColorstr="#000000",GradientType=1);
    z-index: 11;
}

article.mov_detail .slider_mov_wrap .carousel_mask_right {
    width: 100%;
    left: 0;
    background-size: cover;
    background: linear-gradient(90deg,transparent 2%,transparent 60%,rgba(0,0,0,.65) 85%,#000 95%,#000);
}

@media (min-width: 992px) and (max-width: 1279px){
	.mov_detail_contents {
		width: calc(100% - 120px);
		height: 440px;
		min-height: 440px;
		max-height: 440px;
		margin: 0 60px;
		text-align: left;
	}

	.slider_choice_wrap {
		height: calc(100% - 60px);
		margin: 30px 0;
	}

	.mov_detail_contents .info_detail {
		min-width: 400px;
		margin-left: 0;
	}
	article.mov_detail .slider_mov_wrap {
		width: 85%;
		left: 15%;
		height: calc(100% - 54px);
		top: 54px;
		background-position: 0 0;
	}

	.info_detail small {
		font-size: 12px;
		margin-top: 4px;
	}

	.info_detail h3.info_h {
		max-height: 50px;
		line-height: 50px;
		font-size: 42px;
		letter-spacing: -2px;
		margin: 0 0 10px;
		-webkit-line-clamp: 1;
	}

	.info_detail span.info_detail_in {
		line-height: 1.6;
		font-size: 13px;
		margin-top: 0;
		margin-bottom: 6px;
	}

	.info_detail span.info_msg_full {
		height: 80px;
		font-size: 14px;
		line-height: 20px;
	}
}

@media (max-width: 991px){
	article.mov_detail .slider_mov_wrap {
		width: 85%;
		left: 15%;
		height: calc(100% - 54px);
		top: 54px;
		background-position: 0 0;
	}
	.mov_detail_contents a.slider_play {
		top: 35%;
    right: unset;
    left: 50%;
	}
}
@media (max-width: 767px){
	.content_col .content_line{
		flex-grow: 1;
		flex-basis: 45%;
	}
	.mov_detail_contents a.slider_play {
		top: 35%;
    right: unset;
    left: 50%;
	}
	.mov_detail_contents {
		width: 100%;
		margin: 0;
	}
	.mov_detail_contents .info_detail {
		min-width: unset;
		max-width: unset;
		width: 90%;
		margin-top: 220px;
	}
	.info_detail span.slider_like, .info_detail span.slider_likeclip, .info_detail span.slider_scene, .info_detail span.slider_score {
		font-size: 12px;
		padding-left: 16px;
		margin-right: 7px;
		background-size: 14px auto;
	}
	.info_detail small {
		font-size: 12px;
		margin-top: 0;
	}
	.info_detail h3.info_h {
		max-height: 40px;
		line-height: 40px;
		font-size: 1.2em;
		letter-spacing: -1px;
		margin: 0 0 8px;
		-webkit-line-clamp: 1;
	}
	span.info_detail_in {
		line-height: 1.5;
		font-size: 12px;
		margin-top: 0;
		margin-bottom: 4px;
	}
	.info_detail span.info_msg_full {
		height: 100px;
		font-size: 12px;
		line-height: 16px;
		width: 100%;
	}
	article.mov_detail .slider_mov_wrap {
		width: 85%;
		left: 15%;
		height: calc(100% - 54px);
		top: 54px;
		background-position: 0 0;
	}
}


.login_wrap .form_control {
	height:45px
}
.login_wrap .password_eye {
	position:relative
}
.login_wrap .password_eye>.form-control {
	padding:1.1rem 3.5rem 1.1rem 1rem
}
.login_wrap .password_eye>i {
	color:#878787;
	position:absolute;
	right:17px;
	top:14px
}
.login_wrap .verifing_email>.form-control {
	padding:1.1rem 5rem 1.1rem 1rem
}
.login_wrap .verifing_email>.btn_verify {
	font-size:.9rem;
	height:42px;
	position:absolute;
	right:25px;
	top:13px
}
.login_wrap .input_check>input:first-child {
	margin:0;
	opacity:0;
	position:absolute!important
}
.login_wrap .input_check>label {
	color:#878787;
	cursor:pointer;
	display:inline-block;
	font-size:1.1rem;
	font-weight:400;
	line-height:20px;
	margin-bottom:0;
	min-height:20px;
	padding-left:29px!important;
	position:relative;
	vertical-align:top
}
.login_wrap .input_check>input:first-child+input[type=hidden]+label:before,.login_wrap .input_check>input:first-child+label:before {
	background-color:#535353;
	border-radius:50%;
	content:"";
	display:inline-block;
	height:20px;
	margin-left:-29px;
	position:absolute;
	width:20px
}
.login_wrap .input_check>input:first-child:checked+label:after {
	border:2px solid #fff;
	border-left:none;
	border-top:none;
	content:"";
	display:inline-block;
	height:10px;
	left:0;
	position:absolute;
	top:0;
	transform:translate(6.65px,4px) rotate(45deg);
	-ms-transform:translate(7.75px,4.5px) rotate(45deg);
	width:7px
}
.login_wrap .input_check>input:first-child:checked+label:before {
	background-color:#4c1475
}
.login_wrap .btn_link {
	color:#878787
}
.login_wrap .btn_link:hover {
	color:#878787;
	text-decoration:none
}
.login_wrap .btn_link.join:hover {
	color:#878787;
	text-decoration:none
}
.login_wrap .user_info {
	background-color:#212121;
	min-height:230px
}
.nav_pills {
	justify-content:center;
	margin-left:-10px
}
.nav_pills .nav_item {
	margin-left:10px
}
.nav_pills.item_2 .nav_item {
	max-width:180px;
	width:calc(50% - 10px)
}
.nav_pills.item_3 .nav_item {
	max-width:130px;
	width:calc(33.3% - 10px)
}
.nav_pills .nav-link {
	background-color:#393939;
	border:none;
	border-radius:3px;
	color:#fff;
	height:54px;
	width:100%
}
.nav_pills .nav-link.active,.nav_pills .show>.nav-link {
	background-color:#9929ea;
	color:#fff
}
.nav_tabs {
	border-bottom:1px solid #373737
}
.nav_tabs .nav-link {
	background-color:transparent;
	border:none;
	border-bottom:2px solid transparent;
	color:#9b9b9b;
	font-size:1rem
}
.nav_tabs .nav-link.active,.nav_tabs .nav_item.show .nav-link {
	border-color:#fff;
	color:#fff
}
.table_stripes>.col {
	border-top:1px solid #373737
}
.table_stripes>.col>.row {
	font-size:.9rem;
	padding:.6rem 0
}
.table_stripes .form_control {
	min-height:50.75px
}
.accordion {
	border-top:1px solid #373737
}
.accordion .item_category {
	background-color:#1d1d1d;
	color:#878787;
	padding:1.3rem 0
}
.accordion .collapse_item,.accordion .item_category {
	border-bottom:1px solid #373737
}
.accordion .collapse_item .item_header {
	color:#d4d4d4;
	cursor:pointer;
	padding:1.3rem 0
}
.accordion .collapse_item .item_header .date>i {
	transition:transform .2s linear
}
.accordion .collapse_item .item_header.collapsed .date>i {
	transform:rotate(180deg)
}
.accordion .collapse_item .item_body {
	border-top:1px solid #373737;
	color:#fff;
	padding:1.3rem 0
}
.accordion .collapse_item .item_answer {
	background-color:#1d1d1d;
	color:#d4d4d4;
	min-height:150px;
	padding:1.3rem 0
}
.accordion .collapse_item .item_answer .author {
	background-color:#277de2;
	border-radius:15px;
	color:#fff;
	display:inline-block;
	padding:.2rem .7rem
}
.common_list .swiper {
	overflow:hidden;
	padding: 0px;
	background: #fff;
	border-radius: 0px 0px 5px 5px;
}

@media(min-width:768px) {
	.pc_768 {
		display:block
	}
	.mobile_768 {
		display:none
	}
}
@media(min-width:992px) {
	.pc {
		display:block
	}
	.mobile {
		display:none
	}
	.float-right{
		float:right;
	}
	.page_title_h2 {
		font-size:2.7rem;
		font-weight:700
	}
	.page_title_h3 {
		font-size:1.7rem;
		font-weight:700
	}
	.detail_view{
		margin:5px auto;
	}
	.content_col {
		flex-basis: 0;
		flex-grow: 1;
		padding: 0;
		border-radius: 5px;
	}
	.content_col.small {
		max-width:65%
	}
	.right_content_col {
		width:35%
	}
	.main_top_banner {
		height:500px;
		text-align:center
	}
	.main_top_banner>img {
		left:50%;
		margin-left:-960px;
		position:absolute;
		width:auto
	}
	.filter_menu {
		width:180px
	}
	.banner_list {
		flex-direction:row
	}
	.banner_list>.banner_item {
		max-width:25%
	}
	.banner_list>.long {
		max-width:50%;
	}
	.nav_tabs .nav-link {
		font-size:1.5rem
	}
	.table_stripes>.col {
		border-top:1px solid #373737
	}
	.table_stripes>.col>.row {
		border-bottom:1px solid #373737;
		font-size:1.1rem;
		padding:1.5rem 0
	}
	.accordion,.accordion .collapse_item .item_body {
		border-top:none
	}
}
.board_content p {
	padding:.5rem 0
}
.text_main {
	color:#fff
}
.text_gray {
	color:gray
}
.pd-0 {
	padding:0;
}
.p-l0 {
	padding-left:0;
}
.p-r0 {
	padding-right: 0;
}

.p-b0 {
	padding-bottom: 0;
}

.p-t0 {
	padding-top: 0;
}

.p-t1 {
	padding-top: 1px;
}

.p-t2 {
	padding-top: 2px;
}

.p-t3 {
	padding-top: 3px;
}

.p-t4 {
	padding-top: 4px;
}

.p-t5 {
	padding-top: 5px;
}

.p-t6 {
	padding-top: 6px;
}

.p-t7 {
	padding-top: 7px;
}

.p-t8 {
	padding-top: 8px;
}

.p-t9 {
	padding-top: 9px;
}

.p-t1 {
	padding-top: 10px;
}

.wp-100{
	width:100px;
}

.wp-120{
	width:120px;
}
.hp-45{
	height:45px !important;
}
.hp-30{
	height:30px !important;
}
.color-white{
	color:white;
}
.color-black{
	color:black;
}
.font_10px{
	font-size:10px;
}
.font_11px{
	font-size:11px;
}
.font_12px{
	font-size:12px;
}

.scroll::-webkit-scrollbar {
    display: none;
 }
 .scroll {
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-padding-left: 0; /* 스크롤 시 첫 번째 요소가 반만 보일 경우 */
}

.top_category {
    padding-left: 0 !important; /* 혹시 패딩이 들어가 있으면 제거 */
    margin-left: 0 !important; /* 마진도 제거 */
}

/* ✅ 기존 스타일 유지하면서 반응형만 적용 */
.content_grid {
    display: flex;
    flex-wrap: wrap;  /* 한 줄에 4개씩 */
    justify-content: center;  /* 기존 정렬 유지 */
    gap: 10px; /* 카드 사이 간격 유지 */
	margin: 0.5rem 0; 
	
}

/* ✅ 카드 스타일 (색, 밑줄, 배경 변경 없음!) */
.content_card {
    width: calc(25% - 10px);  /* PC에서는 4개씩 배치 */
    min-width: 230px;  /* 최소 너비 유지 */
    padding: inherit; /* ✅ 원래 패딩 유지 */
	border: 1px solid #80808036;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;

}

/* ✅ 카드 내부 리스트 스타일 유지 */
.card_body {
    display: flex;
    flex-direction: column;
    gap: 5px;
	background-color: white;
}

.card_item {
    display: flex;
    align-items: center;
    gap: 5px;
	border-bottom: 1px solid #dcdcdc; 
}

/* ✅ 모바일에서는 1개씩 정렬 */
@media (max-width: 768px) {
    .content_grid {
        flex-direction: column;  /* 모바일에서 한 줄씩 정렬 */
        align-items: center;  /* 가운데 정렬 */
    }

    .content_card {
        width: 100%;  /* ✅ 모바일에서는 가득 차도록 */
        max-width: 400px;  /* ✅ 너무 길어지지 않도록 */
    }

	.banner_list>.banner_item {
		max-width:50%
	}

	.banner_list>.long {
		max-width:100%
	}
}


.card_header {
    background: #1c3559; 
    color: white;
    font-size: 14px;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card_body {
    padding: 10px;
}

.card_item {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    font-size: 18px;
	font-weight: bold;
}

.rank_icon {
    margin-right: 5px;
	font-size: 20px;
}

.video_title {
    flex-grow: 1;
    font-weight: bold;
}

.video_date {
    color: black;
    font-size: 12px;
}

.site-card {
    padding: 10px;
    position: relative;
}

.card {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.logo-container {
    width: 100%;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-logo {
    max-width: 80%;
    max-height: 100%;
}

.site-name {
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    background: #102a43;
    padding: 5px;
    border-radius: 5px;
}

/* 🏅 랭킹 아이콘 스타일 */
.medal {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 40px;
    height: 40px;
}

.medal img {
    width: 100%;
    height: auto;
}

.main_medal {
    width: 25px;
    height: 30px;
}

.main_medal img {
    width: 100%;
	padding-bottom: 5px;
    height: auto;
}



/* 상세페이지 */
/* 전체 카드 스타일 */
.detail_card {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* max-width: 900px; */
	width :100%;
    margin: 20px auto;
    position: relative;
}

/* 가로 정렬 */
.detail_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* 썸네일 스타일 (왼쪽) */
.detail_thumbnail {
    flex: 0 0 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.detail_thumbnail img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
}

/* 사이트 정보 (오른쪽) */
.detail_info {
    flex: 1;
    text-align: left;
}

/* 제목 */
.detail_title {
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* URL 및 바로가기 버튼 */
.detail_url {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.detail_url a {
    font-size: 20px;
    color: #111827;
    text-decoration: none;
}

.detail_url a:hover {
    text-decoration: underline;
}

/* 사이트 방문 버튼 */
.detail_button {
    display: inline-block;
    background-color: #192d4e;
    color: #fff;
    padding: 4px 10px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
	color: #ffffff !important; 
}

.detail_button:hover {
    background-color: #2b4c7e;
}

/* 연결 가능 여부 */
.detail_status {
    font-size: 14px;
  
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}


.status_icon {
    font-size: 16px;
    margin-right: 5px;
}


/* 조회수 및 날짜 정보 */
.detail_page_info {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #f8f9fa;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.detail_views {
    color: red;
    font-weight: bold;
}

.detail_date {
    color: #666;
    font-size: 12px;
}

/* 검색 키워드 스타일 */
.detail_content_text {
    font-size: 13px;
    color: #666;
    margin-top: 15px;
	font-weight: bold;
    line-height: 1.6;
	min-height: 600px;
}

/* 📱 모바일 반응형 스타일 (화면 크기 768px 이하) */
@media (max-width: 768px) {
    .detail_card {
        max-width: 100%;
        padding: 15px;
    }

    .detail_content {
        flex-direction: column; /* 모바일에서는 세로 정렬 */
        align-items: center;
        text-align: center;
    }

    .detail_thumbnail {
        width: 100%;
        max-width: 200px;
        margin-bottom: 10px;
    }

    .detail_info {
        text-align: center;
    }

    .detail_url {
        flex-direction: column;
        gap: 5px;
    }

    .detail_page_info {
        position: static;
        margin-top: 10px;
        align-items: center;
    }
}

.point-color-0 {
	background-color: #e50915;
}
.point-color-1 {
	background-color: #19a250;
}

.point-color-2 {
	background-color: #FFF7DE;
}

.pointfont-color-0 {
	color: #c00020 !important;
}
.pointfont-color-1 {
	color: #0075c0 !important;
}

.pointfont-color-2 {
	color: #36c000 !important;
}


.font-16 {
	font-size: 16px;
}


.font-22 {
	font-size: 22px;
}


.btn-white_border {
	background-color: yellow;
	border: 1px solid white;
	padding: 10px;
	border-radius: 5px;
	color: red;
	font-weight: bold;
  }
  

.caption-container-top {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 300px;
	height: 100px;
  
	@media all and (max-width: 768px) {
	  padding: 12px 0 0 0;
	  gap: 6px;
	}
  
	.button-wrap {
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  gap: 10px;
  
	  @media all and (max-width: 768px) {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		gap: 4px;
  
		.btn {
		  padding: 10px 8px !important;
		}
	  }
  
	  .btn {
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 10px 20px;
		background: transparent;
		cursor: pointer;
		font-weight: bold;
		border-radius: 6px;
		font-size: 16px;
		width: 100%;
		max-width: 500px;
  
		&:nth-child(1) {
		  color: gray;
		  border: 2px solid #f1e8e8;
		}
		&:nth-child(2) {
		  color: #ffe500;
		  border: 2px solid #ffe500;
		}
		&:nth-child(3) {
		  color: #bafd64;
		  border: 2px solid #bafd64;
		}
		&:nth-child(4) {
		  color: #05d2fe;
		  border: 2px solid #05d2fe;
		}
		&:nth-child(5) {
		  color: #16d8cc;
		  border: 2px solid #16d8cc;
		}
		&:nth-child(6) {
		  color: #ffe500;
		  border: 2px solid #ffe500;
		}
		&:nth-child(7) {
		  color: #bafd64;
		  border: 2px solid #bafd64;
		}
		&:nth-child(8) {
		  color: #05d2fe;
		  border: 2px solid #05d2fe;
		}
	  }
  
	  .image-container {
		width: 30%;
		display: flex;
		justify-content: center;
	  }
  
	  .image-container img {
		max-width: 100%;
		max-height: 100px; /* 적절한 크기로 조정 */
		object-fit: contain;
	  }
  
	  .text-container {
		width: 70%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		text-align: center;
	  }
  
	  .kor-text {
		font-size: 16px;
		font-weight: bold;
		color: #000000;
	  }
  
	  .eng-text {
		font-size: 16px;
		color: #05d2fe;
		text-transform: none !important;
	  }
	}
  }
  
  .category_wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr)); /* 자동 크기 조정 */
    gap: 0px; /* 버튼 간격 */
    padding: 5px 5px 0 5px;
    background: #f3f3f3; /* 전체 배경 */
    max-width: 1190px; /* 최대 너비 제한 */
    margin: 0 auto; /* 가운데 정렬 */
}

.category_item {
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-align: center;
    padding: 10px 0;
}

.category_link {
    color: #333;
    font-weight: bold;
    text-decoration: none;
    display: block;
}

.category_item:hover {
    background: #ddd; /* 마우스 오버 효과 */
}

.short_banner {
	width: 299px;
	height: 100px;
}

@media (max-width: 768px) {
	/* #header .header_pc {
		height:300px;
	} */

	.short_banner {
		height: 81px;
	}
}

/* .long_banner {
	width: 50%;
	height: auto;
} */