/* 공통 */
.sec .hd-title {
  position: relative;
  display: flex;
  align-items: center;
  gap:20px;
}

.sec .hd-title::before {
  content: "";
  display: block;
  width: 8px;
  height: 38px;
  background-color: #00A19A;
}

@media screen and (max-width:1200px) {
  
}
@media screen and (max-width:1024px) {
  
}
@media screen and (max-width:768px) {
  .sec .hd-title{
    gap: 10px;
  }
  .sec .hd-title::before{
    width: 4px;
    height: 24px;
  }

}
@media screen and (max-width:576px) {

}


/* 영억 */
.wrap--sub {
  padding-top:140px;
}
@media screen and (max-width:1200px) {
  .wrap--sub {
    padding-top:114px;
  }
}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {
  .wrap--sub {
    padding-top:110px;
  }
}
@media screen and (max-width:576px) {
  .wrap--sub {
    padding-top:106px;
  }
}


/* 비주얼 */
.sub-visual {
  width: 100%;
  height: 400px;
  background: rgba(0, 161, 154, 0.08);
}

.sub-visual-container {
  max-width: 1400px;
  width: 95%;
  height: 100%;
  margin: 0 auto;
}

.sub-visual-inner {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
}

.sub-visual-inner .title {
  font-size: 4.8rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.sub-visual-inner .chr {
  position: absolute;
  top:50%;
  right: 0;
  transform: translateY(-50%);
  width: 330px;
  height: 260px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.sub-visual-inner .chr1 {
  background-image: url('/asset/img/sub/chr01.png');
}

.sub-visual-inner .chr2 {
  background-image: url('/asset/img/sub/chr02.png');
}

.sub-visual-inner .chr3 {
  background-image: url('/asset/img/sub/chr03.png');
}

.sub-visual-inner .chr4 {
  background-image: url('/asset/img/sub/chr04.png');
}

.sub-visual-inner .chr5 {
  background-image: url('/asset/img/sub/chr05.png');
}

.sub-visual-inner .chr6 {
  background-image: url('/asset/img/sub/chr06.png');
  width: 329px;
  height: 268px;
}
@media screen and (max-width:1200px) {
  .sub-visual-inner .title{
    font-size: 3.6rem;
  }
}
@media screen and (max-width:1024px) {
  
}
@media screen and (max-width:768px) {
  .sub-visual{
    height: 220px;
  }
  .sub-visual-inner .title{
    font-size: 3.2rem;
  }
}
@media screen and (max-width:576px) {
  .sub-visual-inner .title{
    font-size: 2.8rem;
    width: 100%;
    text-align: center;
  }
  .sub-visual-inner .chr{
    opacity: .1;
  }
}


/* 네비 */
.sub-nav {
  width: 100%;
  height: 60px;
  background-color: #00A19A;
  position: relative;
  z-index: 1;
}

.sub-nav-container {
  max-width: 1400px;
  width: 95%;
  height: 100%;
  margin: 0 auto;
}

.sub-nav-container.mw350 {
  max-width:350px;
}

.sub-nav-container.mw1050 {
  max-width:1050px;
}

.sub-nav-container .menu {
  display: flex;
  width: 100%;
  height: 100%;
}

.sub-nav-container .menu li {
  flex:1 1;
  border-right: 1px solid #fff;
}

.sub-nav-container .menu li:first-child {
  border-left: 1px solid #fff;
}

.sub-nav-container .menu a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height:100%;
  font-size: 2rem;
  color:#fff;
}

.sub-nav-container .menu li.on a {
  font-weight: 700;
  background: rgba(255, 255, 255, 0.2);
}

@media screen and (max-width:1200px) {
  
}
@media screen and (max-width:1024px) {
  .sub-nav-container .menu a{
    font-size: 1.8rem;
  }
  
}
@media screen and (max-width:768px) {
  .sub-nav{height: 45px;}
}
@media screen and (max-width:576px) {
  .sub-nav-container .menu a{
    font-size: 1.5rem;
  }

}


/* 탭 메뉴 및 컨텐츠 */
.tab-menu {
  display: flex;
  gap:10px;
  padding: 10px;
  background: #E5F5F5;
  border-radius: 100px;
}

.tab-menu.br-20{
  border-radius: 20px;
}

.tab-menu.pd-20{
  padding: 20px;
}

.tab-menu.mw-700{
  max-width: 700px;
  margin: 0 auto;
}

.tab-menu.mw-1050{
  max-width: 1050px;
  margin: 0 auto;
}
.tab-menu.flex-wrap{
  flex-wrap: wrap;
}
.tab-menu > li {
  flex:1 1;
}

.tab-menu.item05 > li{
  width: calc(20% - 8px);
  flex: none;
}


.tab-menu > li button,
.tab-menu > li a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 45px;
  border-radius: 100px;
  background: #fff;
  font-size: 1.8rem;
  transition: all .3s ease;
}

