/*-------------------- COOKIES ------------------------*/
#cookie_banner{
  position: fixed;
  bottom: 3vh;
  left: 3vw;
  transform: translateX(-100vw); 
  width: min(60vw, 400px);
  aspect-ratio: 1 / 1;
  filter: drop-shadow(0 0px 5px rgba(0,0,0,.18));
  -webkit-filter: drop-shadow(0 0px 5px rgba(0,0,0,.18));
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: .5rem;
  padding: 1rem 2rem;

  position: fixed;
  animation: slideIn 0.8s ease-out 0s forwards;
}

#cookie_banner::before{
  content: "";
  position: absolute;
  inset: 0;               
  background: #fff;

  -webkit-clip-path: polygon(
    50% 0%,
    93.3% 25%,
    93.3% 75%,
    50% 100%,
    6.7% 75%,
    6.7% 25%
  );
  clip-path: polygon(
    50% 0%,
    93.3% 25%,
    93.3% 75%,
    50% 100%,
    6.7% 75%,
    6.7% 25%
  );

  border-radius: 12px;    
  z-index: 0;
  pointer-events: none;  
}
@keyframes slideIn {
  from {
    transform: translateX(-100vw);
  }
  to {
    transform: translateX(0);
  }
}

#cookie_banner > *{
  position: relative;
  z-index: 1;
}
div#cookie_banner h4 {
	margin-top: 4rem;
	display: block;
	text-align: center;
	margin-bottom: .5rem;
}

div#cookie_banner p {
	padding: 0 2rem;
	font-size: .85rem;
	line-height:1rem;
	text-align: left;
	margin: 0;
}
div#cookie_banner p.more {
	text-align: center;
}
div#cookie_banner p a.arrow {
	text-align:center;
	font-size: .85rem;
	line-height:1.25rem;
}
div#cookie_banner p a.arrow::before {
	filter: invert(1);
}
div#cookie_banner > div.buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
div#cookie_banner > div.buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
div#cookie_banner > div.buttons a,
div#cookie_banner > div.buttons button {
	display: inline-block;
	background: #000;
	color: #fff;
	font-size: .8rem;
	border-radius: 20px;
	padding: 0 20px;
	line-height: 35px;
	text-transform:uppercase;
	text-decoration: none;
	  border: 2px solid transparent;
	cursor: pointer;
}
div#cookie_banner > div.buttons button.btn-refuse {
  border: 2px solid black;
  background: white;
  color: #000;
}
div#cookie_banner div.signe  {
	width: 100%;
	aspect-ratio:7/1;
	text-align: center;
	padding-bottom: .5rem;
}
div#cookie_banner div.signe img {
	height: 3rem;
	width: auto;
}
@media (max-width: 600px) {
	#cookie_banner {
		gap: 1vw;
		padding: 1vw 6vw;
	}
	div#cookie_banner h4 {
		font-size: 4vw;
		margin-top: 13vw;
	}
	div#cookie_banner p {
		padding: 0 1vw;
		font-size: 2.25vw;
		line-height: 2.5vw;
	}
	div#cookie_banner p a.arrow {
		padding-left: 4vw;
		font-size: 2.25vw;
	}
	div#cookie_banner p a.arrow::before {
		width: 3vw;
		height: 2vw;
		top: 1vw;
	}
	div#cookie_banner > div.buttons a, div#cookie_banner > div.buttons button {
		font-size: 2vw;
		border-radius: 3vw;
		padding: 0 2vw;
		line-height: 5vw;
	}
	div#cookie_banner div.signe {
		padding-bottom: 1vw;
	}
	div#cookie_banner div.signe img {
		height: 8vw;
	}
}
