
#cookie-agreement{
	display: flex;
	flex-direction: row;
	align-items: stretch;
	justify-content: center;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: auto;
	pointer-events: none;
	padding: 0 20px 10px;
	box-sizing: border-box;
	z-index: 1000 !important;
	opacity: 1;
	transition: opacity 300ms ease;
	will-change: opacity;
}

#cookie-agreement[a-hidden]{
	opacity: 0;
	pointer-events: none !important;
}

#cookie-agreement>*,
#cookie-agreement>* *{
	pointer-events: initial;
}

#cookie-agreement[a-hidden]>*,
#cookie-agreement[a-hidden]>* *{
	pointer-events: none !important;
}

#cookie-agreement>*{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 640px;
	border-radius: 2px;
	background: #fff;
	box-shadow: 0 4px 8px 0 rgba(0,0,0,.5);
	padding: 16px;
	box-sizing: border-box;
}


#cookie-agreement--text{
	font-family: SegoeUI;
	font-size: 16px;
	line-height: 1.2em;
}

	#cookie-agreement--text>a{
		display: inline;
		font-size: inherit;
		line-height: inherit;
		color: #ff4d4d;
		border-bottom: 1px solid rgba(255, 77, 77, 0.4);
		text-decoration: none;
	}

#cookie-agreement--close{
	font-family: SegoeUISemibold;
	border-radius: 2px;
	background: #ff4d4d;
	color: #fff;
	cursor: pointer;
	letter-spacing: .02em;
	padding: 4px 12px;
	margin-left: 24px;
}