.tab-menu > li.on button,
.tab-menu > li.on a {
  font-weight: 700;
  color:#fff;
  background: #00A19A;
}

.tab-con {
  position: relative;
}

.tab-con > li {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
}

.tab-con > li.on {
  display: block;
  height:auto;
  position:relative;
  animation: contents-on ease-in-out .5s forwards;
}

@media screen and (max-width:1200px) {
  .tab-menu{
    flex-wrap: wrap;
    justify-content: center;
  }
  .tab-menu > li{flex:  none; width: calc(33.333% - 6.666px);}
  
  
}
@media screen and (max-width:1024px) {
  .tab-menu > li button,
  .tab-menu > li a{
    font-size: 1.6rem;
  }

  .tab-menu.mo-scroll{
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
  }
  .tab-menu.mo-scroll > li{
    width: auto;
  }
  .tab-menu.mo-scroll > li button{
    white-space: nowrap;
    padding: 0 10px;
  }
  


}
@media screen and (max-width:768px) {
  .tab-menu{border-radius: 10px;}
  .tab-menu > li{width: calc(50% - 5px);}

  .tab-menu.mo-grid > li{
    width: calc( (50vw - 3.5vw) - 20px);
  }
    .tab-menu.mo-grid {
      display: grid;
      grid-template-rows: repeat(2, minmax(0, 1fr)); /* minmax(0, 1fr)로 높이 확보 */
      grid-auto-flow: column;
      --container-padding: 40px; /* overflow-container의 좌우 패딩 합계 (20px + 20px) */
      --gap: 10px; /* Grid gap */
      gap: 10px; 
      padding: 20px;
      margin: 0;
      list-style: none;
  }

  .tab-menu.mo-grid > li button {
      white-space: normal;
      height: 45px;
  }

}
@media screen and (max-width:576px) {
  .tab-menu > li button, .tab-menu > li a{
    font-size: 1.4rem;
    height: 30px;
  }
}


/* 표준안내 - 퀵메뉴 */
.guide .guide-tab-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.guide .guide-quick {
  position: fixed;
  top:50%;
  left: -100%;
  transform: translateY(-50%);
  z-index: 10;
  transition: all .5s ease;
}

.guide .guide-quick-wrap {
  border-top-right-radius:10px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}

.guide .guide-quick-wrap p {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap:5px;
  height: 40px;
  padding:0px 10px;
  background-color: #92D7D4;
}

.guide .guide-quick-wrap i {
  display:block;
  width: 13px;
  height: 15px;
  background: url('/asset/img/sub/standard/ico_quick.png') no-repeat center / cover;
}

.guide .guide-quick-wrap li:not(:last-child) {
  border-bottom: 1px solid #92D7D4;
}

.guide .guide-quick-wrap a {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-align: right;
  height: 40px;
  padding:0px 28px;
  background-color: #E5F5F5;
}

