#cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  width: 100%;
  color: #ffffff;
  background-color: rgba(65,65,65,0.9);
  text-align: left;
  font-size: 13px;
  line-height: 2;
  direction: ltr;
  min-height: 30px;
  z-index: 99999;
  padding: 6px 20px 4px;  
  transform: translateY(999px);
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
#cookie-bar.active {
  transform: translateY(0);
  opacity: 1;
}
#cookie-bar .cookie-bar-wrap {
  width: 100%;
  margin: auto;
  display: -ms-flexbox;
  display: flex; 
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
#cookie-bar a {
  color: #ffffff;
  text-decoration: underline;
}
#cookie-bar button {
    margin: 0 0 0 15px;
    line-height: 20px;
    background: rgba(111,111,111,0.7);
    border: none;
    color: #fff;
    padding: 4px 12px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;  
    text-transform: uppercase;
}
.cookie-text
{
  text-align: center;
}
