.cookiebox-item {	
	margin-bottom: 5px;	
	border: 1px solid #f5f5f5;
	border-radius: 3px;
}
.cookiebox-item-h {
	background: #f5f5f5;
	border-radius: 3px;
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.cookiebox-item-h label {
	font-size: 110%;
	font-weight: bold;
}
.cookiebox-item-h:hover {
	background: #eee;
}
.cookiebox-item-oc {
	padding-right: 15px;
	position: relative;
	font-weight: normal;
}
.cookiebox-item-oc::after {
	content: '';
	border-bottom: 2px solid black;
	border-right: 2px solid black;
	transform: translateY(-50%) rotate(45deg);
	transform-origin: center center;
	width: 4px;
	height: 4px;
	position: absolute;
	right: 0;
	top: 50%;
}
.cookiebox-item-detail {
	padding: 10px;
	overflow: auto;
}
.cookiebox-item-table {
	width: 100%;
	min-width: 300px;
	font-size: 90%;
}
.cookiebox-item-table thead td, .cookiebox-item-table thead th {
	padding: 10px;
	background: #ddd;	
	font-size: 90%;	
	font-weight: 500;
	text-transform: uppercase;
}
.cookiebox-item-table td, .cookiebox-item-table th {
	padding: 10px;
	background: #fdfdfd;
}
.cookiebox-item-table tr:nth-child(even) td, .cookiebox-item-table tr:nth-child(even) th {
	background: #fafafa;
}
.cookiebox-submit {
	text-align: right;
	margin-top: 10px;
}
.cookiebox-item-table-nazev {
	width: 100px;
	font-weight: 500;
}
.cookiebox-item-table-delka {
	width: 100px;
	text-align: center;
}

.cookies-links {
	margin-bottom: 20px;
	display: flex;
}
.cookies-links > * {
	display: flex;
	margin-right: 20px;
	align-items: center;
	font-weight: normal;
}
.cookies-links > * img {
	max-height: 12px;
	max-width: 12px;
	display: block;
	margin-right: 5px;
}


/*** popup ***/
.cookies-canvas {
	width:100%;
	height:100%;
	position:fixed;
	top:0;
	left:0;
	background:rgba(0,0,0,0.9);
	z-index:1000;
}

.cookies-popup {
	width:800px;
	max-width: 90%;
	height:auto;
	position:absolute;
	top:50%;
	left:50%;
	transform: translate(-50%, -50%);
	background:white;
	padding:30px 30px 30px 30px;
	z-index:1001;
	text-align:left;
}
.cookies-popup .inline-block {
	display: inline-block;
}
.cookies-popup h2 {	
	margin-top: 0;
	margin-bottom: 20px;
	text-align: left;
}
.cookies-popup p {	
	margin-top: 0;
	padding-bottom: 20px;
	font-size: 90%;
}
.cookies-popup label {	
	display: inline-block;
	/*padding: 0;*/
	margin: 0;
	color: #333;
	font-size: 90%;
}
.cookies-popup .check {
	margin: 0 5px 0 0;
	height: auto;
	vertical-align: middle;
}
.cookies-popup .button {
	padding: 10px 20px 10px 20px;
	margin-bottom: 0;
	background: #79B634;
	color: white;
	text-decoration: none;
	border: 0;
	box-shadow: none;
}
.cookies-popup-buttons {
	margin-top: 10px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.cookies-popup-buttons > * {
	margin-top: 10px;
}
.cookies-popup-buttons .cookies-button-disable {
	background: #aaa;
	color: white;
}





