#cookie-consent-banner {
    position: fixed;
    /*display: flex;*/
    display: none !important;
    padding: 15px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    bottom: 0px;
    /* right: 20px; */
    /* width: calc(100% - 40px); */
    /* max-width: 800px; */
	width: 100%;
    background: #000000 0% 0% no-repeat padding-box;
    /* box-shadow: 0px 3px 30px #00000029; */
    /* border-radius: 10px; */
    /* opacity: 0.95; */
    /* font-family: system-ui, sans-serif; */
    /* font-weight: normal; */
    color: #ffffff;
    z-index: 40000;
}

#cookie-consent-banner h3 {
	text-align: center;
	font-size: 30px;
	margin-bottom: 0;
}

#cookie-consent-banner p {
    text-align: center;
    font-size: 14px;
    /* line-height: 26px; */
    text-wrap: balance;
    /* margin-bottom: 20px;*/
	margin: 0;
}
#cookie-consent-banner label {
	font-size: 18px;
	line-height: 26px;
}
#cookie-consent-banner label input {
	margin-right: 7px;
}

.cookie-consent-options{
	display: none !important;
}
#cookie-consent-banner,
#cookie-consent-banner .cookie-consent-buttons {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

#cookie-consent-banner .cookie-consent-buttons button {
	display: block;
    width: 100px;
    /* height: 30px; */
    border: 0;
    border-radius: 5px;
    box-sizing: border-box;
    color: #000000;
    /* font-size: 18px; */
    font-weight: 700;
    /* line-height: 23px;*/
}
#cookie-consent-banner .cookie-consent-buttons button:nth-of-type(1) {
	background-color: #ffffff;
}
#cookie-consent-banner .cookie-consent-buttons button:nth-of-type(2) {
	background-color: #1A0D60;
}
#cookie-consent-banner .cookie-consent-buttons button:nth-of-type(3) {
	background-color: #4E38C7;
}

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