/*==========================================*/
/*=          Cookie Consent Banner         =*/
/*==========================================*/

.cookie-consent {
	position: fixed;
	left: 20px;
	right: 20px;
	bottom: 20px;
	z-index: 1000000;
	max-width: 1160px;
	margin: 0 auto;
	padding: 26px 30px;
	background: #163641;
	border-radius: 12px;
	box-shadow: 0 12px 40px 0 rgba(22, 54, 65, 0.35);
	font-family: 'Roboto', sans-serif;
	transform: translateY(20px);
	opacity: 0;
	transition: opacity 0.35s ease-in-out, transform 0.35s ease-in-out;
}

.cookie-consent.is-visible {
	transform: translateY(0);
	opacity: 1;
}

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

.cookie-consent__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 22px;
}

.cookie-consent__text {
	flex: 1 1 480px;
}

.cookie-consent__title {
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	margin: 0 0 8px;
}

.cookie-consent__text p {
	color: #cbd7dc;
	font-size: 15px;
	line-height: 1.65;
	margin: 0;
}

.cookie-consent__text a {
	color: #b0d6e2;
	text-decoration: underline;
}

.cookie-consent__text a:hover {
	color: #fff;
}

.cookie-consent__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	flex-shrink: 0;
}

.cookie-consent__btn {
	display: inline-block;
	padding: 10px 30px;
	border-radius: 30px;
	font-family: inherit;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.5;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
	white-space: nowrap;
}

.cookie-consent__btn--accept {
	background: #fff;
	border: 2px solid #fff;
	color: #163641;
}

.cookie-consent__btn--accept:hover {
	background: #b0d6e2;
	border-color: #b0d6e2;
	color: #163641;
}

.cookie-consent__btn--reject {
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.4);
	color: #fff;
}

.cookie-consent__btn--reject:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: #fff;
	color: #fff;
}

.cookie-consent__btn:focus-visible {
	outline: 2px solid #b0d6e2;
	outline-offset: 3px;
}

.cookie-consent__status {
	flex-basis: 100%;
	margin: 0;
	color: #8fa8b1;
	font-size: 13px;
}

@media (max-width: 767px) {
	.cookie-consent {
		left: 12px;
		right: 12px;
		bottom: 12px;
		padding: 22px;
	}

	.cookie-consent__actions {
		width: 100%;
	}

	.cookie-consent__btn {
		flex: 1 1 auto;
		text-align: center;
	}
}
