* {
	box-sizing: border-box;
}
html {
	font-size: 62.5%;
}
body {
	margin: 0;
	padding: 30px;
	font-family: Heebo, Helvetica, Arial, sans-serif;
	font-size: 1.8rem;
	font-weight: 300;
	line-height: 160%;
}
h1, h2, h3 {
	font-weight: 400;
}
h1 {
	font-size: 6rem;
	line-height: 120%;
}
h2, .h2 {
	font-size: 3rem;
	line-height: 120%;
}
h3, .h3 {
	font-size: 2.4rem;
	line-height: 120%;
}
p {
	margin: 20px 0;
}
strong {
	font-weight: 400;
}
header {
	display: block;
	width: 100%;
}
.intro {
	margin-bottom: 40px;
}
/* Alert ------------------------- */
/*.alerts {
	width: 100%;
	max-width: 800px;
}*/
/* Create Alerts ------------------------- */
.create-alert {
	margin-top: 40px;
	max-width: 600px;
}
.create-alert p {
	margin: 20px 0;
}
.create-alert p > span {
	width: 100%;
	display: inline-block;
	font-size: 1.6rem;
	line-height: 100%;
	font-style: italic;
	color: darkred;
}
.create-alert .btn-base.btn-action {
	background-color: #EAEAEA;
}
.create-alert .btn-action:hover {
	background-color: lightblue;
}
.create-alert .btn-action:active {
	background-color: slategrey;
	color: white;
}
/* Alert Box ------------------------- */
.alert {
	margin-bottom: 20px;
	padding: 20px;
	background-color: #EAEAEA;
	border-left: 3px solid #999;
	transition: background-color 1s, border-left-color 1s;
}
.alert.success {
	background-color: #cce6cc;
	border-color: green;
}
.alert.error {
	background-color: #e8cccc;
	border-color: darkred;
}
/* Status Icon ------------------------- */
.status-icon {
	display: flex;
	align-items: center;
}
.status-icon svg {
	width: 50px;
	height: auto;
	margin-right: 10px;
}
.status-icon #outline {
	fill: #999;
}
.status-icon #exclamation > * {
	fill: darkred;
}
.status-icon #tick {
	fill: green;
}
.status-icon #tick,
.status-icon #exclamation > * {
	opacity: 0.0;
	transition: opacity 1s;
}
.alert.success .status-icon {
	color: green;
}
.alert.error .status-icon {
	color: darkred;
}
.alert.success .status-icon #tick,
.alert.error .status-icon #exclamation > * {
	opacity: 1;
}
.alert.success .status-icon #outline {
	fill: green;
}
.alert.error .status-icon #outline {
	fill: darkred;
}
.alert.error .status-icon svg {
	animation-name: flashing;
	animation-duration: 1s;
	animation-iteration-count: infinite;
}
@keyframes flashing {
	0% { opacity: 1; }
	50% { opacity: 0; }
	100% { opacity: 100%; }
}
/* Status Info ------------------------- */
.status-info {
	margin-top: 10px;
	font-size: 1.5rem;
	line-height: 160%;
	flex-grow: 2;
}
.status-info h2 {
	margin: 0 0 10px 0;
}
.status-info p {
	margin: 0;
}
.status-info > *:last-child {
	margin-bottom: 0;
}
.title-label {
	font-size: 1.2rem;
	line-height: 100%;
	text-transform: uppercase;
}
/* Status Actions ------------------------- */
.status-actions {
	margin-top: 10px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.btn-icon {
	font-size: 1.2em;
	margin-right: 6px;
}
.status-actions .btn-action:hover,
.status-actions .btn-action:active {
	background-color: rgba(255,255,255,0.8);
}
.btn-base.btn-action {
	padding: 10px;
	border: 0;
	font-size: 1.5rem;
	line-height: 100%;
	background-color: rgba(255,255,255,0.3);
	text-align: left;
	display: inline-flex;
	align-items: center;
	cursor: pointer;
}
/* General Styles ------------------------- */
* > *:first-child {
	margin-top: 0;
}
.btn-base {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 1px solid #999;
	border-radius: 6px;
	/*box-shadow: 2px 2px 2px #999999;*/
	font-family: Heebo, Helvetica, Arial, sans-serif;
	font-size: 1.8rem;
	line-height: 120%;
}
input {
	width: 100%;
	max-width: 400px;
	margin: 0;
	padding: 5px 0;
	border: 0;
	border-radius: 0;
	border-bottom: 1px solid #999999;
	font-size: 1.8rem;
}
input:focus {
	background-color: #EAEAEA;
}
footer {
	display: block;
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px dotted #999;
	font-size: 1.4rem;
	line-height: 100%;
}
@media screen and (min-width:800px) {
	section {
		display: flex;
	}
	section > * {
		width: 50%;
	}
	.intro {
		margin-right: 40px;
	}
	.create-alert {
		position: sticky;
		top: 30px;
	}
}
@media screen and (min-width:1024px) {
	.intro {
		max-width: 400px;
	}
	.alerts {
		max-width: 800px;
		flex-grow: 2;
	}
	.alert {
		display: flex;
	}
	.status-icon {
		margin-right: 20px;
		width: 50px;
		text-align: center;
		display: block;
	}
	.status-info {
		margin-top: 0;
	}
	.status-actions {
		margin: 0 0 0 10px;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	.btn-base.btn-action {
		background-color: transparent;
	}
}