

#cookiePopup {
    background-color: #ffffff;
    position: fixed;
    font-size: 14px;
    width: 70vw;
    max-width: 42.85em;
    box-shadow: 0 2px 5px 0 #fccd67c9;
    font-family: Montserrat;
    text-align: justify;
    line-height: 1.8em;
    padding: 2em 1.4em;
    border-radius: 6px;
    transition: all 0.5s ease-in;
    z-index: 1000;
    text-align: center;
  }
  #cookiePopup img {
    display: block;
    width: 15em;
    transform: translateZ(0);
    position: relative;
    margin: auto;
  }
  #cookiePopup p {
    margin: 1.4em 0;
  }


  #cookiePopup button {
    background-color: #ffd000;
    font-family: Montserrat;
    border: none;
    color: #ffffff;
    font-size: 1.2em;
    padding: 1em 1.4em;
    display: block;
    position: relative;
    margin: auto;
    border-radius: 5px;
    cursor: pointer;
  }
  #cookiePopup a {
    color: #f5c800;
  }
  .hide {
    visibility: hidden;
    left: 35vw;
    bottom: 30vh;
  }
  .show {
    visibility: visible;
    left: 25vw;
    bottom: 30vh;
  }




  @media only screen and (max-width: 1024px) {
    #cookiePopup{
      max-width: 100em;
      width: 100vw;
    }
    .hide {
      bottom: 2em;
      right: 0;
    }
    .show {
      right: 0;
      left: 0;
      bottom: 0;
    }
  }