@media screen and (max-width:1200px) {
  
}
@media screen and (max-width:1024px) {
  
}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {

}


/* 표준안내 - 표준정보 */
.guide--info .bubble {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100px;
  padding: 0px 30px;
  border-radius: 10px;
  background-color: #E5F5F5;
}

.guide--info .sec01 .bd {
  position: relative;
}

.guide--info .sec01 .box {
  position: absolute;
  top:50%;
  transform: translateY(-50%);
}

.guide--info .sec01 .box01 {
  left: 0;
}

.guide--info .sec01 .box02 {
  right: 0;
}

.guide--info .sec03 table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}

.guide--info .sec03 table td {
  height: 60px;
  font-size: 1.8rem;
  border:1px solid #B3B3B3;
}

.guide--info .sec03 table td.point {
  background-color: #E5F5F5;
}

.guide--info .sec03 table td.pin {
  background-color: #f5f5f5; 
}

.guide--info .sec05 .list {
  display: flex;
  gap:28px;
}

.guide--info .sec05 .list li {
  flex:1 1;
}

.guide--info .sec05 .list .card {
  border:1px solid #D9D9D9;
  border-radius: 20px;
  overflow: hidden;
}

.guide--info .sec05 .list .txt {
  min-height: 240px;
  padding: 40px;
}

@media screen and (max-width:1200px) {
  
}
@media screen and (max-width:1024px) {
  .guide--info .sec01 .box{
    position: unset;
    transform: none;
  }
  .guide--info .sec01 .box02{
    text-align: left;
    margin-top: 88px;
  }

  
  .guide--info .sec05 .list{
    flex-wrap: wrap;
    justify-content: center;
  }

  .guide--info .sec05 .list li{
    width: calc(50% - 14px);
    flex: none;
  }
}
@media screen and (max-width:768px) {
  .guide--info .sec01 .box .pb-120{
    padding-bottom: 20px;
  }
  .guide--info .sec01 .box02{
    margin-top: 20px;
  }
  .guide--info .sec05 .list .txt{
    padding: 40px 20px;
  }

}
@media screen and (max-width:576px) {
.guide--info .sec05 .list .card .img{text-align: center;}
  .guide--info .sec05 .list li{
    width: 100%;
  }
  .guide--info .sec05 .list .txt{
    min-height: auto;
    padding: 20px;
  }
  .guide--info .sec03 table td{
    font-size: 1.4rem;
    height: 45px;
  }
}


/* 표준안내 - 표준 제정 절차 */
.guide--order table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}

.guide--order table td {
  height: 60px;
  border:1px solid #B3B3B3;
  font-size:1.8rem;
}

.guide--order table td.point {
  background-color: #E5F5F5;
}

@media screen and (max-width:1200px) {
  
}
@media screen and (max-width:1024px) {
  
}
@media screen and (max-width:768px) {
  .guide--order table td{
    font-size: 1.6rem;
  }

}
@media screen and (max-width:576px) {
.guide--order table td{
  font-size: 1.4rem;
}
}


/* 페이지 카테고리 */
.page-category {
  max-width:1050px;
  width: 100%;
  margin: 0 auto 60px;
}

.page-category ul {
  display: flex;
  gap:10px;
  padding: 10px;
  background: #E5F5F5;
  border-radius: 100px;
}

.page-category li {
  flex:1 1;
}

.page-category a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 45px;
  border-radius: 100px;
  background: #fff;
  font-size: 1.8rem;
  transition: all .3s ease;
}

.page-category li.on a {
  font-weight: 700;
  color:#fff;
  background: #00A19A;
}

@media screen and (max-width:1200px) {
  
}
@media screen and (max-width:1024px) {
  
}
@media screen and (max-width:768px) {
.page-category a{
  font-size: 1.6rem;
}
}
@media screen and (max-width:576px) {
.page-category a{
  font-size: 1.4rem;
  height: 30px;
}
}


