/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 06 2026 | 06:47:13 */
#end_date-label{
	margin-top: 15px;
}

.custom-order-box {
	max-width: 320px;
	font-family: 'Segoe UI', sans-serif;
}
/* Label */
.custom-label {
	font-size: 15px;
	color: #333;
	margin-bottom: 6px;
	display: block;
}
/* Date Input Wrapper */
.date-input-wrapper {
	position: relative;
	margin-top: 5px;
}
/* Date Input */
.custom-date-input {
	width: 100%;
	padding: 12px 15px 12px 12px;
	border-radius: 10px;
	border: 1.5px solid black;
	font-size: 15px;
	outline: none;
	transition: all 0.3s ease;
	background: #fff;
}
/* Focus Effect */
.custom-date-input:focus {
	border-color: #25D366;
	box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.15);
}
/* Icon inside input */
.date-icon {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 16px;
	pointer-events: none;
}
/* WhatsApp Button */
.whatsapp-btn {
	margin-top: 15px;
	width: 100%;
	background: linear-gradient(135deg, #25D366, #1ebe5d);
	color: #fff;
	padding: 12px;
	border-radius: 10px;
	border: none;
	font-size: 15px;
	font-weight: 500;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: all 0.3s ease;
}
/* Hover */
.whatsapp-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}
/* Click */
.whatsapp-btn:active {
	transform: scale(0.97);
}
/* Icon */
.whatsapp-icon {
	font-size: 16px;
}
.custom-date-input {
	width: 100%;
	padding: 12px;
	border-radius: 10px;
	border: 1.5px solid black;
	font-size: 15px;
	outline: none;
	background: #fff;
	color: #000;
	/* Fix for mobile */
	appearance: none;
	-webkit-appearance: none;
	position: relative;
}
/* Show placeholder-like text */
.custom-date-input::before {
	content: attr(placeholder);
	color: black;
}
/* Hide text when date is selected */
.custom-date-input:focus::before,
.custom-date-input:valid::before {
	content: "";
}
@media (hover: none) and (pointer: coarse) {
	.custom-date-input::before {
		content: attr(placeholder);
	}
}
@media (hover: hover) and (pointer: fine) {
	.custom-date-input::before {
		content: "";
	}
}
