.flex {
	display: flex !important;
}

.flex-col {
	flex-direction: column !important;
}

.flex-row {
	flex-direction: row !important;
}

.justify-center {
	justify-content: center !important;
}

.justify-start {
	justify-content: flex-start !important;
}

.justify-end {
	justify-content: flex-end !important;
}

.justify-between {
	justify-content: space-between !important;
}

.items-center {
	align-items: center !important;
}

.items-start {
	align-items: flex-start !important;
}

.items-end {
	align-items: flex-end !important;
}

.gap-2 {
	gap: 4px !important;
}

.gap-4 {
	gap: 8px !important;
}

.gap-8 {
	gap: 16px !important;
}

.m-0 {
	margin: 0 !important;
}

.m-2 {
	margin: 4px !important;
}

.m-4 {
	margin: 8px !important;
}

.m-8 {
	margin: 16px !important;
}

.mb-0 {
	margin-bottom: 0 !important;
}

.mb-2 {
	margin-bottom: 4px !important;
}

.mb-4 {
	margin-bottom: 8px !important;
}

.mb-8 {
	margin-bottom: 16px !important;
}

.mt-0 {
	margin-top: 0 !important;
}

.mt-2 {
	margin-top: 4px !important;
}

.mt-4 {
	margin-top: 8px !important;
}

.mt-8 {
	margin-top: 16px !important;
}

.p-0 {
	padding: 0 !important;
}

.p-2 {
	padding: 4px !important;
}

.p-4 {
	padding: 8px !important;
}

.p-8 {
	padding: 16px !important;
}

.pb-0 {
	padding-bottom: 0 !important;
}

.pb-2 {
	padding-bottom: 4px !important;
}

.pb-4 {
	padding-bottom: 8px !important;
}

.pb-8 {
	padding-bottom: 16px !important;
}

.pt-0 {
	padding-top: 0 !important;
}

.pt-2 {
	padding-top: 4px !important;
}

.pt-4 {
	padding-top: 8px !important;
}

.pt-8 {
	padding-top: 16px !important;
}

.text-bold {
	font-weight: 700 !important;
}

.global-alert {
	position: fixed !important;
	bottom: 20px !important;
	left: 50% !important;
	transform: translateX(-50%) !important;
	z-index: 1000 !important;
	width: 90dvw !important;
	padding: 16px !important;
	border-radius: 8px !important;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2) !important;
	transition: opacity 0.3s ease-in-out !important;
	font-weight: 400 !important;
	display: flex;
	align-items: center;
	gap: 10px;
}

.global-alert-success {
	background-color: #7ED957 !important;
	color: #ffffff !important;
}

.global-alert-error {
	background-color: #ef4444 !important;
	color: #ffffff !important;
}

.global-alert-warning {
	background-color: #f59e0b !important;
	color: #ffffff !important;
}

.global-alert-info {
	background-color: #38bdf8 !important;
	color: #ffffff !important;
}

.cursor-pointer {
	cursor: pointer !important;
}

.flex-1 {
	flex: 1 !important;
}

.block {
	display: block !important;
}

.hidden {
	display: none !important;
}

.position-fixed-bottom-right {
	position: fixed !important;
	bottom: 20px !important;
	right: 20px !important;
	z-index: 1000 !important;
}

.line-height-normal {
	line-height: normal !important;
}
