#cookie_banner-wrapper {
    z-index: 9001;
    position: relative;
  }
  @-webkit-keyframes fadeInRight {
    0% {
      opacity: 0;
      -webkit-transform: translateX(20px);
      transform: translateX(20px);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateX(0);
      transform: translateX(0);
    }
  }
  @keyframes fadeInRight {
    0% {
      opacity: 0;
      -webkit-transform: translateX(20px);
      -ms-transform: translateX(20px);
      transform: translateX(20px);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
      transform: translateX(0);
    }
  }
  #cookie_banner-wrapper .cookie_container {
    position: fixed;
    bottom: 0;
    overflow: hidden;
    padding: 10px;
    background: #000;
    color: #aaa;
    box-sizing: border-box;
    /* font-size: 0.8em; */
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 0.8s;
    -moz-animation-duration: 0.8s;
    -o-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
    text-align: center;

  }
  @media (max-width: 499px) {
    #cookie_banner-wrapper .cookie_container {
      left: 0;
      right: 0;
    }
  }
  @media (min-width: 500px) {
    #cookie_banner-wrapper .cookie_container {
      width: 100%;
      bottom: 0;
      right: 0;
      line-height: 1.5em;
    letter-spacing: 0.03em;
    }
  }
  @media screen and (min-width: 768px) {
    #cookie_banner-wrapper .cookie_container {
      /* width: 700px;
      font-size: 0.9em; */
    }
  }

  
  #cookie_banner-wrapper .cookie_container .cookie_message a {
    text-decoration: none;
    color: #ddd;
  }
  #cookie_banner-wrapper .cookie_container .cookie_message a:hover {
    text-decoration: none;
    color: #ddd;
  }
  #cookie_banner-wrapper .cookie_container .cookie_message a:active {
    color: #888;
  }
  #cookie_banner-wrapper .cookie_container .cookie_btn {
    background-color: #FA872A;
    color: #aaa;
    border-radius: 0;
    border: 1px solid transparent;
    padding: 6px 12px;
    text-align: center;
    cursor: pointer;
    width: 100%;
  }
  #cookie_banner-wrapper .cookie_container .cookie_btn:hover {
    background-color: #FA872A;
  }
  
  @media print {
    #cookie_banner-wrapper {
      display: none;
    }
  }