/*===============================================
*
*default css
*
==============================================*/

/*-----------------------------------------------
* speciel setting
-----------------------------------------------*/
a{
  color:var(--text-alink);
  text-decoration:none;
  background:transparent;
}
a:visited{
  color:var(--text-alink-visited);
}
a:hover,
a:active,
a:focus{
  color:var(--text-alink-hover);
  text-decoration:none;
}

/*-----------------------------------------------
* html, body, wrap, header, gnb
-----------------------------------------------*/
html {
  transition: none !important; 
  background: var(--white);
}
/* JS로 넣은 인라인 스타일을 초기화하고 싶다면 (선택사항) */
body {
  transition: none !important; 
  background: inherit;
}
body {
  margin: 0;
  font-size:16px;
  line-height: 1.6;
  color:var(--black);
  font-family: var(--main-font);
  background:var(--white);
  /*word-break: keep-all; 한글 기준*/
  /*word-break: break-all; 긴 URL만 줄바꿈*/
  overflow-wrap: break-word;
  word-break: keep-all;
  overflow-wrap:anywhere; /*영어 URL 깨기*/
  -webkit-text-size-adjust: 100%;
}
body::after{
  position:absolute; 
  overflow:hidden; 
  width:0; 
  height:0; 
  z-index:-1;
}
/* capture mode element hide */
body.hide-ui-for-capture #goto_btn,
body.hide-ui-for-capture #news_progress_bar {
    display: none !important;
}
/*----------------------------
* Skip Navigation 
----------------------------*/
#goto_skip {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 0;
    padding: 0;
    background: red;
    z-index: 100;
    overflow: hidden;
    text-align: center
}
#goto_skip.on {
    padding: 10px;
    overflow: auto
}
#goto_skip.on a {
    color: var(--white);
    padding: 5px
}
#skiptocontent a {
    padding: 6px;
    color: var(--white);
    border-right: 1px solid var(--white);
    border-bottom: 1px solid var(--white);
    border-bottom-right-radius: 8px;
    background: transparent;
    z-index: 100
}
#skiptocontent a {
    -webkit-transition: top 1s ease-out,background 1s linear;
    transition: top 1s ease-out,background 1s linear
}
#skiptocontent a:focus {
    position: absolute;
    left: 0;
    top: 0;
    background: #bf1722;
}
#skiptocontent a:focus {
    -webkit-transition: top .1s ease-in,background .5s linear;
    transition: top .1s ease-in,background .5s linear
}
/*----------------------------
* wrap & header
----------------------------*/
#wrap{
  width:100%;
  max-width:100%;
  position: relative;
  margin:0 auto;
  padding:0;
}
.wrap_panel{
  width:100%;
  position: relative;
  margin:0 auto;
  padding:0 50px;
  max-width:1200px;
  background:none;
}
#header {
  background-image: linear-gradient(66deg, rgba(37, 37, 37, 0.05) 0%, rgba(37, 37, 37, 0.05) 33.333%,rgba(89, 89, 89, 0.05) 33.333%, rgba(89, 89, 89, 0.05) 66.666%,rgba(234, 234, 234, 0.05) 66.666%, rgba(234, 234, 234, 0.05) 99.999%),linear-gradient(130deg, rgba(104, 104, 104, 0.05) 0%, rgba(104, 104, 104, 0.05) 33.333%,rgba(246, 246, 246, 0.05) 33.333%, rgba(246, 246, 246, 0.05) 66.666%,rgba(178, 178, 178, 0.05) 66.666%, rgba(178, 178, 178, 0.05) 99.999%),linear-gradient(72deg, rgba(168, 168, 168, 0.05) 0%, rgba(168, 168, 168, 0.05) 33.333%,rgba(73, 73, 73, 0.05) 33.333%, rgba(73, 73, 73, 0.05) 66.666%,rgba(253, 253, 253, 0.05) 66.666%, rgba(253, 253, 253, 0.05) 99.999%),linear-gradient(139deg, rgba(241, 241, 241, 0.05) 0%, rgba(241, 241, 241, 0.05) 33.333%,rgba(109, 109, 109, 0.05) 33.333%, rgba(109, 109, 109, 0.05) 66.666%,rgba(100, 100, 100, 0.05) 66.666%, rgba(100, 100, 100, 0.05) 99.999%),linear-gradient(111deg, rgba(65, 65, 65, 0.05) 0%, rgba(65, 65, 65, 0.05) 33.333%,rgba(223, 223, 223, 0.05) 33.333%, rgba(223, 223, 223, 0.05) 66.666%,rgba(50, 50, 50, 0.05) 66.666%, rgba(50, 50, 50, 0.05) 99.999%),linear-gradient(90deg, rgb(41, 89, 88),rgb(80, 210, 116));
}
/*----------------------------
* header > gnb1
----------------------------*/
#header .gnb1{
  position: relative;
  padding-top:30px;
  margin: 0 auto;
}
#header .gnb1 .panel{
	display: flex;
    justify-content: space-between;

}
#header .gnb1 .panel .gnb1-left{
   display:flex;
   align-items: center;
}

