#cookiePopup {
    background-color:#d44863;
    bottom: 0;
    color: white;
   
    left: 50%;
    padding: 1rem 2rem;
    position: fixed;
    transform: translateX(-50%);
    width: 100vw;
  }

  #cookiePopup img {
    display: block;
    width: 3.75em;
    transform: translateZ(0);
    position: relative;
    margin: auto;
  }  
  #cookiePopup .text {
    float: left;
    font-size: 16px;
    width: 80%;
    text-align: left;
    padding: 4px 15px 0 30px;
    color: #fff;
  }

  #cookiePopup div {
    font-size: 16px;
    width: 80%;
    text-align: left;
    padding: 4px 15px 0 30px;
    letter-spacing : 1px;
    font-weight: 100;
  }
  #cookiePopup .accept {
    float: right;
    width: 20%;
    text-align: center;
    padding: 10px 30px 0 15px;
  }
  #cookiePopup button {
    display: inline-block;
    background: #fecb01;
    color: rgb(71, 71, 71);
    padding: 8px 15px;
    margin: 0;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    vertical-align: middle;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    text-shadow: none;
    text-decoration: none;
    width: 50%;
    
  }
  #cookiePopup a {
    color: #fecb01;
    text-decoration:none;
  }
  .hide {
    visibility: hidden;
    bottom: 0;
    right: 2em;
  }
  .show {
  
  }  
  @media only screen and (max-width: 37.5em) {
    #cookiePopup {
      width: 100%;
    }
    .hide {
      bottom: 2em;
      right: 0;
    }
    .show {
      right: 0;
      bottom: 0;
    }
  }
    