.odoFilteredCount {
	width: 60px;
	text-align: center;
}

#odoSearchTemplate {
    width: 514px;
}

#filterInfo {
	padding-top: 5px;
}

#odoFilteredCountReset {
	border: 1px solid #ffc107;
	color: #000;
}

#odoFilteredCountReset:hover {
	border: 1px solid #ffffff;
	color: #5d5d5d;
}

#odoAdditionalTemplate {
	font-size: 12px;
}

.hidden{
	display:none;
}

.disabled {
	color: #ccc !important;
}

.nav-link {
	cursor: pointer;
}

.nav-link .disabled {
	cursor: not-allowed;
}

.statusBox {
	line-height: 1.9;
	display: block;
	vertical-align: middle;
	height: 100%;
	padding-left: 7px;
	padding-right: 7px;
	font-weight: bold;
}

.list-group,
.list-group-item,
.list-group-item-action {
	border-radius: 0px;
	border-right: 0px;
	border-left: 0px;	
}

.color-warning {
	color: #e86d06;
}

.color-danger {
	color: #dc3545;
}

@keyframes showNav {
	from {opacity: 0;}
	to {opacity: 1;}
}
#odoOverlay {
	position: fixed;
	display: none;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.5);
	z-index: 2;
	cursor: pointer;
	-webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
	animation: showNav 500ms ease-in-out both;
}