body {
	background-color: #EFE5E5;
}
header {
	width: 100%;
	height: 60px;
	position: relative;
	background-color: #EEEEEE;
}

header .header-container {
	width: 100%;
	max-width: 996px;
	margin: 0px auto;
	display: flex;
	justify-content: space-between;
}

header .header-img-container {
	display: flex;
	height: 60px;
	align-items: center;
	padding: 0 5px;
}

header .header-img-container .header-img-holder img {
	height: 58px;
}

header .header-img-container h1.header-text-holder {
	font-size: 1.25em;
}

header .header-img-container h1.header-text-holder span {
	display: block;
	font-size: .8em;
	font-weight: 400;
}

header .header-icons-container{
	display: flex;
	align-items: center;
	height: 60px;
}

.home-container {
	width: 100%;
	height: calc(100vh - 60px);
	position; relative;
}

.home-container .container.hero{
	margin: 1em auto;
	height: calc(100% - 2em);
	position: relative;
	padding: 0;

}

.hero .hero-content-container {
	height: 100%;
}


.hero .hero-content-container .hero-content-holder {
	height: 100%;
	position: relative;
	background-color: #ffffff;
}

.hero .hero-content-container .hero-content-holder.quote-preview {
	overflow: auto;
}

.hero .hero-content-container .hero-content-holder.quote-preview .card .card-header button{
	display: none;
}

@media(max-width:992px){
	.hero .hero-content-container .hero-content-holder.quote-preview {
		position: fixed;
		top: 0;
		right: 0;
		width: 100%;
		height: 100vh;
		overflow: hidden;
		display: flex;
		z-index: 5;
		background: rgb(0,0,0,0.5) !important;
		border-radius: 0 !important;
		display: none;
		align-items: center;
		justify-content: center;
	}
	
	.hero .hero-content-container .hero-content-holder.quote-preview .card{
		width: 90% !important;
		max-width: 576px !important;
		height: 90vh !important;
		display: flex;
		flex-direction: column;
	}
	
	.hero .hero-content-container .hero-content-holder.quote-preview .card .card-header {
		display: flex;
		justify-content: space-between;
	}
	
	.hero .hero-content-container .hero-content-holder.quote-preview .card .card-header button{
		display: block;
	}
	
	.hero .hero-content-container .hero-content-holder.quote-preview .card .card-body{
		flex: 1;
		overflow: auto;
	}
}

@media(max-width:576px){
	.hero .hero-content-container {
		width: 95%;
		margin: 0 auto;
	}
}

.my-custom-bs-dropdown {
	width: 300px;
}

