#cookie_banner-wrapper {
  z-index: 9001;
  position: relative;
}

.cookie_container {
  position: fixed;
  overflow: hidden;
  padding: 15px;
  background: #222;
  color: #fff;
  box-sizing: border-box;
  font-size: 0.8em;
  bottom: 20px;
  right: 20px;
  width: 300px;
}

.cookie_btn, .cookie_btn:visited {
  background-color: lightgrey;
  color: #222;
  border-radius: 5px;
  border: 1px solid transparent;
  padding: 6px 12px;
  text-align: center;
  cursor: pointer;
  width: 100%;
}

.cookie_btn:hover{
  filter: brightness(85%);
}

.cookie_message > a, .cookie_message > a:visited {
  text-decoration: none;
  color: white!important;
  font-weight: bold;
  font-size: 16px;

}

.cookie_message a:hover {
  text-decoration: underline;
  filter: brightness(85%);
}

.cookie_container{
  -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
}

@media print {
  #cookie_banner-wrapper {
    display: none
  }
}

@media screen and (min-width: 1441px){
  .cookie_container{
    font-size: 1.1em;
  }
}

@media screen and (max-width: 1440px) and (min-width: 1088px){
  .cookie_container{
    font-size: 1.1em;
  }
}

@media screen and (max-width: 1087px) and (min-width: 851px){
  .cookie_container {
    width: 500px;
  }
}

@media screen and (max-width: 850px) and (min-width: 500px){
  .cookie_container {
    width: 300px;
  }
}

@media screen and (max-width: 499px){
  .cookie_container {
    float: inherit;
    margin: auto;
    width: 300px;
    bottom: 0;
    right: 0;
  }
}
