.pagination {
  font-size: 16px;
}

.pagination span {
  color: #fff;
  margin-right: 12px;
  background-color: #000;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  justify-content: center;
}

.pagination a {
  text-decoration: none;
  color: #707070;
  margin-right: 12px;
}

.pagination a:hover {
  text-decoration: none;
  color: #000;
}

#reply-title {
  background-color: var(--primary);
  color: white;
  text-align: start;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 15px;
  border-radius: 15px 15px 0 0;
}

#cancel-comment-reply-link {
  color: #fff;
  margin-right: 15px;
  font-size: 14px;
}

textarea#comment {
  width: 100%;
  font-size: 18px;
  padding: 15px;
  color: #989898;
  outline: none !important;
  border: none;
  border-radius: 0px 0px 10px 10px;
  height: 140px !important;
}

.comment-author-data {
  max-width: 100%;
}

.comment-data {
  max-width: 80%;
}

.post-comment-wrapper {
  border: 1px solid black;
  padding: 2rem;
}

.post-comment-replies {
  margin-left: 2rem;
}

#post-comments {
  background-color: #ddf0fe;
  padding: 5rem 0;
}

.comment-list,
ul.children {
  list-style: none;
}

.comment-list li {
  margin-bottom: 10px;
}

.comment-list > li.parent {
  margin-top: 1rem;
}

.comment-body {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 2rem;
  background-color: white;
  justify-content: space-between;
  box-shadow: 0px 5px 16px #36353529;
  border-radius: 5px;
}

.comment-author > img {
  border-radius: 100%;
}

ul.children {
  padding-inline-start: unset;
  margin: 0 20px;
  border-radius: 5px;
  display: none;
}

ul.children.show {
  display: block;
}

ul.children > li {
  border-bottom: 1px solid #36353529;
}

ul.children > li .comment-author > img {
  width: 60px;
  height: 60px;
}

ul.children > li > .comment-body {
  margin-bottom: unset;
}

.toggle-replies {
  background: none;
  border: none;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-size: 2rem;
}

.toggle-replies > * {
  pointer-events: none;
}

.form-submit {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

#comment-submit {
  background: var(--color-politis) 0% 0% no-repeat padding-box;
  border-radius: 27px;
  width: fit-content;
  height: fit-content;
  color: #fff;
  font-size: 18px;
  border: none;
  padding: 8px 30px;
}

#leave-a-comment {
  background-color: #ddf0fe;
}

.comment-author {
  border-radius: 50%;
  margin-right: 25px;
}

.comment-metadata p {
  color: #d3d3d3;
  font-size: 16px;
}

.comment-content p {
  font-size: 17px;
  color: #707070;
  word-break: break-all;
}

.comment-author-data {
  display: flex;
  justify-content: left;
  align-items: center;
}

.replies-counter {
  font-size: 18px;
  color: #707070;
  display: hidden;
}

.fa-solid.fa-comment {
  color: var(--primary);
}

#respond {
  position: relative;
  margin-top: 50px;
}

.comment-reply-link {
  font-size: 16px;
  color: black;
  font-weight: bold;
}

@media (max-width: 575.98px) {
  .gravatar.avatar {
    width: 50px;
    height: 50px;
  }

  .comment-author {
    margin-right: 12px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  input[type="file"] {
    font-size: 16px;
  }
}

@media (min-width: 992px) {
  .comment-data {
    max-width: 86%;
  }
}
