/*!
 * jQuery Cookiebar Plugin
 * https://github.com/carlwoodhouse/jquery.cookieBar
 *
 * Copyright 2012, Carl Woodhouse
 * Disclaimer: if you still get fined for not complying with the eu cookielaw, it's not our fault.
 */
 
.cookie-message {
	position: fixed;
    width: 100%;
    background: hsla(0,0%,100%,.9);
    z-index: 9999;
    font-size: 12px;
    padding-top: 20px;
    padding-bottom: 20px;
    bottom: 0;
    -webkit-box-shadow: 0 -3px 3px rgba(51,51,51,.25);
    box-shadow: 0 -3px 3px rgba(51,51,51,.25);
	z-index: 999;
}

.content__main {
	position: relative;
    float: left;
    width: 97%;
    min-height: 1px;
    padding-left: 15px;
    padding-right: 15px;
}

.cookie-message p {
    max-width: calc(80% - 15px);
    margin: 0;
}

.cookie-message a {
	color: #444444;
	text-decoration: underline;
}

.cookie-message a.cookiebar-close {
	text-decoration: none;
}

.cookie-message .cookiebar-close {
    text-align: center;
    max-width: calc(20% - 15px);
    font-weight: 600;
    position: absolute;
    right: 15px;
    top: 50%;
    margin-top: -10px;
    font-size: 12px;
    cursor: pointer;
    padding: 3px 15px;
    border: 1px solid #FF0000;
    color: #FF0000;
}

@media (max-width: 767px) {

	.cookie-message p {
    	max-width: inherit;
    	width: 97%;
	}

	.cookie-message .cookiebar-close {
    	margin-top: 8px;
    	display: inline-block;
    	position: relative;
    	float: none;
    	max-width: inherit;
    	right: inherit;
    	top: inherit;
	}
}
}