.table-header,
.table-content {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;
}

.table-header>p {
  margin-top: 10px;
  margin-bottom: 10px;

}

.table-content:hover {
  background-color: #edf6f7;
  cursor: pointer;
  transition: all 0.5s;
}

.divOrderCard:hover {
  background-color: #edf6f7;
  cursor: pointer;
  transition: all 0.5s;
}

.table-content>p {
  font-size: 14px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.table-content>a {
  text-decoration: underline;
  color: #016BBA;
}

.btnTable {
  font-size: 12px !important;
}

.article-container .article-container-header {
  border-bottom: unset;
  position: relative;
  margin-bottom: 25px;
}

.article-container-header:before {
  content: '';
  background: #00A057;
  display: inline-block;
  height: 3px;
  width: 50px;
  position: absolute;
  bottom: -5px;
}

@media screen and (max-width: 1200px) {
  /*for iPad Pro*/
}

@media only screen and (max-width: 768px) {

  .article-container {
    padding: 30px 20px;
  }

  .table-header {
    display: none;
  }

  .table-content {
    flex-wrap: wrap;
  }

  .table-content>p {
    line-height: 1;
    padding: 2px;
  }
}