/* ------------------------------ */
/* BASIC STYLE                    */
/* ------------------------------ */
BODY{
	background-color:#f5f5f5;
}
H1{
	color:#000;
	font-size: 220%;
	font-weight:200;
}
H2{
	/*color:#9b9996;*/
	font-size: 200%;
	font-weight: 200;
	margin-bottom: 5px;
}
H3{
	color:darkgrey;
	font-size: 140%;
	font-weight: 200;
	margin-bottom: 10px;
	color: darkviolet;
}
A{
	color: #f34665;
	text-decoration: none;
}
A:hover{
	color: maroon;
	text-decoration: underline;
}


.page-subtitle{
	font-weight: 400;
	font-size:140%;
}
.page-subtitle::before{
	background-color:gold;
	width:20px;
	height:20px;
	margin-right: 30px;
}

.lead{
	color:gray;
	font-weight:200;
}
.alert{
	background-color:tomato;
	text-align:center;
	color:#FFF;
}

/* ------------------------------ */
/* Customization of Cohort table  */
/* ------------------------------ */

.cohort-table{
	padding:3px;
}
.cohort-table TR{
}
.cohort-table TH{
	padding: 5px;
	text-align: right;
	padding-right: 20px;
	font-weight:200;
	color: grey;
	font-size:100%;
}
.cohort-table TD{
	padding: 5px;
	padding-right: 20px;
}
.cohort-table TD.label{
	vertical-align: bottom;
	font-weight: 200;
	color: grey;
	width: 100px;
}

.cohort-table TD.value{
	vertical-align: bottom;
	font-weight: 300;
	color: steelblue;
	text-align:right;
	background-color: whitesmoke;
	border-bottom:2px solid white;
	border-right:2px solid white;
}

/* ------------------------------ */
/* PRELOADER                      */
/* ------------------------------ */

._dash-loading{
	color:#0D0D0D;
	font-weight:bold;
	margin-top:250px;
	text-align:center;
}
._dash-loading::before, ._dash-loading-callback::before {
    z-index: 2000;
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: rgba(255,255,255,0);
}
._dash-loading::after, ._dash-loading-callback::after {
		background-color:rgba(255, 255, 255, 0.5);
		box-sizing: border-box;
		z-index: 2001;
		position:fixed;
		width: 100%;
		height: 100%;
		position: absolute;
		top:0;
		left:0;
		color: #000;
		font-size:20px;
		text-align: center;
		content: "";
		animation: spin 2s ease, loadingtext 1s linear;
		animation-iteration-count: infinite;
		animation-fill-mode: forwards;
		background-image: url('/assets/preloader0.gif');
		background-size: 150px auto;
		background-repeat: no-repeat;
		background-position: center;
}
