/* banner */
.cookie-consent-banner {
    display: none;
    position: fixed;
	bottom: 0;
    bottom: -100%;   
    left: 0;
    right: 0;
	background-color: #f8f9fa;
	background-color: #2f3640;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
	border-radius: 28px 28px 0 0;
	width: 90%;
	margin: 0 auto;
    color: black;
    padding: 15px;
    font-size: 14px;
    text-align: center;
    z-index: 1000;
	transition: 400ms;
}
 
  .cookie-consent-banner.active {  display: block;
  bottom: 0;
}    


.cookie-consent-button {
    border: none;
    padding: 8px 16px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin: 4px 6px;
    cursor: pointer;
    border-radius: 8px;
}

.cookie-consent-button:hover {
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.cookie-consent-button:active {
    opacity: .5;
}

.cookie-consent-button.btn-success {
    background-color: #e69506;
    color: white;
}

.cookie-consent-button.btn-grayscale {
    background-color: #dfe1e5;
    color: black;
}

.cookie-consent-button.btn-outline {
    background-color: #fcf4e6;
    color: #e69506;
}

.cookie-consent-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 6px;
	margin-bottom: 10px;
}

.cookie-consent-options label {
    margin: 0 10px;
    font-size: 14px;
	color: #fff;
}

.cookie-consent-options input {
    margin-right: 5px;
}
.consent-words h3 {font-size: 24px; line-height: 26px; margin: 4px; color: #fff;
}
.consent-words p {padding: 12px; margin: 2px; color: #fff;
}


@media screen and (max-width:768px) {
	
	.cookie-consent-banner {
		display: none;
		position: fixed;
		bottom: 0;
		bottom: -100%;   
		left: 0;
		right: 0;
		background-color: #f8f9fa;
		background-color: #2f3640;
		box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
		border-radius: 28px 28px 0 0;
		width: 90%;
		height: 320px;
		margin: 0 auto;
		color: black;
		padding: 15px;
		font-size: 14px;
		text-align: center;
		z-index: 1000;
		transition: 400ms;
}
	
	.consent-words h3 {
		font-size: 20px; line-height: 26px; 
		margin: 4px; color: #fff;
	}
	.consent-words p {
		font-size: 14px;
		padding: 12px; 
		margin: 2px; color: #fff;
	}
	
}