@import url("https://fonts.cdnfonts.com/css/cabinet-grotesk");
@import url("https://fonts.cdnfonts.com/css/inter");
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html,
body {
	height: 100%;
}
.aguardando-pagamento-header {
	width: 100%;
	padding: 12px 0;
	background-color: #fff;
	border-bottom: 2px solid #ccc;
	text-align: center;
}
.aguardando-pagamento-section {
	padding: 0 2%;
	background-color: #f3fcff;
	padding: 56px 0;
	text-align: center;
}
.aguardando-pagament-div-wrapper {
	padding: 32px 122px;
	background-color: #fff;
	width: fit-content;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}
.aguardando-pagamento-loading {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: #005ebd;
}
.loading-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}
.loaging-img {
	animation: spin 4s infinite linear;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
.loading-text-1 {
	font-family: "Cabinet Grotesk";
	font-style: normal;
	font-weight: 700;
	font-size: 20px;
	line-height: 24px;
	/* identical to box height, or 120% */

	text-align: center;

	/* Escala Cinza/600 */

	color: #515151;
}
.loading-text-2 {
	font-family: "Inter";
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 18px;
	/* identical to box height, or 129% */

	text-align: center;

	/* Escala Cinza/400 */

	color: #818181;
}
