@import url('../css/style-global.css');

/*Cookies*/
.aviso-cookies {
  position: fixed;
  display: none;
  width: calc(100% - 40px);
  max-width: 300px;
  padding: 20px;
  padding-top: 60px;
  bottom: 20px;
  left: 20px;
  text-align: center;
  line-height: 150%;
  border-radius: 10px;
  background: var(--withe);
  box-shadow: 0px 2px 20px 10px rgba(222, 222, 222, 0.6);
  z-index: 2000;
}
.aviso-cookies.activo {
  display: block;
}

.aviso-cookies .galleta {
  position: absolute;
  max-width: 100px;
  top: -50px;
  left: calc(50% - 50px);
}

.aviso-cookies .titulo {
  margin-bottom: 15px;
  font-family: var(--fontPrincipal);
  font-size: 2.4rem;
  color: var(--marron);
}

.aviso-cookies .parrafo {
  margin-bottom: 15px;
  font-family: var(--fontSecundary);
  font-size: 1.6rem;
  color: var(--text1);
}

.aviso-cookies .boton-cookies {
  width: 100%;
  margin-bottom: 15px;
  padding: 15px 20px;
  border: none;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  background-color: var(--green);
  color: var(--withe);
  transition: 0.3s ease-in-out;
}
.aviso-cookies .boton-cookies:hover {
  background-color: var(--granateDark);
}

.aviso-cookies .enlace-cookie {
  font-family: var(--fontSecundary);
  font-size: 1.4rem;
  text-decoration: none;
  color: var(--granate);
  transition: 0.3s ease-in-out;
}
.aviso-cookies .enlace-cookie:hover {
  text-decoration: underline;
  color: var(--orange);
}

/*Fondo Pantalla*/
.fondo-aviso-cookies {
  position: fixed;
  display: none;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background: var(--granateTransparent);
  z-index: 1999;
}
.fondo-aviso-cookies.activo {
  display: block;
}