div.cookiePopup {
    width: 100%;
    position: fixed;
    bottom: 0px;
    overflow: hidden;
    z-index: 2147483641;
    background: rgba(237, 237, 237, 0.95);
    left: 0;
    padding: 20px 0;
}
 
/******** WRAPPER ********/
 
.cookiePopup div.cookiePopupInner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
    max-width: 1240px;
} 
 
/******** TEKST ********/
 
.cookiePopup .cookiePopupInner div.cookieDivLeft {
    float: left;
    width: 80%;
    text-align: left;
}
 
.cookiePopup .cookiePopupInner div.cookieDivLeft p {
    font-size: 100%;
    line-height: 1.65;
    margin: 0;
}
 
.cookiePopup .cookiePopupInner div.cookieDivLeft a {
    color: black;
    font-weight: 700;
}
 
/******** BUTTON ********/
 
.cookiePopup .cookiePopupInner div.cookieDivRight {
    float: right;
    width: 20%;
    text-align: right;
}
 
.cookiePopup .cookiePopupInner .cookieDivRight button {
	padding: 10px 17px;
	background: #cd103a;
	color: white;
	font-size: 12px;
	border: 0;
	font-weight: 700;
	cursor: pointer;
}
 
.cookiePopup .cookiePopupInner .cookieDivRight button:hover {
    opacity: 0.8;
}
 
 
@media screen and (max-width: 767px) {
    .cookiePopup .cookiePopupInner {
        display: block !important;
    }
    .cookiePopup .cookiePopupInner div.cookieDivLeft,
    .cookiePopup .cookiePopupInner div.cookieDivRight {
        float: none;
        display: block;
        width: 100%;
        text-align: left;
    }
    .cookiePopup .cookiePopupInner div.cookieDivLeft {
        margin-bottom: 20px;
    }
}