html {
	position: relative;
	min-height: 100% ;
}
body {
	margin-bottom: 30px;
}

/* Main window alignment */
main > .container-fluid {
	padding: 5px 15px 0;
}

.message-error {
	color: #850000
}

.message-ok {
	color: #009e47
}

.username {
	color: #009e47;
	padding: 10px;
	font-size: small;
}

.icon-live {
	color: red;
}

code {
	font-size: 80%;
}

.node-treeview-attribs {
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.btn-radio.focus {
	outline: none !important;
	box-shadow: none !important;
}

/* Table pagination */
.page-pre {
	padding: 2px 10px 2px 0px;
}
.page-next {
	padding: 2px 0px 2px 10px;
}
.page-first {
	padding: 2px 10px 2px 10px;
}
.page-number {
	padding: 2px 10px 2px 10px;
}
.page-last {
	padding: 2px 10px 2px 10px;
}
.page-number.active {
	border-radius: 5px;
	background: lightblue;
}


/* Partner table */
.row-disabled {
	color: #a0a0a0
}

.row-enabled {
	color: #000000
}

/* Loader animation */
#dimScreen {
    position: fixed;
    padding: 0;
    margin: 0;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
		background: rgba(255,255,255,0.6);
		z-index: 10000;
}

.loader {
	left: 50%;
	margin-left: -4em;
	font-size: 10px;
	border: .8em solid rgba(218, 219, 223, 1);
	border-left: .8em solid rgba(58, 166, 165, 1);
	animation: spin 1.1s infinite linear;
}

.loader, .loader:after {
	border-radius: 50%;
	width: 8em;
	height: 8em;
	display: block;
	position: absolute;
	top: 50%;
	margin-top: -4.05em;
}

@keyframes spin {
0% {
	transform: rotate(360deg);
}
100% {
	transform: rotate(0deg);
}
}