html,
body {
  margin: 0 ;
  padding: env(safe-area-inset-top, safe-area-inset-right, safe-area-inset-bottom, safe-area-inset-left);
  position: relative;
  /* --- COLOURS --- */
  font-family: "Optima", "minerva-modern", sans-serif;
}
html .heading,
body .heading {
  margin: 1em 0 0.5em 0;
  font-weight: normal;
}
html h1,
body h1 {
  font-size: 160%;
  margin: 1em 0 0.5em 0;
  font-weight: normal;
}
html h2,
body h2 {
  font-size: 130%;
  margin: 1em 0 0.5em 0;
  font-weight: normal;
}
html h3,
body h3 {
  font-size: 120%;
  margin: 1em 0 0.5em 0;
  font-weight: normal;
}
html h4,
body h4 {
  font-size: 110%;
  margin: 1em 0 0.5em 0;
  font-weight: normal;
}
html a,
body a {
  text-decoration: none;
  cursor: pointer;
}
html p,
body p {
  text-indent: 1em;
  font-weight: normal;
  margin: 0.6em 0;
}
html article,
body article {
  max-width: 40em;
  margin: auto;
}
html .footnote,
body .footnote {
  width: 70%;
}
html .button,
body .button {
  border: none;
  outline: none;
  border-radius: 4px;
  display: inline-block;
  padding: 0.7em;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  font: inherit;
}
html .button:active,
body .button:active {
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
}
html .centre,
body .centre {
  text-align: center;
}
html .hidden,
body .hidden {
  position: fixed;
  top: -1000px;
}
html .is_patron .patrons_not,
body .is_patron .patrons_not {
  display: none !important;
}
html .not_patron .patrons_only,
body .not_patron .patrons_only {
  display: none !important;
}
html .captioned_image img,
body .captioned_image img {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  max-width: 100%;
}
html .left,
body .left {
  float: left;
  margin-right: 1em;
}
html .left img,
body .left img {
  max-width: 200px;
}
html .right,
body .right {
  right: left;
  margin-left: 1em;
}
html .right img,
body .right img {
  max-width: 200px;
}
html figcaption,
body figcaption {
  display: block;
  font-size: 80%;
  margin: 0.5em;
}
html .icon,
body .icon {
  fill: currentColor;
  height: 1.5em;
  vertical-align: middle;
  transition: fill 1s;
}
html #announcement,
body #announcement {
  display: none;
  position: relative;
  margin: 40pt auto -80pt auto;
  z-index: 1000;
  height: 240pt;
  max-width: 240pt;
  background-image: url('/assets/book_ahop.jpg');
  background-size: cover;
}
html #books,
body #books {
  position: absolute;
  top: 0;
  left: 2.5%;
  padding: 5pt;
  display: inline-block;
  z-index: 10;
  background: #1e1e1e;
  border-radius: 0 0 5pt 5pt;
  font-weight: bold;
  font-size: 10pt;
  text-align: center;
}
html #books a,
body #books a {
  display: block;
  margin-top: 5pt;
}
html #books a img,
body #books a img {
  height: 40pt;
}
html #patronise_me,
body #patronise_me,
html #patron_link,
body #patron_link {
  position: fixed;
  top: -5px;
  right: 2.5%;
  z-index: 21;
}
html #patron_link,
body #patron_link {
  color: #dcc896;
  background: rgba(0, 0, 0, 0.3);
}
html #patron_link svg,
body #patron_link svg {
  margin: -0.3em 0.5em 0 0;
  top: 2pt;
  width: 15pt;
}
html #patronise_me,
body #patronise_me {
  color: #2d2d2d;
  background: rgba(200, 200, 150, 0.8);
}
html #patronise_me img,
body #patronise_me img {
  margin: -0.3em 0.5em 0 0;
  display: inline-block;
  height: 1.5em;
  vertical-align: middle;
}
html .is_patron #patronise_me,
body .is_patron #patronise_me {
  display: none;
}
html .is_patron #patron_link,
body .is_patron #patron_link {
  display: block;
}
html .not_patron #patronise_me,
body .not_patron #patronise_me {
  display: block;
}
html .not_patron #patron_link,
body .not_patron #patron_link {
  display: none;
}
html .patron_star,
body .patron_star {
  position: relative;
  filter: drop-shadow(0 0 2px #c8c896);
  fill: #dcc896;
}
html .lightpage .patron_star,
body .lightpage .patron_star {
  filter: drop-shadow(0 0 1px black);
  fill: #dcc896;
}
html .like_icon .login .patron_star,
body .like_icon .login .patron_star {
  animation: star 2s ease;
}
@keyframes star {
  0% {
    top: 0;
    height: 0;
    transform: rotate(0);
  }
  50% {
    top: -0.7em;
    height: 3em;
  }
  100% {
    top: 0;
    height: 1.5em;
    transform: rotate(360deg);
  }
}
html .twitter_icon:hover,
body .twitter_icon:hover {
  fill: #4099ff;
}
html .mastodon_icon:hover,
body .mastodon_icon:hover {
  fill: #4160d5;
}
html .tumblr_icon:hover,
body .tumblr_icon:hover {
  animation: infinite;
  animation-name: tumblr_shimmer;
  animation-duration: 4s;
}
@keyframes tumblr_shimmer {
  0% {
    fill: red;
  }
  25% {
    fill: yellow;
  }
  50% {
    fill: lightblue;
  }
  75% {
    fill: lightgreen;
  }
  100% {
    fill: red;
  }
}
html .instagram_icon:hover,
body .instagram_icon:hover {
  fill: #dc2c6e;
}
html .patreon_icon:hover,
body .patreon_icon:hover {
  fill: #dd2f16;
}
html .like_icon,
body .like_icon {
  display: block;
  margin: auto;
}
html .like_icon:hover,
body .like_icon:hover {
  fill: #dcc896;
}
html .shuffle_icon,
body .shuffle_icon {
  fill: #505050;
}
html .rounded-top,
body .rounded-top {
  border-radius: 4px 4px 0 0;
}
html .rounded-all,
body .rounded-all {
  border-radius: 4px;
}
html .rounded-left,
body .rounded-left {
  border-radius: 4px 0 0 4px;
}
html .rounded-right,
body .rounded-right {
  border-radius: 0 4px 4px 0;
}
html .rounded-bottom,
body .rounded-bottom {
  border-radius: 0 0 4px 4px;
}
html .pusher,
body .pusher {
  margin: 0;
  opacity: 0;
  height: 0;
  clear: both;
}
html header,
body header {
  position: fixed;
  bottom: env(safe-area-inset-bottom);
  bottom: -50px;
  left: 0;
  z-index: 9000;
  margin: 0;
  height: 100px;
  max-height: 100vh;
  width: 100%;
  transition: height 1s;
  font-size: 80%;
}
html header nav,
body header nav {
  max-width: 960px;
  margin: auto;
}
html header #avatar,
body header #avatar {
  position: relative;
  top: 0px;
  max-height: 30px;
  border-radius: 50% !important;
}
html header #elsewhere,
body header #elsewhere {
  float: right;
}
html header nav a,
body header nav a {
  display: inline-block;
  padding: 0 0.5em;
  border-top: solid 5px transparent;
  vertical-align: top;
  line-height: 30px;
}
html header .dot,
body header .dot {
  display: inline-block;
  background: #787878;
  width: 4px;
  height: 4px;
  margin: 0.1em 0.1em;
  border-radius: 4px;
}
html header #more,
body header #more {
  position: relative;
  max-width: 960px;
  text-align: left;
  margin: 1em auto;
  opacity: 0;
  transition-delay: 1s;
  transition: opacity 1s ;
}
html header #more #portrait,
body header #more #portrait {
  display: block;
  float: left;
  margin-right: 1em;
  max-width: 100px;
}
html header #more .book_cover img,
body header #more .book_cover img {
  display: block;
  float: left;
  margin-right: 1em;
  border: solid 1px #2d2d2d;
}
html .home_indicator_cover,
body .home_indicator_cover {
  position: fixed;
  bottom: 0;
  z-index: 6000;
  width: 100%;
  height: env(safe-area-inset-bottom);
}
html main,
body main {
  padding-bottom: 60px !important;
}
html .lightpage,
body .lightpage {
  background: #e6e6e6;
  color: #5a5a5a;
}
html .lightpage a,
body .lightpage a {
  color: #1e1e1e;
}
html .lightpage .button,
body .lightpage .button {
  background: #5a5a5a;
  color: white;
}
html .lightpage header,
body .lightpage header {
  border-top: solid 2px #e6e6e6;
  background: #d2d2d2;
  box-shadow: 0 0 20px 20px #e6e6e6;
}
html .lightpage .home_indicator_cover,
body .lightpage .home_indicator_cover {
  background: #d2d2d2;
}
html .lightpage #nav_more,
body .lightpage #nav_more,
html .lightpage #nav_log,
body .lightpage #nav_log,
html .lightpage #nav_about,
body .lightpage #nav_about,
html .lightpage #jcdotart span,
body .lightpage #jcdotart span,
html .lightpage .icon_link,
body .lightpage .icon_link {
  color: #787878;
}
html .lightpage #main,
body .lightpage #main {
  background-color: #e6e6e6;
  padding-top: 10px;
}
html .darkpage,
body .darkpage {
  padding-top: 7px ;
  background: #2d2d2d;
  color: #969696;
}
html .darkpage a,
body .darkpage a {
  color: #b4b4b4;
}
html .darkpage header,
body .darkpage header {
  border-top: solid 2px #2d2d2d;
  background: rgba(30, 30, 30, 0.9);
  box-shadow: 0 0 20px 20px #2d2d2d;
  opacity: 1;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}
