
.table {
  width: 100%;
  border-collapse: collapse;
}

.table td,
.table th {
  padding: 12px 15px;
  border: 1px solid #ddd;
  text-align: center;
  font-size: 16px;
}

.table th {
    background-color: var(--color-secondary);
    color: var(--color-primary);
}

.table tbody tr:nth-child(even) {
  background-color: #e3e3e3;
}
.table tbody tr:nth-child(odd) {
  background-color: #ffffff;
}
/*responsive*/

@media (max-width: 500px) {
  .table thead {
    display: none;
  }
  .table,
  .table tbody,
  .table tr,
  .table td {
    display: block;
    width: 100%;
  }
  .table tr {
    margin-bottom: 15px;
  }
  .table td {
    padding-left: 50%;
    text-align: center;
    position: relative;
    
  }
  .table td::before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    width: 50%;
    padding-left: 15px;
    font-size: 15px;
    font-weight: bold;
    text-align: left;
  }
}
.profile-image img {
    width: 100%;
}
.table tbody tr td.profile_width_1{
	width: 60px;
    padding: 0;
}
.table tbody tr td.profile_width_2 {
    width: 87px;
    padding: 0;
}
.table tbody tr td.profile_width_3 {
    width: 95px;
    padding: 0;
}
.table tbody tr td:nth-child(2) {
    vertical-align: middle;
}
.table tbody tr td:nth-child(3) {
    vertical-align: middle;
}
.table tbody tr td:nth-child(4) {
    vertical-align: middle;
}
.table tbody tr td:nth-child(4) p span a{
    color:#787878 ;
}

.list-wrapper {
	padding: 15px;
	overflow: hidden;
}

.list-item {
	border: 1px solid #EEE;
	background: #FFF;
	margin-bottom: 10px;
	padding: 10px;
	box-shadow: 0px 0px 10px 0px #EEE;
}

.list-item h4 {
	color: #FF7182;
	font-size: 18px;
	margin: 0 0 5px;	
}

.list-item p {
	margin: 0;
}

.simple-pagination ul {
	margin: 0 0 20px;
	padding: 0;
	list-style: none;
	text-align: center;
}

.simple-pagination li {
	display: inline-block;
	margin-right: 5px;
}

.simple-pagination li a,
.simple-pagination li span {
	color: #666;
	padding: 5px 10px;
	text-decoration: none;
	border: 1px solid #EEE;
	background-color: #FFF;
	box-shadow: 0px 0px 10px 0px #EEE;
}

.simple-pagination .current {
	color: #FFF;
	background-color: #FF7182;
	border-color: #FF7182;
}
.simple-pagination .prev.current,
.simple-pagination .next.current {
	background: #e04e60;
}
.table td p {
    max-width: 220px;
    height: 23px !important;
    overflow: hidden;
    margin: 0 auto;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.simple-pagination .current {
    color: var(--navbar-main-menu);
    background-color: var(--color-primary);
    border-color: var(--color-primary-darker);
}
.simple-pagination .prev.current, .simple-pagination .next.current {
    background: var(--color-primary-darker);
    color: var(--navbar-bg-color);
}
.profile-image img {
    padding: 5px !important;
}
.table tbody tr td p span a{
    color: #636363 !important;
}
.tutorial-staff .article-body table tr + tr td:nth-child(3){
    background: none !important;
}