/*!
 * jQuery Cookiebar Plugin
 * https://github.com/carlwoodhouse/jquery.cookieBar
 *
 * Copyright 2012, Carl Woodhouse
 * Disclaimer: if you still get fined for not complying with the eu cookielaw, it's not our fault.
 */
 
.cookiebar {
  position:fixed;
  bottom:0;left:0;right:0;
  padding: 1em 1.8em;
  z-index: 99999;
  background-color: rgba(255, 55, 0, 0.7);
  font-size:1em;
  color: #fff;
  line-height: 18px;
  min-height:40px;
}

.cookiebar-container {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.cookiebar-message {
  width: 85%;

}
.cookiebar-close {
  top: calc(50% - 20px);
  background-size: 40%;
  position: absolute;
  right: 0;
  display: block;
  width: 40px;
  height: 40px;
  background: url(../images/close.png) no-repeat center center rgba(255, 55, 0, 0.0);
  cursor: pointer;
}

@media (min-width: 768px) {
  .cookiebar-container {
      width: 750px;
  }
}

@media (min-width: 992px) {
  .cookiebar-container {
      width: 970px;
  }
}

@media (min-width: 1200px) {
  .cookiebar-container {
    width: 1170px;
  }
}