#header .gnb1 .panel .gnb1-left .logo .logo-svg {
  display: block;
  width: 150px;
  height: auto;
  max-width: 100%;
}

#header .gnb1 .panel .gnb1-right ul{
   display: flex;
   justify-content: row;
   align-items: center;
   gap:20px;
}
#header .gnb1 .panel .gnb1-right ul li a{
   font-size:17px;
   font-weight:700;
   color: var(--white);
   text-decoration: none;
}
#header .gnb1 .panel .gnb1-right ul li a.active{
   text-transform: uppercase;
   white-space: nowrap;
   position: relative;
}
#header .gnb1 .panel .gnb1-right ul li a:hover{
   text-decoration: underline;
   transition: 0.3s;
}
/*----------------------------
* header > gnb2
----------------------------*/
#header .gnb2{
  display:block;
  margin:0 auto;
}
#header .gnb2 .panel{
  display:flex;
  flex-direction: column;
  margin:0 auto;
  padding: 50px 0;
}

/* 로고 중앙 고정 */
#header .gnb2 .panel .gnb-title {
  position: relative;
  text-align:center;
}
#header .gnb2 .panel .gnb-title .title p{
  font-size:16px;
  color: var(--white);
}
#header .gnb2 .panel .gnb-title .title h1 a {
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
}

/* 좌측 */
#header .gnb2 .panel .gnb-left{
  width:10%;
  flex:1;
}
#header .gnb2 .panel .gnb-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  line-height: 1;
  font-size: 17px;
  font-weight: 500;
  gap:20px;
}
/*----------------------------
* header > gnb_menu
----------------------------*/
.gnb_menu {
   position: relative;
   display:flex;
   align-items: center
}
.gnb_menu a {
   position: relative;
   display: flex;
   align-items: center;
}
.gnb_menu a i {
   border:1px solid var(--white);
}
.gnb_menu .cssbtn_menu_info{
   color:var(--gray-666);
}

/*----------------------------
* sns: gnb_side & footer
----------------------------*/
.sns ul {
   display:flex;
   gap:15px;
}
.sns ul li a {
   display:flex;
   align-items: center;
}

.sns ul li a .sns-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--gray-f0);
    border-radius: 50%;
    transition: all 0.3s ease;
}
.sns li a:hover .sns-icon-wrap {
  color: var(--blue);
}

#gnb_search {
   display: none;
   position: absolute;
   z-index: 9999999991;
   top: 0;
   width: 100%;
   margin-top: 115px;
   padding: 0;
   background: var(--gray-fa);
   border-bottom: 1px solid var(--gray-ddd)
}
#gnb_search:after {
   content: "";
   display: block;
   clear: both
}

/*----------------------------
* container
----------------------------*/
#container {
    position: relative;
    margin: 0 auto;
    padding: 0
}
#container:after {
    content: "";
    display: block;
    clear: both
}
#container .panel {
    position: relative
}
#container .panel:after {
    content: "";
    display: block;
    clear: both
}
/*----------------------------
* footer
----------------------------*/
#footer {
  position:relative;
  border-top: 1px solid var(--gray-ddd);
  padding:40px 0;
}
#footer .menubar{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
#footer .menubar .menu ul{
  display:flex;
  align-items: center;
  padding:10px 0;
}

