/* GROWTH ------------------------------- */
#cell-growth-result-wrapper{
	position: relative;
	margin: 2em 0 0 0;
	}
#cell-growth-result-wrapper img{
	width: 100%;
	}	
#cell-growth-result-wrapper svg{
	top: 0;
	left: 0;
	position: absolute;
	}		
#growth-cell{
	fill: #ffaa35;
	stroke-width: 2px;
	stroke: #ff8103;
	}		

#growth-nucleus{
	fill: #ffaa35;
	stroke: #e24b00;
	stroke-width: 2px;
	fill: #ffb2ce;
	}

/* MUTATION ---------------------------- */

/* thumbnails */
#mutation-wrapper .thumb-wrapper{
	display: grid;
	grid-gap: .75em;
    grid-template-columns: repeat(3, 1fr);
    margin: 1em auto .75em auto;
	}
#mutation-wrapper .thumb-wrapper > div > div{
	cursor: pointer;
	text-align: center;
	color: #aaa;
	outline: 3px solid #ccc;
	padding: .5em 0 .25em 0;
	border-radius: .5em;
	filter: saturate(0) opacity(.75);
	display: grid;
	}	
#mutation-wrapper .thumb-wrapper > div > div * {
	pointer-events: none;
	}	
#mutation-wrapper .thumb-wrapper img{
	padding: 0 0 .5em 0;
	width: 100%;
	display: block;
	}	
#mutation-wrapper .thumb-wrapper div:hover{	
	outline-color: #999;
	}
#mutation-wrapper .thumb-wrapper div.active{
	outline-color: var(--active);
	color: var(--active);
	filter: saturate(1) opacity(1);
	}	

/* MUTATION, CANCER ---------------------------- */
/* results */ 
#mutation-wrapper .mutation-result, #cancer-result-wrapper{
	margin: 0 auto;
	padding: 1em 0 .5em 0;
	}
#mutation-wrapper .img-wrapper, #cancer-wrapper .img-wrapper{
	position: relative;
	}
#mutation-wrapper .img-wrapper img, #cancer-wrapper .img-wrapper img{
	width: 100%;
	}	
#mutation-wrapper .nc-ratio, #cancer-wrapper .nc-ratio {
	top: .5em;
	left: .5em;
 	position: absolute;
	padding: .75em 1em;
	border-radius: .5em;
	background-color: var(--highlight-yellow);
	color: #ad6600;
	text-align: center;
	font-weight: bold;
	}	

#mutation-wrapper .title, #cancer-result-wrapper .title{
	font-weight: bold;
	}

#cancer .slider-control-wrapper	{
	padding-bottom: 1em;
	}

/* LOADER ------------------------------------------ */
#loader-wrapper{
	margin: 3rem 0 5rem 0;
	text-align: center;
	}
#loader-wrapper .loading-text{
	font-size: 1.5rem;
	margin-top: 1rem;
	}	
.loader {
	border: 26px solid #efefef; /* Light grey */
	border-top: 26px solid var(--asu-maroon); /* Blue */
	border-radius: 50%;
	width: 120px;
	height: 120px;
	display: block;
	animation: spin 2s linear infinite;
	margin: 0 auto;
	}
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
	}	
