@charset "UTF-8";
/* CSS Document */
a {
	color: white;
}
.cookie-consent {
    position: absolute;
    top: 20%;
	left:2%;
    width: 76%;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding-left:10%;
    padding-right:10%;
    display: none; /* Hide by default */
    z-index: 999;
	height:76%;
	font-size: 16px;
}

.block-banner {
    position: absolute;
    top: 0%;
	left:0%;
    width: 100%;
    height: 100%;
    background-color: rgba(242,242,242,0.40);
    display: none; /* Hide by default */
    z-index: 998;
	
}

.cookie-button {
    background-color: orangered;
    color: white;
    border: none;
    padding: 5px 10px;
    margin-left: 10px;
    cursor: pointer;
	font-size: 20px;
}

.cookie-button:hover {
    background-color: orange;
}	