html .darkpage .home_indicator_cover,
body .darkpage .home_indicator_cover {
  background: #1e1e1e;
}
html .darkpage #nav_more,
body .darkpage #nav_more,
html .darkpage #nav_log,
body .darkpage #nav_log,
html .darkpage #nav_about,
body .darkpage #nav_about,
html .darkpage #jcdotart span,
body .darkpage #jcdotart span,
html .darkpage .icon_link,
body .darkpage .icon_link {
  color: #787878;
}
html .darkerpage,
body .darkerpage {
  padding-top: 7px ;
  background: #1e1e1e;
  color: #787878;
}
html .darkerpage a,
body .darkerpage a {
  color: #505050;
}
html .darkerpage header,
body .darkerpage header {
  background: #1e1e1e;
}
html #gallery #splasher,
body #gallery #splasher {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
html #gallery #splasher img,
body #gallery #splasher img {
  position: relative;
  width: 100%;
  opacity: 0.3;
}
html #gallery #splasher .fader,
body #gallery #splasher .fader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #2d2d2d, rgba(33, 33, 33, 0));
}
html #gallery #jcdotart,
body #gallery #jcdotart {
  border-top: solid 5px #2d2d2d;
}
html #log #nav_log,
body #log #nav_log {
  border-top: solid 5px #e6e6e6;
}
html .page h1,
body .page h1 {
  text-align: center;
  margin: 1em 0 1em 0;
  border-bottom: solid 1px rgba(0, 0, 0, 0.05);
}
html .page main,
body .page main {
  margin: auto;
  max-width: 90em;
  margin-bottom: 100px;
}
html #about #nav_about,
body #about #nav_about {
  border-top: solid 5px #e6e6e6;
}
html #about img,
body #about img {
  float: right;
  max-width: 150px;
  margin-left: 1em;
  margin-bottom: 1em;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}
