.cookie-notice {
  position: fixed;
  left: 0;
  bottom: 0;
  display: none;
  width: 100%;
  padding: 20px 0;
  background-color: rgba(0, 0, 0, 0.81);
  z-index: 100;
}
.cookie-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 992px) {
  .cookie-wrapper {
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
  }
}
.cookie-content {
  color: #fff;
}
.cookie-content a {
  margin-left: 5px;
  color: #ffffff;
  text-decoration: underline;
}
.cookie-content a:hover {
  text-decoration: none;
}
.cookie-btn {
  color: #014c8c;
  position: relative;
  background-color: #fff;
  text-decoration:  none;
  transition: background 0.4s;
}
.cookie-btn:hover {
  color: #fff;
  background-color: #014c8c;
}
.cookie-btn:hover::after, .cookie-btn:hover::before {
  width: 100%;
  left: 0;
}
.cookie-btn::after, .cookie-btn::before {
  position: absolute;
  height: 2px;
  left: 50%;
  background: #fff;
  bottom: -6px;
  content: "";
  transition: all 280ms ease-in-out;
  width: 0;
}
.cookie-btn::before {
  top: -6px;
}
/*# sourceMappingURL=_maps/cookie.css.map */
