.red, .red a,.red a h5, .red a p{
    color:#FF0000 !important;
}
a {
    text-decoration: none;
    color: inherit;
}
.mr2 {
	margin-right: 1rem;
}
.ml2 {
	margin-left: 1rem;
}
.main-group{
	width:300px;
	padding:0 5em;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	background: linear-gradient(to bottom, ##FEF8C9,#86b7e7);
	position:absolute;
	left:50%;
	top:110px;
	margin-left:-215px;
}
.main-group .items-group{
	background:repeating-linear-gradient(to right,#ffffff, #FEF8C9);
	width: 280px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-radius:8px;
	padding: 8px 20px 8px 6px;
	box-sizing: border-box;
	animation: animate 25s linear infinite;
	animation-delay: calc(5s * var(--delay));
	position: absolute;
	opacity: 0;
}
.main-group .items-group:last-child{
	animation-delay: calc(-5s * var(--delay));
}
.main-group .items-group.no-animation{
	animation-play-state: paused;
}
@keyframes animate {
	0%{
		opacity: 0;
		transform: translateY(100%) scale(0.5);
	}
	5%, 20%{
		opacity: 0;
		transform: translateY(100%) scale(0.7);
	}
	25%, 40%{
		opacity: 1;
		z-index: 1;
		pointer-events: auto;
		transform: translateY(0%) scale(1);
	}
	45%, 60%{
		opacity: 0;
		transform: translateY(-100%) scale(0.7);
	}
	65%,100%{
		opacity: 0;
		transform: translateY(-100%) scale(0.5);
	}
}
.main-group .items-group .items-box{
	display: flex;
	align-items: center;
	/* justify-content: center; */
}
.main-group .items-group .img{
	width: 20px;
	height: 20px; margin:0 10px 0 5px;
}
.items-group .img img{
	width:100%;
	height:100%;
	border-radius: 50%;
}
.main-group .items-group .desc{
	font-size: 14px;
}
.main-group .items-group .desc .name{
	font-size: 14px; margin-right:5px;
}
.main-group .items-group .desc p{ display:inline;font-size: 14px;}
.main-group .items-group .follow-btn{
	border-radius: 16px;
	font-weight: bold;
	padding:5px 26px;
	color: #fff;
	background: linear-gradient(to bottom, #bea2e7 0%,#86b7e7 100% );
}
.main-group .items-group .del-follow{
	background: linear-gradient(to bottom, #1f1f1f 0%,#a8a8a8 100% );
}