#footer .menubar .menu ul li{
  font-size: 15px;
  line-height: 15px;
  font-weight:400;
}
#footer .menubar .menu ul li + li{
  position:relative;
  font-size: 15px;
  line-height: 15px;
  font-weight:400;
  margin-left:10px;
  padding-left:10px
}
#footer .menubar .menu ul li + li::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  transform:translateY(-50%);
  width:1px;
  height:13px;
  background: var(--gray-ccc);
}
#footer .menubar .menu ul li.bold {
  font-weight: 500;
}
#footer .menubar .menu ul li a {
  color: var(--black)
}
#footer .copyright {
  display:flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top:20px;
  padding:0;
}
#footer .copyright .company-name {
  font-size: 16px;
  font-weight:700;
  color: var(--gray-666);
}
#footer .copyright .company-info {
  font-size: 14px;
  font-weight:400;
  color: var(--gray-333);
  margin: 0;
  padding: 2px 0;
}

#footer .copyright .company-info span{
  word-break: keep-all;
}
#footer .copyright .company-info span + span{
  position:relative;
  margin-left:7px;
  padding-left:7px;
  word-break: keep-all;
}
#footer .copyright .company-info span + span::before{
  content:"";
  position:absolute;
  left:0;
  top:5px;
/*  top:50%;*/
/*  transform:translateY(-50%);*/
  width:1px;
  height:13px;
  background: var(--gray-ccc);
}
#footer .copyright .company-info .com_youth .privacy-child{
  display:inline-flex;
}
#footer .copyright .company-info .com_youth .privacy-child i.material-icons-outlined{
  font-size:14px;
  color: var(--gray-999);
  margin-left:3px;
  margin-top:4px;
}

#footer .copyright .global-info{
   display:flex;
   flex-direction: column;
   margin-top:25px;
}
#footer .copyright .global-info .factiva{
   font-size: 14px;
   font-weight: normal;
   color: var(--indigo);
   margin-right:20px;
   margin-bottom:7px;
   word-break: keep-all;
}
#footer .copyright .global-info .global{
   display:flex;
   align-items: center;
}
#footer .copyright .global-info .global .item a{
   font-size: 15px;
   margin-right: 10px;
   color: #333;
}
#footer .copyright .global-info .global .item  a:hover{
   text-decoration: underline;
}

#footer .logo-partner{
   display:flex;
   align-items: center;
   margin-top:15px;
}
#footer .logo-partner .logo_kina{
   width:180px;
   margin-left:10px;
}
/*----------------------------
* goto_btn
* 999990 - header gnb3 fix
* 999991 - goto-top
* 999992 - image-modal
----------------------------*/
#goto_btn a {
  position: fixed;
  display:flex;
  justify-content: center;
  align-items: center;
  z-index: 999991;
  text-align: center;
  width: 40px;
  height: 40px;
  font-size: 14px;
  padding: 0;
  margin: 0;
  border: 1px solid var(--gray-ddd);
  background: var(--white);
}
#goto_btn a:hover {
   background: var(--white);
   color: var(--blue);
   text-decoration: none;
}
#goto_btn #goto_top a {
   bottom: 20px;
   right: 10px;
   border-radius:50%;
}

