body {
	font-family: "Noto Sans", sans-serif;
	font-optical-sizing: auto;
	padding-top: 5rem;
//	background: #f2f2f2;
}

.background {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background: rgb(155,241,255);
	background: linear-gradient(0deg, #83a5c5 0%, #ffffff 100%);
	z-index: -1;
}

.background-intro {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	//background: rgb(155,241,255);
	//background: linear-gradient(45deg, #83a5c530 0%, #ffffff 100%);
	z-index: 0;
}

.highlited-text {
	color: #122344;
	font-weight: 900;
}

.logo {
	margin-left: 1.4em;
	margin-right: 1.3em;
	height: 38px;
}

.icon {
	width: 24px;
	height: 24px;
}

.icon-sm {
	width: 16px;
	height: 16px;
}

.empty-placeholder {
	padding: 1em;
}

.ribbon {
	margin: 0;
	padding: 0;
	background: #10a37f;
	color: white;
	padding: 1em 0;
	position: absolute;
	top: 0;
	right: 0;
	transform: translateX(30%) translateY(0%) rotate(45deg);
	transform-origin: top left;
	z-index: 1000;
	font-size: 90%;
}

.ribbon:before, .ribbon:after {
	content: '';
	position: absolute;
	top: 0;
	margin: 0 -1px; /* tweak */
	width: 200%;
	height: 100%;
	background: #10a37f;
}

.ribbon:before {
	right: 100%;
}

.ribbon:after {
	left: 100%;
}

.container {
}

.selectpicker {
}

.navbar {
	background-color: #122344 !important;
	//border-bottom: 2px solid #83a5c5; //#4dd1ff;
}

.navbar-spacer-right {
	border-right: 1px solid #ffffff30;
	padding-right: 1em;
}

#tasks {
}

.card-shadow {
	box-shadow: 0 4px 6px 1px #00000020;
}

.text-bold {
	font-weight: bold;
}

.text-italic {
	font-style: italic;
}

.text-strikethroug {
	text-decoration: line-through;
}

.starter-template {
	padding: 3rem 1.5rem;
	text-align: center;
}

.modal {
}

.modal__overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.6);
	display: flex;
	justify-content: center;
	align-items: center;
}

.modal__container {
	background-color: #fff;
	padding: 20px 25px;
	max-width: 500px;
	max-height: 100vh;
	border-radius: 8px;
	overflow-y: auto;
	box-sizing: border-box;
	box-shadow: 0 8px 12px 2px #00000070;
}

.modal__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.modal__title {
	margin-top: 0;
	margin-bottom: 0;
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 1.25;
	color: #122344;
	box-sizing: border-box;
}

.modal__close {
	background: transparent;
	border: 0;
}

.modal__header .modal__close:before { content: "\2715"; }

.modal__content {
	margin-top: 1rem;
	margin-bottom: 2rem;
	line-height: 1.5;
	color: rgba(0,0,0,.8);
}

.modal__btn {
	cursor: pointer;
	-webkit-appearance: button;
	text-transform: none;
	overflow: visible;
	margin: 0;
	will-change: transform;
	-moz-osx-font-smoothing: grayscale;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	transition: -webkit-transform .25s ease-out;
	transition: transform .25s ease-out;
	transition: transform .25s ease-out,-webkit-transform .25s ease-out;
}

