.glowing {
  position: relative;
  border-radius: 30px;
  outline: none;
  border: none;
  color: white !important;
  text-decoration: none !important;  
  display:flex;/*CSS3*/
  align-items:center;/*Vertical align*/
  justify-content:center;
  z-index: 5;
}


.size-md{
  width: 50px;
  height: 50px;
}

.size-sm{
  width: 28px;
  height: 28px;
}

.size-xs{
  width: 20px;
  height: 20px;
}

.number{
  position: absolute;
  bottom: -25px;
  font-size: 12px;
}

.glowing::before, .glowing::after {
  content: "";
  position: absolute;
  width: 110%;
  height: 110%;
  border-radius: 30px;
  z-index: -1;
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
}
.dark i{
  transition: 0.5s;
}
.dark:hover i{
  color: #f02d57;
}



.glowing:hover::before, .glowing:hover::after {
  opacity: 1;

}

.glowing::after {
  top: -2;
  left: -20%;
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

.glowing::before {
  top: -2;
  left: 20%;
  -webkit-filter: blur(20px);
          filter: blur(20px);
}

.facebook {
  background: linear-gradient(45deg, #3D90F9, #005ED6);
}

.facebook:after, .facebook:before {
  background: linear-gradient(45deg, #3D90F9, #005ED6);
}

.twitter{
  background: linear-gradient(45deg, #2c6dc2, #219ed8);
}
.twitter::after, .twitter::before{
  background: linear-gradient(45deg, #2c6dc2, #219ed8);
}

.orange {
  background: linear-gradient(45deg, #ff0057, #e64a19);
}

.orange:after, .orange:before {
  background: linear-gradient(45deg, #ff0057, #e64a19);
}
.orange.selected{
  background: linear-gradient(45deg, #ff0057, #e64a19);
}

.red {
  background: linear-gradient(45deg,#c55669, #f02626);
}

.red:after, .red:before {
  background: linear-gradient(45deg,#c55669, #f02626);
}

.dark-red{
  background: linear-gradient(45deg,#6d2626, #ff0b0b);
}

.dark-red::after, .dark-red::before {
  background: linear-gradient(45deg,#6d2626, #ff0b0b);
}

.green {
  background: linear-gradient(45deg, rgba(142, 253, 130, 0.897), #2eda1f);
}

.green:after, .green:before {
  background: linear-gradient(45deg, rgba(142, 253, 130, 0.897), #2eda1f);
}


.yellow{
  background: linear-gradient(45deg,#FF0036,#DDCC63);
}


.yellow::after, .yellow::before {
  background: linear-gradient(45deg,#FF0036,#DDCC63);
}

.dark{
  background:  #2A2A2A;;
}

.commentLike, .commentDislike{
  cursor: pointer;
}
/*# sourceMappingURL=glowing-button.css.map */