html #about video,
body #about video {
  float: right;
  max-width: 50%;
  margin-left: 1em;
  margin-bottom: 1em;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}
html #find,
body #find {
  position: relative;
  margin: 40% 0 2em 0;
  z-index: 300;
  text-align: center;
  font-size: 22px;
}
html #find span,
body #find span {
  display: inline-block;
  position: relative;
}
html #find #filter_container,
body #find #filter_container {
  display: inline-block;
  position: relative;
}
html #find #filter,
body #find #filter {
  display: inline-block;
  color: #dcc896;
  font-weight: bold;
  text-shadow: 0 0 5px #c8c896;
  font: 1em Minion, "Minion Pro", serif;
  background-color: inherit;
  border: none;
  text-align: left;
  background: inherit;
}
html #find #filter:focus,
body #find #filter:focus {
  outline: none;
}
html #find #carat_container,
body #find #carat_container {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: -1;
  display: inline-block;
  color: #2d2d2d;
  white-space: nowrap;
}
html #find #carat_spacer,
body #find #carat_spacer {
  opacity: 0;
  font: 1em Minion, "Minion Pro", serif;
}
html #find #carat,
body #find #carat {
  display: inline-block;
  position: relative;
  width: 0.1em;
  margin-left: -0.05em;
  top: -0.2em;
  height: 1.5em;
  background-color: #dcc896;
  box-shadow: 0 0 5px #c8c896;
  animation-name: blink;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.1;
  }
}
html #artworks .column,
body #artworks .column {
  display: inline-block;
  padding-left: 14px;
  vertical-align: top;
}
html #artworks #artworks_0,
body #artworks #artworks_0 {
  padding-left: 0;
}
html #artworks .artwork_cameo,
body #artworks .artwork_cameo {
  display: inline-block;
  position: relative;
  margin: 15px 0 0 0;
  max-width: 250px;
  text-align: center;
}
html #artworks .artwork_cameo img,
body #artworks .artwork_cameo img {
  display: block;
  margin: 0;
  width: 100%;
  border-radius: 4px;
  background: #373737;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
