html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
q:before,
blockquote:after,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
body {
  font-family: 'Helvetica Neue', Helvetica, Calibri, Arial, sans-serif;
  background: #fafafa;
}
span,
li,
ul {
  display: inline-block;
}
.bookclub-app .l-books-page {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  padding: 10px 40px;
}
.bookclub-app .l-books-page__column {
  min-width: 400px;
}
.bookclub-app .l-books-page__column:first-child {
  margin-right: 40px;
}
.bookclub-app .l-current-page {
  padding: 10px 40px;
  max-width: 1024px;
}
.bookclub-app .l-current-page .o-json-dump {
  padding-top: 25px;
  margin-top: 50px;
  border-top: 1px solid #000;
}
.bookclub-app .o-avatar {
  width: 30px;
  height: 30px;
  padding: 3px;
  border-radius: 50%;
  cursor: pointer;
}
.bookclub-app .o-action-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.bookclub-app .o-action-row .o-action {
  margin-right: 10px;
}
.bookclub-app .o-action-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.bookclub-app .o-dialog {
  position: absolute;
  min-width: 120px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  padding: 8px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.bookclub-app .o-field--text {
  display: block;
  margin-left: 5px;
  margin-right: 5px;
}
.bookclub-app .o-field--text input,
.bookclub-app .o-field--text textarea {
  width: 200px;
}
.bookclub-app .o-field--dropdown {
  min-width: 200px;
  max-width: 90%;
}
.bookclub-app .o-spinner {
  font-size: 4px;
  margin: 50px auto;
  text-indent: -9999em;
  width: 11em;
  height: 11em;
  border-radius: 50%;
  background: #fff;
  background: -moz-linear-gradient(left, #fff 10%, rgba(255,255,255,0) 42%);
  background: -webkit-linear-gradient(left, #fff 10%, rgba(255,255,255,0) 42%);
  background: -o-linear-gradient(left, #fff 10%, rgba(255,255,255,0) 42%);
  background: -ms-linear-gradient(left, #fff 10%, rgba(255,255,255,0) 42%);
  background: linear-gradient(to right, #fff 10%, rgba(255,255,255,0) 42%);
  position: relative;
  -webkit-animation: spin 1.4s infinite linear;
  animation: spin 1.4s infinite linear;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
.bookclub-app .o-spinner:before {
  width: 50%;
  height: 50%;
  background: #0dc5c1;
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
}
.bookclub-app .o-spinner:after {
  background: #fff;
  width: 75%;
  height: 75%;
  border-radius: 50%;
  content: '';
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
@-moz-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.bookclub-app .c-book-card {
  min-width: 240px;
  max-width: 600px;
  position: relative;
  margin: 20px;
  display: flex;
  flex-direction: row;
}
.bookclub-app .c-book-card--borderless {
  margin: 0;
  max-width: initial;
  min-width: initial;
  box-shadow: none;
}
.bookclub-app .c-book-card__title {
  display: block;
  font-weight: 600;
}
.bookclub-app .c-book-card__author {
  display: block;
  font-style: italic;
  font-size: 12px;
}
.bookclub-app .c-book-card__detail {
  display: block;
  margin-bottom: 0.5em;
  font-size: 12px;
}
.bookclub-app .c-book-card__detail:last-child {
  margin-bottom: 0;
}
.bookclub-app .c-book-card__detail > label {
  font-weight: 600;
  vertical-align: middle;
}
.bookclub-app .c-book-card__detail > span {
  vertical-align: middle;
}
.bookclub-app .c-book-card__detail--goodreads a {
  max-width: 130px;
  text-overflow: ellipsis;
  display: inline-block;
  overflow: hidden;
  line-height: 1;
  height: 1.1em;
  vertical-align: top;
}
.bookclub-app .c-book-card__status {
  position: absolute;
  right: 5px;
  bottom: 5px;
  padding: 3px 6px;
  border-radius: 3px;
  background: #eee;
  font-size: 12px;
}
.bookclub-app .c-book-card__edit-icon {
  margin-left: auto;
}
.bookclub-app .c-book-card__image-container {
  min-width: 136px;
  width: 136px;
  height: 136px;
  display: flex;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
}
.bookclub-app .c-book-card__image-container--src {
  flex-grow: 1;
}
.bookclub-app .c-book-card__image-container--no-src .c-book-card__image {
  width: calc(100% - 40px);
  height: calc(100% - 40px);
}
.bookclub-app .c-book-card__image {
  width: 100%;
  height: 100%;
}
.bookclub-app .c-book-card__image-media {
  background-size: cover;
  width: 130px;
  min-width: 130px;
  background-position: center;
}
.bookclub-app .c-book-card__image-media.no-src {
  background-size: 90%;
  background-position-x: 50%;
}
.bookclub-app .c-book-card__details {
  flex-grow: 1;
  margin-left: -5px;
}
.bookclub-app .c-close-voting-dialog__result-list {
  display: block;
  margin-top: 5px;
  padding-left: 24px;
}
.bookclub-app .c-close-voting-dialog__result {
  display: list-item;
  font-size: 1rem;
  font-weight: 400;
  font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
  color: #000;
  list-style-type: decimal;
  padding-left: 1em;
  margin-bottom: 0.25em;
  line-height: 1.4;
}
.bookclub-app .c-close-voting-dialog__result-points {
  display: inline-block;
  color: rgba(0,0,0,0.54);
}
.bookclub-app .c-close-voting-dialog__result-book {
  display: inline-block;
  margin-left: 10px;
}
.bookclub-app .c-close-voting-dialog--acceptance .c-close-voting-dialog__result-book {
  margin-left: 0;
  display: block;
}
.bookclub-app .c-edit-book-dialog__content {
  max-width: 420px;
}
.bookclub-app .c-edit-book-dialog__cover-image {
  max-width: 150px;
  max-height: 150px;
}
.bookclub-app .c-edit-book-dialog__cover-image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
  border: 1px solid #f2f2f2;
  border-radius: 3px;
  box-sizing: border-box;
  padding: 3px;
  width: 200px;
  min-height: 158px;
  margin-left: 5px;
}
.bookclub-app .c-edit-book-dialog .o-spinner-anchor {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(-50%, -20%);
}
.bookclub-app .c-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
  border-bottom: 1px solid #f2f2f2;
  background: #fff;
}
.bookclub-app .c-header__nav-tabs {
  padding: 0;
  margin: 0;
  list-style: none;
  display: inline-block;
}
.bookclub-app .c-nav-tab {
  display: inline-block;
  cursor: pointer;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  line-height: 1;
}
.bookclub-app .c-nav-tab:hover a,
.bookclub-app .c-nav-tab.is-active a {
  color: #222;
  border-color: #66e;
}
.bookclub-app .c-nav-tab a {
  text-decoration: none;
  color: #666;
  padding: 0.5em 1em;
  border-bottom: 2px solid transparent;
}
.bookclub-app .c-season-info {
  padding-top: 10px;
  margin-top: 10px;
  max-width: 800px;
}
.bookclub-app .c-season-info__header,
.bookclub-app .c-season-info__details,
.bookclub-app .c-season-info__admin-info {
  padding-left: 20px;
  padding-right: 10px;
}
.bookclub-app .c-season-info__details {
  padding-bottom: 20px;
}
.bookclub-app .c-season-info__date label {
  font-weight: 600;
  display: inline-block;
  margin-right: 5px;
}
.bookclub-app .c-season-info .c-vote-card--result {
  border-top: 1px solid #ccc;
}
.bookclub-app .c-season-info__rating-description {
  font-size: 12px;
}
.bookclub-app .c-user-list {
  padding: 10px;
  margin-bottom: 10px;
}
.bookclub-app .c-voting-session {
  margin: 10px 0;
  max-width: 800px;
}
.bookclub-app .c-voting-session__actions {
  position: relative;
  z-index: 10;
}
.bookclub-app .c-vote-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: left;
  flex-grow: 1;
  cursor: move;
}
.bookclub-app .c-vote-card--result {
  box-shadow: none;
}
.bookclub-app .c-vote-card__padded {
  padding: 8px;
  flex-grow: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: left;
}
.bookclub-app .c-vote-card__index {
  color: #666;
}
.bookclub-app .c-vote-card__details {
  flex-grow: 1;
  padding: 0 12px 0 4px;
}
.bookclub-app .c-vote-card__dash {
  display: inline-block;
  margin: 0 3px;
  font-size: 10px;
  color: #999;
}
.bookclub-app .c-vote-card__author {
  color: #999;
  font-size: 12px;
}
.bookclub-app .c-vote-card .i-star {
  cursor: pointer;
}
.bookclub-app .c-vote-card .i-star:hover polygon {
  fill: #ffeb3b;
}
.bookclub-app .c-vote-card__image-media {
  background-size: contain;
  width: 36px;
  background-position: left;
  height: 50px;
}
.bookclub-app .c-vote-card__image-media.no-src {
  background-size: 90%;
  background-position-x: 50%;
}
.bookclub-app .c-vote-card__point-dropdown:before,
.bookclub-app .c-vote-card__point-dropdown:after {
  display: none;
}
.bookclub-app .c-vote-card__points {
  white-space: nowrap;
}
.bookclub-app .u-flex {
  display: flex;
}
.bookclub-app .u-flex--row {
  flex-direction: row;
}
.bookclub-app .u-flex--col {
  flex-direction: column;
}
.bookclub-app .u-space--bot-small {
  margin-bottom: 5px;
}
.bookclub-app .u-space--bot-medium {
  margin-bottom: 10px;
}
.bookclub-app .u-space--bot-large {
  margin-bottom: 20px;
}
.bookclub-app .u-space--top-small {
  margin-top: 5px;
}
.bookclub-app .u-space--top-medium {
  margin-top: 10px;
}
.bookclub-app .u-space--top-large {
  margin-top: 20px;
}
.bookclub-app .u-space--left-small {
  margin-left: 5px;
}
.bookclub-app .u-space--left-medium {
  margin-left: 10px;
}
.bookclub-app .u-space--left-large {
  margin-left: 20px;
}
.bookclub-app .u-space--right-small {
  margin-right: 5px;
}
.bookclub-app .u-space--right-medium {
  margin-right: 10px;
}
.bookclub-app .u-space--right-large {
  margin-right: 20px;
}
