/*
	Refactored Code
*/
@keyframes bounce {
  0% {
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    -webkit-transform: scale(2);
    opacity: 0;
  }
}
@-webkit-keyframes bounce {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.react-icon {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  /*&:hover{
      &:before{
          display: block;
      }
  }*/
}
.react-icon:before {
  content: attr(data-name);
  position: absolute;
  top: -41px;
  left: 50%;
  transform: translate(-50%, 0);
  display: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 4px 8px;
  background: #333333;
  border-radius: 24px;
  flex: none;
  order: 0;
  flex-grow: 0;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  color: #FAFAFA;
  white-space: nowrap;
}

.react-icon:hover:before {
  display: block;
}

.react-icon.show-label:before {
  display: block;
}

.react-like {
  background-image: url("../img/like.png");
}

.react-dislike {
  background-image: url("../img/dislike.png");
}

.react-love {
  background-image: url("../img/love.png");
}

.react-haha {
  background-image: url("../img/haha.png");
}

.react-wow {
  background-image: url("../img/wow.png");
}

.react-sad {
  background-image: url("../img/sad.png");
}

.react-angry {
  background-image: url("../img/angry.png");
}

.react-cool {
  background-image: url("../img/cool.png");
}

.react-confused {
  background-image: url("../img/confused.png");
}

.react-insightful {
  background-image: url("../img/Insightful.png");
}

.react-inspired {
  background-image: url("../img/inspired.png");
}

.reaction-options {
  position: relative;
  display: inline-block;
}
.reaction-options.react-show .reacts {
  display: flex;
}
.reaction-options .react-loading {
  /*&:before, &:after{
      content: '';
      width: 18px;
      height: 18px;
      background: #ddd8e5;
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      border-radius: 50%;
      -webkit-border-radius: 50%;
      -moz-border-radius: 50%;
  }
  &:before {
      animation: bounce 1s infinite;
  }
  &:after {
      animation: bounce 1s -0.4s infinite;
  }*/
}
.reaction-options .react-loading > span:before {
  animation: bounce 1s -0.4s infinite;
}
.reaction-options .react-btn {
  display: inline-block;
  line-height: 24px;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
.reaction-options .react-btn:before, .reaction-options .react-btn:after {
  content: '';
  display: table;
}
.reaction-options .react-btn:after {
  clear: both;
}
.reaction-options:hover{
  text-decoration: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #F0F0F0;
  border-radius: 16px;
  order: 0;
}
.reaction-options .react-btn > span {
  color: #333333;
  position: relative;
  display: inline-block;
}
.reaction-options .react-btn > span.react-active-like,
.reaction-options .react-btn > span.react-active-dislike,
.reaction-options .react-btn > span.react-active-love,
.reaction-options .react-btn > span.react-active-haha,
.reaction-options .react-btn > span.react-active-wow,
.reaction-options .react-btn > span.react-active-sad,
.reaction-options .react-btn > span.react-active-angry,
.reaction-options .react-btn > span.react-active-cool,
.reaction-options .react-btn > span.react-active-confused,
.reaction-options .react-btn > span.react-active-insightful,
.reaction-options .react-btn > span.react-active-inspired {
  color: #41B8D5;
}

.reaction-options .react-btn > span.react-active-like:before,
.reaction-options .react-btn > span.react-active-dislike:before,
.reaction-options .react-btn > span.react-active-love:before,
.reaction-options .react-btn > span.react-active-haha:before,
.reaction-options .react-btn > span.react-active-wow:before,
.reaction-options .react-btn > span.react-active-sad:before,
.reaction-options .react-btn > span.react-active-angry:before,
.reaction-options .react-btn > span.react-active-cool:before,
.reaction-options .react-btn > span.react-active-confused:before,
.reaction-options .react-btn > span.react-active-insightful:before,
.reaction-options .react-btn > span.react-active-inspired:before {
  margin-top: 0px;
}
.reaction-options .react-btn > span > i {
  margin: 0 !important;
  font-size: 24px;
  line-height: 24px;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
}
.reaction-options .react-btn > span:before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 16px;
  margin-top: 3px;
  float: left;
  /*margin-right: 3px;*/
  font-size: 24px;
  line-height: 24px;
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.reaction-options .react-btn [class^="react-active-"] > i {
  display: none;
}
.reaction-options .react-btn > span:before {
  background-image: url("../img/react.svg");
}
.reaction-options .react-btn .react-active-like:before {
  content: '';
  background-image: url("../img/like.png");
  width: 24px;
  height: 24px;
}
.reaction-options .react-btn .react-active-dislike:before {
  content: '';
  background-image: url("../img/dislike.png");
  width: 24px;
  height: 24px;
}
.reaction-options .react-btn .react-active-love:before {
  content: '';
  background-image: url("../img/love.png");
  width: 24px;
  height: 24px;
}
.reaction-options .react-btn .react-active-haha:before {
  content: '';
  background-image: url("../img/haha.png");
  width: 24px;
  height: 24px;
}
.reaction-options .react-btn .react-active-wow:before {
  content: '';
  background-image: url("../img/wow.png");
  width: 24px;
  height: 24px;
}
.reaction-options .react-btn .react-active-sad:before {
  content: '';
  background-image: url("../img/sad.png");
  width: 24px;
  height: 24px;
}
.reaction-options .react-btn .react-active-angry:before {
  content: '';
  background-image: url("../img/angry.png");
  width: 24px;
  height: 24px;
}
.reaction-options .react-btn .react-active-cool:before {
  content: '';
  background-image: url("../img/cool.png");
  width: 24px;
  height: 24px;
}
.reaction-options .react-btn .react-active-confused:before {
  content: '';
  background-image: url("../img/confused.png");
  width: 24px;
  height: 24px;
}
.reaction-options .react-btn .react-active-insightful:before {
  content: '';
  background-image: url("../img/Insightful.png");
  width: 24px;
  height: 24px;
}
.reaction-options .react-btn .react-active-inspired:before {
  content: '';
  background-image: url("../img/inspired.png");
  width: 24px;
  height: 24px;
}

#lb_description .reaction-options .react-btn > span {
  color: #ffffff;
}

.reaction-mobile .react-overview {
  z-index: 2000;
}
.reaction-mobile .reacts {
  z-index: 2001;
}

.react-overview {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  display: none;
}

.reacts {
  background: #ffffff;
  border-radius: 90px;
  padding: 8px 5px;
  gap: 4px;
  display: none;
  box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.2);
  position: absolute;
  bottom: 100%;
  z-index: 15;
}
.reacts .react-circle {
  width: 48px;
  height: 48px;
  background: #ffffff;
  border-radius: 50%;
  animation: slide 0.2s ease-in-out forwards;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  transition: transform 500ms ease;
  /*&:hover {
      .react-icon{
          transform: scale(1.3) translate(0, -6px);
      }
  }*/
}
@keyframes slide {
  0% {
    transform: scale(0.1) translateY(10px);
    -webkit-transform: scale(0.1) translateY(10px);
    -moz-transform: scale(0.1) translateY(10px);
    -o-transform: scale(0.1) translateY(10px);
  }
  50% {
    transform: scale(0.4) translateY(50px);
    -webkit-transform: scale(0.4) translateY(50px);
    -moz-transform: scale(0.4) translateY(50px);
    -o-transform: scale(0.4) translateY(50px);
  }
  100% {
    transform: scale(1) translate(0, 0);
    -webkit-transform: scale(1) translate(0, 0);
    -moz-transform: scale(1) translate(0, 0);
    -o-transform: scale(1) translate(0, 0);
  }
}

