/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 30 2025 | 10:30:58 */
.consent-banner {
	display: flex;
	flex-direction: row;
	justify-content: space-around;;
	align-items:center;
	position:fixed;
	bottom:0;
	width: 90%;
    justify-self: center;
	background:#F6F6F6;
	color:#000;
	z-index:9999;
	font-family:'Montserrat', sans-serif;
	line-height:1.3em;
	margin-bottom:20px;
	/*             margin-left:20px; */
	border-radius:20px;
	padding: 30px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.banner-content {
    width: 60%;
}
.consent-banner h2 {
    font-size: 28px;
	font-weight: 600;
	color:#042792;
}
.cookie-buttons {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.accept-cookies-btn {
    background: #de0c4f;
    color: white;
    border: none;
    padding: 8px 12px;
/*     margin-right: 5px; */
    cursor: pointer;
    border: 1px solid #de0c4f;
    border-radius: 20px;
}
.reject-cookies-btn {
    background: #4caf5000;
    color: #de0c4f;
    /* border: none; */
    padding: 8px 12px;
    cursor: pointer;
    border: 1px solid #de0c4f;
    border-radius: 20px;
}
@media (max-width: 1024px) {
	.consent-banner {
		flex-direction: column;
		gap: 10px;
		padding: 15px;
		text-align: center;
	}
	.banner-content {
		width: 100%;
	}
	.consent-banner h2 {
		font-size: 20px;
	}
	.consent-banner span {
		font-size: 14px;
	}
	.cookie-buttons {
		font-size: 14px !important;
	}
}
