#cookie_notification {
  display: none;
  justify-content: space-between;
  align-items: flex-end;
  position: fixed;
    bottom: 30px;
  left: 50%;
  width: 900px;
  max-width: 90%;
  transform: translateX(-50%);
  padding: 25px;
  background-color: white;
  font-size: 16px;
  border-radius: 25px;
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
  z-index: 4444;
}

#cookie_notification .btn {
  margin: 0 0 0 25px;
  font-size: 16px;
  padding: 8px 38px;
  background: #d61a21;
  color: #fff;
  border-color: #d61a21;
}

#cookie_notification p{
  margin: 0;
  font-size: 16px;
  text-align: left;
  /* color: $color_text; */
}


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

@media (max-width: 575px){
  #cookie_notification.show{
    display: block;
    text-align: left;
  }
  .cookie_accept{
    margin: 10px 0 0 0;
  }
  
  #cookie_notification .btn {
    margin: 8px 0 0 0;
  }

  #cookie_notification {
    bottom: 16px;
  }
  
}

