/* ================ Components ================ */
.primary {
	color: rgba(193, 12, 0, 1) !important;
}
a.primary:hover,
.primary-hover:hover {
	color: rgba(205, 61, 51, 1) !important;
}
a.primary:active,
.primary-hover:active {
	color: rgba(154, 10, 0, 1) !important;
}
.wrapper {
	overflow: hidden;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(../images/background.png);
    justify-content: center;
    align-items: center;
}
.disabled {
	cursor: default !important;
	-webkit-user-select: none !important;
	-moz-user-select: none !important;
	-ms-user-select: none !important;
	user-select: none !important;
	opacity: .5 !important;
	pointer-events: none !important;
}
.p-0 {
	padding: 0 !important;
}
.transition-0 {
	transition: 0s !important;
}
.w-100 {
	width: 100% !important;
}
.w-auto {
	width: auto !important;
}