/* 
Don't want to use sass and simply modify the stylesheet in the old css fashion? 
Just customize your theme here.
================================================== */

body {}

.tops_tablelist {
	padding-left: 30px;
}

.tops_scrollable_table .tops_table_holder {
	max-height: 300px;
	overflow-y: auto;
}

.tops_expandable_table .tops_table_holder {
	-webkit-transition: transform 0.3s ease, opacity 0.3s ease;
	-moz-transition: transform 0.3s ease, opacity 0.3s ease;
	-ms-transition: transform 0.3s ease, opacity 0.3s ease;
	-o-transition: transform 0.3s ease, opacity 0.3s ease;
	transition: transform 0.3s ease, opacity 0.3s ease;
	position: relative;
	visibility: hidden;
	opacity: 0;
	transform: translateY(-50px);
	overflow-y: hidden;
	z-index: 1;
	height: 0;
}

.tops_expandable_table.show .tops_table_holder {
	visibility: visible !important;
	opacity: 1 !important;
	transform: translateY(0) !important;
	height: auto !important;
}

.tops_expandable_table .tops_expandable_opt {
	display: flex;
	position: relative;
	width: 100%;
	flex-flow: row wrap;
	padding: 13px;
	font-size: 16px;
	line-height: 1.55em;
	background: #3d61fd;
	border-radius: 0px;
	border: none;
	color: #FFF;
    font-family: "PT Sans", sans-serif;
	box-sizing: border-box;
	text-align: left;
	z-index: 2;
	cursor: pointer;
	opacity: 1.0;
}

.tops_expandable_table .tops_expandable_opt:hover, .tops_expandable_table .tops_expandable_opt:active {
	opacity: 0.8;
}

.tops_expandable_table .tops_expandable_opt span:first-of-type {
	display: block;
	font-family: "PT Sans", sans-serif;
	font-size: 16px;
	line-height: 1.55em;
	width: calc(100% - 20px);
	text-align: left;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	padding-right: 12px;
	font-weight: 600;
}

.tops_expandable_table .tops_expandable_opt span:last-of-type {
	display: block;
	width: 20px;
	text-align: right;
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

.tops_expandable_table .tops_expandable_opt span:last-of-type img {
	display: inline-block;
	width: 25px;
	height: auto;
}

.article-post table {
	display: table;
	table-layout: fixed;
    width: 100%;
	min-width: 480px;
}

.article-post table th, .article-post table td {
	padding: 10px 5px;
	font-size: 15px;
    line-height: 1.45em;
	border: 1px solid #CCC;
	word-wrap: break-word;
}

.article-post table tr:nth-child(2n) {
	background-color: #EEE;
}

.tops_table .tops_table_holder {
	display: block;
	width: 100%;
	overflow-x: auto;
	margin-bottom: 16px;
}

.tops_table .tops_table_filters div {
	display: inline-block;
	width: auto;
	height: auto;
	padding:0;
	margin-right: 5px;
}

.tops_table .tops_table_filters select {
	display: inline-block;
	padding: 10px 5px;
	border-radius: 5px;
	border: 1px solid #CCC;
	background-color: #F1F1F1;
}