/* cookie notice + medical disclaimer in footer */

.az-cookie {
	position: fixed;
	right: 20px;
	bottom: 80px;
	z-index: 1000;
	display: flex;
	align-items: center;
	gap: 16px;
	width: 600px;
	max-width: calc(100vw - 40px);
	padding: 16px 20px;
	background: #fff;
	border: 1px solid #e6ebee;
	border-radius: 8px;
	box-shadow: 0 6px 24px rgba(0, 0, 0, .15);
}

.az-cookie[hidden] {
	display: none;
}

.az-cookie__text {
	font-size: 13px;
	line-height: 1.45;
	color: #333;
}

.az-cookie__text a {
	color: #23a1ce;
	text-decoration: underline;
}

.az-cookie__text a:hover {
	color: #33b0dc;
}

.az-cookie__btn {
	flex: 0 0 auto;
	min-width: 64px;
	padding: 10px 20px;
	font-size: 14px;
	line-height: 1.2;
	color: #fff;
	background: #23a1ce;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

.az-cookie__btn:hover {
	background: #33b0dc;
}

@media (max-width: 991px) {
	.az-cookie {
		right: 10px;
		left: 10px;
		bottom: 110px;
		width: auto;
		max-width: none;
	}
}

@media (max-width: 600px) {
	.az-cookie {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
		padding: 14px 16px;
	}

	.az-cookie__btn {
		width: 100%;
	}
}

.footer__disclaimer {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, .12);
	font-size: 12px;
	line-height: 1.5;
	color: #999;
}

.footer--color-light .footer__disclaimer {
	border-bottom-color: rgba(0, 0, 0, .1);
}
