.cookie-consent .container {
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto
}

@media (min-width: 576px) {
	.cookie-consent .container {
		max-width: 540px
	}
}

@media (min-width: 768px) {
	.cookie-consent .container {
		max-width: 720px
	}
}

@media (min-width: 992px) {
	.cookie-consent .container {
		max-width: 960px
	}
}

@media (min-width: 1200px) {
	.cookie-consent .container {
		max-width: 1140px
	}
}

.cookie-consent {
	background-color: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(10px);
	box-shadow: 0px 10px 30px rgba(42, 42, 42, 0.15);
	align-items: center;
	font-size: 12px;
	bottom: 0;
	display: flex;
	font-weight: 400;
	left: 0;
	padding: 15px 0;
	position: fixed;
	right: 0;
	z-index: 99999;
	transition: 0.4s;
	pointer-events: none;
	opacity: 0;
}

.cookie-consent p,
.cookie-consent .btn {
	font-size: 12px;
}

.cookie-consent.show {
	opacity: 1;
	pointer-events: all;
}

.cookie-consent .elements {
	display: flex;
	align-items: center;
	flex-direction: row;
	justify-content: space-between;
}

.cookie-consent .elements .message-consent {
	gap: 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.cookie-consent .elements button {
	font-weight: 700;
	text-transform: uppercase;
	outline: none;
	transition: 0.5s;
}

.cookie-consent .elements .close-modal {
	background-color: transparent;
	cursor: pointer;
	border: none;
	padding-left: 8px;
	text-transform: uppercase;
	padding: 0;
}
.cookie-consent .elements .close-modal.mobile {
	display: none;
}
.cookie-consent .elements .close-modal.desktop {
	display: block;
}

.cookie-consent .elements .close-modal:focus {
	outline: 0
}

.cookie-consent .elements .close-modal svg {
	transition: transform .4s;
}

.cookie-consent .elements .close-modal svg:hover {
	transform: scale(1.25)
}

.cookie-consent .elements .close-modal svg .a,
.cookie-consent .elements .close-modal svg .b {
	fill: none
}

.cookie-consent .elements .close-modal svg .b {
	stroke: #828388;
	stroke-width: 2px
}

.cookie-consent .elements .message-consent p {
	color: #6D6E6D;
	margin: 0;
}

.cookie-consent .elements .actions {
	gap: 10px;
	align-items: center;
	display: flex;
}

.cookie-consent .elements .actions #more-details {
	background-color: transparent;
	border-color: transparent;
	color: #4D4D4D;
}

.cookie-consent .elements .actions #more-details:hover {
	background-color: #f0f0f0;
}

.cookie-consent .elements .actions .btn {
	padding: 10px;
	width: max-content
}

@media (max-width: 1023px) {
	.cookie-consent {
		font-size: 11px;
		padding: 10px 0;
	}

	.cookie-consent p,
	.cookie-consent .btn {
		font-size: 11px;
	}
		
	.cookie-consent .elements {
		gap: 10px;
		flex-direction: column;
		text-align: justify;
		align-items: end;
	}

	.cookie-consent .elements .close-modal.mobile {
		display: block;
	}
	.cookie-consent .elements .close-modal.desktop {
		display: none;
	}
	
	.cookie-consent .elements .actions {
		justify-content: flex-end;
	}
}