/* ============================================================
	Responsive Table via Data Label
============================================================ */
h1.head-news {
    margin: 0 0 50px;
    line-height: 3.5rem;
    font-size: 2.5rem;
    color: #0d132c;
}
table {
  border: 0;
  width: 100%;
  margin: 30px 0 0 0;
  padding: 0;
  border-bottom-width:1px;
  border-collapse: collapse;
  border-spacing: 0;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
}
table thead {
  background: #F0F0F0;
  /* height: 30px ; */
}
table thead tr th:first-child, table thead tr th:last-child {
  text-align:center;
}
table thead tr th {
  text-transform: uppercase;
  line-height: 30px ;
  text-align: left;
  font-size: 18px;
  padding-top: 0px ;
  padding-bottom: 0px ;
  background-color: #0a1b39 !important;
  color: #fff;
}
.table>:not(:last-child)>:last-child>* {
    border-bottom-color: rgb(222 226 230);
}
table tbody {
  background: #fff;
}
table tbody tr {
  border-top: 1px solid #e5e5e5;
  /* height: 60px; */
}
table tbody tr:hover{
    background-color: #e5e5e5;
}
table tbody tr td:first-child {
  /* padding-left: 45px; */
}

table tbody tr td, .table>:not(caption)>*>* {
    /* height: 60px; */
    text-align: left;
    font-size: 16px;
    line-height: 24px;
    padding: 20px 10px 20px;
}
table tbody tr td a , table tbody tr td a:visited{
    color: #0d132c;
}
table tbody tr td a:hover{
    color: #000000;
    text-decoration: underline;
}
table tbody tr td a.btn-announce {
    color: #0d132c;
    background: #ffee00;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;

    position: relative;
    background-color: #0078d0;
    border: 0;
    border-radius: 56px;
    color: #fff;
}
table tbody tr td a.btn-announce:before {
    background-color: initial;
    background-image: linear-gradient(#fff 0, rgba(255, 255, 255, 0) 100%);
    border-radius: 125px;
    content: "";
    height: 50%;
    left: 4%;
    opacity: .5;
    position: absolute;
    top: 0;
    transition: all .3s;
    width: 92%;
}
table tbody tr td a.btn-announce:hover{
    background-color: #82641d;
    text-decoration: none;
}
table tbody tr td i {
  margin-right: 8px;
}
table tbody tr td:first-child {
  width: 15%;
  font-size:14px;
  text-align: center;
}
table tbody tr td:nth-child(2) {
    width: 45%;
    font-size: 20px;
    font-weight: 500;
}
table tbody tr td:nth-child(3) {
  width: 20%;
}
table tbody tr td:last-child {
  width: 20%;
  text-align: left;
}
table tbody tr th.th-month{
    font-size: 18px;
    font-weight: 500;
    background-color: rgb(172 193 223 / 20%);
    padding: 10px 10px 10px;
    padding-left: 50px;
    color: #0a1b39;
}
table tbody tr th.th-month i{
    font-size: 14px;
    margin-right: 10px;
}




@media screen and (max-width: 991px) {
  table {
    border: 1px solid transparent;
    box-shadow: none;
  }
  table thead {
    display: none;
  }
  table tbody tr {
    border-bottom: 0 solid #dee2e6;
  }
  table tbody tr td:first-child {
    padding-left: 10px;
  }
  table tbody tr td:before {
    content: attr(data-label);
    float: left;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    margin-right: 10px;
  }
  table tbody tr td:nth-child(2){
    line-height: 34px;
  }
  table tbody tr td:nth-child(2):before{
    text-decoration: underline;
    
    color: #0d6efd;
    font-size: 20px;
    font-weight: 600;
  }
  table tbody tr td:first-child {
    background: #f8f9fa;
    }
  table tbody tr td {
    display: block;
    text-align: right;
    padding: 10px 10px ;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  }
  table tbody tr td:first-child ,table tbody tr td:nth-child(2),table tbody tr td:nth-child(3),table tbody tr td:last-child {
    width: 100%;
    padding: 20px 20px 15px;
    min-height:60px;
  }
  table tbody tr td:first-child, table tbody tr td:last-child{
    text-align: left;
  }
  table tbody tr th.th-month{
        width: 100%;
        padding: 20px 20px 15px;
  }
}