.cookie {
  position: fixed;
  left: 30px;
  bottom: 30px;
  z-index: 10000;
  display: none;
  width: 610px;
  max-width: calc(100% - 60px);
  padding: 20px;
  background: #0f2947;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.cookie__buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;    
  width: 100%;
  margin-top: 20px;
}

@media (max-width: 680px) {
  .cookie {
    left: 0;
    bottom: 0;
    max-width: 100%;
    border-radius: 0;
    border: none;
  }
}