.comments {
  padding: 20px 0 50px 0;
}
.comments .comment_header {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  margin-bottom: 10px;
  align-items: center;
}
.comments .comment_header .total {
  color: #555761;
  font-size: 18px;
  padding-right: 25px;
  font-weight: 500;
}
.comments .comment_header .write_comment_btn {
  margin: 0;
}
.comments .write_comment_btn, .comments .write_comment button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #3b3c3f;
  color: #ffffff;
  text-decoration: none;
  margin: 5px 6px 0 0;
  padding: 0 14px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  height: 35px;
  border: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 6px 1px rgba(20, 24, 31, 0.05);
}
.comments .write_comment_btn:hover, .comments .write_comment button:hover {
  background-color: rgb(46.6680327869, 47.4590163934, 49.8319672131);
}
.comments .write_comment {
  display: none;
  padding: 10px 0;
}
.comments .write_comment textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #dfe1e7;
  border-radius: 5px;
  height: 150px;
  margin: 20px 0 10px 0;
}
.comments .write_comment textarea::placeholder {
  color: #95979e;
}
.comments .write_comment input {
  display: block;
  width: 250px;
  padding: 10px;
  border: 1px solid #dfe1e7;
  border-radius: 5px;
  margin-top: 10px;
}
.comments .write_comment input::placeholder {
  color: #95979e;
}
.comments .write_comment button {
  cursor: pointer;
}
.comments .comment {
  display: flex;
  flex-flow: row;
  width: 100%;
  max-width: 100%;
  padding-top: 10px;
}
.comments .comment .avatar {
  width: 55px;
  padding-right: 12px;
}
.comments .comment .avatar span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #fff;
  background-color: #777;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
}
.comments .comment .con {
  display: flex;
  flex-flow: column;
  width: calc(100% - 55px);
  max-width: calc(100% - 55px);
}
.comments .comment .name {
  display: inline;
  font-size: 16px;
  font-weight: 500;
  margin-right: 5px;
  color: #45464d;
}
.comments .comment .date {
  color: #8a8a92;
  font-size: 14px;
}
.comments .comment .content {
  margin: 0;
  padding: 10px 0;
  color: #1c1c1c;
}
.comments .comment .reply_comment_btn {
  display: inline-block;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 14px;
  color: #8a8a92;
}
.comments .comment .reply_comment_btn:hover {
  text-decoration: underline;
}