/*-----------------------------------------------
* popup
-----------------------------------------------*/
#wrap_popup {
   margin: 0 auto;
   padding: 0;
}
#wrap_popup:after {
   content: "";
   display: block;
   clear: both
}
#header_popup {
   display: block;
   position: fixed;
   z-index: 9990;
   width: 100%;
   height: 45px;
   margin: 0 auto;
   padding: 0;
   background: #248;
   border-bottom: 5px solid #56b205;
}
#header_popup .gnb {
   display: block;
   margin: 0 auto;
   padding: 0;
}
#header_popup .gnb h3.popup_title {
   padding: 10px;
   color: var(--white);
   font-weight:700;
}
#header_popup .gnb .close a {
   position: absolute;
   right: 0;
   top: 0;
   width: 45px;
   height: 45px;
   box-sizing: border-box;
   padding: 15px;
   background: var(--nsp-blue);
}
#header_popup:after {
   content: "";
   display: block;
   clear: both;
}
#container_popup {
   display: block;
   box-sizing: border-box;
   padding: 50px 20px 20px 20px;
   margin-top: 0 auto;
}
#container_popup2 {
   padding-left: 220px;
   border: 0 solid var(--red);
}
#container_popup2:after {
   content: "";
   display: block;
   clear: both
}
#container_popup2 .snb {
   position: fixed;
   z-index: 9990;
   top: 50px;
   left: 0;
   width: 200px;
   padding: 20px;
   margin: 0
}
#container_popup2 .content {
   position: relative;
   top: 50px;
   text-align: left;
   margin: 0;
   box-sizing: border-box;
   padding: 20px;
}

/*-----------------------------------------------
* wrap_print
-----------------------------------------------*/
#wrap_print {
   margin:0 auto;
   padding:0;
}
#wrap_print .print_container {
   padding:0;
   margin:0 auto;
}

/*-----------------------------------------------
* page layout
-----------------------------------------------*/
.main {
  display:flex;
  flex-direction: column;
  width:100%;
  position: relative;
  margin:0 auto;
  padding: 0;
}
.main section {
  width:100%;
  margin: 50px 0;
  background:transparent;
  padding: 30px 0;
  margin: 30px 0;
}
.main section.section-bg {
  background:var(--gray-eee);
  border-radius:15px;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 50px;
}

/*----------------------------
* section-header
----------------------------*/
.section-header {
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
}
.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}
.section-header h2:before {
  margin: 0 15px 10px 0;
}
.section-header h2:after {
  margin: 0 0 10px 15px;
}
.section-header h2:before, .section-header h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--gray-ccc);
  display: inline-block;
}