html #artworks .artwork_cameo h6,
body #artworks .artwork_cameo h6 {
  z-index: 30;
  margin: 0;
  padding: 4px;
  font-style: italic;
  color: #787878;
}
html #naggerbot,
body #naggerbot {
  position: relative;
  top: -4em;
  text-align: center;
  line-height: 0.8em;
  font-size: 80%;
  color: #505050;
  animation: 1s drop forwards;
  padding: 1em;
}
html #naggerbot a,
body #naggerbot a {
  color: #787878;
}
html #naggerbot .naggerbot,
body #naggerbot .naggerbot {
  display: inline-block;
  vertical-align: middle;
  height: 3em;
  transform-origin: 50% 75%;
  animation: wiggle 0.2s 1s forwards 5 linear;
}
@keyframes drop {
  100% {
    top: 0;
  }
}
@keyframes wiggle {
  33% {
    transform: rotate(20deg);
  }
  76% {
    transform: rotate(-20deg);
  }
}
html .major_naggerbot,
body .major_naggerbot {
  display: block;
  margin: 1em auto;
  width: 100px;
}
html #become_a_patron,
body #become_a_patron,
html #log_in_with_patreon,
body #log_in_with_patreon {
  max-width: 500px;
  width: 100%;
  margin: auto;
  color: white !important;
  text-align: center;
  font-size: 130%;
  background-color: #dd2f16;
}
html #log_in_with_patreon,
body #log_in_with_patreon {
  background-color: #a0a0a0;
}
html .patron_preview,
body .patron_preview {
  position: relative;
  margin: 1em auto;
  width: 250px;
  overflow: hidden;
  border-radius: 4px;
}
html .patron_preview img,
body .patron_preview img {
  border-radius: 4px;
  border: solid thin #1e1e1e;
}
html .cameo_obscurer,
body .cameo_obscurer {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background-image: url('../assets/patrons_only.png');
  background-repeat: repeat;
  background-size: 100%;
  border: solid thin #1e1e1e;
  border-radius: 4px;
}
html .cameo_star,
body .cameo_star {
  position: absolute;
  top: 7px;
  right: 10px;
  z-index: 10;
  color: #dcc896;
  text-shadow: 0 0 2px black;
}
html #artwork header,
body #artwork header {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  height: auto;
}
html #artwork #jcdotart,
body #artwork #jcdotart {
  border-top: solid 5px #1e1e1e;
}
html #artwork #artwork_container,
body #artwork #artwork_container {
  position: relative;
  margin-bottom: 200px;
  min-height: 300px;
  background-size: 99px 99px;
  background-image: url('../assets/ajax-loader.gif');
  background-position: center 100px;
  background-repeat: no-repeat;
  animation: fadein 2s forwards 1s linear;
  transition: height 1s;
  opacity: 0;
}
@keyframes fadein {
  100% {
    opacity: 1;
  }
}
html #artwork #artwork_image,
body #artwork #artwork_image {
  position: relative;
  display: block;
  width: 100%;
  margin: 20px auto;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  transition: width 1.5s, border-radius 2s;
}
html #artwork .A4,
body #artwork .A4 {
  max-width: 27cm;
}
html #artwork #artwork_video,
body #artwork #artwork_video {
  display: block;
  position: relative;
  margin: 20px auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  max-height: 720px;
}
html #artwork #artwork_iframe,
body #artwork #artwork_iframe {
  display: block;
  margin: 20px auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 80%;
  min-width: 320px;
  min-height: 320px;
  border: none;
  border-radius: 4px;
}
html #artwork #artwork_title,
body #artwork #artwork_title {
  color: #969696;
  text-align: center;
  font-weight: normal;
  letter-spacing: 0.05em;
  font-style: italic;
  font-size: 120%;
}
html #artwork #artwork_description,
body #artwork #artwork_description {
  color: #787878;
  margin-bottom: 3em;
}
html #artwork #artwork_date_media,
body #artwork #artwork_date_media {
  color: #505050;
}
html #artwork .patron_artwork_reminder,
body #artwork .patron_artwork_reminder {
  text-align: center;
  font-size: 70%;
  color: #505050;
}
html #artwork .artwork_star,
body #artwork .artwork_star {
  color: #dcc896;
  text-shadow: 0 0 2px black;
}
html #artwork header,
body #artwork header {
  text-align: center;
}
html #artwork #jcdotart,
body #artwork #jcdotart {
  color: #787878;
  display: inline-block;
  margin: auto;
  padding-top: 5pt;
  text-align: center;
  border-top: solid 5px #1e1e1e;
}
html #artwork #jcdotart span,
body #artwork #jcdotart span {
  color: #505050;
}
html #artwork .shuffle,
body #artwork .shuffle {
  background: none;
  height: 70px;
  width: 65px;
  margin: 0;
  color: #505050;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 9px;
  box-shadow: none;
  opacity: 0.7;
}
html #artwork .shuffle_icon,
body #artwork .shuffle_icon {
  display: block;
  height: 30px;
  margin: 10px auto 0 auto;
  fill: #505050;
}
html #artwork .similar,
body #artwork .similar {
  display: block;
  width: fit-content;
  max-width: 300pt;
  height: 70px;
  overflow: hidden;
  vertical-align: middle;
  margin: 30px auto 50px auto;
  padding: 0;
}
html #artwork .similar a,
body #artwork .similar a {
  display: inline-block;
  margin-left: 5pt;
}
html #artwork .similar img,
body #artwork .similar img {
  max-height: 70px;
  filter: grayscale(1);
  opacity: 0.5;
  transition: filter 2s, opacity 1s;
  border-radius: 4px;
}
html #artwork .similar img:hover,
body #artwork .similar img:hover {
  filter: grayscale(0);
  opacity: 1;
}
html #log a h2,
body #log a h2 {
  color: #5a5a5a;
  margin: 0;
}
html #log time,
body #log time {
  font-size: 70%;
  color: #8c8c8c;
}
html #log article,
body #log article {
  clear: both;
  margin: 3em auto;
  padding: 1em;
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  max-width: 40em;
}
html #log .log_cameo,
body #log .log_cameo {
  display: block;
  max-width: 50%;
  float: left;
  margin-right: 1em;
  margin-bottom: 1em;
  border-radius: 4px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