.reacts .react-circle:hover,
.reacts .react-circle.react-active {
  margin: 0 4px;
}

.reaction-options.react-show .reacts {
  display: flex;
  width: max-content;
}

.reacts .react-circle:nth-child(1) {
  animation-duration: calc(0.1s * 1);
  -webkit-animation-duration: calc(0.1s * 1);
  -moz-animation-duration: calc(0.1s * 1);
  -o-animation-duration: calc(0.1s * 1);
}
.reacts .react-circle:nth-child(2) {
  animation-duration: calc(0.1s * 2);
  -webkit-animation-duration: calc(0.1s * 2);
  -moz-animation-duration: calc(0.1s * 2);
  -o-animation-duration: calc(0.1s * 2);
}
.reacts .react-circle:nth-child(3) {
  animation-duration: calc(0.1s * 3);
  -webkit-animation-duration: calc(0.1s * 3);
  -moz-animation-duration: calc(0.1s * 3);
  -o-animation-duration: calc(0.1s * 3);
}
.reacts .react-circle:nth-child(4) {
  animation-duration: calc(0.1s * 4);
  -webkit-animation-duration: calc(0.1s * 4);
  -moz-animation-duration: calc(0.1s * 4);
  -o-animation-duration: calc(0.1s * 4);
}
.reacts .react-circle:nth-child(5) {
  animation-duration: calc(0.1s * 5);
  -webkit-animation-duration: calc(0.1s * 5);
  -moz-animation-duration: calc(0.1s * 5);
  -o-animation-duration: calc(0.1s * 5);
}
.reacts .react-circle:nth-child(6) {
  animation-duration: calc(0.1s * 6);
  -webkit-animation-duration: calc(0.1s * 6);
  -moz-animation-duration: calc(0.1s * 6);
  -o-animation-duration: calc(0.1s * 6);
}
.reacts .react-circle:nth-child(7) {
  animation-duration: calc(0.1s * 7);
  -webkit-animation-duration: calc(0.1s * 7);
  -moz-animation-duration: calc(0.1s * 7);
  -o-animation-duration: calc(0.1s * 7);
}
.reacts .react-circle:nth-child(8) {
  animation-duration: calc(0.1s * 8);
  -webkit-animation-duration: calc(0.1s * 8);
  -moz-animation-duration: calc(0.1s * 8);
  -o-animation-duration: calc(0.1s * 8);
}
.reacts .react-circle .react-icon {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 200ms ease;
  /*&.react-active{
      transform: scale(1.3) translate(0, -6px);
  }*/
}
.reacts .react-circle.react-active .react-icon {
  transform: scale(1.3) translate(0, -6px);
}


