.popup {
	position: fixed;
	left: 15px;
	bottom: 15px;
	display: flex;
	align-items: center;
	min-width: 320px;
	padding: 10px;
	padding-right: 30px;
	background-color: #fff;
	border-radius: 100px;
	border: 1px solid #eee;
	font-size: 13px;
	line-height: 1.6;
	box-shadow: 0px 0px 6px 1px #c3c3c3;
	z-index: 100000;
	text-align: left;
}
.popup .image {
	width: 70px;
	height: 70px;
	margin-right: 10px;
}
.popup .image img {
	border-radius: 50%;
}
.popup .content {
	flex: 1;
}
.popup .title {
	display: inline-block;
	font-weight: bold;
}
.popup .text {
	color: #363636;
}
.popup .date {
	color: #7a7a7a;
}
.popup .link {
	margin-top: -2px;
	text-align: right;
	font-size: 12px;
}
.popup .link i {
	color: #0080ff;
}
.popup .link span {
	color: #0080ff;
	font-weight: bold;
}
.popup .close {
	position: absolute;
	right: 0;
	top: -15px;
	height: 20px;
	width: 20px;
	color: #8b8b8b;
	background-color: #fff;
	border-radius: 50%;
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
}
@media (max-width: 320px) {
	.popup {
		min-width: 295px;
	}
}