.book-info.has-thumb .book-info-inner {
  display: flex;
  gap: 1rem;
}
.book-info.has-thumb .book-info-inner figure {
  margin: 0;
}
.book-info.has-thumb .book-info-inner figure a {
  display: block;
}
.book-info.has-thumb .book-info-inner figure img {
  max-height: 100px;
  max-width: 100px;
  height: auto;
  width: auto;
}
.book-info.main {
  height: 100%;
}
.book-info.main .book-title {
  font-size: 1.4rem;
}

span.new-line {
  display: block;
}
span.info-label {
  font-weight: bolder;
}
span.info-label:after {
  content: ": ";
  font-weight: normal;
}
#boikothaList tbody td,
#boikothaList tbody th {
  vertical-align: top;
}
#boikothaList tbody td.col-title {
  padding-right: 3rem;
}

@media only screen and (max-width: 768px), (min-device-width: 768px) and (max-device-width: 1024px) {
  #boikothaList {
    display: block;
    /* Label the data */
  }
  #boikothaList thead,
#boikothaList tbody,
#boikothaList th,
#boikothaList td,
#boikothaList tr {
    display: block;
  }
  #boikothaList tbody td.col-title {
    padding-right: 10px;
  }
  #boikothaList caption {
    display: block;
  }
  #boikothaList thead {
    /* Hide table headers */
  }
  #boikothaList thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  #boikothaList tr {
    border: 1px solid #cccccc;
  }
  #boikothaList td {
    border: none;
    border-bottom: 1px solid #eeeeee;
    position: relative;
    padding-left: 50%;
  }
  #boikothaList td:before {
    /* Now like a table header */
    position: absolute;
    /* Top/Left values mimic padding */
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
  }
  #boikothaList td:nth-of-type(1):before {
    content: var(--col-label-1);
  }
  #boikothaList td:nth-of-type(2):before {
    content: var(--col-label-2);
  }
  #boikothaList td:nth-of-type(3):before {
    content: var(--col-label-3);
  }
}
@media only screen and (max-width: 767.9px) {
  #boikothaList tr {
    padding: 0 1rem;
  }
  #boikothaList td {
    padding-left: 0;
  }
  #boikothaList td:before {
    position: relative;
    display: block;
    top: 0;
    left: 0;
    width: auto;
    padding-right: 0;
    font-weight: bold;
    font-style: underline;
  }
}
#adminForm .js-stools-container-bar .ordering-select {
  display: none;
}
#adminForm .js-stools-container-filters-visible {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  background-color: transparent;
}
#adminForm .js-stools .btn-toolbar {
  gap: 10px;
}
#adminForm .js-stools .btn-toolbar .ordering-select {
  display: none;
  order: -1;
}
#adminForm .js-stools .btn-toolbar > div {
  margin: 0;
}

.about-book {
  display: grid;
  grid-template-columns: 100%;
  gap: 1rem;
  margin: 1rem 0;
  text-align: center;
}
.about-book figure {
  display: block;
  margin: 0 auto;
}
.about-book .book-info {
  background-color: #f1f1f1;
  border: 1px solid orange;
  padding: 1rem;
  align-self: center;
}
@media only screen and (min-width: 768px) {
  .about-book {
    grid-template-columns: repeat(2, 1fr);
    text-align: left;
  }
  .about-book .book-info {
    align-self: self-end;
  }
}

.view-book .review-header {
  text-align: center;
  margin: 1rem 0;
}
.view-book .shopping-links {
  text-align: center;
  margin: 1rem 0;
}

#booklist-card-container {
  margin: 0 2rem;
}
#booklist-card-container .booklist-card {
  border: 1px solid black;
  padding: 1rem;
}
#booklist-card-container .booklist-card:not(:last-child) {
  margin-bottom: 1rem;
}
#booklist-card-container .booklist-card .book-info.has-thumb figure {
  display: flex;
  justify-content: center;
  align-items: center;
}
#booklist-card-container .booklist-card .book-info.has-thumb figure img {
  max-width: 200px;
  max-height: 200px;
}
#booklist-card-container .booklist-card .book-info .book-info-inner {
  display: grid;
  grid-template-columns: 100%;
}
@media only screen and (min-width: 768px) {
  #booklist-card-container .booklist-card .book-info .book-info-inner {
    grid-template-columns: 30% 70%;
  }
}
@media only screen and (min-width: 960px) {
  #booklist-card-container .booklist-card .book-info .book-info-inner {
    grid-template-columns: 20% 80%;
  }
}
#booklist-card-container .booklist-card .book-info .book-info-inner > div .book-title {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 768px) {
  #booklist-card-container .booklist-card .book-info .book-info-inner > div .book-title {
    text-align: inherit;
  }
}
#booklist-card-container .booklist-card .book-info .book-info-inner > div .book-meta {
  columns: 1;
}
#booklist-card-container .booklist-card .book-info .book-info-inner > div .book-meta .info-label,
#booklist-card-container .booklist-card .book-info .book-info-inner > div .book-meta .info-value {
  display: block;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  #booklist-card-container .booklist-card .book-info .book-info-inner > div .book-meta {
    columns: 2;
  }
  #booklist-card-container .booklist-card .book-info .book-info-inner > div .book-meta .info-label,
