.cp-cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #161616;
  color: #ebebeb;
  padding: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  border-top: solid 1px #333;
  border-radius: 10px 10px 0 0;
}

.cp-cookie-consent p {
  margin: 0;
  padding: 0 0.5rem 0.5rem 0.5rem;
}

.cp-cookie-consent a {
  color: #f4a431;
  text-decoration: underline;
}

.cp-cookie-button {
  background-color: #f4a431;
  color: #161616;
  border: solid 1px #161616;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cp-cookie-button:hover {
  color: #f4a431;
  border: solid 1px #f4a431;
  background-color: #161616;
}

.cp-none {
  display: none;
}

@media only screen and (max-width: 1000px) {
  .cp-cookie-consent {
    flex-direction: column;
  }
}
