.consent-bgnd {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 10000;
}

#cookie-consent-banner {
  position: fixed;
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  bottom: 20px;
  right: 20px;
  width: calc(100% - 40px);
  max-width: 800px;
  background: var(--primary-color) 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 30px #00000029;
  border-radius: 10px;
  opacity: 1;
  font-family: system-ui, sans-serif;
  font-weight: normal;
  color: var(--light-color);
  z-index: 40000;
}

#cookie-consent-banner h3 {
  text-align: center;
  font-size: 30px;
  line-height: 37px;
  font-weight: 700;
  margin-bottom: 20px;
}
#cookie-consent-banner p {
  text-align: center;
  font-size: 18px;
  line-height: 26px;
  text-wrap: balance;
  margin-bottom: 20px;
}
#cookie-consent-banner label {
  font-size: 18px;
  line-height: 26px;
}
#cookie-consent-banner label input {
  margin-right: 7px;
}

#cookie-consent-banner .cookie-consent-options,
#cookie-consent-banner .cookie-consent-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  gap: 20px;
}

#cookie-consent-banner .cookie-consent-buttons button {
  display: block;
  width: 200px;
  height: 50px;
  border: 0;
  border-radius: 50px;
  box-sizing: border-box;
  color: var(--dark-color);
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

#cookie-consent-banner .cookie-consent-buttons button:hover {
  color: var(--primary-color);
  background-color: var(--light-color);
  box-shadow: 0px 3px 30px #00000029;
  transition: all 0.3s ease-in-out;
}


#cookie-consent-banner .cookie-consent-buttons button:nth-of-type(1) {
  background-color: rgb(88, 250, 88);
}
#cookie-consent-banner .cookie-consent-buttons button:nth-of-type(2) {
  background-color: var(--secondary-color);
}
#cookie-consent-banner .cookie-consent-buttons button:nth-of-type(3) {
  background-color: var(--secondary-color);
}


#cookie-consent-banner label input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid var(--secondary-color);
  border-radius: 3px;
  background-color: transparent;
  display: inline-block;
  position: relative;
  margin-right: 8px;
  vertical-align: middle;
  cursor: pointer;
}


#cookie-consent-banner label input[type="checkbox"]:checked {
  background-color: var(--secondary-color);
}


#cookie-consent-banner label input[type="checkbox"]:focus {
  outline: 2px solid var(--light-color);
}

@media screen and (width < 600px) {
  #cookie-consent-banner h3 {
    font-size: 20px;
    line-height: 25px;
  }
  #cookie-consent-banner p {
    font-size: 14px;
    line-height: 16px;
  }

  #cookie-consent-banner .cookie-consent-buttons {
    flex-direction: column;
  }
}


