/* COOKIE ALERT  */

.cookie-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--vlightbluecolor);
 	z-index: 1050;
    transform: translateY(100%);    /* Start off-screen */
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.6s ease-out;
    pointer-events: none;
}

.cookie-container.active {
    transform: translateY(0);       /* Slide into view */
    opacity: 1;
    pointer-events: auto;
}

/* Over ride global colors for <p>, <a> */
.cookie-container p,
.cookie-container a {
	color: var(--blackcolor);
}

.cookie-content {
    margin: 0 auto 1.5rem auto;
    text-align: left;
    position: relative;
    max-width: 80rem;
    padding: 1rem 2rem;
    height: auto;
}

/* Stack and center buttons */
.cookie-content .cookie-btn-container {
    display: flex;
    flex-direction: column;
    align-items: center;
	margin-top: 1.0rem;
}

.myButton.cookie-button{
	color: 	var(--darkgreycolor);	
	background-color: var(--whitecolor);
	font-weight: normal;
	margin-top: 1.0rem;
	height:2.5rem;
	width:10rem;
}

.cookie-button:hover {
	background-color: var(--vlightbluecolor);
}

.cookie-link a{
	font-size:clamp(1rem, 1.2vw, 1.2rem); 
	font-weight: 300;
	font-family: Rubik-Light, sans-serif; 
	text-decoration: underline; 
    opacity:1;
	color: var(--darkgreycolor); 
}	

/* Hover state */
.cookie-link a:hover {
    color: var(--darkbluecolor); 			/* Change color on hover */
    transition: color 0.3s ease-in-out; /* Smooth color transition */
	text-decoration: none; 
}