/* 국가표준확산지원사업 - 지원사업 안내 */
.support--intro .sec01 .bubble {
  display: flex;
  align-items: center;
  gap:10px;
  padding:12px 20px;
  border-radius: 500px;
  background: #F5F5F5;
}

.support--intro .sec01 .bubble span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 35px;
  background: linear-gradient(90deg, #002F87 0%, #00A19A 100%);
  border-radius: 20px;
}

.support--intro .sec01 .list {
  display: flex;
  gap:24px;
}


.support--intro .sec01 .list li {
  flex:1 1 calc(25% - 24px);
  max-width: 25%;
}


.support--intro .sec01 .list.item02 li{
  flex: 1 1 calc(50% - 12);
  max-width: 50%;
}

.support--intro .sec01 .list .card {
  height: 100%;
  padding: 30px;
  background: #E5F5F5;
  border-radius: 20px;
}

.support--intro .sec01 .list i {
  display: block;
  width: 60px;
  height: 60px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.support--intro .sec01 .list i.icon01 {
  background-image: url('/asset/img/sub/support/intro/sec01_ico01.png');
}

.support--intro .sec01 .list i.icon02 {
  background-image: url('/asset/img/sub/support/intro/sec01_ico02.png');
}

.support--intro .sec01 .list i.icon03 {
  background-image: url('/asset/img/sub/support/intro/sec01_ico03.png');
}

.support--intro .sec01 .list i.icon04 {
  background-image: url('/asset/img/sub/support/intro/sec01_ico04.png');
}

.support--intro .sec01 .list i.icon05 {
  background-image: url('/asset/img/sub/support/intro/sec01_ico05.png');
}

.support--intro .sec01 .list i.icon06 {
  background-image: url('/asset/img/sub/support/intro/sec01_ico06.png');
}

.support--intro .sec02 dl {
  position: relative;
  padding-left: 60px;
}

.support--intro .sec02 i {
  display: block;
  position: absolute;
  top:-2px;
  left:0;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.support--intro .sec02 i.icon01 {
  background-image: url('/asset/img/sub/support/intro/sec02_ico01.png');
}

.support--intro .sec02 i.icon02 {
  background-image: url('/asset/img/sub/support/intro/sec02_ico02.png');
}

.support--intro .sec02 i.icon03 {
  background-image: url('/asset/img/sub/support/intro/sec02_ico03.png');
}

.support--intro .sec02 i.icon04 {
  background-image: url('/asset/img/sub/support/intro/sec02_ico04.png');
}

.support--intro .sec02 i.icon05 {
  background-image: url('/asset/img/sub/support/intro/sec02_ico05.png');
}

@media screen and (max-width:1200px) {
  .support--intro .sec01 .list{flex-wrap: wrap}
  .support--intro .sec01 .list li{
    width: calc(50% - 12px);
    max-width: none;
    flex: auto;
  }
  
}
@media screen and (max-width:1024px) {
  
}
@media screen and (max-width:768px) {
  .support--intro .sec01 .list li{width: 100%;}
  .support--intro .sec01 .list.item02 li{max-width: none;}
}
@media screen and (max-width:576px) {

}


/* 국가표준확산지원사업 - 지원기자재 */
.support--machine .sec01 .list {
  display: flex;
  gap:28px;
}


.support--machine .sec01 .list li {
  flex:1 1 calc(50% - 28px);
  max-width: 50%;
}

.support--machine .sec01 .list .img {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: calc(340/686*100%);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  overflow: hidden;
}

.support--machine .sec01 .list .img img {
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%; 
}

.support--machine .sec01 .list .txt {
  min-height: 230px;
  padding: 40px;
  border: 1px solid #D9D9D9;
  border-top: 0px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.support--machine .sec01 .list .t01 {
  position: relative;
  padding-left: 40px;
}

.support--machine .sec01 .list .t01 i {
  display: block;
  position: absolute;
  top:50%;
  left:0;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: url('/asset/img/sub/support/machine/sec01_ico.png') no-repeat center / cover;
}

.support--machine .sec02 .table-scroll {
}

.support--machine .sec02 .table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
  border:1px solid #B3B3B3;
}

.support--machine .sec02 .table th,
.support--machine .sec02 .table td {
  font-size: 1.8rem;
  border-right:1px solid #B3B3B3;
  border-bottom:1px solid #B3B3B3;
}

.support--machine .sec02 .table th {
  height: 40px;
  background-color: #E5F5F5;
}

.support--machine .sec02 .table td {
  height: 60px;
  padding: 20px;
}

.support--machine .sec02 .table td.td-bak {
  background-color: #F5FFFF;
}

.support--machine .sec02 .cation a {
  text-decoration: underline;
}

@media screen and (max-width:1200px) {
  
}
@media screen and (max-width:1024px) {
  
}
@media screen and (max-width:768px) {
  .support--machine .sec02 .table td{
    height: 45px;
    padding: 10px;
  }
  .support--machine .sec01 .list{
    flex-wrap: wrap;
  }

  .support--machine .sec01 .list li{
    flex: none;
    width: 100%;
    max-width: none;
  }

  .support--machine .sec01 .list .txt{
    min-height: auto;
    padding: 20px 30px;
  }
}
@media screen and (max-width:576px) {
.support--machine .sec02 .table th,
.support--machine .sec02 .table td{
  font-size: 1.4rem;
}
}

/* 표준안내 -> 시설안내 */

.li-ke-table{
  border-radius: 20px;
  border:1px solid #b3b3b3;
}
.li-ke-table .li-ke-tit{
  background-color: #00A19A;
  padding: 25px 0;
  border-radius: 20px 20px 0 0;
}
.li-ke-table .li-ke-list ul{
  display: flex;
  flex-wrap: wrap;
}
.li-ke-table .li-ke-list ul li{
  width: 20%; padding: 20px;
  border-left: 1px solid #b3b3b3;
}
.li-ke-table .li-ke-list ul li:nth-child(n+6){
  border-top: 1px solid #b3b3b3;
}
.li-ke-table .li-ke-list ul li:nth-child(5n + 1){
  border-left: none;
}
.li-ke-table .li-ke-list .img-box{
  display: flex;
  align-items: center;
  justify-content: center;
}
.li-ke-table .li-ke-list .img-box img{
  display: block;
}

/* 회색 텍스트 박스 */

.gray-area-box{
  border-radius: 20px;
  background-color: #f5f5f5;
  padding: 35px 30px;
}

.gray-area-box.pd-10-20{
  padding: 10px 20px;
}

.gra-dient-flex .gra-dient{
  padding: 5px 20px;
  border-radius: 20px;
  background: linear-gradient(90deg,rgba(0, 47, 135, 1) 0%, rgba(0, 161, 154, 1) 100%);
  display: inline-block;
  margin-right: 10px;
}

.gra-dient-flex .gra-dient.mw-135{
  min-width: 135px;
}

@media all and (max-width:768px){
  .gray-area-box{
    padding: 25px 15px;
  }

  .gra-dient-flex{
    display: flex;
    gap: 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .gra-dient-flex .gra-dient{
    width: fit-content;
    min-width: none;
    margin-right: 0;
  }
}

/* 리스트 스타일 초기화 */
.list-style-none{
  padding-left: 0;
}

.list-style-none > li{
  padding-left: 0;
}
.list-style-none > li:before{
  content: none;
  background: none;
}


/* 리스트 스타일 나뭇잎 */
.list-style-leaf > li{
  padding-left: 27px;
  position: relative;
}
.list-style-leaf > li:before{
  position: absolute;
  left: 0;
  top: 4px;
  width: 17px;
  height: 20px;
  content: '';
  background: url(/asset/img/icon/leaf-icon.png)no-repeat center center /cover;
}

/* 리스트 스타일 동그라미 */
.list-style-circle > li{
  position: relative;
  padding-left: 25px;
}

.list-style-circle > li:before{
  content: '';
  position: absolute;
  left: 8px;
  top: 10px;
  width: 5px;
  height: 5px;
  background-color: #333;
  border-radius: 50%;
  background-image: none;
}

/* 리스트 스타일 대쉬 */
.list-style-dash > li{
  position: relative;
  padding-left: 11px;
}

.list-style-dash > li:before{
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 7px;
  height: 1px;
  background-color: #333;
  background-image: none;
}

/* 리스트 스타일 체크박스 */
.list-style-check > li{
  position: relative;
  padding-left: 25px;
}

.list-style-check > li:before{
  content: '';
  position: absolute;
  left: 4px;
  top: 7px;
  width: 14px;
  height: 14px;
  background: url(/asset/img/icon/icon-check.png)no-repeat center center /cover;
}



/* 아이템 리스트 */
.list--item{
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.list--item.item02 > li{
  width: calc(50% - 14px);
}

.list--item.item03 > li{
  width: calc(33.333% - 18.666px);
}

@media all and (max-width:768px){
  .list--item.item03 > li{
    width: calc(50% - 14px);
  }

  .list--item.mo-flex-wrap > li{
    width: 100%;
  }
  
}


/* 유튜브 영상 iframe */
.i-frame-box{
  max-width: 925px;
  width: 93.75%;
  aspect-ratio: 16/9;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
}

.before-half-bg{
  position: relative;
}

.before-half-bg:before{
  position: absolute;
  content: '';
  bottom: 0;
  width: 100%;
  height: 43%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0,161,154,.2);
}

@media screen and (max-width:1200px) {
  
}
@media screen and (max-width:1024px) {
.li-ke-table .li-ke-list ul li{
  width: 25%;
}

.li-ke-table .li-ke-list ul li:nth-child(n+5){
  border-top: 1px solid #b3b3b3;
}
.li-ke-table .li-ke-list ul li:nth-child(5n + 1){
  border-left: 1px solid #b3b3b3;
}
.li-ke-table .li-ke-list ul li:nth-child(4n + 1){
  border-left: none;
}

  
}
@media screen and (max-width:768px) {
.li-ke-table .li-ke-list ul li{
  width: 50%;
}

.li-ke-table .li-ke-list ul li:nth-child(n+3){
  border-top: 1px solid #b3b3b3;
}
.li-ke-table .li-ke-list ul li:nth-child(4n + 1){
  border-left: 1px solid #b3b3b3;
}

.li-ke-table .li-ke-list ul li:nth-child(2n + 1){
  border-left: none;
}
}
@media screen and (max-width:576px) {

}



@media screen and (max-width:1200px) {
  
}
@media screen and (max-width:1024px) {
  
}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {

}



@media screen and (max-width:1200px) {
  
}
@media screen and (max-width:1024px) {
  
}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {

}



@media screen and (max-width:1200px) {
  
}
@media screen and (max-width:1024px) {
  .mo-ta-ble{overflow-x: auto;}
  .mo-ta-ble table{min-width: 1000px;}
  .mo-ta-ble tbody tr,
  .mo-bo-ard tbody tr{
    position: relative;
  }
  .mo-ta-href:before{
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    left: 0;
    top: 0;
  }

  .mo-bo-ard table.table{
    table-layout: unset;
  }
  .mo-bo-ard table.table .mo-none{
    display: none;
  }
  .mo-bo-ard table.table colgroup col {
        width: auto !important; 
    }
  .mo-bo-ard table.table td.subject{
    width: 100%;
    padding: 10px;
  }
}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {
  .mo-bo-ard table.table th,
  .mo-bo-ard table.table td{
    font-size: 1.4rem;
    height: 35px;
  }
}


/* Animate */
@keyframes contents-on {
  from { opacity: 0; }
  to { opacity: 1; }
}
