.simple-cookies,.simple-cookies *
{
	box-sizing: border-box;
	moz-box-sizing: border-box;
	webkit-box-sizing: border-box;
}
.hidden
{
	display: none!important;
}
.simple-cookies
{
	border: 0;
	bottom: 0;
	display: none;
	left: 0;
	margin: 0;
	padding: 0;
	position: fixed;
	right: 0;
	width: 100%;
	z-index: 99;
}
.simple-cookies.active
{
	display: block;
}
.simple-cookies.top
{
	bottom: auto;
	left: 0;
	right: 0;
	top: 0;
}
.simple-cookies.bottom
{
	bottom: 0;
	left: 0;
	right: 0;
	top: auto;
}
.simple-cookies.left
{
	bottom: 0;
	left: 0;
	right: 0;
	top: auto;
	width: 360px;
}
.simple-cookies.right
{
	bottom: 0;
	left: auto;
	right: 0;
	top: auto;
	width: 360px;
}
.simple-cookies .simple-cookies-wrapper
{ 
	align-items: center;
	animation: cookieShow .35s linear;
	animation-fill-mode: forwards;
	background-color: #EADFD8;
	border: 1;
	border-radius: 20px;
	box-shadow: rgba(44,50,73,.08) 0 0 20px;
	color: #2C3249;
	display: flex;
	font-size: 13px;
	justify-content: center;
	margin: 5px auto;
	max-width: 800px;
	moz-animation: cookieShow .35s linear;
	moz-animation-fill-mode: forwards;
	padding: 10px 10px;
	webkit-animation: cookieShow .35s linear;
	webkit-animation-fill-mode: forwards;
}
.simple-cookies .simple-cookies-wrapper.fullwidth
{
	border-radius: 0;
	margin: 0 auto;
	max-width: none;
}
.simple-cookies .simple-cookies-wrapper.fullwidth .simple-cookie-content
{
	margin-bottom: 0;
}
.simple-cookies.left .simple-cookies-wrapper,.simple-cookies.right .simple-cookies-wrapper
{
	display: block;
	max-width: 300px;
	text-align: center;
}
.simple-cookies.left .simple-cookies-wrapper
{
	margin: 0 0 20px 20px;
}
.simple-cookies.right .simple-cookies-wrapper
{
	float: right;
	margin: 0 20px 20px 0;
}
.simple-cookies .simple-cookie-content
{
	align-items: center;
	display: flex;
	margin-bottom: 15px;
}
.simple-cookies.left .simple-cookie-content,.simple-cookies.right .simple-cookie-content
{
	display: block;
}
.simple-cookies .simple-cookie-content a
{
	border-bottom: 1px dotted;
}
.simple-cookies .simple-cookie-content h4
{
	font-size: 18px;
	line-height: 1;
	margin: 0 0 8px 0;
	padding: 0;
}
.simple-cookies h4
{
	color: inherit;
}
.simple-cookies.left .simple-cookie-content h4,.simple-cookies.right .simple-cookie-content h4
{
	font-size: 20px;
	margin-bottom: 12px;
}
.simple-cookies .simple-cookie-content>div:first-child img
{
	margin-right: 15px;
	max-width: 60px;
}
.simple-cookies.left .simple-cookie-content>div:first-child img,.simple-cookies.right .simple-cookie-content>div:first-child img
{
	margin: 0 0 10px 0;
	max-width: 90px;
}
.simple-cookies .simple-cookie-buttons
{
	align-items: center;
	display: flex;
	padding-left: 20px;
}
.simple-cookies.left .simple-cookie-buttons,.simple-cookies.right .simple-cookie-buttons
{
	justify-content: center;
	margin-top: 20px;
	padding-left: 0;
}
.simple-cookies.left .fullwidth,.simple-cookies.right .fullwidth
{
	border-radius: 12px;
}
.simple-cookies .simple-cookie-buttons .tap:not(:last-child)
{
	margin-right: 5px;
}
.simple-cookies .tap
{
	align-items: center;
	background-color: transparent;
	border: 2px solid #D3CBC9;
	border-radius: 20px 20px 20px 20px!important;
	border-radius: 20px;
	color: #2C3249;
	cursor: pointer;
	display: inline-flex;
	font-size: inherit;
	font-weight: 400;
	justify-content: center;
	line-height: 40px;
	margin: 0;
	min-width: auto;
	moz-transition: all .2s ease-out;
	opacity: 1;
	padding: 0 15px;
	text-align: center;
	text-decoration: none;
	transition: all .2s ease-out;
	webkit-transition: all .2s ease-out;
}
.simple-cookies .tap:hover
{
	background-color: rgba(0,0,0,.1);
	color: #2C3249;
	text-decoration: none;
}
.simple-cookies.light .simple-cookies-wrapper
{
	background-color: #ffffff;
}
.simple-cookies.dark .simple-cookies-wrapper
{
	background-color: #2B3147;
	color: #eeeeee;
}
.simple-cookies.dark .simple-cookie-content a
{
	color: #eeeeee;
}
.simple-cookies.dark .tap
{
	border-color: rgba(255,255,255,.35);
	color: #eeeeee;
}
.simple-cookies.dark .tap:hover
{
	background-color: rgba(0,0,0,.25);
	border-color: rgba(255,255,255,.7);
	color: #ffffff;
}
@media (max-width:767px)
{
	.simple-cookies .simple-cookies-wrapper
	{
		display: block;
		margin: 0;
		text-align: center;
	}
	.simple-cookies.bottom .simple-cookies-wrapper,.simple-cookies.top .simple-cookies-wrapper
	{
		border-radius: 0;
	}
	.simple-cookies .simple-cookie-content
	{
		display: block;
		margin: 0;
	}
	.simple-cookies .simple-cookie-buttons
	{
		justify-content: center;
		margin-top: 15px;
		padding-left: 0;
	}
	.simple-cookies .simple-cookie-content h4
	{
		margin-top: 10px;
	}
	.simple-cookies .tap
	{
		line-height: 38px;
		min-width: 110px;
	}
}
@-webkit-keyframes cookieShow
{
	0%
	{
		opacity: .3;
		transform: scale(.85);
	}
	100%
	{
		opacity: 1;
		transform: scale(1);
	}
}
@-moz-keyframes cookieShow
{
	0%
	{
		opacity: .3;
		transform: scale(.85);
	}
	100%
	{
		opacity: 1;
		transform: scale(1);
	}
}
@keyframes cookieShow
{
	0%
	{
		opacity: .3;
		transform: scale(.85);
	}
	100%
	{
		opacity: 1;
		transform: scale(1);
	}
}