/*----------------------------
* main > candidate-body  

 display: grid;
  grid-template-columns: repeat(5, 1fr); 
  gap:0 30px;
----------------------------*/
.candidate-body{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.candidate-body .candidate {
  width: calc((100% - 80px) / 5);
}
.candidate-body .candidate .card{
  position: relative;
  display: flex;
  flex-direction: column;
  padding:5px;
}
.candidate-body .candidate .card .cand_img{
  width:100%;
  aspect-ratio: 3 / 4;
}
.candidate-body .candidate .card .cand_info{
  padding:20px;
}
.candidate-body .candidate .card .cand_giho{
  font-size: 24px;
  font-weight: 600;
  color:var(--white);
}
.candidate-body .candidate .card .cand_party{
	font-size: 16px;
	font-weight: 400;
	color:var(--white);
}
.candidate-body .candidate .card .cand_name {
	font-size: 20px;
	font-weight: 600;
	color:var(--white);
}
.candidate-body .candidate .card .vote_rate {
	display:flex;
	align-items: flex-end;
	padding:0 20px 20px 20px;
}
.candidate-body .candidate .card .vote_rate span {
	color:var(--white);
	margin:0;
}
.candidate-body .candidate .card .vote_rate span.purecounter {
	font-size: 36px;
	font-weight: 700;
}
.candidate-body .candidate .card .vote_rate span.dot {
	font-size: 25px;
	font-weight: 500;
}
.candidate-body .candidate .card .vote_rate span.per {
	margin-left:5px;
	font-size: 16px;
}
.candidate-body .candidate .card .winner {
  position:absolute;
  z-index:10;
  left: 20px;
  transform: translate(-50%, -50%);
  pointer-events: auto;
  background: var(--blue-1);
  height:40px;
  border-radius:40px;

  display: flex;
  align-items: center;
  padding:0 20px;
  font-size: 20px;
  font-weight: 700;
  color:var(--white);
}

/*----------------------------
* news-body
----------------------------*/
.news-body {
    display: grid;
    grid-template-columns: 1fr 300px;
    grid-gap: 50px;
    position: relative;
    padding-bottom: 50px;
}

/*=====================================================================
# news_list
=====================================================================*/
.news-list ul{
  display:flex;
  flex-direction: column;
  margin-bottom:10px;
}
.news-list ul li{
  display:flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-start;
  padding-top:25px;
  border-bottom:1px solid var(--gray-ddd);
  flex-wrap: wrap;
  position:relative;
}
.news-list ul li:first-child { padding-top:0;}
.news-list ul li:last-child { margin-bottom:20px}
.news-list ul  li .image{
  position:relative;
  width:250px;
  min-width:250px;
  aspect-ratio: auto 16 / 9;
  margin-left:30px;
  margin-bottom:25px;
}
.news-list ul li .text {width:100%;flex:1;margin-bottom:25px;}
.news-list ul li .text .subject {font-size:20px;font-weight:500; }
.news-list ul li .text .category{margin-top:10px;font-size:14px;font-weight:400;color:var(--gray-666);}
.news-list ul li .text .content {margin-top:5px;font-size:16px;font-weight:400;color:var(--gray-666);}
.news-list ul li .newslink {margin-bottom:25px;}
.news-more {
   display:flex;
   align-items: center;
   justify-content: center;
   margin-top:30px;
}
.news-more > span,
.news-more > a span {
   display:flex;
   align-items: center;
   justify-content: center;
   font-size:18px;
   font-weight:700;
   border:1px solid var(--nsp-blue);
   background:var(--nsp-blue);
   color:var(--white);
   border-radius:30px;
   padding:15px 75px;
   cursor:pointer;
}
.news-more > span:hover,
.news-more > a span:hover{
   border:1px solid var(--nsp-blue);
   background:var(--nsp-blue);
}
.recently .news-list > ul{padding-top:0;border-top:0}
.recently .news-list > ul > li:last-child {padding-bottom:0;border-bottom:0}

.news-list .scrollAD {
  display:block;
  margin-top:30px;
}

/*=====================================================================
# summary
=====================================================================*/
.summary {
  position: relative;
  overflow:hidden;
  margin-bottom:10px;
  padding-left:15px;
}
.summary p{
  line-height: 1.4;
  font-weight: 500;
  color: var(--gray-666);
  margin-bottom:10px;
  word-break: keep-all;
}
.summary p:before {
  position: absolute;
  content: "•";
  color: var(--gray-666);
  left: 0px;
  margin-top: -3px;
  padding: 0px;
}

/*----------------------------*/
/*  newslink
/*----------------------------*/
.newslink {
   position:relative;
   width: 100%;
   display: flex;
   flex-direction: column;
}
.newslink > p {
   margin-top: 7px;
   display: flex;
   align-items: center;
   margin-inline-start: 0;
  position: relative;
  padding-left:20px;
}
.newslink > p::before {
  content: "┗";
  position: absolute;
  top: 3px;
  left: 0px;
  font-size: 12px;
  color: var(--gray-333);
}
}
/*
.newslink > p{
  position: relative;
  padding-left:5px;
  
}
.newslink > p::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gray-333);
}
*/
/*----------------------------
# nsp-best-news  23A8E0/007aff
----------------------------*/
.newsbox-best{
  margin-top:5px;
}

.newsbox-best .navigation{
  display:flex;
  justify-content: space-between;
  margin-top:20px;
}
 .newsbox-best .navigation .button{
   display:flex;
   gap:5px;
}
.newsbox-best .navigation .pagination {
   font-size:15px;
   font-weight:400;
   padding:0 5px;
}
.newsbox-best .navigation i.material-symbols-outlined {
   display:flex;
   font-variation-settings:
   'FILL' 0,
   'wght' 100,
   'GRAD' 0,
   'opsz' 24
}
.newsbox-best .navigation i.material-symbols-outlined:hover {
   color:var(--cyan);
}

