.consent-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
  width: 450px;
  max-width: 90%;
  padding: 25px;
  min-height: 135px;
  position: fixed;
  bottom: 3%;
  right: 1%;
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 15px;
  z-index: 2;
}

.consent-btns {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 30px;
}

.consent-box input {
  padding: 11px 16px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
}

.consent-box p {
  font-size: 14px;
  color: #777;
  margin: 6px 0 3px;
}

.consent-btn {
  cursor: pointer;
  border: none;
  font-weight: 600;
  display: inline-block;
  padding: 13px 25px;
  font-weight: 700;
  background-color: black;
  color: white;
  border-radius: 5px;
  text-align: center;
  font-size: 16px;
  margin: 3px;
}

.btn-close {
  transform: translate(10px, -20px);
  padding: 8px 11px;
  background: #eee;
  border-radius: 50%;
}

@media (max-width: 1015px) {
  .consent-box {
    width: 40%;
  }

  .consent-btns {
    justify-content: center;
  }

  .consent-btn {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .consent-box {
    width: auto;
    max-width: 100%;
    bottom: 0;
    right: 0;
    left: 0;
    transform: none;
    border-radius: 0;
    margin: 0 auto;
  }
}
