.cookie-bar {
  position: fixed;
  z-index: 5000000;
  width: 100%;
  left: 0;
  right: 0;
  background-color: rgba(20, 20, 20, 0.9);
  font-size: 13px;
  line-height: 26px;
  color: #ddd; }
  .cookie-bar.top {
    transform: translateY(-100%); }
  .cookie-bar.bottom {
    transform: translateY(100%); }
  body.cookiebar .cookie-bar {
    transform: translateY(0); }
  .cookie-bar.loaded {
    /* only animate when interface is ready, otherwise you see the animation on every page load */
    transition: all 300ms ease-out; }
  .cookie-bar.top, #cookie-bar-container .cookie-bar {
    top: 0; }
  .cookie-bar.bottom {
    bottom: 0; }
  body.admin-bar .cookie-bar.top {
    top: 32px; }
  .cookie-bar a {
    color: currentColor;
    text-decoration: underline; }
    .cookie-bar a:hover {
      color: #e85a17; }
  .cookie-bar .cookie-wrapper {
    padding: 10px 0;
    width: 100%;
    margin: 0 auto;
    text-align: center; }
    .cookie-bar .cookie-wrapper + .cookie-wrapper {
      padding-top: 0; }
    .cookie-bar .cookie-wrapper a, .cookie-bar .cookie-wrapper span, .cookie-bar .cookie-wrapper label {
      display: inline-block;
      vertical-align: middle;
      margin: 0;
      line-height: inherit;
      font-size: inherit; }
    .cookie-bar .cookie-wrapper label {
      color: currentColor; }
    .cookie-bar .cookie-wrapper label span {
      vertical-align: initial; }
      #top .cookie-bar .cookie-wrapper label span {
        color: inherit; }
    .cookie-bar .cookie-wrapper .cookie-close, .cookie-bar .cookie-wrapper .cookie-disable, .cookie-bar .cookie-wrapper .cookie-anonymous {
      display: inline-block;
      margin-left: 50px;
      padding: 2px 11px;
      cursor: pointer;
      border: 1px solid currentColor;
      border-radius: 5px;
      text-decoration: none; }
      .cookie-bar .cookie-wrapper .cookie-close:hover, .cookie-bar .cookie-wrapper .cookie-disable:hover, .cookie-bar .cookie-wrapper .cookie-anonymous:hover {
        color: #e85a17; }
      @media screen and (max-width: 768px) {
        .cookie-bar .cookie-wrapper .cookie-close, .cookie-bar .cookie-wrapper .cookie-disable, .cookie-bar .cookie-wrapper .cookie-anonymous {
          margin: 0 10px;
          padding: 5px 10px;
          border: 1px solid currentColor;
          border-radius: 5px; } }
    .cookie-bar .cookie-wrapper .cookie-anonymous {
      padding: 0 28px 0 0; }
    @media screen and (max-width: 768px) {
      .cookie-bar .cookie-wrapper .cookie-buttons {
        margin-top: 10px;
        display: block; } }
  @media screen and (max-width: 768px) {
    .cookie-bar span.hyphen {
      visibility: hidden;
      display: block;
      height: 1px;
      overflow: hidden;
      clear: both; } }
  @media screen and (max-width: 768px) {
    .cookie-bar {
      padding-bottom: 10px; } }
  .cookie-bar input[type=checkbox], #top .cookie-bar input[type=checkbox] {
    display: none; }
  .cookie-bar input[type=checkbox] + label {
    position: relative;
    padding-left: 36px;
    margin-left: 20px; }
  .cookie-bar input[type=checkbox] + label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 3px;
    cursor: pointer;
    background-color: #ccc;
    transition: .4s;
    height: 21px;
    width: 32px;
    border-radius: 10px; }
  .cookie-bar input[type=checkbox]:checked + label:before {
    background-color: #0cbf40; }
  .cookie-bar input[type=checkbox]:focus + label:before {
    box-shadow: 0 0 1px #0cbf40; }
  .cookie-bar input[type=checkbox] + label:after {
    top: 5px;
    left: 2px;
    position: absolute;
    content: "";
    height: 17px;
    width: 17px;
    background-color: white;
    transition: .4s;
    border-radius: 8px; }
  .cookie-bar input[type=checkbox]:hover + label:after, .cookie-bar input[type=checkbox] + label:hover:after {
    width: 19px; }
  .cookie-bar input[type=checkbox]:checked + label:after {
    transform: translateX(11px); }
  .cookie-bar input[type=checkbox]:checked:hover + label:after, .cookie-bar input[type=checkbox]:checked + label:hover:after {
    width: 19px;
    transform: translateX(9px); }
  .cookie-bar input[type=checkbox]:checked + label > .off {
    display: none; }
  .cookie-bar input[type=checkbox]:not(:checked) + label > .on {
    display: none; }
