/*===== COOKIE standard style =====*/
.cookie-wrapper {
  height: 50px;
  position: relative;
  z-index: 9001;
  display: block; }

.cookie-wrapper .cookie-container {
  background: #222222 none repeat scroll 0 0;
  color: #ffffff;
  font-size: 1.5em;
  line-height: 1.5em;
  padding: 10px 30px;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  overflow: hidden; }

.cookie-wrapper .cookie-container .cookie-accept {
  background-color: #337ab7;
  border-radius: 5px;
  color: #ffffff;
  line-height: 1rem;
  font-size: 1rem;
  margin-left: 10px;
  max-width: 120px;
  padding: 8px 15px;
  float: right;
  text-decoration: none;
  text-align: center;
  transition: background 200ms ease-in-out 0s, color 200ms ease-in-out 0s;
  width: 33%; }
  .cookie-wrapper .cookie-container .cookie-accept:hover {
    background-color: #ffffff;
    color: #000; }

.cookie-wrapper .cookie-container .cookie-message {
  font-size: 1rem;
  line-height: 2rem;
  margin-bottom: 0; }

.cookie-wrapper .cookie-container .cookie-message .cookie-more-info {
  color: #31a8f0;
  text-decoration: none;
  transition: color 200ms ease 0s; }
  .cookie-wrapper .cookie-container .cookie-message .cookie-more-info:hover {
    color: #b2f7ff; }