.reaction-review {
  line-height: 24px;
  vertical-align: middle;
}
.reaction-review:before, .reaction-review:after {
  display: table;
  content: '';
}
.reaction-review:after {
  clear: both;
}
.reaction-review .react-review {
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 18px;
  position: relative;
  cursor: pointer;
  border: 1px solid #fafafa;
  border-radius: 50%;
  margin-right: -3px;
  z-index: 1;
}
.reaction-review .react-review:before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid #fafafa;
  border-radius: 50%;
}
.reaction-review .react-review:hover .react-result-count {
  display: block;
}
.reaction-review .react-review + .react-review {
  margin-left: -2px;
  z-index: 2;
}
.reaction-review .react-review:nth-child(2) {
  z-index: 2;
}
.reaction-review .react-review:nth-child(3) {
  z-index: 3;
}
.reaction-review .react-review:nth-child(4) {
  z-index: 4;
}
.reaction-review .react-review:nth-child(5) {
  z-index: 5;
}
.reaction-review .react-review.react-active-like {
  z-index: 9;
}
.reaction-review .react-review.react-active-like:before {
  background-image: url("../img/like.png");
}
.reaction-review .react-review.react-active-dislike {
  z-index: 8;
}
.reaction-review .react-review.react-active-dislike:before {
  background-image: url("../img/dislike.png");
}
.reaction-review .react-review.react-active-love {
  z-index: 7;
}
.reaction-review .react-review.react-active-love:before {
  background-image: url("../img/love.png");
}
.reaction-review .react-review.react-active-haha {
  z-index: 6;
}
.reaction-review .react-review.react-active-haha:before {
  background-image: url("../img/haha.png");
}
.reaction-review .react-review.react-active-wow {
  z-index: 5;
}
.reaction-review .react-review.react-active-wow:before {
  background-image: url("../img/wow.png");
}
.reaction-review .react-review.react-active-sad {
  z-index: 4;
}
.reaction-review .react-review.react-active-sad:before {
  background-image: url("../img/sad.png");
}
.reaction-review .react-review.react-active-angry {
  z-index: 3;
}
.reaction-review .react-review.react-active-angry:before {
  background-image: url("../img/angry.png");
}
.reaction-review .react-review.react-active-cool {
  z-index: 2;
}
.reaction-review .react-review.react-active-cool:before {
  background-image: url("../img/cool.png");
}
.reaction-review .react-review.react-active-confused {
  z-index: 1;
}
.reaction-review .react-review.react-active-confused:before {
  background-image: url("../img/confused.png");
}
.reaction-review .react-review.react-active-insightful {
  z-index: 1;
}
.reaction-review .react-review.react-active-insightful:before {
  background-image: url("../img/Insightful.png");
}
.reaction-review .react-review.react-active-inspired {
  z-index: 1;
}
.reaction-review .react-review.react-active-inspired:before {
  background-image: url("../img/inspired.png");
}
.reaction-review .react-result-count {
  position: absolute;
  top: -21px;
  left: 50%;
  transform: translate(-50%, 0);
  background: rgba(0, 0, 0, 0.5);
  padding: 2px 8px;
  color: #fff;
  font-size: 10px;
  border-radius: 90px;
  display: none;
}
.reaction-review .react-count-all {
  line-height: 22px;
  color: #969696;
  margin-left: 8px;
}
.reaction-review .react-see-hide {
  display: none;
}

