body {
	font-family: 'Ubuntu', sans-serif;
	font-size: 16px;
	overflow-y: scroll;
	background-color: #f2f2f2;
}

.no-margin {
	margin-bottom: 0;
}

.ninja {
	color: inherit;
}

.no-break {
	white-space: nowrap;
}

.fullscreen {
	min-height: 100vh;
}

.spinner, .spinner:before, .spinner:after {
	background: #333;
	width: .5rem;
	height: 2rem;
	box-shadow: 0rem 0rem 0rem #333, 0rem 0rem 0rem #333;
	animation: spinner 1s infinite ease-in-out;
}

.spinner {
	display: inline-block;
	margin: 1rem;
	position: relative;
	animation-delay: .1s;
}

.spinner:before, .spinner:after {
	content: '';
	position: absolute;
	top: 0;
}

.spinner:before {
	left: -1rem;
}

.spinner:after {
	left: 1rem;
	animation-delay: .2s;
}

#site-menu {
	background-color: #222;
	color: #fff;
}

#site-menu  li > a {
	background-color: #222;
	color: #fff;
	border-left: .25rem solid transparent;
	padding-left: .75rem;
}

#site-menu li.is-active > a {
	border-left-color: #00a9c2;
}

#site-menu li.is-active > a > .fa {
	color: #00a9c2;
}

#site-menu li > a:hover {
	border-left-color: #fff;
}

#site-menu ul.nested {
	margin-left: 0;
}

#site-menu ul.nested > li > a {
	padding-left: 1.75rem;
}

.page-header {
	background-color: #e6e6e6;
	margin-bottom: 1rem;
}

@keyframes spinner {
	0%, 80%, 100% {
		box-shadow: 0rem 0rem 0rem #333, 0rem 0rem 0rem #333;
	}
	40% {
		box-shadow: 0rem .5rem 0rem #333, 0rem -.5rem 0rem #333;
	}
}

table.hover tr:hover td.data-action {
	background-color: #2ba6cb;
}

.table-scroll table {
	min-width: 100%;
}

.label.success.light, .button.success.light {
	background-color: #9be68a;
}
