.consent {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
    background: rgba(17, 17, 17, 0.8);
	backdrop-filter: blur(10px);
    display: flex;
    width: 100%;
    height: auto;
	line-height: 1.5;
    position: fixed;
    bottom: 0;
    padding: 26px 32px;
	color: #fff;
    font-size: 16px;
    z-index: 10001;
	justify-content: center;
}
.consent p {
	margin: 0;
}
.consent-inner {
	display: flex;
	width: 1200px;
	max-width: 100%;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
}
.consent-content a {
	color: #fff;
	font-weight: 600;
}
.consent-content a:hover {
	text-decoration: none;
}
.consent-content p {
	display:inline;
}
.btn-link-style {
	color: #fff;
	text-decoration: underline;
	font-size: 16px;
}
.btn-link-style:hover {
	text-decoration: none;
}
.consent-btns {
    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;
	cursor: pointer;
	border-radius: 4px;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
.consent-decline {
	background: #fff;
	color: #000;
	font-weight: 500;
}
.consent-accept {
	background: linear-gradient(45deg, #F9F4B7 -38.55%, #8D692B 100%);
	border: 2px solid #C4B06E;
	font-weight: 500;
	color: #fff;
}
.consent-accept:hover,
.consent-decline:hover {
	opacity: 0.8;
}
.od-hidden {
	display: none !important;
}
.close-cookie-banner {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 10px;
	right: 10px;
	margin: 0;
	padding: 0;
	cursor: pointer;
	z-index: 5;
	transition: .3s;
}
.close-cookie-banner::after,
.close-cookie-banner::before {
    content: "";
    background: #fff;
    width: 20px;
    height: 2px;
    position: absolute;
    left: 10px;
    top: 19px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.close-cookie-banner::before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.close-cookie-banner:hover {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

@media only screen and (max-width: 1280px) {
	.consent {
		padding-right: 60px;
	}
}
@media only screen and (max-width: 991px) {
	.consent {
		text-align: center;
		padding-right: 32px;
		padding: 50px 20px 20px;
	}
	.consent-inner {
		flex-direction: column;
	}
}