.bp-cookies-bar {
	position: fixed;
	bottom: 32px;
	right: 32px;
	background: #FFF;
	color: #1D1D20;
	padding: 1rem;
	z-index: 9999;
	font-size: 0.9rem;
	border: 1px solid #001351;
	border-radius: 8px;
}

.bp-cookies-inner {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	row-gap: 0.75rem;
}

.bp-cookies-actions {
	display: flex;
	column-gap: 0.75rem;
}

.bp-cookies-actions button {
	background: #001351;
	color: #fff;
	border: none;
	padding: 0.5rem 1rem;
	cursor: pointer;
}

.bp-cookies-panel {
	border: 1px solid #001351;
	margin-top: 1rem;
	padding: 1rem;
	border-radius: 8px;
}

.bp-cookies-panel .bp-cookies-choices {
	display: flex;
	flex-direction: column;
	row-gap: .5rem;
	margin-bottom: 1rem;
}

@media (max-width: 767px){
	.bp-cookies-bar {
		left: 16px;
		right: 16px;
		bottom: 16px;
	}
}