html #log img,
body #log img {
  max-width: 40em;
  border-radius: 4px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
html #log .artwork,
body #log .artwork {
  border-top: 0;
}
html #log .artwork h2,
body #log .artwork h2 {
  font-size: 100%;
  margin: 0;
}
html #log .artwork p,
body #log .artwork p {
  font-size: 90%;
}
html #log .log_nav,
body #log .log_nav {
  text-align: center;
  font-size: 50px;
  font-weight: bold;
  line-height: 30px;
}
html #log .log_nav a,
body #log .log_nav a {
  display: inline-block;
  color: #d2d2d2;
  margin: 10px;
}
html #becomepatron #patron_login_prompt,
body #becomepatron #patron_login_prompt,
html #dashboard #patron_login_prompt,
body #dashboard #patron_login_prompt {
  padding: 0.5em;
  background: #d2d2d2;
  border-radius: 0 0 4px 4px;
}
html #becomepatron #patron_login_prompt summary,
body #becomepatron #patron_login_prompt summary,
html #dashboard #patron_login_prompt summary,
body #dashboard #patron_login_prompt summary,
html #becomepatron #patron_login_prompt div,
body #becomepatron #patron_login_prompt div,
html #dashboard #patron_login_prompt div,
body #dashboard #patron_login_prompt div,
html #becomepatron #patron_login_prompt label,
body #becomepatron #patron_login_prompt label,
html #dashboard #patron_login_prompt label,
body #dashboard #patron_login_prompt label {
  margin: 0.5em;
}
html #becomepatron #patron_login_prompt .button,
body #becomepatron #patron_login_prompt .button,
html #dashboard #patron_login_prompt .button,
body #dashboard #patron_login_prompt .button {
  border-radius: 0;
  border-radius: 0 4px 4px 0;
  border: solid 1px #5a5a5a;
  margin: 0;
}
html #becomepatron #patron_login_prompt input.email,
body #becomepatron #patron_login_prompt input.email,
html #dashboard #patron_login_prompt input.email,
body #dashboard #patron_login_prompt input.email {
  padding: 0.7em;
  display: inline-block;
  border-radius: 4px 0 0 4px;
  font: inherit;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
  border: solid 1px #5a5a5a;
  margin: 0;
}
html #becomepatron .patron_left img,
body #becomepatron .patron_left img,
html #dashboard .patron_left img,
body #dashboard .patron_left img,
html #becomepatron .patron_right img,
body #becomepatron .patron_right img,
html #dashboard .patron_right img,
body #dashboard .patron_right img {
  border-radius: 4px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  max-width: 50%;
  min-width: 100px;
  margin-bottom: -200px;
  margin-top: 0;
}
html #becomepatron .patron_left,
body #becomepatron .patron_left,
html #dashboard .patron_left,
body #dashboard .patron_left {
  text-align: right;
}
html #becomepatron .patron_right,
body #becomepatron .patron_right,
html #dashboard .patron_right,
body #dashboard .patron_right {
  text-align: left;
}
html #becomepatron #patron_choices,
body #becomepatron #patron_choices,
html #dashboard #patron_choices,
body #dashboard #patron_choices,
html #becomepatron #patron_choice_directly,
body #becomepatron #patron_choice_directly,
html #dashboard #patron_choice_directly,
body #dashboard #patron_choice_directly {
  position: relative;
  display: block;
  z-index: 900;
  width: 55%;
  margin: auto;
  margin-bottom: -2em;
  clear: both;
}
html #becomepatron #patron_choice_directly,
body #becomepatron #patron_choice_directly,
html #dashboard #patron_choice_directly,
body #dashboard #patron_choice_directly {
  z-index: 100;
  top: -12em;
  margin-bottom: -15em;
}
html #becomepatron #choices,
body #becomepatron #choices,
html #dashboard #choices,
body #dashboard #choices {
  margin: auto;
  max-width: 800px;
}
html #becomepatron .choice h2,
body #becomepatron .choice h2,
html #dashboard .choice h2,
body #dashboard .choice h2 {
  margin-top: 0;
  font-size: 170%;
}
html #becomepatron #choice_patreon,
body #becomepatron #choice_patreon,
html #dashboard #choice_patreon,
body #dashboard #choice_patreon {
  border: solid 10px transparent;
}
html #becomepatron #choice_directly,
body #becomepatron #choice_directly,
html #dashboard #choice_directly,
body #dashboard #choice_directly {
  position: relative;
  z-index: 800;
  background: #e6e6e6;
  border: double 10px #787878;
  border-radius: 30px;
}
html #becomepatron .plans,
body #becomepatron .plans,
html #dashboard .plans,
body #dashboard .plans {
  border-radius: 4px;
  max-width: 900px;
  margin: 1em auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  padding: 1em;
  text-align: center;
}
html #becomepatron .plans h2,
body #becomepatron .plans h2,
html #dashboard .plans h2,
body #dashboard .plans h2 {
  color: #e6e6e6;
  margin: 0;
}
html #becomepatron .plans h3,
body #becomepatron .plans h3,
html #dashboard .plans h3,
body #dashboard .plans h3 {
  margin-top: 0;
  font-size: 12pt;
}
html #becomepatron .plans img,
body #becomepatron .plans img,
html #dashboard .plans img,
body #dashboard .plans img {
  width: 120px;
}
html #becomepatron .col,
body #becomepatron .col,
html #dashboard .col,
body #dashboard .col {
  padding: 1em 2em;
}
html #becomepatron .plan_notes,
body #becomepatron .plan_notes,
html #dashboard .plan_notes,
body #dashboard .plan_notes {
  margin: auto;
  font-size: 11pt;
  max-width: 700px;
  padding: 0 2em;
}
html #becomepatron #banker h3,
body #becomepatron #banker h3,
html #dashboard #banker h3,
body #dashboard #banker h3 {
  color: #a15428;
}
html #becomepatron #prince h3,
body #becomepatron #prince h3,
html #dashboard #prince h3,
body #dashboard #prince h3 {
  color: #c0c0c0;
}
html #becomepatron #pope h3,
body #becomepatron #pope h3,
html #dashboard #pope h3,
body #dashboard #pope h3 {
  color: #f1ae23;
}
html #dashboard,
body #dashboard {
  max-width: 900px;
  margin: auto;
}
html #dashboard #patron_list,
body #dashboard #patron_list {
  border: solid 5px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}