.user-btn {
	background-color: none;
	background-image: linear-gradient(90deg, #A100FFFF 0%, #71C4FFFF 100%);
	border: none;
	outside: none;
	cursor: pointer;
	color: #fff;
	font-size: 1.5em;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* three-Column-Container */
.three-Column-Container{
	width:100%;
	height:100%;
	display:flex;
	flex-direction:column;
}

.three-Column-Container-Header{
	width:100%;
	height:50px;
	display:flex;
	align-items:center;
}

.three-Column-Container-Body{
	flex:1;
	overflow: auto;
}

.step-div-btns-monitor-container {
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: space-between;
	margin: 5px auto;
}

.step-progress-monitor {
	text-align: center;
	flex: 1;
	position: relative;
}

.step-progress-monitor::before {
	content: '';
	position: absolute;
	top: 40%;
	left: 0;
	height: 4px;
	width: 100%;
	background-color: #ccc;
	z-index: 0;
	transform: translateY(-50%);
}

.step-progress-monitor:first-child::before {
	width: 50%;
	left: 50%;
}

.step-progress-monitor:last-child::before {
	width: 50%;
	right: 50%;
	left: auto;
}

.circle-progress-monitor {
	width: 40px;
	height: 40px;
	background-color: #000;
	border-radius: 50%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	font-size: 18px;
	z-index: 1; /* Ensure circles are above the line */
	position: relative; /* Allows the z-index to work properly */
}

.step-progress-monitor.active .circle-progress-monitor {
	background-color: #9044FF;
}

.completed .circle-progress-monitor {
	background-color: #4CAF50;
}

.step-progress-monitor.inactive .circle-progress-monitor {
	background-color: #ccc;
}

.step-progress-monitor .label {
	font-size: .9em;
	color: #666;
	margin-top: -5px;
}

.step-progress-monitor.active .label {
	font-weight: bold;
	color: #9044FF;
}

.step-progress-monitor.completed .label {
	font-weight: bold;
	color: #4CAF50;
}

@media(max-width:576px){
	 .step-progress-monitor::before {
		 top: 50%;
	 }
	 
	.step-progress-monitor .label {
		display: none;
	}
}

.step-form {
	flex: 1;
	width: 100%;
	position: relative;
	overflow: auto;
}

.step {
	display: none;
}

.step.active {
	display: block;
}

.step-content {
	width: 90%;
	padding: 0 20px;
	margin: 2em auto;
}

.step.item-step {
	width: 100%;
	height: 68vh;
	position: relative;
}

.step.item-step .step-content {
	width: 100%;
	height: calc(100% - 35px);
	position: relative;
	padding: 0 5px;
	margin: 0px auto;
	flex: 1;
	overflow: auto;
}

.buttons {
	display: flex;
	justify-content: space-between;
	padding: 5px;
	gap: 1em;
}

.btn-next {
	background: #0073e6;
	color: white;
}

.btn-back {
	background: #ddd;
	color: #333;
}

/* Make intl-tel-input inherit Bootstrap's input styles */
.intl-tel-input .form-control {
  height: auto; /* Align height */
  padding: 0.375rem 0.75rem; /* Bootstrap padding */
  font-size: 1rem; /* Bootstrap font size */
}

/* Adjust the flag dropdown alignment */
.intl-tel-input .iti__flag-container {
  border-radius: 0.375rem 0; /* Match rounded corners with Bootstrap */
}

.quote-info-btn {
	color: #9629FF !important;
	border: 1px solid #9629FF !important;
	display: none;
}

.quote-info-btn:hover {
	color: #fff !important;
	background-color: #9629FF !important;
}

@media(max-width:992px){
	.quote-info-btn {
		display: block;
	}
}

@media(max-width:385px){
	.my-quote-preview-sm {
		width: 100% !important;
	}
	
	.my-quote-preview-sm.quote-preview-logo-holder {
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
	}
	
	.my-quote-preview-sm .quote-preview-logo {
		max-height: 150px;
	}
}

.sub-header {
	font-size: 1.1em;
	font-weight: 700;
	opacity: .7;
}

.none{
	display:none;
}

.hidden {
	display: none;
}

.search-container {
	border: 1px solid #ddd;
	border-radius: 5px;
	padding: 15px;
	margin-top: 20px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.search-input {
	width: 100%;
	padding: 10px;
	margin-bottom: 15px;
	border: 1px solid #ddd;
	border-radius: 4px;
}
.categories {
	max-height: 300px;
	overflow-y: auto;
}
.category-item {
	padding: 10px;
	cursor: pointer;
	border-bottom: 1px solid #eee;
}
.category-item:hover {
	background-color: #f5f5f5;
}
.item-list {
	padding: 10px 0;
}
.item-container {
	display: flex;
	align-items: center;
	padding: 8px 0;
	border-bottom: 1px solid #eee;
}
.item-name {
	flex-grow: 1;
}
.quantity-control {
	display: flex;
	align-items: center;
}
.quantity-btn {
	width: 30px;
	height: 30px;
	background-color: #f0f0f0;
	border: 1px solid #ddd;
	cursor: pointer;
	font-size: 16px;
}
.quantity-input {
	width: 40px;
	text-align: center;
	margin: 0 5px;
	padding: 5px;
	border: 1px solid #ddd;
}
.done-btn {
	width: 100%;
	padding: 10px;
	background-color: #2196F3;
	color: white;
	border: none;
	border-radius: 4px;
	margin-top: 15px;
	cursor: pointer;
}
.output-container {
	margin-top: 20px;
	padding: 15px;
	border: 1px solid #ddd;
	border-radius: 5px;
}
.selected-category {
	font-weight: bold;
	margin: 10px 0;
	font-size: 18px;
}
.selected-items-list {
	padding-left: 20px;
}
.selected-item {
	display: flex;
	flex-direction: column;
	padding: 5px 0;
}
.back-btn {
	padding: 8px 12px;
	background-color: #f0f0f0;
	border: 1px solid #ddd;
	border-radius: 4px;
	cursor: pointer;
	margin-bottom: 10px;
}
.add-images-btn {
	margin-top: 10px;
	background-color: #5c6bc0;
	color: white;
	border: none;
	border-radius: 4px;
	padding: 6px 12px;
	cursor: pointer;
	font-size: 14px;
}
.images-container {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 10px;
}
.image-wrapper {
	position: relative;
	width: 120px;
	height: 120px;
	border: 1px solid #ddd;
	border-radius: 4px;
	overflow: hidden;
}
.item-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.delete-image-btn {
	position: absolute;
	top: 5px;
	right: 5px;
	width: 20px;
	height: 20px;
	background-color: rgba(255, 0, 0, 0.7);
	color: white;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
}

.search-container {
	display: none;
	flex-direction: column;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	max-width: 768px;
	height: 80vh;
	z-index: 10;
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
	padding: 0;
	overflow: hidden;
}

.searchItemsHeader {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	background-color: #f8f8f8;
	border-bottom: 1px solid #ddd;
}

.searchItemsHeader h4 {
	margin: 0;
	font-size: 18px;
}

.searchItemsHeader button {
	background-color: #f0f0f0;
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 6px 12px;
	cursor: pointer;
}

.searchItemsHeader button:hover {
	background-color: #e0e0e0;
}

.searchItemsBody {
	flex: 1;
	overflow-y: auto;
	padding: 15px 20px;
}

.searchItemsFooter {
	padding: 15px 20px;
	border-top: 1px solid #ddd;
	background-color: #f8f8f8;
}

.searchItemsFooter .done-btn {
	width: 100%;
}

/* Make the backdrop for the modal */
.backdrop {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 5;
	display: none;
}

.backdrop.active {
	display: block;
}

/* Responsive styling for small screens */
@media (max-width: 576px) {
	.search-container {
		height: 95vh;
		width: 95%;
		max-width: 95%;
	}
}

.btn_One{
	background-image: linear-gradient(to right top, #052c37, #00455f, #005e8b, #0076bb, #128deb);
	border:none;
	border-radius:10px;
	padding:10px;
	margin:5px;
	letter-spacing:1px;
	font-weight:400;
	color:#ffffff;
	cursor:pointer;
	outline:none;
}

.btn_Two{
	background-image: linear-gradient(to right top, #370505, #5f0917, #8b0d25, #ba1033, #eb1241);
	border:none;
	border-radius:10px;
	padding:10px;
	margin:5px;
	letter-spacing:1px;
	font-weight:400;
	color:#ffffff;
	cursor:pointer;
	outline:none;
}

.btn_Three{
	background-image: linear-gradient(to right top, #be3d04, #ac4d00, #995800, #885f00, #786402);
	border:none;
	border-radius:10px;
	padding:10px;
	margin:5px;
	letter-spacing:1px;
	font-weight:400;
	color:#ffffff;
	cursor:pointer;
	outline:none;
}

.btn_Four,
.btn_Primary{
	background-image: linear-gradient(to right top, #870a8c, #681985, #4a1d7a, #2b1e6d, #031b5e);
	border:none;
	border-radius:10px;
	padding:10px;
	margin:5px;
	letter-spacing:1px;
	font-weight:400;
	color:#ffffff;
	cursor:pointer;
	outline:none;
}

.btn_Primary{
	background-image: linear-gradient(to right top, #0b5622, #0e7329, #14912f, #1bbf35, #22ff3c);
}

.btn_One.sm,
.btn_Two.sm,
.btn_Three.sm,
.btn_Four.sm
.btn_Primary.sm{
	padding:5px;
	font-size:1em;
}

.btn_One.round,
.btn_Two.round,
.btn_Three.round,
.btn_Four.round,
.btn_Primary.round{
	padding:0;
	width:40px;
	height:40px;
	border-radius:50%;
}

.btn_One.sm_round,
.btn_Two.sm_round,
.btn_Three.sm_round,
.btn_Four.sm_round,
.btn_Primary.sm_round{
	width:30px;
	height:30px;
}

.btn_One.fixed,
.btn_Two.fixed,
.btn_Three.fixed,
.btn_Four.fixed,
.btn_Primary.fixed{
	position:fixed;
	bottom:20px;
	right:10px;
	z-index:2;
}

/*.alert-Error-Container starts here...*/
.alert-Error-Container,
.success-Message-Container,
.alert-Info-Container,
.confirm-Info-Container,
.home-Found-Product-Item-Quantity-Form-Holder,
.precessing-Fixed-Flex-Box-Container,
.myPopUpContainer,
.output-fixed-container{
	width:100%;
	height:100vh;
	position:fixed;
	top:0;
	left:0;
	display:flex;
	align-items:center;
	justify-content:center;
	background:rgba(171, 205, 239, 0.3); /*background with opacity of 30%, 0.3 at the end...*/
	-webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
	z-index:10000;
}

.myPopUpContainer,
.output-fixed-container{
	z-index:9555;
	display:none;
}

.myPopUpContainer.active,
.output-fixed-container.active{
	display:flex;
}

.myPopUpContainer .myPopUpContainerInnerHolder,
.output-fixed-container .output-fixed-inner-holder{
	width:768px;
	max-width:95%;
	height:85vh;
	position:relative;
	background:#fafafa;
}

.output-fixed-container .output-fixed-inner-holder{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.myPopUpContainer .myPopUpContainerInnerHolder .myPopUpContainerOverflow{
	width:100%; 
	height:calc(85vh - 60px);
	overflow:auto;
	position:relative;
}

@media(max-width:768px){
	.myPopUpContainer .myPopUpContainerInnerHolder{
		height:95vh;
	}
	
	.myPopUpContainer .myPopUpContainerInnerHolder .myPopUpContainerOverflow{
		height:calc(95vh - 60px);
	}
}

.home-Found-Product-Item-Quantity-Form-Holder{
	z-index:4;
}

.confirm-Info-Container.block{
	display:block;
}


.alert-Error-Container .alert-Error-Center-Container,
.success-Message-Container .success-Message-Center-Container,
.alert-Info-Container .alert-Info-Center-Container,
.confirm-Info-Container .alert-Info-Center-Container,
.confirm-Info-Container .alert-Info-Center-Processed-Container{
	width:500px;
	height:auto;
	background: #ECF0E9;
	background: -moz-linear-gradient(left, #ECF0E9 0%, #F5F5F5 50%, #E9EBD5 100%);
	background: -webkit-linear-gradient(left, #ECF0E9 0%, #F5F5F5 50%, #E9EBD5 100%);
	background: linear-gradient(to right, #ECF0E9 0%, #F5F5F5 50%, #E9EBD5 100%);
	text-align:center;
	position:relative;
}

.confirm-Info-Container .alert-Info-Center-Processed-Container.block{
	margin:20px auto;
	height:90vh;
	overflow:auto;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.confirm-Info-Container .alert-Info-Center-Processed-Container.block::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.confirm-Info-Container .alert-Info-Center-Processed-Container.block {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

@media(max-width:505px){
	.alert-Error-Container .alert-Error-Center-Container,
	.success-Message-Container .success-Message-Center-Container,
	.alert-Info-Container .alert-Info-Center-Container,
	.confirm-Info-Container .alert-Info-Center-Container,
	.confirm-Info-Container .alert-Info-Center-Processed-Container{
		width:90%;
	}
}

.alert-Error-Container .alert-Error-Center-Container .header-Container,
.alert-Info-Container .alert-Info-Center-Container .header-Container{
	padding:1em;
	font-size:0.8em;
	background: #ED0915;
	background: -moz-linear-gradient(left, #ED0915 0%, #DB0813 50%, #C70812 100%);
	background: -webkit-linear-gradient(left, #ED0915 0%, #DB0813 50%, #C70812 100%);
	background: linear-gradient(to right, #ED0915 0%, #DB0813 50%, #C70812 100%);
	color:#ffffff;
	letter-spacing:1px;
	display:flex;
	align-items:center;
	justify-content:center;
	text-align:center;
	width:100%;
}

.alert-Info-Container .alert-Info-Center-Container .header-Container{
	background-color: #c1bfbf;
	background-image: linear-gradient(315deg, #c1bfbf 0%, #af8231 74%);
}

.confirm-Info-Container .alert-Info-Center-Container .header-Container{
	padding:1em;
	font-size:0.8em;
	background: #ffa500;
	color:#ffffff;
	letter-spacing:1px;
	display:flex;
	align-items:center;
	justify-content:space-between;
	text-align:center;
	width:100%;
}

.alert-Error-Container .alert-Error-Center-Container .header-Container i,
.alert-Info-Container .alert-Info-Center-Container .header-Container i{
	font-size:1.4em;
	margin-right:5px;
}

.confirm-Info-Container .alert-Info-Center-Container .header-Container i{
	font-size:1.4em;
	margin-right:5px;
	cursor:pointer;
}

.alert-Error-Container .alert-Error-Center-Container .message-Container,
.alert-Info-Container .alert-Info-Center-Container .message-Container,
.confirm-Info-Container .alert-Info-Center-Container .message-Container,
.confirm-Info-Container .alert-Info-Center-Processed-Container .message-Container{
	width:100%;
	height:auto;
	margin:20px auto;
	padding:0.5em;
}

.confirm-Info-Container .alert-Info-Center-Processed-Container .message-Container{
	display:block !important;
}

.alert-Error-Container .alert-Error-Center-Container .message-Container h4,
.alert-Info-Container .alert-Info-Center-Container .message-Container h4{
	background: #B50E0E;
	background: -webkit-linear-gradient(to right, #B50E0E 0%, #9E1515 100%);
	background: -moz-linear-gradient(to right, #B50E0E 0%, #9E1515 100%);
	background: linear-gradient(to right, #B50E0E 0%, #9E1515 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size:1.1em;
	letter-spacing:1px;
}

.alert-Info-Container .alert-Info-Center-Container .message-Container h4,
.confirm-Info-Container .alert-Info-Center-Container .message-Container h4,
.confirm-Info-Container .alert-Info-Center-Processed-Container .message-Container h4{
	background: #91580D;
	background: -webkit-linear-gradient(to right, #91580D 0%, #7D4C0B 100%);
	background: -moz-linear-gradient(to right, #91580D 0%, #7D4C0B 100%);
	background: linear-gradient(to right, #91580D 0%, #7D4C0B 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.alert-Error-Container .alert-Error-Center-Container .btn-Container,
.alert-Info-Container .alert-Info-Center-Container .btn-Container,
.confirm-Info-Container .alert-Info-Center-Container .btn-Container,
.confirm-Info-Container .alert-Info-Center-Processed-Container .btn-Container{
	padding-bottom:1em;
}

.success-Message-Container .success-Message-Center-Container .header-Container{
	padding:1em;
	font-size:0.8em;
	background: #0C8C17;
	background: -moz-linear-gradient(left, #0C8C17 0%, #0C8C17 50%, #08590F 100%);
	background: -webkit-linear-gradient(left, #0C8C17 0%, #0C8C17 50%, #08590F 100%);
	background: linear-gradient(to right, #0C8C17 0%, #0C8C17 50%, #08590F 100%);
	color:#ffffff;
	letter-spacing:1px;
	display:flex;
	align-items:center;
	justify-content:center;
	text-align:center;
	width:100%;
}

.success-Message-Container .success-Message-Center-Container .header-Container img{
	width:40px;
	height:40px;
	margin-right:5px;
	border-radius:50%;
}

.success-Message-Container .success-Message-Center-Container .message-Container{
	width:100%;
	height:auto;
	margin:20px auto;
	padding:0.5em;
}

.success-Message-Container .success-Message-Center-Container .message-Container h4{
	background: #B50E0E;
	background: -webkit-linear-gradient(to right, #B50E0E 0%, #9E1515 100%);
	background: -moz-linear-gradient(to right, #B50E0E 0%, #9E1515 100%);
	background: linear-gradient(to right, #B50E0E 0%, #9E1515 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size:1.1em;
	letter-spacing:1px;
}

.success-Message-Container .success-Message-Center-Container .btn-Container{
	padding-bottom:1em;
}

.precessing-Fixed-Flex-Box-Container{
	display:none;
}

.precessing-Fixed-Flex-Box-Container.active{
	display:flex;
}

.suggestions {
	width: 100%;
	background: white;
	border: 1px solid #ddd;
	border-top: none;
	border-radius: 0 0 8px 8px;
	max-height: 200px;
	overflow-y: auto;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.suggestion-item {
	padding: 10px 15px;
	cursor: pointer;
	transition: background 0.2s;
}

.suggestion-item:hover {
	background-color: #f5f5f5;
}