
/********** cookies **********/


.cookiesWrap {
	position: fixed;
    left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	
	background-color: rgba(0, 0, 0, 0.3);
	
	display: none;
}

@media (max-width: 768px) {
	
	.cookiesWrap .cookies {
		max-height: 95%;
		overflow: auto;
		max-width: 90%;
	}
}
	
.cookies {
    position: absolute;
    left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	
    width: 100%;
	max-width: 40em;
    padding: 2em 2.5em;
	max-height: 100%;
	overflow: auto;
	
	box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.3);
	
	
    background-color: #fff;
    color: #000;
	font-size: 0.8em;
	border-radius: 5px;
}

.cookies a {
	text-decoration: underline;
}

.cookies a:hover { 
	color: #fff;
}


#cookiesSave { 
	display: none; 
}

.cookiesWrap .cookies--active .cookies__options {
	max-height: 50em;
}

.cookiesWrap .cookies--active #cookiesConfirm {
	display: none;
}

.cookiesWrap .cookies--active #cookiesSave {
	display: inline-block;
}

.cookies__inner > * + *,
.cookies__intro > * + * {
	margin-top: 0.7em;
}

.cookiesWrap .cookies__options {
	max-height: 0;
	overflow: hidden;
	position: relative;
	
	transition: max-height 0.8s;
}

.cookies__title {
	font-size: 1.5em;
	font-weight: bold;
	
	line-height: 1.2;
    margin-bottom: 0.6em;
}

.cookiesSettings {
	margin-bottom: 2em;
	padding-left: 1em;
}

.cookiesSettings #cookiesSettings {
	margin-top: 1em;
}

.cookiesSettings button {
	background-color: transparent;
	padding: 0.7em 2.5em;
	min-width: auto;
}

.cookies__question {
	font-weight: bold;
}

.cookies__question small {
	font-weight: normal;
}


.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;
}

.cookies__buttons {
	display: flex;
	justify-content: space-between;
	gap: 1em;
	flex-wrap: wrap;
	
	margin-top: 2em;
	
	font-size: 0.85em;
	
}

.cookies__buttons button {
	background-color: transparent;
	padding: 0.7em 2.5em;
	min-width: auto;
	margin-bottom: 0.5em;
}


.cookies__btnMore {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.cookies__btnMore .icon {
	margin-left: 1em;
	width: 1em;
	transform: rotate(0deg);
	transition: transform .4s;
}

.cookies__moreInfo a:hover {
	color: var(--color__gold--hover);
}

.cookies--active .cookies__btnMore .icon {
	transform: rotate(-180deg);
}

.cookies__buttonsActions .b {
	margin-right: 1em;
}
.cookies__buttonsActions .b:last-of-type {
	margin-right: 0;
}