html #dashboard #patron_list .text,
body #dashboard #patron_list .text {
  border-radius: 1em;
  padding: 0.7em;
  font-size: inherit;
  font-family: inherit;
  min-height: 2em;
  border: solid 5px #d2d2d2;
  margin-bottom: 1em;
}
html #dashboard #patron_list input,
body #dashboard #patron_list input {
  width: 100%;
}
html #dashboard #books,
body #dashboard #books {
  border: solid 5px rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}
html #dashboard #books h2,
body #dashboard #books h2 {
  margin-top: 1em;
}
html #dashboard #books .book_cover,
body #dashboard #books .book_cover {
  float: left;
  margin: 0 1em 3em 0;
  border: solid 1px #1e1e1e;
}
html #dashboard #books .book_description,
body #dashboard #books .book_description {
  font-size: 90%;
}
html #dashboard .plan,
body #dashboard .plan {
  font-size: 90%;
  opacity: 0.7;
  height: 100%;
  border-radius: 4px;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-bottom: 2em;
}
html #dashboard .highlight,
body #dashboard .highlight {
  opacity: 1;
  box-shadow: 0 0 20px #966414;
  background: rgba(0, 0, 0, 0.3);
}
html #dashboard #limit,
body #dashboard #limit {
  border-top: solid 1px rgba(255, 255, 255, 0.05);
}
html #dashboard #limit form,
body #dashboard #limit form {
  width: 16%;
}
html #dashboard #limit form,
body #dashboard #limit form,
html #dashboard #limit input,
body #dashboard #limit input {
  display: inline-block;
}
html #dashboard #limit h2,
body #dashboard #limit h2 {
  margin-top: 0.5em;
}
html #dashboard #limit .current,
body #dashboard #limit .current {
  background: #966414;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
}
html #dashboard #limit .button,
body #dashboard #limit .button {
  width: 100%;
  margin: 0;
  border-radius: 0;
}
html #dashboard #limit .first,
body #dashboard #limit .first {
  border-radius: 4px 0 0 4px;
}
html #dashboard #limit .last,
body #dashboard #limit .last {
  border-radius: 0 4px 4px 0;
}
html #dashboard #cancel,
body #dashboard #cancel {
  margin-top: 1em;
  padding-top: 1em;
  border-top: solid 1px rgba(255, 255, 255, 0.05);
}
html #dashboard .note,
body #dashboard .note {
  font-size: 70%;
}
html #download,
body #download {
  margin-top: 1em;
  font-size: 10px;
  text-transform: uppercase;
  color: #787878;
  background: rgba(0, 0, 0, 0.3);
}
html #download .patron_star,
body #download .patron_star {
  font-size: 80%;
}
