@keyframes rotate {
	100% {
		transform: rotate(1turn);
	}
}

.loader {
    display: flex;
    position: fixed;
	z-index: 999999999999;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    align-items: center;
    justify-content: center;
    background-color: #236b33;
	flex-direction: column;
}

.rainbow {
	position: relative;
	z-index: 0;
	border-radius: 100px;
	overflow: hidden;
	padding: 2.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: sans-serif;
	font-weight: bold;
    box-shadow: 0px 0px 7px 2px rgba(80, 70, 57, 50.84);

	&::before {
		content: '';
		position: absolute;
		z-index: -2;
		left: -50%;
		top: -50%;
		width: 200%;
		height: 200%;
		background-color: #399953;
		background-repeat: no-repeat;
		background-size: 50% 50%, 50% 50%;
		background-position: 0 0, 100% 0, 100% 100%, 0 100%;
		background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff), linear-gradient(#fff, #fff), linear-gradient(#399953, #399953);
		animation: rotate 4s linear infinite;
}

&::after {
	content: '';
	position: absolute;
	z-index: -1;
	left: 6px;
	top: 6px;
	width: calc(100% - 12px);
	height: calc(100% - 12px);
	background: white;
	border-radius: 100px;
}
