.cookie-consent {
  display: none;
  position: fixed;
  height: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 20px 30px;
  z-index: 201;
  box-sizing: border-box;
  width: 90%;
  max-width: 900px;
  border: 1px solid #3C3C3B;
}

.cookie-consent-text {
  margin: 0 0 10px;
  font-size: 14px;
}

.cookie-consent-button {
  display: inline-block;
  transition: all 0.5s ease;
  cursor: pointer;
  margin: 5px 0;
  outline: 0;
  border: 0;
  padding: 6px 20px 8px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  background-color: #3C3C3B;
  color: #fff;
  transition: all 0.3s ease-in-out;
  min-width: 100%;
}

.cookie-consent-button:hover {
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.2);
}

.cookie-consent-buttons-container {
  text-align: center;
}

@media screen and (min-width: 750px) {
  .cookie-consent {
    padding: 30px 50px;
  }

  .cookie-consent-text {
    margin: 0 0 20px;
    font-size: 16px;
  }

  .cookie-consent-button {
    min-width: 265px;
    margin: 5px;
  }
}

@media screen and (min-width: 1024px) {

}