.activity_comments li[id^="comment_"] .comment a.react-count-all {
  color: #969696;
  padding-left: 2px;
  padding-right: 2px;
}

.title-modal-reaction {
  padding: 5px;
  position: relative;
}
.title-modal-reaction button.close {
  width: 32px;
  height: 32px;
  right: 0;
  top: 5px;
  position: absolute;
  z-index: 5;
  cursor: pointer;
}
.title-modal-reaction button.close span {
  width: 30px;
  height: 30px;
  padding: 0;
  margin: 0;
  text-align: center;
  line-height: 30px;
}

.reaction-tab {
  font-size: 12px;
  line-height: 15px;
}
.nav-tabs > li > a.reaction-tab:hover,
.nav-tabs > li.active > a.reaction-tab,
.nav-tabs > li.active > a.reaction-tab:hover,
.nav-tabs > li.active > a.reaction-tab:focus {
  border-bottom: 2px solid #2196f3;
  color: #2196f3;
}
.reaction-tab:before {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  float: left;
  margin-right: 3px;
}
.reaction-tab.react-active-all:before {
  content: attr(data-title);
  min-width: 15px;
  width: auto;
  height: 15px;
}
.reaction-tab.react-active-like:before {
  background-image: url("../img/like.png");
}
.reaction-tab.react-active-dislike:before {
  background-image: url("../img/like.png");
}
.reaction-tab.react-active-love:before {
  background-image: url("../img/love.png");
}
.reaction-tab.react-active-haha:before {
  background-image: url("../img/haha.png");
}
.reaction-tab.react-active-wow:before {
  background-image: url("../img/wow.png");
}
.reaction-tab.react-active-sad:before {
  background-image: url("../img/sad.png");
}
.reaction-tab.react-active-angry:before {
  background-image: url("../img/angry.png");
}
.reaction-tab.react-active-cool:before {
  background-image: url("../img/cool.png");
}
.reaction-tab.react-active-confused:before {
  background-image: url("../img/confused.png");
}
.reaction-tab.react-active-insightful:before {
  background-image: url("../img/Insightful.png");
}
.reaction-tab.react-active-inspired:before {
  background-image: url("../img/inspired.png");
}

