#cookie-notification {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 4px 10px 6px;
    z-index: 800;
    background-color: #444;
    color: white;
    font-size: .8em;
    box-sizing: border-box;
}

#cookie-notification::after{
	position: absolute;
	top: 2px;
	right: 0px;
	width: 40px;
	height: 30px;
/*	font-family: FontAwesome;
	content: '\f00d';*/
    content: '';
    background: url('../images/ic-close.svg') no-repeat center center;
    background-size: 30px 30px;
	cursor: pointer;
	display: block;
	z-index: 801;
	text-align: center;
}

#cookie-notification p {
	max-width: calc(100% - 40px);
    margin-bottom:0;
    color: #fff;
    font-weight: 400;
    float: left;
}

#cookie-notification a {
    margin:  0;
    color: #fff;
    display: inline-block;
    text-decoration: underline;
    clear: both;
}

#cookie-notification a .fa{
    color: inherit;
}