.cookie-consent {
  position: fixed;
  bottom: 0;
  width: 100%;
  font-size: 12px;
  color: #fff;
  background: rgba(41, 41, 41, 0.7);
  padding: 1.2em;
  box-sizing: border-box;
  visibility: hidden;
  z-index: 1;
}
.cookie-consent.is-show {
  visibility: visible;
}
.cookie-consent a {
  color: #fff !important;
}
.cookie-consent .cookie-buttons {
  display: flex;
  gap: 20px;
}
.cookie-consent .cookie-buttons .cookie-button {
  background-color: #fff;
  min-width: 140px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: 1px solid #333;
  font-size: 14px;
  color: #333;
  border-radius: 20px;
}
.cookie-consent .cookie-buttons .cookie-button:hover {
  cursor: pointer;
}
.cookie-consent .cookie-buttons .cookie-button > svg {
  position: absolute;
  right: 15px;
  height: 8px;
  width: 4px;
}

.cookie-consent.cc-hide1 {
  display: none;
}
.cookie-consent.cc-hide2 {
  animation: hide 1s linear 0s;
  animation-fill-mode: forwards;
}

@media screen and (min-width: 768px) {
  .cookie-consent {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .cookie-consent .cookie-buttons {
    margin-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .cookie-consent {
    flex-direction: column;
    padding: 1.2em 2.8em;
  }
  .cookie-consent .cookie-text {
    margin-bottom: 1.6em;
  }
  .cookie-consent .cookie-text br {
    display: none;
  }
  .cookie-consent .cookie-buttons .cookie-button {
    width: 100%;
  }
}

@keyframes hide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    visibility: hidden;
  }
}
