/*
  | cookie bar
  */
#cookie-bar {
  display: none;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #bf0000;
  box-sizing: border-box;
  padding: 12px 0;
  z-index: 999;
}

#cookie-bar p {
  font-family: Helvetica, sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #eee;
}
#cookie-bar .cookie-bar-inner a {
  text-decoration: none;
  color: #333;
}
#cookie-bar .cookie-bar-inner a:hover {
  text-decoration: underline;
}
#cookie-bar .cookie-bar-btn {
  cursor: pointer;
  color: #fff;
  padding: 6px 0;
  text-align: center;
  border: 2px solid #fff;
  font-family:
    Muli Light,
    sans-serif;
  font-size: 14px;
  width: 80px;
  float: right;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
#cookie-bar .cookie-bar-btn:hover {
  cursor: pointer;
  background-color: #fff;
  color: #bf0000;
  transition: 0.1s;
}
