#cookieConsentPopup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: white;
    padding: 20px;
    border-radius: 8px;
    z-index: 1000; /* Ensure it's on top of other content */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#cookieConsentPopup button {
    margin-top: 10px;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#cookieConsentPopup button:first-of-type {
    background-color: #56C2C2; /* Green for accept */
    color: white;
}

#cookieConsentPopup button:last-of-type {
    background-color: #555; /* Grey for customize */
    color: white;

.popup1 {
	width: 770px;
}

@media only screen and (max-width: 768px) {
/*For Mobile*/
	.popup1 {
	  width: 640px;
	}
}
