#cookieconsent_dialog
{
	position: fixed;
	overflow: hidden;
	box-sizing: border-box;
	padding: 12px 16px 8px 16px;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	background: #fff;
	border-top:2px solid #666666;
	box-shadow: 0 0px 20px 0px rgba(37,45,51, .12);
	z-index: 9999;
	color: #fff;
}

#cookieconsent_dialog > :nth-child(1)
{
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	width:100%;
}
#cookieconsent_dialog > :nth-child(1) > :nth-child(1)
{
	background-image:url(/images/cookie.png);
	display: block;
	height: 32px;
	width: 32px;
	min-width:32px;
	background-size:32px 32px;
	margin-right: 12px;
	vertical-align: middle;
}
#cookieconsent_dialog > :nth-child(1) > :nth-child(2)
{
	color: #616366;
	padding-right: 10px;
}

#cookieconsent_dialog > :nth-child(2)
{
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content:center;
}

#cookieconsent_dialog > :nth-child(2) > :nth-child(1)
{
	cursor: pointer;
	font-size:15px;
	font-weight:bold;
	padding: 12px 24px;
	min-width:140px;
	color:#616366;
	border-color:#e3e5e8;
	margin-right: 1em;
}
#cookieconsent_dialog > :nth-child(2) > :nth-child(1):hover,
#cookieconsent_dialog > :nth-child(2) > :nth-child(1):active,
#cookieconsent_dialog > :nth-child(2) > :nth-child(1):focus
{
	color: #1e88e5;
	border-color:#1e88e5;
}
#cookieconsent_dialog > :nth-child(2) > :nth-child(2)
{
	cursor: pointer;
	font-size:15px;
	font-weight:bold;
	padding: 12px 24px;
	min-width:140px;
	color: #fff;
	background-color: #1e88e5;
}
#cookieconsent_dialog > :nth-child(2) > :nth-child(2):hover,
#cookieconsent_dialog > :nth-child(2) > :nth-child(2):active,
#cookieconsent_dialog > :nth-child(2) > :nth-child(2):focus
{
	background-color: #3ba3ff;
}

@media print
{
	#cookieconsent_dialog
	{
		display: none
	}
}

@media screen and (max-width:736px)
{
	#cookieconsent_dialog
	{
		flex-wrap:wrap;
	}
	#cookieconsent_dialog > :nth-child(2)
	{
		margin-top:10px;
		width:100%;
	}
	#cookieconsent_dialog > :nth-child(2) > :nth-child(1),
	#cookieconsent_dialog > :nth-child(2) > :nth-child(2)
	{
		width:100%;
	}
}
