.cookieconsentoverlay {
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0,0,0,0.7);
    display: flex;
    z-index: 10000;
}

.cookieconsentmessage {
    position: relative;
    width: 50%;
    min-height: 50%;
    background-color: lightgray;
    margin: auto auto;
    border-radius: 10px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    padding: 1rem;
    border: 1px solid black;
}

.cookieconsentmessage h1 {
    align-self: center;
    color: black;
}

.cookieconsentbutton {
	box-shadow:inset 0px 1px 0px 0px #ffffff;
	background-color:#f9f9f9;
	border-radius:6px;
	border:1px solid #dcdcdc;
	display:inline-block;
	cursor:pointer;
	color:#666666;
	font-family:Arial;
	font-size:15px;
	font-weight:bold;
	padding:6px 24px;
	text-decoration:none;
	text-shadow:0px 1px 0px #ffffff;
}

.cookieconsentbutton:hover {
	background-color:#e9e9e9;
}
.cookieconsentbutton:active {
	position:relative;
	top:1px;
}
