/* [project]/components/LikeButton/LikeButton.css [app-client] (css) */
.like-btn-container {
  box-shadow: none;
  border-radius: 10px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  transition: all .1s ease-out;
  display: flex;
  scale: 1.5;
}

.svg-icon-answer-like-circle {
  z-index: -1;
  position: absolute;
  top: calc(50% - 13px);
  left: calc(50% - 13px);
}

.like-btn {
  cursor: pointer;
  width: 28px;
  height: 28px;
  font-size: var(--extra-small-regular);
  background-color: rgba(255, 255, 255, .05);
  border: 1px solid rgba(158, 158, 158, .808);
  border-radius: 20px;
  outline: 0;
  flex: 0 0 28px;
  justify-content: center;
  align-items: center;
  margin: auto auto 0;
  padding: 8px;
  font-weight: 600;
  transition: all .1s ease-out;
  display: flex;
  position: relative;
}

.like-btn svg:not(.svg-icon-answer-like-circle) {
  transition: all .1s ease-out;
  scale: 1;
}

.like-btn:active svg:not(.svg-icon-answer-like-circle) {
  scale: .8;
}

.like-btn svg {
  flex: 0 0 16px;
  width: auto;
  height: auto;
  transition: all .2s ease-out;
  overflow: visible;
  scale: 1;
}

.like-btn span + svg {
  margin-left: 4px;
}

.like-btn-container.liked .like-btn {
  color: #ec72d1;
  fill: #ec72d1;
  background-color: rgba(255, 82, 165, .1);
  border-color: #ec72d1;
}

.like-btn-container .like-btn {
  fill: rgba(158, 158, 158, .808);
}

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