*,
html,
body {
	margin: 0;
	padding: 0;
}
html,
body {
	background: #fcfcfc;
	color: #444;
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 16px;
	font-weight: 300;
	overflow-x: hidden;
	position: relative;
}
body.error {
	background: #fdfdfd;
	background-image: repeating-conic-gradient(from 0 at 50% 100%, #fff 0% 2deg, transparent 0 9deg), radial-gradient(circle 300px at 50% 100%, #fff, #fefefe);
	background-position: 50% 100%;
	background-size: cover;
	background-repeat: no-repeat;
}
body.error .container {
	min-height: 100%;
	min-height: 100vh;
	display: flex;
	align-items: center;
}
body.error .centered {
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: center;
	transform: translate(-50%, -50%);
}
.loadcirro {
	background-color: transparent;
	position: relative;
	top: 50%;
	left: 50%;
	text-align: center;
	transform: translate(-50%, -50%);
	height: 6rem;
	width: 6rem;
}
.inner {
	border-color: transparent;
	border-width: 1.125rem;
	border-style: solid;
	border-radius: 50%;
	box-sizing: border-box;
	opacity: 0.75;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}
.inner.one {
	border-left-color: #1a1a1a;
	border-right-color: #1a1a1a;
	animation: rotator 1.5s linear infinite;
}
.inner.two {
	border-top-color: #ccc;
	border-bottom-color: #ccc;
	animation: rotator 2s linear infinite;
}
@keyframes rotator {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
h1 {
	color: #1a1a1a;
	font-family: Montserrat, Arial, sans-serif;
	font-weight: 800;
	letter-spacing: -0.025rem;
	line-height: 1.2;
	margin: 1.5rem 0;
	padding: 0;
	text-transform: none;
}

p {
	color: #333;
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.5;
	margin: 1rem 0;
}