/** ANIMATIONS */
#module-fleet .container-bottom  {
	transition: transform 0.5s ease;
	transform: translateY(0px);
}
#module-fleet .container-bottom.ng-hide {
	transform: translateY(300px);
}

/** CSS */
#module-fleet .container-bottom {
	position: absolute;
	bottom: 0;
	right: 0;
	height: 180px;
	background: #fff;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
	z-index: 999;
}

#module-fleet .container-bottom .label {
	color: black;
}
#module-fleet .container-bottom .tabs{
	list-style:none;
	margin:0;
	padding:0;
	background: rgb(255,255,255); /* Old browsers */
	background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(243,243,243,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(243,243,243,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(243,243,243,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f3f3f3',GradientType=0 ); /* IE6-9 */
}

#module-fleet .container-bottom .tabs:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

#module-fleet .container-bottom .tabs li{
	float:left;
	list-style:none;
	margin:0;
	padding:0;
	cursor:pointer;
}
#module-fleet .container-bottom .tabs li span{
	display:block;
	line-height:40px;
	padding:0 20px;
	padding-right:30px;
	position:relative;
}
#module-fleet .container-bottom .tabs li sup{
	position:absolute;
	top:-5px;
	left:100%;
	margin-left:-30px;
	border-radius:50%;
	background:#fff;
	display:block;
	line-height:22px;
	min-width:22px;
	height:22px;
	text-align:center;
	box-shadow:0px 0px 2px rgba(0,0,0,0.2);
	font-weight:600;
	font-size:11px;
	padding:0 4px;
}
#module-fleet .container-bottom .tabs li.tab-console sup{
	color: #ff023b;
}
#module-fleet .container-bottom .tabs li.active span{
	background:#fff;
	font-weight:600;
}
#module-fleet .container-bottom .tab-container{
	overflow:auto;
	height: 100%;
	position: relative;
}
