.cookie-box {
  margin: 0 20px;
  position: fixed;
  bottom: 20px;
  /* left: 20px; */
  /* transform: translateX(-50%); */
  background: #222;
  color: #fff;
  padding: 16px;
  border-radius: 8px;
  /* max-width: 600px; */
  text-align: center;
  font-size: 14px;
  display: flex;
  align-items: center;
  /* flex-direction: column; */
  gap: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 999999;
}
.cookie-box p{
  margin: 0;
}

.cookie-box button {
  padding: 10px 30px !important;
  line-height: normal !important;
  border: none;
  border-radius: 6px !important;
  background: #94D228;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
}

.cookie-box button:hover {
  background: #94D228 !important;
}
@media(max-width:768px) {
  .cookie-box{
    flex-direction: column;
  }
}
