﻿body, html {
	margin: 0;
	padding: 0;
	height: 100%;
}

footer {
	background-color: #F3F3F3;
	padding-top: 10px;
	padding-bottom: 0px;
	position: fixed;
	bottom: 0;
	width: 100%;
	height: 40px;
	z-index: -1;
}

.scratched-image {
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-position: center;
}

.styling {
	height: 20px;
	font-size: 14px;
}

.topic-styling {
	color: black;
	background-color: darkgray;
	border-radius: 4px;
	padding: 0px 4px;
	margin: 1px;
	text-align: center;
}

.blurry {
	filter: blur(4px);
}

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

	50% {
		opacity: 0;
	}
}

.blinking-button {
	animation: blink 1s infinite;
}
/*.myDiv {
	background-color: gray;*/ /* Initial background color */
/*transition: background-color 0.3s;*/ /* Smooth transition effect */
/*}
	.myDiv:hover {
		background-color: lightgray;*/ /* Background color on hover */
/*color: black;*/ /* Background color on hover */
/*}
.myDivDark {
	background-color: gray;*/ /* Initial background color */
/*transition: background-color 0.3s;*/ /* Smooth transition effect */
/*}
	.myDivDark:hover {
		background-color: lightgray;*/ /* Background color on hover */
/*color: black;*/ /* Background color on hover */
/*}*/
.circle {
	width: 30px;
	height: 30px;
	background-color: rgba(255, 0, 0);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	font-size: 12px;
	opacity: 50%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 1000;
}

.rectangel {
	background-color: rgba(255, 0, 0);
	color: white;
	border-radius: 2px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	position: absolute;
	top: 45px;
	left: 0px;
	padding: 2px;
	z-index: 1000;
}

.button-container {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

.success-button {
	display: flex;
	align-items: center;
	padding: 10px 20px;
	background-color: #00cc00;
	border: none;
	border-radius: 5px;
	color: #fff;
	font-size: 18px;
	cursor: pointer;
}

.icon-ok {
	margin-right: 10px;
	font-size: 100px;
}

.unsuccess-button {
	display: flex;
	align-items: center;
	padding: 10px 20px;
	background-color: red;
	border: none;
	border-radius: 5px;
	color: #fff;
	font-size: 18px;
	cursor: pointer;
}

.image-container {
	position: relative;
	display: flex;
	align-items: center;
}

.image-album img {
	max-width: 100%;
	height: auto;
}

@keyframes flip {
	0% {
		transform: rotateY(0deg);
	}

	100% {
		transform: rotateY(360deg);
	}
}

.flipping-icon {
	animation: flip 2s infinite linear;
}

.sticky-div {
	position: sticky;
	top: 0;
	background-color: #f1f1f1;
	padding: 10px;
	border-bottom: 1px solid #ccc;
}

.dark-mode {
	background-color: #333;
	color: white;
}

.table-container {
	max-width: 100%;
	margin: 0 auto;
	font-size: 12px;
}

.thick-font {
	font-weight: bold; /* Thick font */
}

.thin-font {
	font-weight: normal; /* Thin font */
}

.table-row {
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid #ddd; /* Border above the first row */
}

.table-col:nth-child(odd) {
	width: 20%;
	background-color: darkgrey; /* Background color for odd columns */
}

.table-col:nth-child(even) {
	width: 30%;
	background-color: lightgray; /* Background color for odd columns */
}

.table-col {
	width: 25%; /* Initial 4 columns setup */
	box-sizing: border-box;
	padding: 8px;
	border-bottom: 1px solid #ddd; /* Border below each row */
	text-align: left; /* Align text to the left */
	word-wrap: break-word; /* Enable word wrapping */
}

	.table-col p {
		padding: 0;
		margin: 0;
		height: 20px;
	}

	.table-col:nth-child(2) {
		border-right: 1px solid #ddd; /* Border between col2 and col3 */
	}

@media (max-width: 767px) {
	/*.table-col {
		width: 50%;*/ /* Collapse to 2 columns on smaller screens */
	/*}*/
	.table-col:nth-child(odd) {
		width: 40%;
	}

	.table-col:nth-child(even) {
		width: 60%;
	}

	.table-col:nth-child(2) {
		border-right: none; /* Remove border between col2 and col3 on smaller screens */
	}
}

.box {
	width: 100px;
	height: 100px;
	background-color: #007BFF;
	margin: 10px;
	border-radius: 10px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	animation: rotation 4s infinite linear;
}

@keyframes rotation {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}



/*Offer command Acceptance Box*/
.offer-box {
	border: 3px solid;
	border-color: rgba(0, 123, 255);
	background-color: rgb(229, 242, 255);
	border-radius: 5px;
	padding-bottom: 30px;
	margin-bottom: 30px;
	color: black;
	box-shadow: 3px 6px 10px rgba(0, 0, 0, 0.8), inset 0 4px 6px rgba(255, 255, 255, 0.8); /* Shadow and inner shadow */
	height: 85vh;
	overflow-y: scroll;
	overflow-x: hidden;
}

.acceptance-box {
	border: 3px solid;
	border-color: rgba(25,135,84);
	background-color: rgb(232, 243, 238);
	border-radius: 5px;
	padding-bottom: 30px;
	margin-bottom: 30px;
	color: black;
	box-shadow: 3px 6px 10px rgba(0, 0, 0, 0.8), inset 0 4px 6px rgba(255, 255, 255, 0.8); /* Shadow and inner shadow */
	height: 85vh;
	overflow-y: scroll;
	overflow-x: hidden;
}

/*ManeMenu*/
.fixed-header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000; /* Ensure the header is above other content */
}

.page-content {
	padding-top: 80px; /* Adjust this value to the height of your header */
}

