#sad-lgpd-banner{
	position:fixed;
	left:0;
	right:0;
	bottom:0;
	background:#1a2b6d;
	color:#fff;
	padding:15px;
	z-index:999999;
}

.sad-lgpd-wrap{
	max-width:1200px;
	margin:auto;
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:20px;
}

.sad-lgpd-buttons{
	display:flex;
	gap:10px;
}

.sad-lgpd-buttons button{
	border:none;
	padding:12px 18px;
	border-radius:6px;
	cursor:pointer;
	font-weight:600;
}

#sad-lgpd-open{
	background:#fff;
	color:#1a2b6d;
}

#sad-lgpd-accept{
	background:#ffd54f;
	color:#1a2b6d;
}

#sad-lgpd-modal{
	display:none;
	position:fixed;
	inset:0;
	background:rgba(0,0,0,.7);
	z-index:9999999;
}

.sad-lgpd-modal-content{
	background:#fff;
	max-width:900px;
	margin:5% auto;
	padding:30px;
	border-radius:10px;
	max-height:80vh;
	overflow:hidden;
}

.sad-lgpd-scroll{
	max-height:60vh;
	overflow:auto;
}

#sad-lgpd-close{
	float:right;
	font-size:30px;
	cursor:pointer;
}

@media(max-width:768px){

	.sad-lgpd-wrap{
		flex-direction:column;
		text-align:center;
	}

	.sad-lgpd-buttons{
		width:100%;
		flex-direction:column;
	}

	.sad-lgpd-buttons button{
		width:100%;
	}

}