@import "../sass-queries.css";
.comment-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.comment-list > .comment {
  background: #1C1C31;
  padding: 14px;
  border-radius: 8px;
}
@media (min-width: 1024px) {
  .comment-list > .comment {
    width: 100%;
  }
}
.comment-list > .comment > .comment-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.comment-list > .comment > .comment-body > .comment-content {
  color: #fff;
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  vertical-align: middle;
}
.comment-list > .comment > .comment-body > .comment-content > .reply {
  margin-top: 8px;
}
.comment-list > .comment > .comment-body > .comment-author {
  display: flex;
  align-items: center;
  gap: 8px;
}
.comment-list > .comment > .comment-body > .comment-author > img {
  border-radius: 50%;
}
.comment-list > .comment > .comment-body > .comment-author > #pseudo > a {
  text-decoration: none;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0;
  vertical-align: middle;
  opacity: 0.5;
}
.comment-list > .comment > .comment-body > .comment-author > #pseudo > a > time {
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0;
  vertical-align: middle;
}
.comment-list > .comment > .comment-body > .comment-author > #pseudo > a > span {
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0;
  vertical-align: middle;
}
.comment-list > .comment > .comment-body > .comment-author > #pseudo > span {
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0;
  vertical-align: middle;
  opacity: 0.5;
}

.comment-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 30px;
}

.comment-form {
  margin-top: 24px;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  padding: 0 16px;
}

.comment-form-comment > textarea {
  background: #3A3A55;
  border-radius: 8px;
  border: 0.5px solid #8E90B9;
  width: auto;
  resize: vertical;
  outline: none;
  padding: 8px;
  color: #8E90B9;
  margin-top: 8px;
  margin-bottom: 8px;
}
@media (min-width: 1024px) {
  .comment-form-comment > textarea {
    width: 100%;
  }
}

.logged-in-as {
  margin-bottom: 18px;
}

#commentform > p > label {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0;
  vertical-align: middle;
  opacity: 0.5;
  margin-bottom: 8px;
}

.inputField {
  background: #3A3A55;
  border-radius: 24px;
  border: 0.5px solid #8E90B9;
  width: -webkit-fill-available;
  outline: none;
  height: 32px;
  padding: 0 8px;
  color: #8E90B9;
  margin-top: 8px;
  margin-bottom: 8px;
}
@media (min-width: 1024px) {
  .inputField {
    width: 100%;
  }
}

.submit {
  margin: 24px 0;
  border-radius: 24px;
  transition: background-position 500ms;
  background-image: linear-gradient(270deg, #C2FD70, #21E273);
  background-size: 150% 100%;
  background-position: 75% 0;
  color: #151525;
  border: none;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 18px;
  width: fit-content;
  cursor: pointer;
}
.submit > .iconContainer > .icon-hover:before {
  content: "";
  width: 0;
  height: 2px;
  display: block;
  background: #000000 !important;
  position: absolute;
  left: -1px;
  top: 0;
  opacity: 0;
}
.submit:hover {
  background-position: 0 0;
}
.submit:hover > .iconContainer > .icon-hover:before {
  content: "";
  width: 14px;
  height: 2px;
  display: block;
  background: #000000 !important;
  position: absolute;
  left: -1px;
  top: 0;
  opacity: 1;
}
.submit > .iconContainer > i {
  color: #151525 !important;
}

/*# sourceMappingURL=comments.css.map */
