/* Wikipedia-style Comment Form */

.comment-form {
  background: #fff;
  border: 1px solid #a2a9b1;
  padding: 1rem;
  margin: 1.5em 0;
  font-family: "Linux Libertine", "Georgia", "Times", serif;
  font-size: 0.9em;
}

.comment-form .form-item {
  margin-bottom: 0.75em;
}

.comment-form label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.25em;
  color: #000;
  font-size: 1em;
}

.comment-form .form-text,
.comment-form .form-textarea {
  width: 100%;
  max-width: 100%;
  padding: 0.4em 0.6em;
  border: 1px solid #a2a9b1;
  background: #fff;
  font-family: inherit;
  font-size: 0.95em;
  line-height: 1.4;
  box-sizing: border-box;
}

.comment-form .form-text:focus,
.comment-form .form-textarea:focus {
  border-color: #36c;
  outline: none;
  box-shadow: inset 0 0 0 1px #36c;
}

.comment-form .form-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: monospace;
}

.comment-form .form-actions {
  margin: 0;
  padding: 0.75em 1em;
  background: #f8f9fa;
  border-top: 1px solid #a2a9b1;
}

.comment-form .button {
  background: #f8f9fa;
  border: 1px solid #a2a9b1;
  padding: 0.4em 0.8em;
  margin-right: 0.5em;
  cursor: pointer;
  font-size: 0.9em;
  color: #000;
  text-decoration: none;
  display: inline-block;
}

.comment-form .button:hover {
  background: #fff;
  border-color: #72777d;
}

.comment-form .button--primary {
  background: #36c;
  color: #fff;
  border-color: #36c;
  font-weight: bold;
}

.comment-form .button--primary:hover {
  background: #2a4b8d;
  border-color: #2a4b8d;
}

.comment-form .js-filter-wrapper {
 display: none
}
