.cookie-fixed,
.cookie-fixed * {
	box-sizing: border-box;
}
.cookie-fixed {
	position: fixed;
	bottom: 16px;
	left: 16px;
	z-index: 10000;
	display: flex;
	align-items: center;
	max-width: 500px;
	padding: 16px 20px;
	font-size: 14px;
	line-height: 1.2;
	background-color: #fff;
	border-radius: 16px;
	box-shadow: 0 12px 24px 0 rgba(38,38,38,.16);
        max-width: calc(100% - 32px);
}
.cookie-fixed.hidden {
	display: none;
}
.cookie-fixed-btn {
	min-width: 110px;
	margin-left: 16px;
	margin-top: 6px;
	padding: 12px 10px;
	font-weight: 500;
	text-align: center;
	color: #fff;
	border-radius: 8px;
	background-color: #0066cc;
	cursor: pointer;
}

@media screen and (max-width: 500px) {
	.cookie-fixed {
		flex-direction: column;
	}
}