#cookie_notification {
  display: none;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  bottom: 15px;
  left: 50%;
  width: 800px;
  max-width: 90%;
  transform: translateX(-50%);
  padding: 12px;
  border-radius: 10px;
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
      background-color: #fff;
  z-index: 9999;
}

#cookie_notification p {
    margin: 0;
    padding: 0;
}




@media (min-width: 576px){
  #cookie_notification.show{
    display: flex !important;
  }
  .cookie_accept{
    margin: 0 0 0 25px;
  }
}

@media (max-width: 575px){
  #cookie_notification.show{
    text-align: center;
    bottom: 72px;
    font-weight: normal;
  }
  .cookie_accept{
    margin: 10px 0 0 0;
  }
}