.feed-reaction-review {
  padding: 0 24px 0 24px;
  margin-bottom: 16px;
  position: relative;
  margin-top: -8px;
}
.feed-reaction-review::after, .comment-reaction-review:after {
  content: '';
  position: static;
  bottom: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background-color: #e5e7eb;
  width: 100%;
  margin-top: 8px;
  display: -webkit-inline-box;
}

.comment-reaction-options {
  margin-left: 5px;
}

.comment-reaction-review {
  display: block;
  padding: 5px 0 10px 0;
  margin: 0;
}

.feed-reaction-options {
  margin-left: 10px;
}

/* Modal reaction users grid */
.reaction-users-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  text-align: left;
}
.reaction-users-list li:before { content: none !important; }
.reaction-users-list > .reaction-user-item {
  box-sizing: border-box;
  width: 100%;
  padding: 8px 10px;
  display: flex;
  align-items: center;
}
.reaction-user-item .reaction-user-avatar {
  width: 64px;
  height: 64px;
  margin-right: 10px;
  flex: 0 0 42px;
}
.reaction-user-item .reaction-user-avatar img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: block;
}
.reaction-user-item .reaction-user-info {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}
.reaction-user-item .reaction-user-name a {
  font-weight: 600;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.reaction-user-item .reaction-user-desc {
  font-size: 12px;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 480px) {
  .reaction-users-list > .reaction-user-item { width: 100%; }
}

@media (min-width: 769px) {
  .modal-dialog {
      min-width: 648px;
  }
}

@media (max-width: 768px) {
  .reaction-filters .reaction-filter-tab .filter-count, .reaction-filters .reaction-filter-tab .filter-text{
    font-size: 17px;
  }

  .reaction-filters .reaction-filter-tab .filter-icon {
    width: 48px;
    height: 48px;
  }
}

.reaction-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 24px 40px;
  background: #ffffff;
  border-radius: 24px;
}

.reaction-modal-title {
  margin: auto;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #333333;
  flex: none;
  order: 0;
  flex-grow: 0;
}

.reaction-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #333333;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.reaction-modal-close:hover {
  background-color: #f3f4f6;
  color: #374151;
}

.reaction-filters {
  padding: 0px 24px;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.reaction-filter-tabs {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e0 #f7fafc;
  -webkit-overflow-scrolling: touch;
}

.reaction-filter-tabs::-webkit-scrollbar {
  height: 6px;
}

.reaction-filter-tabs::-webkit-scrollbar-track {
  background: #f7fafc;
  border-radius: 3px;
}

.reaction-filter-tabs::-webkit-scrollbar-thumb {
  background: #cbd5e0;
  border-radius: 3px;
}

.reaction-filter-tabs::-webkit-scrollbar-thumb:hover {
  background: #a0aec0;
}

.reaction-filter-tab {
  display: flex;
  align-items: center;
  padding: 0 11px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s ease;
  border: none;
  background: transparent;
  cursor: pointer;
  min-height: 44px;
  color: #333333;
  padding-bottom: 10px;
  flex-shrink: 0;
  white-space: nowrap;
}

.reaction-filter-tab:hover {
  text-decoration: none;
  border-bottom: #41B8D5;
  border-bottom-style: solid;
  border-radius: 0;
  border-bottom-width: 2px;
}

.reaction-filter-tab.active {
  text-decoration: none;
  border-bottom: #41B8D5;
  border-bottom-style: solid;
  border-radius: 0;
  border-bottom-width: 2px;
}

.reaction-filter-tab.active .filter-count,
.reaction-filter-tab.active .filter-text {
  color: #41B8D5;  
}

.reaction-filter-tab:not(.active) {
  background-color: transparent;
  color: #333;
}

.reaction-filter-tab .filter-text {
  font-weight: 500;
}

.reaction-filter-tab .filter-icon {
  width: 48px;
  height: 48px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
}

.reaction-filter-tab .filter-count {
  margin-left: 8px;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #333333;
  flex: none;
  order: 1;
  flex-grow: 0;
}

.reaction-modal-body {
  background: #ffffff;
  max-height: 400px;
  overflow-y: auto;
  border-radius: 24px;
}

.reaction-tab-content {
  padding: 0;
  margin-top: 24px;
}

.reaction-tab-pane {
  display: none;
}

.reaction-tab-pane.active {
  display: block;
}

.reaction-users-container {
  padding: 0;
}

.reaction-user-item {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid #f3f4f6;
  transition: background-color 0.2s ease;
}

.reaction-user-item:hover {
  background-color: #f9fafb;
}

.reaction-user-item:last-child {
  border-bottom: none;
}

.reaction-user-avatar {
  width: 64px;
  height: 64px;
  margin-right: 16px;
  flex-shrink: 0;
}

.reaction-user-avatar img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
}

