/*
 * DESIGN
 */
#alerts {
	position: fixed;
	z-index: 20000;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 500px;
	width: 100%;
}

#alerts > div {
	position: relative;
	opacity: 1;
	box-shadow: 0 6px 6px -6px rgba(0,0,0,0.8);
	-webkit-transition: all .75s ease;
	transition: all .75s ease;
	width: 100%;
}

#alerts > div.go-away {
	opacity: 0;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}

#alerts > div:last-child {
	margin-bottom: 0;
}
/*
#alerts > div > button {
	margin-left: 1rem;
	display: inline-block;
	vertical-align: middle;
	font-size: 1.1rem;
    margin-top: 2px;
    cursor: pointer;
    transition: 0.5s;
}
*/
/*
 * COLOR SCHEME
 */
#alerts .alert-primary .close {
	color: #004085;
}

#alerts .alert-secondary .close {
	color: #464a4e;
}

#alerts .alert-success .close {
	color: #155724;
}

#alerts .alert-error .close {
	color: #721c24;
}

#alerts .alert-warning .close {
	color: #856404;
}

#alerts .alert-info .close {
	color: #0c5460;
}

#alerts .alert-light .close {
	color: #818182;
}

#alerts .alert-dark .close {
	color: #1b1e21;
}
