.border-box{
	border-radius: 15px;
}
.product-spec .border-box{
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
#someone-purchased{
	position:fixed;
	bottom:10px;
	left:10px;
	background: #ffffff;
	opacity: 0;
	box-shadow: 0 0 4px 0 rgba(0,0,0,.4);
	z-index: 98;
	height: 0;
	width: calc(100% - 20px);
	max-width: 600px;
	white-space: nowrap;
	font-size: 0;
	width: auto;
}
#someone-purchased img:not(.currsymbol){
	display: inline-block;
	vertical-align: middle;
	max-height: 85px;
	max-width: 20%;
	margin: 1%;
}
#someone-purchased p {
	display: inline-block;
	vertical-align: middle;
	padding: 1%;
	margin: 0;
	font-size: 14px;
	color: #000;
	line-height: 20px;
	max-width: 78%;
	white-space: normal;
}
#someone-purchased p a {
	color: #000;
	display: block;
	font-size: 15px;
	font-weight: 700;
	
}
.fadeInBottom{
	opacity: 0;
	animation: fadeInBott .5s 1 1s forwards;
}
.fadeOutBottom{
	opacity: 1;
	animation: fadeOutBott .5s 1 1s forwards;
}
@keyframes nFadeIn {
	from {
		opacity: 0;
		transform: translate3d(0, 100%, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
#someone-purchased.fade-in {
	opacity: 0;
	animation-name: nFadeIn;
	animation-duration: 1s;
	animation-fill-mode: both;
	height: auto;
}
@keyframes nFadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(0, 100%, 0);
		bottom:0;
	}
}
#someone-purchased.fade-out {
	opacity: 0;
	animation-name: nFadeOut;
	animation-duration: 1s;
	animation-fill-mode: both;
	height: auto;
}
@media(max-width: 630px){
	#someone-purchased{
		width: 100%;
		left: 0;
		bottom: 0;
	}
	#someone-purchased p{
		font-size: 12px;
	}
	#someone-purchased p a{
		font-size: 12px;
		line-height: 12px;
	}
}