* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  body {
    background-color: #f5f8ff;
  }

  #cookiePopup {
    background-color: #ffffffb5;
    position: fixed;
    z-index: 4;
    bottom: 2em;
    padding: 10px 0px;
    font-size: 14px;
    width: 70vw;
    max-width: 42.85em;
    box-shadow: 0 0 2em rgba(5, 0, 31, 0.15);
    font-family: "Poppins", sans-serif;
    text-align: justify;
    line-height: 1.8em;
    padding: 2em 1.4em;
    border-radius: 20px;
    transition: all 0.75s ease-in;
  }
  #cookiePopup img {
    display: block;
    width: 3.75em;
    transform: translateZ(0);
    position: relative;
    margin: auto;
  }
  #cookiePopup p {
    text-align: center;
    margin: 1.4em 0;
  }
  #cookiePopup button {
    background-color: #6859fe;
    border: none;
    color: #ffffff;
    font-size: 1.2em;
    padding: 0.6em 2em;
    display: block;
    position: relative;
    margin: auto;
    border-radius: 5px;
  }

  button#declineCookie{
    background-color: #fe5959;
  }

  #cookiePopup a {
    color: #6859fe;
  }
  .cookie-hidden {
    visibility: hidden;
    opacity: 0;
    bottom: 2em;
    left: 2em;
    pointer-events: none;
    transition: all 0.5s ease-out;
  }
  .cookie-visible {
    visibility: visible;
    opacity: 1;
    bottom: 2em;
    left: 2em;
    transition: all 0.5s ease-in;
  }
  @media only screen and (max-width: 37.5em) {
    #cookiePopup {
      width: 100%;
    }
    .cookie-hidden {
      bottom: 2em;
      left: 0;
    }
    .cookie-visible {
      left: 0;
      bottom: 0;
    }
  }