.cookie-message-box *, 
.cookie-message-box *:before, 
.cookie-message-box *:after {
	box-sizing: inherit;
	-moz-box-sizing: inherit;
	-webkit-box-sizing: inherit;
}

.cookie-message-box {
	min-height: 160px;
	max-height: 220px;
	width: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
	display: flex;
	justify-content: center;
    align-items: center;
	animation-name: slidein;
	animation-duration: 1s;
	animation-iteration-count: 1;
	animation-timing-function: ease-out;
	background-color: RGBA(22,160,133,0.9);
	box-sizing: border-box;
	z-index: 3000;
}

.cookie-message-box .gb-close-icon {
	border-radius: 50%;
	height: 40px;
	width: 40px;
	background-color: RGBA(192,57,43,1);
	position: absolute;
	top: -20px;
	right: 20%;
	color: #FFFFFF;
	font-size: 40px;
	line-height: 40px;
	text-align: center;
	font-family: Helvetica, Arial, FreeSans, sans-serif;
	font-weight: 100;
	cursor: pointer;
}

.cookie-message-box.hide {
	animation-name: slideout;
	animation-duration: 1s;
	animation-iteration-count: 1;
	animation-timing-function: ease-out;
	bottom: -220px;
}

.cookie-message-box.hidden {
	display: none;
}

.cookie-message-box > .container {
	max-width: 870px;
	padding: 20px;
	height: 100%;
}

.cookie-message-box > .container > .title,
.cookie-message-box > .container > .body,
.cookie-message-box > .container > .body p,
.cookie-message-box > .container > .body a {
	font-size: 12px;
	line-height: 120%;
	color: #FFFFFF;
	font-family: Helvetica, Arial, FreeSans, sans-serif;
}

.cookie-message-box > .container > .body p {
	margin: 10px 0
}

.cookie-message-box > .container > .body a {
	text-decoration: underline;
}

.cookie-message-box > .container > .title {
	font-size: 22px;
}

@keyframes slidein {
    0% {
        bottom: -220px;
    }

    100% {
        bottom: 0;
    }
}

@keyframes slideout {
    0% {
        bottom: 0px;
    }

    100% {
        bottom: -220px;
    }
}
