#cookieNotice {   
   display: none;
   background-color: #FFF;
   width: calc(100%-40px);
   max-width: 350px;
   position: absolute;
   border-radius: 10px;
   right: 20px;
   bottom: 20px;
   padding: 20px;
   z-index: 10;
   box-shadow: 0px 2px 20px 10px rgba(222,222,222,.25);
   text-align: center;
}

#cookieNotice p {
  margin: 15px 0;
  text-align: justify;
}

#cookieNotice .link-cookie {
  color: #194866;
  font-size: 14px;
}

#cookieNotice .btn-cookie {
  width: 100%;
  background: #595959;
  font-weight: bold;
  border: none;
  color: #FFF;
  cursor: pointer;
  padding: 15px 20px;
  text-align: center;
  transition: .3s ease all;
  border-radius: 5px;
  margin-bottom: 15px;
}  

#cookieNotice .btn-cookie:hover {
  background: #000;
}  


#cookieAdvice {   
   display: none;
   background-color: #343434;
   width: 40px;
   height: 40px;
   position: absolute;
   border-radius: 20px;
   right: 20px;
   bottom: 20px;
   z-index: 10;
   box-shadow: 0px 2px 20px 10px rgba(222,222,222,.25);
   text-align: center;
}
#cookieAdvice i{
  font-size: 1.5rem;
  text-align: center;
  vertical-align: middle;
}
#cookieAdvice a{
  text-decoration: none;
  color: #FFF;
}