a.likes, a.super_likes, a.comments {
  z-index: 100;
  height: 1em;
  display: inline-block;
  text-align: center;
  position: relative;
  font-size: 1em;
  margin: 4px 6px;
  color: #ccc;
}
a.likes:hover, a.super_likes:hover, a.comments:hover {
  cursor: pointer;
}
a.likes span, a.super_likes span, a.comments span {
  padding-left: 0.3em;
  position: relative;
  vertical-align: bottom;
  color: #aaa;
  font-family: 'Open Sans', sans-serif;
}
a.likes, a.comments {
  font-size: 0.9em;
}
a.fa-heart {
  color: #E2232E !important;
}

a.fa-star {
  color: #FCD832!important;
}

a.likes:hover {
  color: #333;
}

span.likes_count {
  font-size: 0.85em;
  position: relative;
  top: -3px;
}

.product-vendor {
  font-size: 2em;
}

.modal.hidden {
  display: none;
}

.modal.super-likes {
  position: fixed;
  min-height: 130px;
  max-height: 480px !important;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0 !important;
  width: 270px !important;
  box-shadow: 15px 15px 0 0 rgba(0,0,0,0.1);
  border-radius: 3px;
  overflow: visible;
}
.modal.super-likes .modal-content {
  padding: 20px !important;
}
.modal.super-likes h2 {
  text-transform: uppercase;
}
.modal.super-likes h4 {
  font-size: 1.2em;
  margin: 0;
}
.modal.super-likes .remaining {
  width: 25px;
    height: 25px;
    background: #457edc;
    color: #fff;
    font-weight: bold;
    display: inline-block;
    border-radius: 100%;
    line-height: 25px;
}
.modal.super-likes .stars .fa-star {
  font-size: 140px;
  color: #FCD832;
  position: relative;
}
.modal.super-likes .modal-close {
  padding: 0;
  position: absolute;
  font-size: 50px;
  top: -20px;
  right: -20px;
  line-height: 40px;
  border-radius: 100%;
  background: white;
}
.modal.super-likes .stars .fa-star span {
  color: #FFF;
  position: absolute;
  left: 47px;
  top: 40px;
  font-size: 0.4em;
  font-weight: bold;
  font-family: monospace;
}
.modal.super-likes button {
  padding: 15px 40px;
  background: #1E7CDD;
  color: #FFF;
  font-size: 1.5em;
  font-weight: bold;
  margin-top: 20px;
}
.modal.super-likes .time {
  font-size: 1.6em;
  font-weight: bold;
}

@media screen and (max-width: 900px) {
	a.likes, a.super_likes, a.comments {
		margin: 5px;
    }
}
/* following  */
	.action-header {
    	padding-top:10px;
      	min-height: 65px;
    }
	h2 {
    	margin-right:15px;
    }
	.follow {
        background-color: white;
        color: deepskyblue;
    }
	.unfollow {
        background-color: deepskyblue;
        color: white;
    }
	.follow:hover {
        background-color: deepskyblue;
        color: white;
    }
	.unfollow:hover {
        background-color: white;
        color: deepskyblue;
    }
	.follow-btn {
        float: right;
		padding: 5px 20px;
    }
	.follow-btn i {
        margin-right: 7%;
    }




/*ANIMATE HEART & SUPER LIKE*/

a.fa-heart, a.fa-star {
  -webkit-animation: 275ms pulsate infinite alternate ease-in-out;
  -moz-animation: 275ms pulsate infinite alternate ease-in-out;
  -ms-animation: 275ms pulsate infinite alternate ease-in-out;
  -o-animation: 275ms pulsate infinite alternate ease-in-out;
  animation: 275ms pulsate infinite alternate ease-in-out;
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -ms-animation-iteration-count: 1;
  -o-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

@keyframes pulsate {
  0% { transform: scale(1); }
  50% { transform: scale(1.25); }
  100% { transform: scale(1); }
}
@-webkit-keyframes pulsate {
  0% { -webkit-transform: scale(1); }
  50% { -webkit-transform: scale(1.25); }
  100% { -webkit-transform: scale(1); }
}
@-moz-keyframes pulsate {
  0% { -moz-transform: scale(1); }
  50% { -moz-transform: scale(1.25); }
  100% { -moz-transform: scale(1); }
}
@-ms-keyframes pulsate {
  0% { -ms-transform: scale(1); }
  50% { -ms-transform: scale(1.25); }
  100% { -ms-transform: scale(1); }
}
@-o-keyframes pulsate {
  0% { -o-transform: scale(1); }
  50% { -o-transform: scale(1.25); }
  100% { -o-transform: scale(1); }
}
