.cookie {
  display: none;
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  width: 100%;
  max-width: max-content;
  background: #ffffff;
  padding: 8px;
  border-radius: 4px;
  text-align: center;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 10000000000;
  justify-content: space-evenly;
}
.cookie__text {
  margin: 0;
  font-size: 12px;
  color: #333333;
}
.cookie__text a {
  display: inline;
  color: #3e9ec5;
}
.cookie__button {
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  background-color: #ededed;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}
.cookie__button:hover {
  background: #d7d7d7;
}
.cookie.active {
  display: flex;
}

@media (max-width: 1416px) {
  .cookie {
    max-width: calc(100% - 32px);
  }
}
@media (max-width: 767px) {
  .cookie {
    flex-direction: column;
  }
  .cookie__text {
    font-size: 10px;
  }
}

/*# sourceMappingURL=cookie.css.map */