.reaction-user-info {
  flex: 1;
  min-width: 0;
}

.reaction-user-name a {
  font-weight: 600;
  font-size: 15px;
  color: #333;
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
}

.reaction-user-name a:hover {
  color: #41B8D5;
  text-decoration: none;
}

.reaction-user-desc {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.4;
  margin: 0;
}

.no-more-results {
  padding: 24px;
  text-align: center;
  color: #6b7280;
  font-size: 14px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .reaction-modal-header {
    padding: 16px 20px 12px;
  }
  
  .reaction-modal-title {
    font-size: 16px;
  }
  
  .reaction-filters {
    padding: 12px 20px;
    padding-bottom: 0!important;
  }
  
  .reaction-filter-tabs {
    gap: 6px;
    padding-bottom: 0!important;
  }
  
  .reaction-filter-tab {
    padding: 10px 16px;
    font-size: 14px;
    min-height: 40px;
  }
  
  .reaction-filter-tab .filter-icon {
    width: 22px;
    height: 22px;
  }
  
  .reaction-filter-tab .filter-count {
    font-size: 14px;
  }
  
  .reaction-user-item {
    padding: 12px 20px;
  }
  
  .reaction-user-avatar {
    width: 40px;
    height: 40px;
    margin-right: 12px;
  }
  
  .reaction-user-avatar img {
    width: 40px;
    height: 40px;
  }
  
  .reaction-user-name a {
    font-size: 14px;
  }
  
  .reaction-user-desc {
    font-size: 12px;
    }

    .like-action .act-item a,
    .like-action .reaction-options .react-btn > span {
      display: inline-grid;
      place-items: center;
      white-space: nowrap;
    }

    .like-action .act-item a .act-item-symbol{
      margin-right: 0;
      padding-right: 0;
    }
}

@media (max-width: 480px) {
  .reaction-modal-header {
    padding: 12px 16px 8px;
  }
  
  .reaction-filters {
    padding: 8px 16px;
  }
  
  .reaction-filter-tabs {
    gap: 4px;
    padding-bottom: 4px;
  }
  
  .reaction-filter-tab {
    padding: 8px 12px;
    font-size: 13px;
    min-height: 36px;
  }
  
  .reaction-filter-tab .filter-icon {
    width: 20px;
    height: 20px;
  }
  
  .reaction-filter-tab .filter-count {
    font-size: 13px;
  }
  
  .reaction-user-item {
    padding: 10px 16px;
  }
  
  .reaction-user-avatar {
    width: 36px;
    height: 36px;
    margin-right: 10px;
  }
  
  .reaction-user-avatar img {
    width: 36px;
    height: 36px;
  }
}

.like-section .like-action {
  line-height: 18px;
}
.like-section .like-action > a i {
  vertical-align: middle;
}
.like-section .like-action > a > span {
  vertical-align: middle;
}
.like-section .like-action .item-reaction-review {
  display: inline-block;
}

.feed-time.date > span > script {
  display: none !important;
}

#lb_description {
  line-height: 26px;
}
#lb_description .photo-reaction-review {
  display: inline-block;
  line-height: 20px;
}

