/* 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);
}
