
#custom_last_buyer{
	position:fixed;
	bottom:10px;
	left:10px;
	background: #efefef;
	opacity: 0;
	box-shadow: 0 0 4px 0 rgba(0,0,0,.4);
	border-radius: 2px;
	padding: 5px;
	z-index: 999999;
	height: 0;
	width: calc(100% - 20px);
	max-width: 600px;
	font-size: 0;
	width: auto;
}
#custom_last_buyer p {
	font-family: sans-serif !important;
	text-align: left !important;
	display: inline-block !important;
	vertical-align: middle !important;
	padding: 1% !important;
	margin: 0 !important;
	text-indent: 0 !important;
	font-size: 14px  !important;
	color: #000 !important;;
	line-height: 20px !important;
}
#custom_last_buyer .lb-name, #custom_last_buyer .lb-location { 
	font-weight: bold
}
.fadeInBottom{
	opacity: 0;
	animation: fadeInBott .5s 1 1s forwards;
}
.fadeOutBottom{
	opacity: 1;
	animation: fadeOutBott .5s 1 1s forwards;
}
@keyframes customFadeIn {
	from {
		opacity: 0;
		transform: translate3d(0, 100%, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
#custom_last_buyer.lb-custom-fade-in {
	opacity: 0;
	animation-name: customFadeIn;
	animation-duration: 1s;
	animation-fill-mode: both;
	height: auto;
}
@keyframes customFadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(0, 100%, 0);
		bottom:0;
	}
}
#custom_last_buyer.lb-custom-fade-out {
	opacity: 0;
	animation-name: customFadeOut;
	animation-duration: 1s;
	animation-fill-mode: both;
	height: auto;
}
@media(max-width: 630px){
	#custom_last_buyer{
		width: 100%;
		left: 0;
		bottom: 0;
	}
	#custom_last_buyer p{
		font-size: 12px;
	}
	#custom_last_buyer p a{
		font-size: 12px;
		line-height: 12px;
	}
}
