div.cookiePopup {
    width: 300px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    overflow: hidden;
    z-index: 2147483641;
    background: #ededed;
	left: auto;
	padding: 20px;
	box-shadow: rgba(0,0,0,.5) 0px 5px 50px;
}

/******** WRAPPER ********/

.cookiePopup div.cookiePopupInner {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-wrap: wrap;
    margin: 0 auto;
} 

/******** TEKST ********/
.cookiePopup .cookiePopupInner .cookieDivLeft {
	width: 100%;
}
.cookiePopup .cookiePopupInner div.cookieDivLeft p {
	text-align: center;
	font-size: 13px;
	line-height: 1.65;
	font-family: "Euclid Square", sans-serif;
	margin: 0 0 10px 0;
	font-weight: 400;
	color: #303030;
}
.cookiePopup .cookiePopupInner div.cookieDivLeft p a {
	color: #006AC6;
}

/******** BUTTON ********/
.cookiePopup .cookiePopupInner .cookieDivRight {
	width: 100%;
}
.cookiePopup .cookiePopupInner .cookieDivRight button {
	padding: 0.7em 1.3em;
	background: #006AC6;
	color: white;
	font-size: 16px;
	font-family: "Euclid Square", sans-serif;
	font-weight: 800;
	width: 100%;
	border: none;
	text-transform: uppercase;
}

.cookiePopup .cookiePopupInner .cookieDivRight button:hover {
	opacity: 0.8;
}


