input[name="css-tabs"]
{
	display:none;
}

#tabs 
{
	display:inline-block;
	background:#fff;
	border-radius:10px;
	margin-top:25px;
}

#tabs::after 
{
	content: "";
	display: block;
	position: absolute;
	z-index: 0;
	height: 50px;
	width: 220px;
	background: #FF4D4D;
	box-shadow: 0px 0px 5px #FF7272;
	border-radius: 10px;
	transition: transform 400ms;
}

#tabs label 
{
	margin:0px!important;
	position: relative;
	z-index: 100;
	display: inline-flex;
	align-items: center;
	float: left;
  	font-size: 14px;
  	font-weight: bold;
  	color: #FF7272;
	text-align: center;
	justify-content: center;
	width: 220px;
	cursor: pointer;
	border-radius: 10px;
	height:50px;
	margin-bottom:0px;
}


#radio1:checked ~ #tabs #tab1, #radio2:checked ~ #tabs #tab2
{
	color:#fff;
}

#radio1:checked ~ #tabs::after
{
	transform: translateX(0);
	border-top-right-radius: 0px;
	border-bottom-right-radius: 0px;
}

#radio2:checked ~ #tabs::after
{
	transform: translateX(220px);
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
}

#content 
{
	position: relative;
}

#content section {

	transform: translateY(50px);
	height:0px;
	opacity: 0;
	transition: transform 500ms, opacity 500ms;
	overflow: hidden;
}

#radio1:checked ~ #content #content1, #radio2:checked ~ #content #content2
{
	height:auto;
	transform: translateY(0);
	opacity: 1;
	display:block;
}

.table td span
{
	vertical-align: middle!important;
	margin-top:-3px;
	margin-right:7px;
}

.table thead th, .table tbody td
{
	color: #9CABDD;
	font-weight: normal;
	font-size: 14px;
	line-height: 17px;
	vertical-align: middle;
}

.table tbody td
{
	color:#fff;
	border:0px;
	height:53px;
}

.table tbody>tr:nth-child(EVEN) td
{
	background: #343c60;
}

.table tbody>tr:nth-child(EVEN)>td:first-child
{
	border-bottom-left-radius: 5px;
	border-top-left-radius: 5px;
}

.table tbody>tr:nth-child(EVEN)>td:last-child
{
	border-bottom-right-radius: 5px;
	border-top-right-radius: 5px;
}

.table tbody>tr>td img
{
	margin-right:8px;
}

.table thead th
{
	border-top:0px;
	border-bottom:1px solid #414E7B;
}