body.alerta-cookies {
  position: fixed;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.aviso-cookies {
  display: none;
  position: fixed;
  bottom: 10px;
  left: 20px;
  right: 20px;
  z-index: 1000;
}

.aviso-cookies .dialog {
  background: #fff;
  padding: 20px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  max-width: 750px;
  margin: 0 auto;
}

.aviso-cookies.activo {
  display: block;
}

.aviso-cookies .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.aviso-cookies h3 {
  font-weight: 500;
  font-size: 26px;
  padding: 0;
  margin: 0 0 8px 0;
  color: #1aafd0;
  color: #6a67ce;
  color: #1b2432;
}

.aviso-cookies p {
  font-weight: 500;
  font-size: 16px;
  padding: 0 20px 0 0;
  margin: 0;
  color: #49505b;
  text-transform: none;
}

.aviso-cookies .boton#btn-aceptar-cookies {
  border: none;
  color: #fff;
  text-align: center;
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 16px;
  transition: all 0.3s;
  font-weight: 600;
  background-color: #4bc3fe;
}

.aviso-cookies .boton#btn-aceptar-cookies:hover {
  background-color: #3985ff;
}

.aviso-cookies .actions {
  padding-top: 10px;
}

.aviso-cookies .actions a {
  color: #4bc3fe;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
  margin-right: 10px;
}

.aviso-cookies .actions a:hover {
  text-decoration: underline;
}

.fondo-aviso-cookies {
  display: none;
  background: rgba(0, 0, 0, 0.2);
  position: fixed;
  z-index: 999;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
}

.fondo-aviso-cookies.activo {
  display: block;
}

@media screen and (max-width: 550px) {
  .aviso-cookies p {
    margin-bottom: 10px;
  }

  .aviso-cookies .wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 400px) {
  .aviso-cookies .actions {
    display: flex;
    flex-direction: column;
  }

  .aviso-cookies .actions a {
    margin-top: 7px;
  }
}
