.cookie-root {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 999999;
  padding: 15px;
  background: #eee;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25), 0 0 7px rgba(0, 0, 0, 0.22);
  animation: cookie-fadeIn 1s;
  font-size: 14px;
}

.cookie-btns {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.cookie-btn {
  margin-right: 15px;
  cursor: pointer;
}

.cookie-btn:last-child {
  margin-right: 0;
}

@media (min-width: 768px) {
  .cookie-root {
    width: 300px;
    bottom: 10px;
    right: 10px;
  }
}

@keyframes cookie-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
