/*--------------------------------------------------------------
17.0 Cookie Message
--------------------------------------------------------------*/

#topbar-search form {
	display: none !important;
}

.cookie_message {
	display: none;
	opacity: 0;
	z-index: 10000;
	position: fixed;
	bottom:30px;
	right:30px;
	background: #fff;
	width: 340px;
	padding: 10px 15px;
	border: 1px solid #000 !important;
	-webkit-transform: translateX(20px);
	transform: translateX(20px);
	-webkit-transition: -webkit-transform 0.3s ease-out, opacity 0.3s ease-out;
	transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.cookie_message.show {
	opacity: 1;
	-webkit-transform: translateX(0);
	transform: translateX(0);
}

.cookie_message .text_cookie_message {
	display: block;
	margin-bottom:10px;
}

.cookie_message a, .cookie_message a:hover {
	display: block;
	cursor:pointer;
	text-transform: uppercase;
	margin-bottom: -1px;
	letter-spacing: 0.03em;
	font-weight: 300;
	color:#000;
}

.cookie_message, .cookie_message a {
	font-size: 14px;
	line-height: 22px;
}

.cookie_message a {
	color:#990000;
	font-weight: bold;
	-webkit-transition:opacity 0.3s ease-out;
	transition:opacity 0.3s ease-out;
}

.cookie_message a:hover {
	opacity: 0.6;
	color:#990000;
	font-weight: bold;
}

@media all and (max-width: 560px) and (min-width: 0) {

	.cookie_message {
		width: -moz-calc(100% - 50px);
		width: -webkit-calc(100% - 50px);
		width: -o-calc(100% - 50px);
		width: calc(100% - 50px);
		right: 10px;
		left: 10px;
		bottom:10px;
	}

	.cookie_message a, .cookie_message a:hover {
		margin-bottom:4px;
	}

}