.planches-body {
  background-color: aliceblue;
  font-family: Helvetica, sans;
}
.planches-body.nsfw {
  background-color: oldlace;
}

.planches-alert-box {
  border: 1px solid gray;
  background-color: palegreen;
  padding: 1rem;
  text-align: center;
  position: fixed;
  top: 5rem;
  left: 50%;
  transform: translate(-50%, 0);
  opacity: 0;
  transition: opacity 0.25s linear;
}
.planches-alert-box.planches-alert-box-visible {
  opacity: 1;
}

.planches-blotter-message {
  font-weight: bold;
  color: red;
}

.planches-miniview-box {
  visibility: hidden;
  position: fixed;
  box-shadow: 5px 5px;
}

.board-thread-container {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.catalog-ops-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 2rem 2rem;
}

.catalog-op-image-thumbnail {
  max-width: 20rem;
  max-height: 20rem;
}

.catalog-op-box {
  text-align: center;
  width: 20rem;
}

.checkbox-trick-checkbox {
  display: none;
}

.checkbox-trick {
  display: inline;
}
.checkbox-trick .checkbox-trick-checkbox + .checkbox-trick-label > .checkbox-trick-unchecked {
  display: initial;
  cursor: pointer;
}
.checkbox-trick .checkbox-trick-checkbox + .checkbox-trick-label > .checkbox-trick-checked {
  display: none;
}
.checkbox-trick .checkbox-trick-checkbox:checked + .checkbox-trick-label > .checkbox-trick-unchecked {
  display: none;
}
.checkbox-trick .checkbox-trick-checkbox:checked + .checkbox-trick-label > .checkbox-trick-checked {
  display: initial;
  cursor: pointer;
}

.home-boards-container {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.home-board-box {
  border: 1px solid gray;
  padding: 1rem;
}

.post {
  overflow-wrap: break-word;
}
.post:after {
  content: "";
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}

.post-header {
  display: inline-block;
}

.post-greentext {
  color: forestgreen;
}

.post-spoiler {
  background-color: black;
  color: black;
}
.post-spoiler a {
  color: black;
}
.post-spoiler:hover {
  color: white;
}
.post-spoiler:hover a {
  color: inherit;
}

.post-wrong-citation {
  text-decoration: line-through;
  color: gray;
}

.post-image-truesize {
  display: block;
  margin-bottom: 0.25rem;
  max-width: 100%;
}

.post-image-thumbnail-container {
  float: left;
  text-align: center;
  margin-right: 0.75rem;
}

.post-image-thumbnail {
  display: block;
  width: 15rem;
}
.post-image-thumbnail.post-image-thumbnail-square {
  max-height: 15rem;
  width: inherit;
  max-width: 15rem;
}
.post-image-thumbnail.post-image-thumbnail-bigger {
  width: 20rem;
}
.post-image-thumbnail.post-image-thumbnail-bigger.post-image-thumbnail-square {
  max-height: 20rem;
  width: inherit;
  max-width: 20rem;
}

.reply-box {
  border: 1px solid gray;
  background-color: lightsteelblue;
  padding: 0.5rem;
}
.nsfw .reply-box {
  background-color: #edd4d4;
}
.reply-box:target {
  background-color: pink;
}

.op-replies-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

@media only screen and (max-width: 650px) {
  .op-replies-container {
    align-items: stretch;
  }
}
.op-replies-omitted, .op-reply-prompt {
  margin-bottom: 1rem;
}

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