.cookiesWrap {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	background-color: rgba(0, 0, 0, 0.3)
}

.cookies {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	
	width: 100%;
	max-width: 44em;
	padding: 2em;
	max-height: 100%;
	overflow: auto;
	
	border-radius: var(--borderRadius);
	font-size: 0.8em;
	box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.3);
	background-color: var(--color__white);
	color: var(--color__navy);
	accent-color: var(--color__blue);
}

.cookies a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-decoration-color: var(--color__blue--light);
	text-underline-offset: 0.3em;
}

.cookies a:hover {
	text-decoration: none;
	color: var(--color__blue);
}

@media (min-width: 65em) {
	.cookies {
		font-size: 1em
	}
}

#cookiesSave {
	display: none
}

.cookiesWrap .cookies--active .cookies__options {
	max-height: 50em;
}

.cookiesWrap .cookies--active #cookiesConfirm {
	display: none;
}

.cookiesWrap .cookies--active #cookiesSave {
	display: inline-block;
}
.cookiesWrap .cookies__options {
	max-height: 0;
	overflow: hidden;
	position: relative;
	transition: max-height 0.8s;
}

.cookies__title {
}

.cookiesSettings {
	margin-bottom: 2em;
	padding-left: 3em;
}

.cookiesSettings #cookiesSettings {
	margin-top: 1em;
}

.cookies__question {
	font-weight: bold;
}

.cookies__question small {
	font-weight: normal;
}

.cookies__options {
	accent-color: var(--color__blue);
}

.cookies__options > * + * {
	margin-top: 0.3em;
}

.cookies__option {
	display: flex;
	align-items: flex-start;
}

.cookies__option input {
	margin-top: 0.4em;
}

.cookies__option label {
	margin-left: 0.5em;
}

.cookies__option b {
	display: block;
	color: var(--color__blue);
}

.cookies__buttons {
	display: flex;
	justify-content: space-between;
	gap: var(--spacing3);
	flex-wrap: wrap;
	margin-top: var(--spacing4);
}

.cookies__buttonsActions {
	display: flex;
	gap: var(--spacing3);
	flex-wrap: wrap;
}