/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 #likeBtn {
    display: inline-block;
    width: 1em;
    height: 1.7em;
    cursor: pointer;
    position: relative;
}

#likeSection .fa, .fa-heart {
    color: #BC581A !important;
    font-size: 1.2em !important;
    position: absolute;
    top: 0.2em;
}

#top-heart-fas {
    -webkit-transition: 0.10s opacity ease-in-out;
	-moz-transition: 0.10s opacity ease-in-out;
	-o-transition: 0.10s opacity ease-in-out;
	transition: 0.10s opacity ease-in-out;
    opacity: 1;
    z-index: 1000;
}

#likeCount {
    display: inline-block;
    margin-left: 1em;
    font-size: 1em;
    cursor: default;
    font-weight: bold;
    font-family: gentona_light, arial, sans-serif!important;
}

#likeSection {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    clear: both;
}

#top-heart-fas.hide {
    opacity: 0;
}

span.like-heart img{
    min-width: 1.5em !important;
    margin-bottom: 5px !important;
    margin-right: 5px !important;
}

span.like-heart{
    padding-bottom: 5px !important;
    padding-right: 10px !important;
}

span#likeBtn span.hide{
    display:none ;
}

span#likeBtn span.show{
    display:inline ;
}

