
.axial-hubspot-iframe-loader {
	display: flex;
	width: 100%;
	height: 500px;
	justify-content: center;
	align-items: center;
}

.axial-hubspot-iframe-loader span {
	width: 48px;
	height: 48px;
	border: 5px solid #ccc;
	border-bottom-color: transparent;
	border-radius: 50%;
	display: inline-block;
	box-sizing: border-box;
	animation: rotation 1s linear infinite;
}

@keyframes rotation {
	0% {
		transform: rotate(0deg);
	}
	
	100% {
		transform: rotate(360deg);
	}
}
