.avisos {
	display: none;
	background: #D3D3D3;
	padding: 20px;
	width: calc(100% - 40px);
	max-width: 300px;
	line-height: 150%;
	border-radius: 10px;
	position: fixed;
	bottom: 20px;
	left: 20px;
	z-index: 100;
	padding-top: 60px;
	box-shadow: 0px 2px 20px 10px rgba(222,222,222,.25);
	text-align: center;
}

.avisos.activo {
	display: block;
}

.avisos .galleta {
	max-width: 100px;
	
}

.avisos .titulo,
.avisos .parrafo {
	margin-bottom: 15px;
}

.avisos .boton {
	width: 100%;
	background: #595959;
	border: none;
	color: #fff;
	font-family: 'Roboto', sans-serif;
	text-align: center;
	padding: 15px 20px;
	font-weight: 700;
	cursor: pointer;
	transition: .3s ease all;
	border-radius: 5px;
	margin-bottom: 15px;
	font-size: 14px;
}

.avisos .boton:hover {
	background: #000;
}

.avisos .enlace {
	color: #4DBFFF;
	text-decoration: none;
	font-size: 14px;
}

.avisos .enlace:hover {
	text-decoration: underline;
}

