#cookie-consent-banner {
	display: block;
	position: fixed;
	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: 850px;
	background: #FFFFFF 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: #000000;
	z-index: 40000;
    overflow-y: scroll;
    max-height: calc(100vh - 40px);
}

#cookie-consent-banner h3 {
	text-align: center;
	font-size: 30px;
	line-height: 37px;
	font-weight: 700;
	margin-bottom: 20px;
}
#cookie-consent-banner p {
	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-message {
    text-align: center;
}

#cookie-consent-banner .cookie-consent-options {
    display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
	gap: 20px;
}

#cookie-consent-banner .cookie-consent-option {
    width: 100%;
}

#cookie-consent-banner .cookie-consent-option label {
    font-weight: bold;
}


#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-button {
	display: block;
	width: 220px;
	height: 50px;
	border: 0;
	border-radius: 10px;
	box-sizing: border-box;
	color: var(--color-positive);
	font-size: 18px;
	font-weight: 700;
	line-height: 23px;
    background-color: var(--theme-primary);
    border-radius: 0 0 1em 0;
    transition: all .2s ease-in-out;
    border: 1px solid var(--theme-primary);
}

#cookie-consent-banner .cookie-consent-button:focus,
#cookie-consent-banner .cookie-consent-button:hover {
	background-color: var(--color-positive);
    color: var(--theme-primary);
}


#cookie-consent-banner .cookie-consent-button.btn-outline {
    background-color: transparent;
    color: var(--theme-primary);
}

#cookie-consent-banner .cookie-consent-button.btn-outline:focus,
#cookie-consent-banner .cookie-consent-button.btn-outline:hover {
    background-color: var(--theme-primary);
    color: var(--color-positive);
}

#cookie-consent-banner #cookie-consent-btn-accept-min,
#cookie-consent-banner #cookie-consent-btn-accept-some {
    display: none;
}

@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 .cookie-consent-button {
        display: block;
        width: 180px;
        height: 30px;
        border: 0;
        border-radius: 10px;
        box-sizing: border-box;
        color: var(--color-positive);
        font-size: 14px;
        font-weight: 700;
        line-height: 1.1;
        background-color: var(--theme-primary);
        border-radius: 0 0 1em 0;
        transition: all .2s ease-in-out;
        border: 1px solid var(--theme-primary);
    }
}
