body {
	background-color: #eef;
}

.nav-link {
	display: block;
	padding: 0;
	padding-top: 2px;
}

.nav-item a {
	color: #555;
	font-weight: 600;
}

.router-link-exact-active {
	color: #e91e63;
}

.nav-link.active {
	border: none
}

.fixed-top .navbar-text {
	font-size: 1.2em;
}

.page-item.active .page-link {
	color: #fff;
	background-color: #e91e63;
	border-color: #e91e63;
}

.page-header .navbar {
	white-space: nowrap;
}

#pageLoader {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 9999999;
	background-color: #ffffff8c;
}

#loading-img {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.rotate {
	animation: rotation 1s infinite linear;
}

@keyframes rotation {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(359deg);
	}
}

.blink_me {
	animation: blinker 3s linear infinite;
}

@keyframes blinker {
	50% {
		opacity: 0;
	}
}

#debuglabel {
	position: fixed;
	top: 10;
	right: 0;
	background-color: #c93f57;
	font-size: 2em;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	transform: rotate(90deg);
	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
	color: white;
	width: 150px;
	text-align: center;
	opacity: 0.5;
	z-index: 9999;
}

.table-nowrap {
	white-space: nowrap;
}