/* Layout table */

.framework_table {
	width: 100%;
	border: 0;
	padding: 0;
	box-shadow: none;
}

.framework_td {
	border: 0;
	padding: 0;
}

/* Tables */

table.cute_table {
	border: solid 1px #ccc;
	font-size: 13px;
	color: #333;
	box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
}

table.cute_table td {
	border: 0;
    padding: 3px 6px 3px 6px;
	vertical-align: top;
}

table.cute_table thead {
	color: #fff;
	background-color: #27ae60;
	line-height: 30px;
	text-align: center;
	vertical-align: middle;
}

table.cute_table tfoot {
	background-color: #ddd;
}

table.cute_table tbody tr:nth-child(2n)
{
	background-color: #f6f6f6;
}

table.cute_table tbody tr:nth-child(2n-1)
{
	background-color: #e9e9e9;
}

table.cute_table .major_left, table.cute_table .major
{
	border-left: solid 1px #ccc;
}

table.cute_table .major_right
{
	border-right: solid 1px #ccc;
}

/* Table Borders */

table.cute_table {
	border-radius: 6px;
}

table.cute_table thead tr:first-child td:first-child {
	border-top-left-radius: 5px;
}

table.cute_table thead tr:first-child td:last-child {
	border-top-right-radius: 5px;
}

table.cute_table tfoot tr:last-child td:first-child {
	border-bottom-left-radius: 5px;
}

table.cute_table tfoot tr:last-child td:last-child {
	border-bottom-right-radius: 5px;
}

table.cute_table tbody:first-child tr:last-child td:first-child {
    border-top-left-radius: 5px;
}

table.cute_table tbody:first-child tr:last-child td:last-child {
    border-top-right-radius: 5px;
}

table.cute_table tbody:last-child tr:last-child td:first-child {
    border-bottom-left-radius: 5px;
}

table.cute_table tbody:last-child tr:last-child td:last-child {
    border-bottom-right-radius: 5px;
}

/**/

.list_item {
	border: solid #aaa 1px;
	border-radius: 4px;
	font-size: 12px;
	margin-top: 4px;
	margin-bottom: 4px;
	margin-left: 8px;
	margin-right: 8px;
}

.flex_wrap {
	display: flex;
    justify-content: space-between;
}

/**/

.version_item{
	color: #aaa;
	width: 100px;
	position: relative;
	line-height: 25px;
	font-size: 12px;
}

.version_item:after{
	position: absolute;
	top: 2px;
	right: 0;
	
	content: attr(count);
	background-color: #aaa;
	color: #eee;
	padding-right: 5px;
	padding-left: 5px;
	border-radius: 50px;
	box-sizing: border-box;
	text-align: center;
	
	line-height: 21px;
	min-width: 21px;
}

.version_all:after{
	background-color: #848484;
}

/**/
