/*
* Copyright (c) 2012-2013 Jack Sleight <http://jacksleight.com/>
* This source file is subject to the MIT License that is bundled with this package in the file LICENSE.
* It is also available at this URL: http://www.opensource.org/licenses/MIT
*/
/* Cookies */
.js-cookies {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1;
  width: 250px;
  padding: 15px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  background: #000;
  background: rgba(0, 0, 0, 0.9);
  -webkit-box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.1);
  -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;
}
.js-cookies, .js-cookies a, .js-cookies strong {
  color: #fff;
}
.js-cookies.js-cookies-out {
  opacity: 0;
}