/* COOKIE BAR */
.cookie-bar {
  font-family: sans-serif;
  position: fixed;
  z-index: 9999999999;
  bottom: 15px;
  max-width: 400px;
  background-color: #eee;
  box-shadow: 0px 20px 36px rgba(25, 31, 40, 0.2);
  border-radius: 8px;
  left: 15px;
  padding: 20px;

  animation: showCookie 3s forwards;
  transition: all 0.5s;
}
.cookie-bar h2 {
  font-family: sans-serif;
  font-size: 16px;
  font-weight: bold;
}
.cookie-bar p {
  font-family: sans-serif;
  margin-bottom: 0px;
  font-size: 16px;
  line-height: 24px;
}
.cookie-bar a {
  font-family: sans-serif;
  color: #567b82;
}
.btn-cookie-bar {
  display: block;
  /* max-width: 100px; */
  text-align: center;
  border: 1px solid #567b82;
  padding: 3px 40px;
  border-radius: 5px;
  float: right;
  transition: all 0.3s;
  text-decoration: none !important;
}
.btn-cookie-bar:hover {
  background-color: #567b82;
  color: #fff;
  transition: all 0.3s;
}
.close-cookie-bar {
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
  font-size: 20px;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #567b82;
}
.cookie-bar.close-active {
  display: none !important;
}
@keyframes showCookie {
  from {
    opacity: 0;
    transform: translate3d(-100px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
/* COOKIE BAR */
