.cookie-popup {
  background-color: #ebebeb;
  border-radius: 5px;
  box-shadow: 0px 0px 5px 0px rgb(0 0 0 / 10%);
  max-width: 1150px;
  width: 100%;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
}

.cookie-popup p {
  color: #000;
  font-size: 15px;
  margin-right: 15px;
}

.cookie-btn {
  color: #555555;
  border: 1px solid #999999;
  background-color: #ebebeb;
  border-radius: 5px;
  font-weight: 500;
  transition: 0.3s;
  cursor: pointer;
  padding: 4px 20px;
  font-size: 15px;
}

.cookie-btn:hover {
  background-color: #e8e8e8 !important;
  color: #111111 !important;
  border-color: #111111 !important;
}

@media (max-width: 1200px) {
  .cookie-popup {
    flex-flow: column;
    right: 50%;
    transform: translateX(50%);
  }

  .cookie-popup p {
    font-size: 12px;
    margin: 0 auto 5px;
  }

  .cookie-btn {
    font-size: 12px;
  }
}
