/*!
 * 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.
 */
 
.cookie-message {
  position: fixed;
  bottom:0;left:0;right:0;
  padding:20px 0;
  background: #000000;
  color: #ffffff;
  border-top:1px solid #ccc;
  box-shadow:0px -3px 3px #ccc;
  z-index: 99999;
}
.grecaptcha-badge {
  z-index: 100000;
}
.cookie-message .row {
  position: relative;
}
.cookie-message a.my-close-button {
  position:absolute;
  display: inline-block;
  padding: 5px 15px;
  background: #009900;
  color: #ffffff;
  top:50%;
  right:20px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor:pointer;
}
.cookie-message p, .cookie-message a {
  color:#ffffff;
  font-weight: bold;
  margin:0;
}
.cookie-message:not([style*="display: none"]) + footer, .cookie-message:not([style*="display: none"]) + .footer {
  padding-bottom: 4em;
}
.blue {
  border-bottom:1px solid #0E83AE;
  background-color:#0990c3;
  background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #0e83ae), color-stop(50%, #0990c3), color-stop(100%, #0e9dd2));
  background: -webkit-linear-gradient(#0e83ae, #0990c3, #0e9dd2);
  background: -moz-linear-gradient(#0e83ae, #0990c3, #0e9dd2);
  background: -o-linear-gradient(#0e83ae, #0990c3, #0e9dd2);
  background: -ms-linear-gradient(#0e83ae, #0990c3, #0e9dd2);
  background: linear-gradient(#0e83ae, #0990c3, #0e9dd2);
}
.blue p, .blue a { color:#fff; }