.photo_on_theater .photo_left > .photo-reaction-review {
  float: left;
}
.photo_on_theater .photo_left > .photo-reaction-options {
  float: right;
}
.photo_on_theater .photo_left > .photo-reaction-options > .reacts {
  /*transform: scale(0.9) translate(-92%, 0);*/
  bottom: 5px;
}
.photo_on_theater .photo_left .comment-reaction-options .reacts {
  /*transform:scale(0.6) translate(-70%, 0);*/
  bottom: 0;
}

.photo_on_theater .photo-reaction-options .react-overview, .photo_on_theater .comment-reaction-options .react-overview {
  height: 10000px;
}

.section-like-photo .reaction-review {
  display: inline-block;
}

@media screen and (max-width: 576px) {
  .feed-time.date > span.comment-action {
    display: block;
  }

  /*.reacts {
      transform:scale(0.9) translate(-55%, 0);
  }*/
}
.notification_reaction_like,
.notification_reaction_love,
.notification_reaction_haha,
.notification_reaction_wow,
.notification_reaction_sad,
.notification_reaction_angry,
.notification_reaction_cool,
.notification_reaction_confused {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

.notification_reaction_like {
  background-image: url("../img/like.png");
}

.notification_reaction_dislike {
  background-image: url("../img/dislike.png");
}

.notification_reaction_love {
  background-image: url("../img/love.png");
}

.notification_reaction_haha {
  background-image: url("../img/haha.png");
}

.notification_reaction_wow {
  background-image: url("../img/wow.png");
}

.notification_reaction_sad {
  background-image: url("../img/sad.png");
}

.notification_reaction_angry {
  background-image: url("../img/angry.png");
}

.notification_reaction_cool {
  background-image: url("../img/cool.png");
}

.notification_reaction_confused {
  background-image: url("../img/confused.png");
}

.notification_reaction_none {
  display: none;
}

.reaction-notification-item > span {
  margin-right: -20px;
  margin-left: 6px;
}

/*# sourceMappingURL=reaction.css.map */

/* --- Reaction ---*/
.like-icon-default{
  /*fill:#9a9b9b;*/
  fill: #9b5a45;
}
.angry-a-head{
  opacity:0.24;
}
.angry_head_override{
  /*--color-stop-1: #fed458;
  --color-stop-2: #fdcb58;
  --color-stop-3: #fbb357;
  --color-stop-4: #f78b56;
  --color-stop-5: #f25454;
  --color-stop-6: #ef3753;*/

  --color-stop-1: #00c3ff;
  --color-stop-2: #77e190;
  --color-stop-3: #ffff1c;
  --color-stop-4: #ff8471;
  --color-stop-5: #98d7ff;
  --color-stop-6: #ff0016;
}
.angry-a-face{
  fill:url(#angry_head_override);
}
.angry-a-eyebrow{
  stroke: #c69800;
}
.angry-a-eye{
  /*fill:#262c38;*/
  fill: #ff0020;
}
.angry-a-mouth{
  /*fill:#262c38;*/
  fill: #13ff06;
}

.haha-a-head{
  opacity:0.24;
}
.haha_head_override{
  /*--color-stop-1: #fed458;
  --color-stop-2: #fdcb58;
  --color-stop-3: #fbb357;*/

  --color-stop-1: #00c3ff;
  --color-stop-2: #77e190;
  --color-stop-3: #ffff1c;
}
.haha-a-face{
  fill:url(#haha_head_override);
}
.haha-a-eye{
  /*stroke:#262c38;*/
  stroke: #cf1900;
}
.haha-a-mouth{
  /*fill:#262c38;*/
  fill: #6173ff;
}
.haha-a-tongue{
  /*fill:#f55065;*/
  fill: #d0c1a0;
}
.haha-a-throat{
  /*fill:#303a49;*/
  fill: #e41ae1;
}

.confused-a-head{
  opacity:0.24;
}
.haha_head_override{
  /*--color-stop-1: #fecc68;
  --color-stop-2: #fed05f;
  --color-stop-3: #fed458;*/

  --color-stop-1: #00c3ff;
  --color-stop-2: #77e190;
  --color-stop-3: #ffff1c;
}
.confused-a-face{
  fill:url(#confused_head_gradient);
}
.confused-a-eye{
  /*fill: #262c38;*/
  fill: #cf1900;
}
.confused-a-eyebrow{
  /*stroke:#262c38;*/
  stroke: #ff8471;
}
.confused-a-mouth{
  /*fill: #262c38;*/
  fill: #6173ff;
}

.confused-a-eyeballs{
  /*fill:#fff;*/
  fill: #e3ff82;
}

.cool-a-head{
  opacity:0.24;
}
.cool_head_override{
  /*--color-stop-1: #fecc68;
  --color-stop-2: #fed05f;
  --color-stop-3: #fed458;*/

  --color-stop-1: #00c3ff;
  --color-stop-2: #77e190;
  --color-stop-3: #ffff1c;
}
.cool-a-face{
  fill:url(#cool_head_override);
}
.cool-a-cheek-left{
  fill:url(#cool-cheek-override);
}
.cool-a-cheek-right{
  /*fill:url(#cool-cheek-right);*/
}
.cool-a-mouth{
  /*stroke:#262c38;*/
  stroke: #ff211c;
}
.cool-a-eyebrow{
  /*stroke:#262c38;*/
  stroke: #00577b;
}

.like-a-head{
  opacity:0.24;
}
.like_head_override{
  /*--color-stop-1: #0068ff;
  --color-stop-2: #0966ff;
  --color-stop-3: #215fff;
  --color-stop-4: #355aff;*/

  --color-stop-1: #00c3ff;
  --color-stop-2: #77e190;
  --color-stop-3: #ffff1c;
  --color-stop-4: #caffbb;
}
.like-a-face{
  fill:url(#like_head_override);
}
.like-a-hand{
  /*fill:#fff;*/
  fill: #ff7db3;
}



.love-a-head{
  opacity:0.24;
}
.love_head_override{
  /*--color-stop-1: #fecc68;
  --color-stop-2: #fed05f;
  --color-stop-3: #fed458;*/

  --color-stop-1: #00c3ff;
  --color-stop-2: #77e190;
  --color-stop-3: #ffff1c;
}
.love-a-face{
  fill:url(#love_head_override);
}
.love-a-heart{
  /*fill:#fff;*/
  fill: #ff0002;
}

.sad-a-head{
  opacity:0.24;
}
.sad_head_override{
  /*--color-stop-1: #fecc68;
  --color-stop-2: #fed05f;
  --color-stop-3: #fed458;*/

  --color-stop-1: #00c3ff;
  --color-stop-2: #77e190;
  --color-stop-3: #ffff1c;
}
.sad-a-face{
  fill:url(#sad_head_override);
}
.sad-a-mouth{
  /*stroke:#262c38;*/
  stroke: #ff6973;
}
.sad-a-eyebrow{
  /*stroke:#262c38;*/
  stroke: #c69800;
}
.sad-a-eye{
  /*fill:#262c38;*/
  fill: #cf313e;
}
.sad-a-water{
  /*fill:#4475ff;*/
  fill: #adff58;
}

.wow-a-head{
  opacity:0.24;
}
.wow_head_override{
  /*--color-stop-1: #fecc68;
  --color-stop-2: #fed05f;
  --color-stop-3: #fed458;*/

  --color-stop-1: #00c3ff;
  --color-stop-2: #77e190;
  --color-stop-3: #ffff1c;
}
.wow-a-face{
  fill:url(#wow_head_override);
}
.wow-a-eyebrow{
  /*stroke:#262c38;*/
  stroke: #cf313e;
}
.wow-a-mouth{
  /*fill:#262c38;*/
  fill: #ff140a;
}
.wow-a-eye{
  /*fill:#262c38;*/
  fill: #6173ff;
}