.likesBtn {
    width: 50px;
    height: 50px;
    text-align: center;
    /*padding-left: 20px;*/
    cursor: pointer;
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -em-transition: all 0.3s;
    -moz-transition: all 0.3s;
    display: inline-block;
    margin: 5px;
    vertical-align: middle;
    position: relative;
    overflow: hidden;
}
div[id$="panelRelated"] table a {
    width: 20px !important;
    display: inline-block !important;
    height: 20px !important;
}
.FileManager_FileList a {
    display: inline-block;
    width: 20px;
}
.likesBtn:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 100%;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.likesBtn:hover:before, .likesBtn:focus:before, .likesBtn:active:before {
    -webkit-transform: scale(2);
    transform: scale(2);
}
.likesBtn:hover .counter-text {
	color: #fff;
	transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -em-transition: all 0.3s;
    -moz-transition: all 0.3s;
}
.likesBtn {
	transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    -em-transition: all 0.3s;
    -moz-transition: all 0.3s;
    position: rrelative;
}

.likesBtn:after {
    display: inline-block;
    position: absolute;
    right: 15px;
    top: 50%;
    font-size: 25px;
    margin-top: -16px;
    font-family: FontAwesome;
}
#divLike:after {
    content: "\f087";
}
#divDisLike:after {
    content: "\f088";
}
.Liked:after {
    content: "\f164" !important;
    font-size: 27px;
}
.DisLiked:after {
    content: "\f165" !important;
    font-size: 27px;
}

.likesBtn:hover img {
    transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -o-transform: scale(1.2);
    -em-transform: scale(1.2);
    -moz-transform: scale(1.2);
}


/* Detail Progress Bar (START) */

.progressWrapper.inHeader {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 4px;
    overflow: hidden;
}

.progressWrapper.inHeader .progressBar,
.progressWrapper.outOfHeader .progressBar {
    height: 4px;
    background-color: #4baec1;
    width: 0%;
}

.progressWrapper.outOfHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    overflow: hidden;
}

/* Detail Progress Bar (END) */
