/* left side sticky */

.total-users-session {
position: fixed;
left: 2%;
bottom: 65px;
display: flex;
z-index: 2;
}
.total-users-count {
background: #fff;
border-radius: 100px;
/* width: 55px;
height: 55px; */
padding-top: 3px;
/* animation: pulse1 2s infinite; */
background: url(https://themindandcompany.com/images/blog-pattern.png);
background-size: 182% 100%;
}
.total-users-count img {
width: 35px;
margin: 5px auto;
display: block; 
}
.total-users-text p {
font-size: 14px;
margin-bottom: 0;
text-align: center;
}
.total-users-text {
/* <%-- background: #fff; --%> */
padding: 4px 12px 7px 12px;
border-radius: 100px 100px 100px 15px;
/* margin-left: 8px; */
/* <%-- box-shadow: 2px 3px 3px #eee; --%>
<%-- filter: drop-shadow(-1px 0px 2px #eee); --%> */
background: url(https://themindandcompany.com/images/blog-pattern.png);
background-size: cover;
color: #fff;
}
.total-users-text p span {
font-size: 20px;
font-weight: bold;
top: 2px;
position: relative;
min-width: 42px;
display: inline-block;
} 
.like-sec-b i{
 font-size: 18px;
}
@-webkit-keyframes pulse1 {
0% {
-webkit-box-shadow: 0 0 0 0 rgba(249, 205, 153, 0.4);
}
70% {
-webkit-box-shadow: 0 0 0 8px rgba(249, 205, 1535, 0);
}
100% {
-webkit-box-shadow: 0 0 0 0 rgba(249, 205, 1535, 0);
}
}
@keyframes pulse1 {
0% {
-moz-box-shadow: 0 0 0 0 rgba(249, 205, 153, 0.4);
box-shadow: 0 0 0 0 rgba(249, 205, 153, 0.4);
}
70% {
-moz-box-shadow: 0 0 0 8px rgba(249, 205, 153, 0);
box-shadow: 0 0 0 8px rgba(249, 205, 153, 0);
}
100% {
-moz-box-shadow: 0 0 0 0 rgba(249, 205, 153, 0);
box-shadow: 0 0 0 0 rgba(249, 205, 153, 0);
}
}
@media (max-width: 600px) {
.total-users-session {
    bottom: 4%;
}
/* .total-users-count {
  width: 40px;
  height: 40px;
} */
.total-users-count img {
  width: 24px;
}
.total-users-text p span {
font-size: 15px;
}
.total-users-text p {
font-size: 12px;
}
.total-users-text {
padding: 4px 9px;
}

}
.total-users-session::after{
content: ' ';
  position: absolute;
  width: 0;
  height: 0;
  left: 15px;
  right: auto;
  bottom: -18px;
  border: 10px solid;
  border-color: transparent transparent #102133 #102133;

  /* transorm: rotate(80deg); */
  transform: rotate(89deg);
}
.total-users-session{
/* background: linear-gradient(0deg, rgba(234, 124, 35, 1) 0%, rgba(253, 187, 45, 1) 100%); */
/* background: linear-gradient(0deg, rgba(234, 124, 35, 1) 0%, rgb(221 119 57) 100%); */
background: linear-gradient(270deg, #306299 0%, #102133 100%);
  border-radius: 10px 10px 10px 0px;
  align-items: center;
  /* transform: translateY(200%); */
  animation: slide-up 1.5s  linear;
  
 
  animation-iteration-count: 1;

}
@keyframes slide-up {
0%{
 transform: translateY(200%);
}

50%{
  transform: translateY(100%);
}

100%{
  transform: translateY(0);
}
}
.total-users-count,.total-users-text{
background: none;
}
.total-users-text.left-line{
position: relative;
}
.total-users-text.left-line::after{
content: '';
position: absolute;
right: 0px;
height: 80%;
top: 50%;
transform: translateY(-50%);
width: 1px;
background: linear-gradient(176deg, #204C7C 0%, #ffffffa8 35.4%, #ffffffd9 64.7%, #1E4978 100%);
}

.total-users-count #like-btn {
  animation: shake-animation 4.72s ease infinite;
  transform-origin: 50% 50%;
  position: relative;
}

@keyframes shake-animation {
  0% {right: auto; }
 1.78571% { right: -5px; }
 3.57143% { right:auto; }
 5.35714% { right: -5px; }
 7.14286% {  right:auto; }
 8.92857% { right: -5px; }
 10.71429% {  right:auto; }
 100% {  right:auto; }
}