@import "../../app/variables";

.comment-list {
  margin-bottom: 60px !important;

  // padding-left: 0;
  .comment {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid $bg-gray;

    .thumbnail {
      width: 90px;

      img {
        width: 90px;
        height: 90px;
      }
    }

    .content {
      width: calc(100% - 90px);
 padding-right: 50px;
    padding-left: 20px;
      .name {
        font-size: 18px;
        font-weight: 700;
        line-height: 1;
        display: block;
        margin-bottom: 15px;
      }

      p {
        font-size: 1rem;
        font-weight: 400;
      }

      .action {
        .date {
          font-size: 0.875rem;
          font-weight: 500;

          &:after {
            margin: 0 15px;
            content: "|";
          }
        }

        .reply-link {
          font-size: 1rem;
          font-weight: 700;
        }
      }
    }

  }

  .child-comment {
    .comment {
      padding-right: 110px !important;

    }
  }
}

.comment-form {
  .learts-mb-n20 {
    margin-bottom: -20px;
  }

  .learts-mb-20 {
    margin-bottom: 20px;
  }

  .learts-mt-20 {
    margin-top: 20px;
  }

  textarea {
    font-size: 1rem;
    font-weight: 400;
    display: block;
    width: 100%;
    padding: 10px 0;
    color: $text-dark;
    border: 2px solid rgba(0, 0, 0, 0);
    border-bottom-color: rgba(0, 0, 0, 0);
    border-bottom-color: $bg-light;
    background-color: rgba(0, 0, 0, 0);
    height: 200px;
    resize: none;

  }
}

@media (max-width:992) {
  .content {
   padding:0 5px!important;
  }
   .thumbnail {
      width: 60px!important;

      img {
        width: 60px!important;
        height: 60px!important;
      }
    }
}