.loader {
	border: 3px solid var(--white);
	border-top: 3px solid var(--pink);
	border-radius: 50%;
	width: 120px;
	height: 120px;
	animation: spin 2s linear infinite;
}

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

#loadingModal .modal-dialog {
	display: flex;
	justify-content: center;
	align-items: center;
}
