.barra_cookies {
	position:fixed;
	bottom:0;
	left:0;
	width:100%;
	background-color:#fff;
	z-index:21;
	font-size:0;
}
.barra_cookies::before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #1d1d1b;
    opacity: 0.7;
}
.barra_cookies.hidden {
	display:none
}

.barra_cookies > div{
	position: relative;
	padding:15px 0;
	background-color:#000;
}

.barra_cookies .container {
	position: relative;
	display:flex;
	align-items:center;
	width:830px;
	max-width:100%;
	z-index: 16;
}
.barra_cookies .container > div:last-of-type {
	padding-left:50px;
}

.barra_cookies p {
	color:#fff;
	font-size:12px;
	line-height:1.75em;
	margin:0;
}

.barra_cookies p a {
	color:#fff;
	border-bottom:1px solid currentColor;
	text-decoration:none;
	transition:all .1s ease-in-out;
	font-size:12px;
}
.barra_cookies p a:hover {
	border-bottom:1px solid transparent;
}

.barra_cookies .cookie_btn {
	color:#fff!important;
	background-color: var(--primary);
	border:none;
	font-size:14px;
	text-decoration:none;
	padding:15px 20px;
	display:inline-block;
	cursor:pointer;
}

.barra_cookies .cookie_options {
	display:flex;
	padding-top:10px;
	justify-content:space-between;
}

.barra_cookies .cookie_options input[type='checkbox'] {
	display:none;
}
.barra_cookies .cookie_options input[type='checkbox'] + label {
	display:inline-block;
	height:20px;
	width:20px;
	background-color:#f095a6;
	border:1px solid #000;
	position:relative;
	cursor:pointer;
	margin:0;
	vertical-align:middle;
}
.barra_cookies .cookie_options input[type='checkbox'] + label::before {
	content:'';
	position:absolute;
	height:10px;
	width:10px;
	background-color:#fff;
	left:4px;
	top:4px;
	opacity:0;
	transition:all .1s ease-in-out;
	pointer-events:none;
}
.barra_cookies .cookie_options input[type='checkbox']:checked + label::before {
	opacity:1;
}

.barra_cookies .cookie_options input[type='checkbox'] + label + label {
	font-size:12px;
	color:#fff;
	margin:0;
	vertical-align:middle;
	font-weight:400;
	padding-left:10px;
}

.barra_cookies .cookie_options input[type='checkbox']:disabled + label, .barra_cookies .cookie_options input[type='checkbox']:disabled + label + label {
	opacity:.6;
	cursor:default;
}

.barra_cookies .cookie_options input[type='checkbox']:disabled:checked + label::before {
	background-color: #1d1d1b;
	opacity: 0.5;
}

@media(max-width:767px) {
	.barra_cookies .container {
		flex-wrap:wrap;
		flex-direction: column;
	}

	.barra_cookies .container > div{
		padding: 0 30px 10px 30px;
	}

	
	.barra_cookies .container > div:last-of-type {
		padding-top: 10px;
		padding-left:0;
	}
	
	.barra_cookies p {
		font-size:11px;
	}
	
	.barra_cookies .cookie_options {
		padding-bottom:20px;
	}
	
	.barra_cookies .cookie_options input[type='checkbox'] + label + label {
		font-size:11px;
		padding-left:5px;
	}
}