.dr1007popup {
}


/* Popup box styling */
.dr1007popup .popup {
	position: fixed;
	top: 20%;
	left: 50%;
	transform: translateX(-50%);
	background: #fff;
	padding: 20px 30px;
	border-radius: 15px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
	text-align: center;
	display: none; /* Hidden by default */
	z-index: 1000;
	animation: fadeIn 1s ease-out;
}

.dr1007popup .popup h2 {
	margin: 0 0 15px;
	font-size: 2rem;
	color: #FF4500;
}

.dr1007popup .popup p {
	font-size: 1.2rem;
	color: #333;
	margin-bottom: 20px;
}

.dr1007popup .popup button {
	background-color: #FF4500;
	color: white;
	border: none;
	padding: 10px 20px;
	border-radius: 8px;
	font-size: 1rem;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.dr1007popup .popup button:hover {
	background-color: #FF6347;
}

/* Animation for showing the popup */
@keyframes fadeIn {
   0% { opacity: 0; transform: translateX(-50%) translateY(-30px); }
   100% { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Close button inside popup */
.dr1007popup .close-btn {
	position: absolute;
	top: 5px;
	right: 5px;
	background: none;
	border: none;
	color: #FF6347;
	font-size: 1.5rem;
	cursor: pointer;
}

.dr1007popup .close-btn:hover {
	color: #FF4500;
}