.comments-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  align-items: flex-start;
  gap: 10px;
  /* padding: 0 5px; */
}

.comments-date {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  align-self: center;
  height: 40px;
  /* background-color: var(--dark-blue); */
  color: var(--dark-blue);
  z-index: 10;

  opacity: 0;
  transform: scale(0);
  transition: transform 0.6s ease, opacity 0.6s ease;
  transform-origin: center center;

  padding-bottom: 3px;
}

.comments-date.visible {
  transform: scale(1);
  opacity: 1;
}

.comments-container .comment {
  display: flex;
  flex: 0 0 auto;
  width: 90%;
  /* height: 150px; */
  opacity: 0;
  transform: scale(0);
  transition: transform 0.6s ease, opacity 0.6s ease;
  padding: 5px !important;
}

.comments-container .comment .comment-emoji-info {
  width: 30%;
  /* height: 100%; */

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.comment .comment-emoji img {
  width: 85px;
  height: 85px;
  object-fit: contain;
}

.comment .comment-star {
  font-size: 12px;
  color: var(--white);
}

.comment .comment-main {
  display: flex;
  flex-direction: column;
  width: 70%;
  /* height: 100%; */
}

.comment .comment-main .main-info {
  display: flex;
  flex: 2;
  color: var(--dark-blue);
}

.comment .comment-main .main-info .name {
  font-size: 12px;
  margin-bottom: -5px;
  color: var(--white);
}

.comment .comment-main .main-info .main-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex: 3;
}

.comment .comment-main .main-info .likes {
  display: flex;
  flex: 2;
  align-items: center;
  justify-content: space-between;
}

.comment .comment-main .main-info .likes img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transform: rotateZ(15deg);
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.comment .comment-main .main-info .likes img.active {
  filter: grayscale(0%);
}

.comment .comment-main .comment-message {
  display: flex;
  text-align: left;
  color: var(--white);
  flex: 5;
  max-height: 100%;
  margin-top: var(--padding-xs);
}

.comment-text {
  display: inline;
  font-size: 20px;
  padding: 5px;
}

.comment-read-more {
  margin-left: 4px;
  text-decoration: underline;
  white-space: nowrap;
}

.comments-container .comment.quad-left-bottom-more {
  align-self: flex-start;
}

.comments-container .comment.quad-right-bottom-more {
  align-self: flex-end;
}

.comments-container .comment.quad-left-bottom-more {
  transform-origin: left bottom;
}

.comments-container .comment.quad-right-bottom-more {
  transform-origin: right bottom;
}

.comments-container .comment.visible.quad-left-bottom-more,
.comments-container .comment.visible.quad-right-bottom-more {
  transform: scale(1);
  opacity: 1;
}

.comments-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 14px;
  height: 80px;
  color: var(--white);
  transform: scale(0);
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.comments-button {
  transform-origin: bottom;
}

.comments-button.visible {
  transform: scale(1);
  opacity: 1;
}

.comment-info-modal {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.comment-info-emoji {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 100px;
}

.comment-info-emoji img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.comment-info-date {
  font-size: 20px;
}

.comment-info-status {
  font-size: 18px;
}

.comment-info-message {
  display: flex;
  width: 100%;
  color: var(--dark-blue);
  text-align: left;
  padding: var(--padding-sm);
  margin-top: var(--padding-xs);
  font-size: 22px;
  overflow: auto;
}

.comment-subtitle {
  text-align: left !important;
  margin-bottom: 0 !important;
}

.comments-loader {
  padding: 20px;
  text-align: center;
  opacity: 0.7;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comments-loader .spinner {
  width: 30px;
  height: 30px;
  border: 4px solid var(--dark-blue);
  border-top-color: transparent;
  border-radius: 50%;
  margin: 0 auto;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}