.sidebar {
	width: 200px;
	float: left;
}

.main-content {
	margin-left: 200px; /* Same as sidebar width */
}

@media (max-width: 768px) {
	.sidebar {
		width: 100%;
	}

	.main-content {
		margin-left: 0;
	}
}

.overflow300 {
	height: 250px;
	overflow-y: auto
}


/*Modals*/
.fullscreen-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8); /* Lighter dark background */
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1050;
}

.fullscreen-modal-content {
	background-color: #fff;
	padding: 20px;
	border-radius: 8px;
	overflow-y: auto;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
	max-height: 95%; /* optional: prevent overflow */
}


/*Star Rating*/
.rating {
	display: inline-flex;
	cursor: pointer;
}

.hover-star {
	color: #ddd;
	transition: color 0.2s;
	margin-right: 0px;
}

	.hover-star:hover,
	.hover-star.selected {
		color: #ffcc00;
	}

.nohover-star {
	color: #ddd;
	transition: color 0.2s;
	margin-right: 0px;
}

	.nohover-star.selected {
		color: #ffcc00;
	}

.star-rating {
	display: flex;
	align-content: center;
	align-items: center;
	flex-direction: row;
	color: gold; /* Adjust color as needed */
}

.star {
	position: relative;
	display: inline-block;
}

.partial-star {
	display: inline-block;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 0; /* This will be set dynamically */
}

.empty-star {
	display: inline-block;
	color: lightgray; /* Color for the empty part */
}

.l2r {
	unicode-bidi: isolate;
	direction: ltr;
}

/* Base styles */
.form-label {
	display: block;
}
/* RTL specific styles */
[dir="rtl"] .form-label {
	text-align: right;
	padding-right: 0.5rem;
	padding-left: 0;
}

[dir="rtl"] {
	flex-direction: row-reverse;
}

	[dir="rtl"] .form-control {
		text-align: right;
	}

.error-font {
	font-size: 0.75rem; /* Adjust the font size as needed */
}


.table th, .table td {
	height: 50px;
	vertical-align: middle;
}

.mirrored {
	transform: scaleX(-1);
}

/*Grid*/

.e-grid .e-headercontent, .e-grid .e-content {
	padding-top: 0 !important;
	margin-top: 0 !important;
}

.e-grid .e-row {
	padding: 0 !important;
	margin: 0 !important;
}

.break-text {
	word-wrap: break-word; /* Allows breaking long words */
	white-space: normal; /* Allows wrapping text onto multiple lines */
	overflow-wrap: break-word; /* Ensures text breaks at the edge of the container */
}

@media (max-width: 767.98px) {
	.e-grid .hide-sm {
		display: none !important;
	}
}


/*PickupDropoffProgressbar*/
@keyframes blink {
	0%, 100% {
		opacity: 1;
	}

	50% {
		opacity: 0.3;
	}
}


/*UILoadingModal*/
.envelope-backdrop {
	background-color: rgba(10, 10, 10, 0.3);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
}


.envelope-container {
	position: fixed;
	bottom: -100px;
	left: 50%;
	transform: translateX(-50%);
	animation: envelope-rise 2s ease-in-out infinite;
	z-index: 100000;
	text-align: center;
}

.envelope-icon {
	font-size: 8rem;
	animation: bounce-opacity 2s ease-in-out infinite;
}

.mid {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 100000;
}

@keyframes envelope-rise {
	0% {
		bottom: -100px;
	}

	50% {
		bottom: 50%;
	}

	100% {
		bottom: 60%;
	}
}

@keyframes bounce-opacity {
	0% {
		opacity: 0;
		transform: translateY(50px) scale(0.8);
	}

	50% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}

	100% {
		opacity: 0;
		transform: translateY(-30px) scale(1.1);
	}
}

.message-circle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 300px;
	height: 300px;
	border-radius: 50%;
	animation: rotate-message 10s linear infinite;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: white;
	text-align: center;
	pointer-events: none;
}



@keyframes rotate-message {
	0% {
		transform: translate(-50%, -50%) rotate(0deg);
	}

	100% {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}




/*CardTab*/
.bigcards-wrapper {
	min-height: 100vh;
	background: radial-gradient(1200px 600px at 50% -10%, rgba(0,0,0,0.06), transparent), linear-gradient(180deg, #f8f9fa 0%, #ffffff 60%);
}

/* 3D big button cards */
.bigcard {
	appearance: none;
	border: none;
	background: var(--bs-body-bg);
	border-radius: 1rem;
	padding: 2.25rem 1.75rem;
	box-shadow: 0 1px 1px rgba(0,0,0,.04), 0 6px 14px rgba(0,0,0,.08), inset 0 1px 0 rgba(255,255,255,.6);
	transition: transform .2s ease, box-shadow .2s ease;
	cursor: pointer;
	text-align: center;
}

	.bigcard:focus {
		outline: 0;
		box-shadow: 0 0 0 .25rem rgba(13,110,253,.25), 0 6px 14px rgba(0,0,0,.10), inset 0 1px 0 rgba(255,255,255,.6);
	}

	.bigcard:hover {
		transform: translateY(-6px) scale(1.01);
		box-shadow: 0 12px 24px rgba(0,0,0,.12), inset 0 1px 0 rgba(255,255,255,.6);
	}

	.bigcard:active {
		transform: translateY(-1px) scale(0.998);
	}

	.bigcard .bigcard-content i {
		font-size: clamp(2.2rem, 4vw, 3rem);
		color: var(--bs-primary);
	}

	.bigcard .bigcard-content h3 {
		font-weight: 700;
		font-size: clamp(1.15rem, 2.2vw, 1.35rem);
	}

/* Make rows fill height nicely */
.row.align-content-stretch > [class*="col-"] {
	display: flex;
}