#booklist-card-container .booklist-card .book-info .book-info-inner > div .book-meta .info-value {
    display: inline;
    text-align: inherit;
  }
}
#booklist-card-container .booklist-card .review-info {
  border-top: 1px solid black;
  margin-top: 1rem;
  position: relative;
  padding-top: 1rem;
  text-align: center;
}
#booklist-card-container .booklist-card .review-info:before {
  content: "Review";
  position: absolute;
  background-color: white;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 0 1rem;
  top: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
}

#contributorlist-card-container {
  margin: 0 0 2rem;
}
#contributorlist-card-container .contributor-card {
  border: 1px solid black;
  padding: 1rem;
}
#contributorlist-card-container .contributor-card:not(:last-child) {
  margin-bottom: 1rem;
}
#contributorlist-card-container .contributor-card .contributor-info.has-thumb .thumb {
  display: flex;
  justify-content: center;
  align-items: center;
}
#contributorlist-card-container .contributor-card .contributor-info.has-thumb figure {
  margin: 0;
}
#contributorlist-card-container .contributor-card .contributor-info.has-thumb figure img {
  max-width: 200px;
  max-height: 200px;
}
#contributorlist-card-container .contributor-card .contributor-info .contributor-info-inner {
  display: grid;
  grid-template-columns: 100%;
  gap: 1rem;
}
@media only screen and (min-width: 768px) {
  #contributorlist-card-container .contributor-card .contributor-info .contributor-info-inner {
    grid-template-columns: 30% 70%;
  }
}
@media only screen and (min-width: 960px) {
  #contributorlist-card-container .contributor-card .contributor-info .contributor-info-inner {
    grid-template-columns: 20% 80%;
  }
}
#contributorlist-card-container .contributor-card .contributor-info .contributor-info-inner > div .contributor-title {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 768px) {
  #contributorlist-card-container .contributor-card .contributor-info .contributor-info-inner > div .contributor-title {
    text-align: inherit;
  }
}

.contributions,
.book-reviews-list {
  position: relative;
  border-top: 1px solid black;
  margin-top: 1rem;
  padding-top: 1rem;
  text-align: center;
}
.contributions:before,
.book-reviews-list:before {
  content: attr(data-label);
  display: block;
  position: absolute;
  background-color: white;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 0 1rem;
  top: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
}

.contributions span:not(:last-child):after {
  content: ", ";
}

.book-reviews-list {
  margin-top: 3rem;
  padding-top: 2rem;
}
.book-reviews-list.is-multiple {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.com-boikotha-contributors.list-page .js-stools-container-filters > div:first-child {
  grid-column: 1/-1;
}
.com-boikotha-contributors.list-page .js-stools-container-filters #filter_contributor_filters {
  margin-bottom: 0;
}
.com-boikotha-contributors.list-page .js-stools-container-filters #filter_contributor_filters .btn-group {
  flex-wrap: wrap;
  gap: 1rem;
}
.com-boikotha-contributors.list-page .js-stools-container-filters #filter_contributor_filters .btn-group label {
  outline: none;
  border-radius: 5px;
  background-color: #dadada;
}
.com-boikotha-contributors.list-page .js-stools-container-filters #filter_contributor_filters .btn-group label:hover {
  background-color: #cccccc;
}
.com-boikotha-contributors.list-page .js-stools-container-filters #filter_contributor_filters .btn-group label:focus {
  box-shadow: none;
}
.com-boikotha-contributors.list-page .js-stools-container-filters #filter_contributor_filters .btn-group input[checked] + label {
  background-color: #a2a2a2;
}
.com-boikotha-contributors.item-page .contributor-container {
  clear: both;
  margin: 2rem 0;
}
.com-boikotha-contributors.item-page .contributions-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-column-gap: 1rem;
  grid-row-gap: 0.625rem;
  text-align: left;
}
.com-boikotha-contributors.item-page .contribution-header {
  background-color: #e2e2e2;
  color: #000000;
  font-size: 1.1rem;
  padding: 5px 0 3px;
  margin: 2rem 0 0.625rem;
}
.com-boikotha-contributors.item-page .book-link {
  padding-left: 0.625rem;
}
.com-boikotha-contributors.item-page .item-image {
  float: left;
  margin: 0 1rem 1rem 0;
  max-width: min(25%, 300px);
}
@media only screen and (max-width: 479.9px) {
  .com-boikotha-contributors.item-page .item-image {
    float: none;
    margin: 0 auto 1rem;
  }
}
.com-boikotha-contributors .social {
  display: flex;
  gap: 1rem;
}
.com-boikotha-contributors .social .social-page-link a {
  transitions: all 0.6s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}
.com-boikotha-contributors .social .social-page-link a .svg-icon {
  max-height: 1.2rem;
  display: flex;
  align-items: center;
}
.com-boikotha-contributors .social .social-page-link a .svg-icon path {
  fill: #CCCCCC;
}
.com-boikotha-contributors .social .social-page-link a:hover .svg-icon path {
  fill: #000000;
}

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