#cookie-consent-banner {
  position: fixed;
  display: flex;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  bottom: 20px;
  left: 20px;
  width: calc(100% - 40px);
  max-width: 600px;
  background: #3b3b3b 0% 0% no-repeat padding-box;
  border-radius: 10px;
  opacity: 0.95;
  font-family: system-ui, sans-serif;
  font-weight: normal;
  color: #fff;
  z-index: 40000;
}

#cookie-consent-banner h3 {
  font-size: 20px;
  line-height: 27px;
  font-weight: 700;
  margin-top: 12px;
  margin-bottom: 6px;
  margin-left: 30px;
}
#cookie-consent-banner p {
  text-align: left;
  font-size: 13px;
  line-height: 26px;
  margin-bottom: 10px;
  margin-left: 30px;
}
#cookie-consent-banner label {
	font-size: 16px;
	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: 10px;
}

#cookie-consent-banner .cookie-consent-buttons {
  margin-bottom: 5px;
}

#cookie-consent-banner .cookie-consent-options .cookie-consent-heading {
  display: block;
  font-weight: 700;
  margin-bottom: 4px;
  margin-left: 27px;
}

#cookie-consent-banner .cookie-consent-options .cookie-consent-description {
  display: block;
  font-size: 13px;
  margin-left: 30px;
}

#cookie-consent-banner .cookie-consent-buttons button {
  display: block;
  width: 160px;
  height: 40px;
  border: 0;
  border-radius: 10px;
  box-sizing: border-box;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 23px;
  cursor: pointer;
}
#cookie-consent-banner .cookie-consent-buttons button:nth-of-type(1) {
	background-color: #000000;
}
#cookie-consent-banner .cookie-consent-buttons button:nth-of-type(2) {
	background-color: #3196c1;
}
#cookie-consent-banner .cookie-consent-buttons button:nth-of-type(3) {
	background-color: #3196c1;
}

@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;
	}
}

.cookie-consent-banner-open {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0056a7;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  position: fixed;
  z-index: 999999;
  cursor: pointer;
  bottom: 15px;
  left: 15px;
  background-color: #3196c1;
}

.cookie-consent-banner-open .cookie-consent-banner-open-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0;
}

.cookie-consent-banner-open .cookie-consent-banner-open-button .cookie-consent-banner-open-icon {
  width: 30px;
  height: 30px;
}