.status {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: fixed;
	width: 100%;
	height: 100vh;
	background-color: #000000b8;
	z-index: 156;
	opacity: 0;
	padding: 20px;
	pointer-events: none;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease
}

.status.show {
	opacity: 1;
	pointer-events: all
}

.status .spin {
	position: relative;
	width: 5rem;
	height: 5rem;
	vertical-align: text-bottom;
	border: .5em solid #00a5e7;
	border-right-color: transparent;
	border-radius: 50%;
	z-index: 152;
	-webkit-animation: spin .75s linear infinite;
	animation: spin .75s linear infinite
}

.status .spin.hide {
	opacity: 0;
	top: 0;
	display: none;
	-webkit-animation: spin-hide .2s linear;
	animation: spin-hide .2s linear
}

.status hgroup h1 {
	position: relative
}

.status hgroup h1::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -5px;
	height: 3px;
	width: 40px
}

.status .status-error hgroup h1::after {
	background-color: #ed591f
}

.status .status-success hgroup h1::after {
	background-color: #36e243
}

.status .status-error,
.status .status-success {
	opacity: 0;
	pointer-events: none;
	display: none;
	position: relative;
	background-color: #fff;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 0 3px #ccc;
	margin: 1rem;
	width: 100%;
	max-width: 425px
}

.status .status-error header,
.status .status-success header {
	margin-bottom: 2rem
}

.status .status-error.show,
.status .status-success.show {
	opacity: 1;
	pointer-events: all;
	display: block;
	-webkit-animation: show .2s linear;
	animation: show .2s linear
}

@keyframes spin {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

@keyframes spin-hide {
	0% {
		opacity: 1
	}
	50% {
		opacity: .5
	}
	100% {
		top: -25%;
		opacity: 0;
		display: none
	}
}

@keyframes show {
	0% {
		display: none;
		top: 25%;
		opacity: 0;
		pointer-events: none
	}
	50% {
		opacity: .5
	}
	100% {
		display: block;
		top: 0;
		opacity: 1;
		pointer-events: all
	}
}