﻿#cookie-consent {
  display: flex;
  align-items: center;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 65px;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 9999;
}
#cookie-consent #content {
  margin: 0 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#cookie-consent #content .text {
  color: #000;
  flex-grow: 1;
}
#cookie-consent #content .btn-dark {
  background-color: #333;
  color: #fff;
  border: 1px solid #333;
  padding: 5px 10px;
  cursor: pointer;
  height: 30px;
  width: 80px;
}
#cookie-consent #content .btn-dark:hover {
  color: #000;
}
