.lgpd-box{
	position: fixed;
	display: flex;
	align-content: flex-end;
	justify-content: flex-end;
	align-items: center;
	bottom: 30px;
	right: 30px;
	max-width: 400px;
	z-index: 999;
}
.lgpd-container{
	padding: 20px 30px;
	border-radius: 5px;
	max-height: 100%;
	box-shadow: 0 0 10px rgba(0,0,0,0.9);
	max-width: 400px;
	color: #fff;
	position: relative;
	background: linear-gradient(137deg, rgba(42,48,66,1) 0%, rgba(16,23,33,1) 100%);
}
.lgpd-content{
	font-weight: 400;
}
.lgpd-content h4{
	font-size: 1.125rem;
	margin: 0;
	margin-bottom: 15px;
}
.lgpd-content p{
	font-size: 0.9rem;
	margin-bottom: 10px;
}
.lgpd-content a{
	font-weight: 600;
	color: #6df8ff;
}
.lgpd-close{
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	position: absolute;
	right: 0;
	top: 0;
	width: 25px;
	height: 25px;
	background: rgb(130,0,0);
	color: #f6f6f6;
}
.lgpd-btn-aceite{
	background: linear-gradient(180deg, #48cdcd, #087c7c);
	border-radius: 5px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	margin-top: 10px;
	color: #fff;
	width: 100%;
	height: 40px;
	border: none;
	font-weight: 600;
	letter-spacing: 0.05rem;
	transition: 0.2s ease-in-out;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5)!important;
}
.lgpd-btn-aceite .spinner-border{
	width: 1.25rem;
	height: 1.25rem;
	border-radius: 50px;
	border: 3px solid #fff;
	border-left: 3px solid transparent;
	animation: rotateLoad 0.8s linear infinite;
}
.lgpd-btn-aceite:hover,
.lgpd-btn-aceite:focus{
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7)!important;
	filter: brightness(115%);
}

@media screen and (max-width: 425px) {
	.lgpd-box{
		padding: 0 20px;
		position: fixed;
		display: flex;
		align-content: center;
		justify-content: center;
		align-items: center;
		width: 100%;
		z-index: 999;
		right: auto;
		left: auto;
		bottom: 20px;
	}	
}
@keyframes rotateLoad{
	from{
		transform: rotate(0deg);
	}
	to{
		transform: rotate(360deg);
	}
}