* {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	box-sizing: border-box;
}

html,
body {
	width: 100%;
	height: 100%;
}

.main {
	width: 100%;
	height: 100%;
	min-height: 500px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.wrapper {
	width: 420px;
	height: 100%;
	max-height: 810px;
	min-height: 600px;
}

@media screen and (max-height: 1000px) {
	.wrapper {
		height: 86%;
	}
}

.content-wrapper {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}

.status {
	width: 100%;
	display: flex;
	justify-content: center;
	text-align: center;
	margin-top: 20px;
}

.status .text {
	font-size: 26px;
	color: #333;
}

.status .loader {
	display: none;
	justify-content: center;
	align-items: center;
	margin-left: 8px;
}

.status .loader .dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #ccc;
	margin: 0 5px;
	animation: dot-blink 1.5s infinite ease-in-out;
}

@keyframes dot-blink {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0.5;
	}

	100% {
		opacity: 1;
	}
}

.image {
	width: 300px;
}

.bottom-section {
	position: absolute;
	bottom: 20px;
	width: 100%;
}

.redirect-btn {
	width: 100%;
	max-width: 336px;
	height: 64px;
	background: #4c9eea;
	padding: 20px;
	font-size: 18px;
	margin-bottom: 20px;
	cursor: pointer;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 16px;
	margin: 0 auto;
}

.footer {
	margin-top: 20px;
}

.footer-text {
	text-align: center;
	font-size: 12px;
	line-height: 22px;
	font-weight: 300;
	color: #ccc;
}