ul.nsp-best-news > li {
   margin: 0 auto;
   padding-top:15px;
}
ul.nsp-best-news > li:first-child {
   border-top: 0;
   padding-top: 0
}
ul.nsp-best-news > li {
   display: flex;
   justify-content: space-between;
  /*align-content: flex-start*/
}
ul.nsp-best-news > li .image {
  position: relative;
  overflow: hidden;
  width: 68px;
}
ul.nsp-best-news > li .image .photo_resize{
  position: relative;
  overflow: hidden;
  width: 68px;
  height: 68px;
  border-radius: 50%;
}
ul.nsp-best-news > li .text {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
ul.nsp-best-news > li .text .num {
   margin-top: 0;
   font-size: 18px;
   font-weight:700;
   margin-right: 15px;
   color: var(--nsp-blue);
}
ul.nsp-best-news > li .text .subject {
   margin-top: 0;
   font-size: 16px;
   font-weight: 500;
   color: var(--gray-333);
   
}
ul.nsp-best-news > li .text .on {
   font-size: 18px;
   font-weight: 500;
}

/* =====================================================================
   5. loading
   ===================================================================== */
/* ajax loading */
.ajax-loading{
  position:relative;
  left:50%;
  top:50%;
  width:100px;
  height:20px;
  margin-left:-50px;
  margin-top:-10px;
}

/* bars */
.ajax-loader-bars,
.ajax-loader-bars::before,
.ajax-loader-bars::after{
  background:var(--gold);
  animation:ajax-load .8s infinite ease-in-out;
  width:.5rem;
  height:1rem;
}

.ajax-loader-bars{
  position:absolute;
  right:calc(50% - .1rem);
  margin:auto;
  font-size:11px;
  text-indent:-9999em;
  animation-delay:.16s;
}

.ajax-loader-bars::before,
.ajax-loader-bars::after{
  content:"";
  position:absolute;
  top:0;
}

.ajax-loader-bars::before{ left:-.7rem; }

.ajax-loader-bars::after{
  left:.7rem;
  animation-delay:.32s;
}

/* text */
.ajax-loader-text{
  padding-top:2rem;
  text-align:center;
  font-size:11px;
  color:var(--gray-999);
}

/* animation */
@keyframes ajax-load{
  0%,100%,80%{
    opacity:.75;
    height:1rem;
    box-shadow:0 0 var(--gold);
  }
  40%{
    opacity:1;
    height:1.5rem;
    box-shadow:0 -.5rem var(--gold);
  }
}

/* loading */
.loading{
  position:fixed;
  z-index:9999;
  left:50%;
  top:50%;
  width:100px;
  margin-left:-50px;
  margin-top:-38px;
}

.loading img{
  width:76px;
  height:76px;
}

/* bar */
.loader-bars,
.loader-bars::before,
.loader-bars::after{
  background:var(--blue-1);
  animation:load .8s infinite ease-in-out;
  width:.8rem;
  height:2rem;
}

.loader-bars{
  position:absolute;
  right:calc(50% - .425rem);
  margin:auto;
  font-size:11px;
  text-indent:-9999em;
  animation-delay:.16s;
}

.loader-bars::before,
.loader-bars::after{
  content:"";
  position:absolute;
  top:0;
}

.loader-bars::before{ left:-1.1rem; }
.loader-bars::after{
  left:1.1rem;
  animation-delay:.32s;
}

/* text */
.loader-text{
  margin-top:2.5rem;
  text-align:center;
  font-size:12px;
  color:var(--gray-666);
}

/* animation */
@keyframes load{
  0%,100%,80%{
    opacity:.75;
    height:2rem;
    box-shadow:0 0 var(--blue-1);
  }
  40%{
    opacity:1;
    height:2.5rem;
    box-shadow:0 -.5rem var(--blue-1);
  }
}

/* =====================================================================
   5. TABLE
   blue ==> #7f9db9, #255D9E, #1aa3cc,#23a9e0,#38b7d5, #49c0d8, #e5f4f7, #e0f0ff, #f3f9fd, F3F9FD
   border-collapse:collapse - 테두리를 하나로 합치는 것
   border-collapse:separate - 테두리 따로 설정(기본값)
   ===================================================================== */
table{
  width:100%;
  border-collapse:collapse;
  margin-bottom:10px;
  word-break:break-word;
}

table caption{display:none;}

/* THEAD */
table thead{
  background:var(--blue-4);
  text-align:center;
}

/* TFOOT */
table tfoot{
  background:var(--gray-fa);
}

/* BORDER */
table tr,
table th,
table td{
  border:1px solid var(--gray-ddd);
}

/* CELL */
table th,
table td{
  text-align:center;
  vertical-align:middle;
}
table tbody th{
  font-weight:400;
}
/* FORM ELEMENT INSIDE TABLE */
table td input,
table td select,
table td textarea{
  margin:3px 0;
}
/* ROW STATE */	
table tr.on,
table tr.top,
table td.top{
  background:var(--yellow-3);
}
table.hover tbody tr:hover{
  background:var(--yellow-4);
}
/* OPTION */
table.separate{
  border-collapse:separate;
  border-spacing:10px;
}

table.margin0{
  margin:0;
}

table.left td{
  text-align:left;
}
table.right td{
  text-align:right;
}
table th .oneline,
table td .oneline{
  display:block;
  overflow: hidden;
  margin: 0 auto;
  padding: 0;
  height: 22px;
}

table.padding5 th, table.padding5 td{padding:5px;}
table.padding7 th, table.padding7 td{padding:7px;}
table.padding10 th, table.padding10 td{padding:10px;}
table.padding15 th, table.padding15 td{padding:15px;}
table.padding20 th, table.padding20 td{padding:20px;}
table.padding30 th, table.padding30 td{padding:30px;}

/* =====================================================================
   paging
   ===================================================================== */
.paging,
.paging_date{
  margin:50px 0;
  padding:0;
}

.paging ul,
.paging_date ul{
  display:flex;
  justify-content:center;
  align-items:center;
}

.paging ul li,
.paging_date ul li{
  background:var(--white);
  margin:0 3px;
}

.paging ul li a,
.paging_date ul li a{
  display:flex;
  justify-content:center;
  align-items:center;
  font-weight:500;
  font-size:15px;
  min-width:32px;
  height:32px;
  padding:3px 5px;
  text-decoration:none;

  color:var(--gray-333);
  border:1px solid var(--gray-ccc);
  background:var(--white);
}

.paging_date ul li a{
  border-radius:2px;
}

/* hover */
.paging ul li a:hover,
.paging_date ul li a:hover{
  color:var(--blue);
  border-color:var(--blue);
}

/* active */
.paging ul li a.on,
.paging_date ul li a.on{
  color:var(--white);
  background:var(--blue);
  border-color:var(--blue);
}

/* disabled */
.paging ul li a.off,
.paging_date ul li a.off{
  color:var(--gray-999);
}

@media (max-width: 400px) { 
	.paging ul li.first{display:none;}
	.paging ul li.prev-block{display:none;}
	.paging ul li.next-block{display:none;}
} 

/*----------------------------
#css diagram

center인 경우
right,bottom:미사용 + transform: translate(-50%, -50%);
----------------------------*/
/* play button diagram */
.nsp_vod_play{
  position: absolute;
  border-radius: 100%;
  margin: auto;
  z-index: 100;
  cursor: pointer;
  font-size: 10vh;
  opacity: 0.8;
  transition: opacity 0.4s;
  text-align: center;
  background: none;
  /*value change 40px~50px*/
  width: 30px;
  height: 30px;
  right:15px;
  bottom:15px;
  border:3px solid var(--white);
  /*background-color:var(--black);*/
  background-color: transparent;
}
.nsp_vod_play:after {
  content: '';
  display: block;
  position: relative;
  border-style: solid;
  border-color: transparent transparent transparent white;
  /*value change*/
  border-width: 8px 0 8px 12px;
  top: 4px;
  left: 8px;
}

.nsp_vod_play_center{
  position: absolute;
  border-radius: 100%;
  margin: auto;
  z-index: 100;
  cursor: pointer;
  font-size: 10vh;
  opacity: 0.8;
  transition: opacity 0.4s;
  text-align: center;
  background: none;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); 
  border:5px solid var(--white);
  /*background-color:var(--black);*/
  border-color: transparent;
}
.nsp_vod_play_center:after {
  content: '';
  display: block;
  position: relative;
  border-style: solid;
  border-color: transparent transparent transparent white;
  /*value change*/
  border-width: 14px 0 14px 23px;
  top: 7px;
  left: 13px;
}