
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  background-color: #e9e9e9;
  padding: 20px;
}

.cookie-popup-body {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.btn-yellow {
  background-color: #ebd937;
}

.cookie-popup-body p {
  color: #000;
  font-size: 16px;
  margin: 0 20px;
}

.cookie-popup-body p a {
  text-decoration: underline;
  color: #000;
}

.accept-cookies {
  border: none;
  padding: 10px 20px;
  transition: all 0.2s linear;
  background-color: #fff;
  min-width: 150px;
}

.accept-cookies:hover {
  background-color: #d5d5d5;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.hidden {
  display: none;
}

.text-center {
  text-align: center;
}

@media screen and (max-width: 500px) {
  .aff-form-cover {
    margin: 0 auto;
  }
  .cookie-popup-body {
    flex-direction: column;
  }

  .cookie-popup-body p {
    color: #fff;
    font-size: 16px;
    margin: 0 0 15px;
  }
}