/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/
:root {
	--primary: #80bc3c;
	--secondary: #FFFFFF;
	--tertiary: #999999;
	--quarter: #EDDBC0;
}

.preloader {
	align-items: center;
	background: var(--primary, #282828);
	/* background-size: 400% 400%; */
	animation: gradient 5s ease infinite;
	display: flex;
	height: 100vh;
	justify-content: center;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 9999;
	opacity: 1;
}

.header-buttons {
	background-color: white !important;
	color: #3d3b3e;
}

.header-buttons:hover {
	transform: translateY(-4px);
	background-color: #0367a8 !important;
}

.primary-bg-color {
	background-color: var(--primary) !important;
}

.primary-color {
	color: var(--primary) !important;
}

.secondary-bg-color {
	background-color: var(--secondary) !important;
}

.secondary-color {
	color: var(--secondary) !important;
}

.tertiary-bg-color {
	background-color: var(--tertiary) !important;
}

.tertiary-color {
	color: var(--tertiary) !important;
}

.main-button {
	background-color: #0367a8 !important;
}

.main-button:hover {
	transform: translateY(-4px);
	background-color: #457ab2 !important;
}

.vertical-bottom {
	z-index: 3;
	position: relative;
	display: flex;
	width: 100%;
	min-height: 100%;
	justify-content: end;
	flex-flow: column;
  }
