/**
 * cookiebar - It is a pure JS code, that warns the visitors in the notification bar, the page saves cookies. This is Compliant with the new EU cookie law.
 * Date 2017-08-08T12:26:15Z
 * 
 * @author Tamás András Horváth <htomy92@gmail.com> (http://icetee.hu)
 * @version v0.9.7
 * @link https://github.com/icetee/cookiebar#readme
 * @license MIT
 */

.cookiebar {
  background-color: #333333;
  /*bottom: 0;*/
  box-sizing: initial;
  color: #fff;
  min-height: 25px;
  /*left: 0;*/
  position: fixed;
  width: 100%;
  z-index: 99;
}
.cookiebar-wrapper {
  height: 100%;
  overflow: hidden;
  padding: 14px;
  width: 85%;
}
.cookiebar-desciption {
  display: inline;
  font-size: 1em;
}
.cookiebar-link {
  display: inline;
  padding-left: 5px;
}
.cookiebar-link a {
  color: #5cba47;
  text-decoration: none;
}
.cookiebar-link a:hover {
  text-decoration: underline;
}
.cookiebar-btn {
  background: #5cba47 none repeat scroll 0 0;
  border: 0 none;
  color: #fff;
  cursor: pointer;
  font-size: 0.875em;
  height: 28px;
  padding: 0 10px 2px;
  right: 25px;
  text-transform: uppercase;
  top: 0;
  bottom: 0;
}
.cookiebar-btn:hover {
  background: #d34c37 none repeat scroll 0 0;
}
