.facebook-reaction{
    max-width:100%;
    /*margin:150px auto;
    padding:0 60px;*/
    position: relative;
}

.like-btn {
    font-weight: bold;
    color: #7f7f7f;
    position: relative;
    cursor: pointer;
    padding: 20px 20px 0 0;
}

.like-btn:hover {
    text-decoration: underline;
}

.like-btn-default {
    background-image: url('https://coderexample.com/demo/facebook-like-reaction-system/images/facebook.png');
    background-repeat: no-repeat;
    background-size: auto;
    /*background-position: -277px -446px;*/
    background-position: 0px -56px;
}

.like-btn-emo {
    display: inline-block;
    margin: 0 6px -3px 0;
    /*width: 16px;
    height: 16px;*/
    width: 30px;
    height: 30px;
}

.reactions-box {
    height: 65px;
    /*width: 360px;*/
    width: 300px;
    padding: 10px;
    position: absolute;
    /*top: -63px;
    left: -14px;*/
    background-color: white;
    box-shadow: 1px 1px 2px #cccccc, -1px 0px 2px #eeeeee;
    border-radius: 44px 44px;
    display: none;
    z-index: 1;
    top: 30px;
}

.reaction {
    list-style-type: none;
    cursor: pointer;
    display: inline-block;
    width: 48px;
    height: 48px;
    position: absolute;
    top: 8px;
    opacity: 0;
    transform: scale(1, 1);
    transition: opacity .5s ease-in-out 1s, transform .07s ease-in-out 0s, top .07s ease-in-out 0s;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center
}

.like-btn:hover .reactions-box {
    display: block;
}

.reaction-pending {
    left: 10px;
    transition-delay: 0s;
    background-image: url('/resources/task-states/icon_pending.png');
}

.reaction-executing {
    left: 68px;
    transition-delay: .05s;
    background-image: url('/resources/task-states/icon_in_progress.png');
}

.reaction-done {
    left: 126px;
    transition-delay: .1s;
    background-image: url('/resources/task-states/icon_completed.png');
}

.reaction-archived {
    left: 184px;
    transition-delay: .15s;
    background-image: url('/resources/task-states/icon_late.png');
}

.reaction-canceled {
    left: 242px;
    transition-delay: .2s;
    background-image: url('/resources/task-states/icon_cancel.png');
}

.like-btn:hover .reaction {
    opacity: 1;
    animation-name: reaction_delay;
    animation-duration: .5s;
}

@keyframes reaction_delay {
    0% {
        width: 48px;
        height: 48px;
        top: 60px;
    }
    48% {
        width: 56px;
        height: 56px;
        top: 5px;
    }
    100% {
        width: 48px;
        height: 48px;
        top: 8px;
    }
}


.like-btn:hover .reaction-pending {
    animation-delay: 0s
}

.like-btn:hover .reaction-executing {
    animation-delay: .05s
}

.like-btn:hover .reaction-done {
    animation-delay: .1s
}

.like-btn:hover .reaction-archived {
    animation-delay: .2s
}


.reaction:hover {
    transform: scale(1.2, 1.2);
    /*top: 2px*/
}



.reaction::before {
    display: inline-block;
    color: #ffffff;
    text-align: center;
    line-height: 17px;
    font-size: .7em;
    width: 170%;/*100%;*/
    height: 17px;
    margin-left: 10%;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    position: absolute;
    top: -25px;
    opacity: 0;
    transition: opacity .2s ease-in-out 0s;
}

.reaction:hover::before {
    opacity: 1
}

.reaction-pending::before {
    content: 'Pendente'
}

.reaction-executing::before {
    content: 'Em execução'
}

.reaction-done::before {
    content: 'Concluída'
}

.reaction-archived::before {
    content: 'Arquivada'
}
.reaction-canceled::before {
    content: 'Cancelada'
}


.like-stat {
    margin-top: 10px;
}

.like-btn-pending{
    background-image: url('/resources/task-states/icon_pending.png');
    background-repeat: no-repeat;
    /*background-size: auto;
    background-position: -17px -151px;*/
    background-size: 98%;
}

.like-btn-executing{
    background-image: url('/resources/task-states/icon_in_progress.png');
    background-repeat: no-repeat;
    /* background-size: auto;
     background-position: 0 -168px;*/
    background-size: 98%;
}

.like-btn-done{
    background-image: url('/resources/task-states/icon_completed.png');
    background-repeat: no-repeat;
    /*background-size: auto;
    background-position: 0 -151px;*/
    background-size: 98%;
}

.like-btn-archived{
    background-image: url('/resources/task-states/icon_late.png');
    background-repeat: no-repeat;
    /*background-size: auto;
    background-position: -17px -185px;*/
    background-size: 98%;
}

.like-btn-canceled{
    background-image: url('/resources/task-states/icon_cancel.png');
    background-repeat: no-repeat;
    /*background-size: auto;
    background-position: -17px -185px;*/
    background-size: 98%;
}

.like-emo > span{
    display: inline-block;
    margin: 0 -3px -3px 0px;
    width: 16px;
    height: 16px;
    border: 1px solid #EEE;
    border-radius: 50%;

}

.like-details{
    margin-left:10px;
    color:#9197a3;
    font-size:12px;
}


.like-btn .active{
    background-color: transparent;
}