.modal__btn:focus, .modal__btn:hover {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

.modal__btn-primary {
	background-color: #00449e;
	color: #fff;
}

@keyframes mmfadeIn {
	from { opacity: 0; }
	  to { opacity: 1; }
}

@keyframes mmfadeOut {
	from { opacity: 1; }
	to { opacity: 0; }
}

@keyframes mmslideIn {
	from { transform: translateY(15%); }
	to { transform: translateY(0); }
}

@keyframes mmslideOut {
	from { transform: translateY(0); }
	to { transform: translateY(-10%); }
}

.micromodal-slide {
	display: none;
}

.micromodal-slide.is-open {
	display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
	animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
	animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
	animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
	animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
	will-change: transform;
}

@keyframes float {
	0% {
		transform: translatey(0);
	}
	50% {
		transform: translatey(12px);
	}
	100% {
		transform: translatey(0);
	}
}

.floating-image {
	transform: translatey(0);
	animation: float 5s ease-in-out infinite;
	position: absolute;
	left: calc(50% - 120px);
	bottom: 40px;
}

@keyframes float-shadow {
	0% {
		filter: blur(7px);
		opacity: .4;
	}
	50% {
		filter: blur(4px);
		opacity: 1;
	}
	100% {
		filter: blur(7px);
		opacity: .4;
	}
}

.floating-image-shadow {
	animation: float-shadow 5s ease-in-out infinite;
	position: absolute;
	width: 80px;
	height: 18px;
	left: calc(50% - 40px);
	bottom: 30px;
	border-radius: 80px / 18px;
	background: #00000040;	
}

.text-muted {
	opacity: 0.7;
}

nav .breadcrumb {
	font-size: 110%;
	align-items: center;
	padding: 0.6em 0.6em;
	//background: #d0d0d0 !important;
	background-color: #122344 !important;
}

hr {
	height: 1px;
	background: #909090;
	border: none;
}

.form-label {
	margin-left: .2em;
	font-size: 85%;
}

.text-normal {
	font-weight: normal;
}

a {
	text-decoration: none;
}

.tr-spacer {
//	border: none;
}

table {
	border: none !important;
}

tr {
	border: none !important;
}

td {
	border: none !important;
}

th {
	border: none !important;
}

th:first-child {
	border-radius: .4em 0 0 0;
}

th:last-child {
	border-radius: 0 .4em 0 0;
}

.tr-spacer > td {
	height: 24px;
}

@keyframes color {
	0%   { color: #33CCCC; }
	20%  { color: #33CC36; }
	40%  { color: #B8CC33; }
	60%  { color: #FCCA00; }
	80%  { color: #33CC36; }
	100% { color: #33CCCC; }
}

.color-change-amination {
	animation: color 9s infinite linear;
}


.icon-circle {
	margin-right: 0.6em;
	width: 36px;
	height: 36px;
	background: #00000060;
	padding: 6px;
	border-radius: 10px;
}

.page-footer {
	font-size: 80%;
	background-color: #122344 !important;
	color: white;
	text-align: center;
	padding: 0.8em 1em;
}

@keyframes spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

#rays	{ /* with animation properties */
	background: url(../img/rays.png) 0 0 no-repeat; 
	filter: hue-rotate(110deg) grayscale(.5);
	position: absolute; 
	top: -100px; 
	left: -80px; 
	width: 490px; 
	height: 490px; 
	
	/* microsoft ie */
	animation-name: spin; 
	animation-duration: 40000ms; /* 40 seconds */
	animation-iteration-count: infinite; 
	animation-timing-function: linear;
	z-index: 0;
	opacity: .3;
}

#tasks-active {
	scroll-margin-top: 100px;
}

#tasks-finished {
	scroll-margin-top: 100px;
}

#tasks-cancelled {
	scroll-margin-top: 100px;
}

.logo {
	transition: transform .9s ease-in-out;
}

.logo:hover {
	transform: rotate(360deg);
}

.linear-wipe {
	text-align: center;
	//background: linear-gradient(90deg, rgba(86,249,251,1) 0%, rgba(81,245,81,1) 25%, rgba(255,239,82,1) 50%, rgba(250,87,252,1) 75%, rgba(86,249,251,1) 100%);
	//background: linear-gradient(90deg, rgba(238, 130, 238, 1) 0%, rgba(0, 209, 255, 1) 25%, rgba(0, 255, 83, 1) 50%, rgba(0, 209, 255, 1) 75%, rgba(238, 130, 238, 1) 100%);
	background: linear-gradient(90deg, rgba(238, 130, 238, 1) 0%, rgba(0, 209, 255, 1) 30%, rgba(0, 255, 83, 1) 50%, rgba(0, 209, 255, 1) 70%, rgba(238, 130, 238, 1) 100%);
	background-size: 200% auto;
	color: #000;
	background-clip: text;
	text-fill-color: transparent;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;

	animation: shine 6s linear infinite;
}

@keyframes shine {
	to {
		background-position: 200% center;
	}
}
