.cookie-popup-section {
	opacity: 0;
	transition: background-color 0.3s ease;
}
.cookie-popup-section.show {
	opacity: 1;
}
.cookie-popup-section .cookie-popup {
	position: fixed;
	bottom: -200px;
	right: 20px;
	display: flex;
	padding: 20px;
	max-width: 508px;
	background-color: #FFFFFF;
	z-index: 10001;
	border-radius: var(--theme-rounded);
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.cookie-popup-section.show .cookie-popup {
	bottom: 20px;
	transition: bottom 0.5s ease;
}
.cookie-popup-section .cookie-popup-text {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	gap: 14px;
	max-width: 250px;
}
.cookie-popup-section .cookie-popup-text > div {
	text-align: left;
	color: #08080E;
}
.cookie-popup-section .cookie-popup-image {
	padding-left: 10px;
}
.cookie-popup-section .cookie-popup-image svg path {
	fill: var(--bs-success);
}
@media (max-width: 991px) {
	.cookie-popup-section .cookie-popup {
		margin: 10px;
		bottom: -100px;
		right: 0;
		width: -webkit-fill-available;
	}
	.cookie-popup-section.show .cookie-popup {
		bottom: 0;
		transition: bottom 0.8s ease;
	}
	.cookie-popup-section .cookie-popup-image {
		display: none;
	}
	.cookie-popup-section .cookie-popup-text {
		max-width: none;
		align-items: center;
	}
	.cookie-popup-section .cookie-popup-text > div {
		text-align: center;
	}
}
