/**
 * atbits.cookiepolicy.css v1.0.0
 * https://www.atbits.de/
 * 
 * jQuery plugin to manage cookie policy.
 *
 * Copyright (c) 2019 atBits GmbH & Co. KG <info@atbits.de>
 */

.cc-wrapper {
	display: none;
	background: #fff; 
	font-size: 14px;
}

/* --- Banner --- */
.cc-banner {
	width: 100%; 
	position: fixed; 	 
	left: 0;
	z-index: 10000;
}

.cc-banner.cc-top {
	top: 0;
	/*border-bottom: 1px solid #e0e0e0;*/
	-webkit-box-shadow: 2px 2px 14px 2px rgba(18,18,18,0.2); 
	-moz-box-shadow: 2px 2px 14px 2px rgba(18,18,18,0.2); 
	box-shadow: 2px 2px 14px 2px rgba(18,18,18,0.2); 
}
.cc-banner.cc-bottom {
	bottom: 0;
	/*border-top: 1px solid #e0e0e0;*/
	-webkit-box-shadow: 2px 2px 14px 2px rgba(18,18,18,0.2); 
	-moz-box-shadow: 2px 2px 14px 2px rgba(18,18,18,0.2); 
	box-shadow: 2px 2px 14px 2px rgba(18,18,18,0.2); 
}

.cc-banner .cc-container {
	padding: 20px 15px;
	margin: 0 auto; 
	width: 100%; 
}

@media screen and (min-width: 768px) { 
	.cc-banner .cc-container {
		width: 750px; 
	}
}

@media screen and (min-width: 992px) { 
	.cc-banner .cc-container {
		width: 970px; 
	}
}

@media screen and (min-width: 1200px) { 
	.cc-banner .cc-container {
		width: 1170px; 
	}
}


/* --- Window --- */
.cc-window {

}


/* --- Grid --- */
.cc-row {
	margin-right: -15px;
	margin-left: -15px;
}
.cc-row:before,
.cc-row:after {
	display: table;
  	content: " ";
}
.cc-row:after {
	clear: both;
}

.cc-left,
.cc-right {	
	padding: 0 15px;	
}

@media screen and (min-width: 768px) { 
	.cc-left, .cc-right {
		float: left;
	}
	.cc-left {
		width: 70%;
	}
	.cc-right {
		width: 30%;
	}
}


/* --- Content --- */

/* Content: Text */
.cc-text {
}
.cc-text a {
	
}
.cc-text a:hover,
.cc-text a:focus {
	
}

/* Content: Checkboxes */
.cc-check {
}
.cc-check label {
	cursor: pointer;
	font-weight: normal; 
	display: inline-block;
	margin: 0 10px 0 0; 
}
.cc-check label:last-child {
	margin-right: 0;  
}

/* Content: Buttons */
.cc-buttons {
	margin-top: 20px; 
}
.cc-buttons .cc-btn {
	background: #fff;
	border: 1px solid #ccc;
	color: #333;

	display: inline-block;
	padding: 10px;
	margin-bottom: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	
	min-width: 150px;
	width: 100%; 
}
.cc-buttons .cc-btn:hover,
.cc-buttons .cc-btn:focus {
	background-color: #e6e6e6;
	border-color: #adadad;
	color: #333;
	text-decoration: none;
}

@media screen and (min-width: 768px) { 
	.cc-buttons {
		margin-top: 0; 
		text-align: right;
	}
	.cc-buttons .cc-btn { 
		width: auto;
	}
}


