/* dooble cookies consent
 * By dooble
 * Version: 1.6
 * Last updated: 29/04/2026
 * https://github.com/yuvalAshkenaz/cookies-consent/
 */
.consent {
    background: rgba(17, 17, 17, 0.8);
	backdrop-filter: blur(10px);
    width: 100%;
    height: auto;
	line-height: 1.5;
    position: fixed;
    bottom: 0;
    z-index: 8009;
}
.consent:not(.active) {
	display: none;
}
.consent p {
	margin: 0;
	color: #fff;
    font-size: 16px;
	line-height: 1.5;
}
.consent b,
.consent strong {
	font-weight: 600;
}
.consent-inner1 {
    display: flex;
	gap: 20px;
    padding: 20px 30px;
	color: #fff;
    font-size: 16px;
	justify-content: center;
}
.cookie-img {
	width: auto;
	height: auto;
	max-width: 107px;
	max-height: 92px;
	margin: 0 0 auto 0;
}
.consent-inner2 {
	display: flex;
	width: 1200px;
	max-width: 100%;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
}
.consent-content a {
	color: #fff;
	font-weight: 600;
	text-decoration: underline;
}
.consent-content a:hover {
	text-decoration: none;
	color: #fff;
}
.consent-btns {
	width: max-content;
    display: flex;
    gap: 16px;
	flex-shrink: 0;
}
.consent-accept,
.consent-decline {
	border: none;
	padding: 8px 24px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	line-height: 1;
	flex-shrink: 0;
	cursor: pointer;
	border-radius: 4px;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
.consent-decline {
	background: #fff;
	color: #000;
}
.consent-accept {
	background: #1290c1;
	color: #fff;
}
.consent-accept:hover,
.consent-decline:hover {
	opacity: 0.8;
}
.od-hidden {
	display: none !important;
}

@media only screen and (max-width: 991px) {
	.consent:not(:has(.cookie-img)) {
		text-align: center;
	}
	.consent:has(.cookie-img) .consent-inner2 {
		align-items: flex-start;
	}
	.consent-inner2 {
		flex-direction: column;
	}
}
@media only screen and (max-width: 767px) {
	.cookie-img {
		max-width: 96px;
		max-height: 83px;
	}
}
@media only screen and (max-width: 599px) {
	.cookie-img {
		max-width: 56px;
	}
}