/* comment form */
.commentform-wrap {
  margin-bottom: 50px;
}
#commentform {
  font-size: 14px;
}
#commentform>* {
  margin-bottom: 15px;
}
#commentform textarea{
  width: 100%;
  background: transparent;
  border-radius: 5px;
}
#commentform .comment-form-comment {
  margin-bottom: 10px;
}
#submit {
  width: 100%;
  height: 45px;
  padding: 10px 0;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 30px;
  background: var(--key-color);
}
/* comment area */
.wp-block-comment-template {
  padding: 0;
  font-size: 14px;
}
.wp-block-comment-template .comment-wrap {
  margin-bottom: 20px;
}
.wp-block-comment-template .depth-1 .comment {
  padding-left: 15px;
  position: relative;
}
.wp-block-comment-template .depth-1 .comment:last-child {
  margin-bottom: 50px;
}
.wp-block-comment-template .depth-1 .comment::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 45%;
  transform: translate(-50%, -50%);
  height: 50%;
  width: 1px;
  background-color: #ccc;
}
.wp-block-comment-template .comment {
  margin-bottom: 0px;
}
.wp-block-comment-template .wp-block-avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ccc;
  padding: 2px;
}
.wp-block-comment-template .author-info {
  gap: 10px;
  margin: 0;
}
.wp-block-comment-author-name {
  font-weight: bold;
}
.wp-block-comment-date {
  color: #999;
}
.wp-block-comment-content {
  margin: 10px 5px 10px 5px;
}
.wp-block-comment-content p {
  margin-top: 0;
  margin-bottom: 10px;
}
.wp-block-comment-reply-link a {
  display: inline-block;
  padding: 5px 15px;
  color: #888;
  text-decoration: none;
  border: 1px solid #888;
  border-radius: 20px;
}
.wp-block-comment-reply-link a::before {
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  content: "\f3e5";
  margin-right: 3px;
}
#reply-title {
  font-weight: normal;
  font-size: 14px;
}
#cancel-comment-reply-link {
  font-size: 14px;
  margin-left: 10px;
}