/*================================================================================
	Item Name: Modern Admin - Clean Bootstrap 4 Dashboard HTML Template
	Version: 1.0
	Author: PIXINVENT
	Author URL: http://www.themeforest.net/user/pixinvent
================================================================================

NOTE:
------
PLACE HERE YOUR OWN SCSS CODES AND IF NEEDED, OVERRIDE THE STYLES FROM THE OTHER STYLESHEETS.
WE WILL RELEASE FUTURE UPDATES SO IN ORDER TO NOT OVERWRITE YOUR STYLES IT'S BETTER LIKE THIS.  */

.quantity-warning {
	color: red;
	font-weight: bold;
	animation: blink 1s infinite;
	font-size:36px;
}

@keyframes blink {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0.2;
	}

	100% {
		opacity: 1;
	}
}

.variant-red {
	color: red;
	font-weight: bold;
}
.variant-blue {
	color: blue;
	font-weight: bold;
}
.variant-yellow {
	color: yellow;
	font-weight: bold;
}
.variant-pink {
	color: pink;
	font-weight: bold;
}
.variant-green {
	color: green;
	font-weight: bold;
}
.variant-gray {
	color: gray;
	font-weight: bold;
}


@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: translate(-50%, -60%);
	}

	to {
		opacity: 1;
		transform: translate(-50%, -50%);
	}
}

@keyframes slideInRight {
	from {
		transform: translateX(100%);
		opacity: 0;
	}

	to {
		transform: translateX(0);
		opacity: 1;
	}
}

/* Opsiyonel: Geçis efekti için */
.order-transition {
	animation: fadeTransition 0.3s;
}

@keyframes fadeTransition {
	from {
		opacity: 0.5;
		transform: translateX(-20px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

#loadingOverlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.4);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	color: white;
	font-size: 18px;
	z-index: 9999;
}

.hidden {
	display: none !important;
}

.spinner {
	width: 50px;
	height: 50px;
	border: 6px solid #fff;
	border-top: 6px solid #007bff;
	border-radius: 50%;
	animation: spin 1s linear infinite;
	margin-bottom: 15px;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

@media print {
	.card-header .float-right,
	.btn {
		display: none !important;
	}

	img {
		max-width: 50px !important;
	}

	table {
		font-size: 12px !important;
	}

	.sticky-wrapper {
		display: none !important;
	}

	nav {
		display: none !important;
	}
}