/* colors
------------------------------------------ */
/* typography
------------------------------------------ */
/* functions
------------------------------------------ */
a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, 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;
}

html {
  -webkit-font-smoothing: antialiased;
}

body {
  line-height: 1;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:after, blockquote:before, q:after, q:before {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.group:after, .group:before {
  content: "";
  display: table;
}

.group:after {
  clear: both;
}

.group {
  zoom: 1;
}

input, textarea {
  -webkit-appearance: none;
  border-radius: 0;
}

img {
  width: 100%;
  height: auto;
}

:focus {
  outline: none;
}

/* typography
------------------------------------------ */
body {
  color: #000000;
  font-family: "Lato", Arial, sans-serif;
  font-size: 16px;
}

h1 {
  font-family: Helvetica, sans-serif;
  font-weight: bold;
  font-size: 8.75rem;
  line-height: 0.9;
  text-transform: uppercase;
}
h1.alt {
  font-family: "Lato", Arial, sans-serif;
  font-size: 3.25rem;
  font-weight: 900;
  color: #FFFFFF;
}

h2 {
  font-family: Helvetica, sans-serif;
  font-size: 4.5rem;
  font-weight: bold;
}
h2.alt {
  font-family: "Lato", Arial, sans-serif;
  font-size: 3.25rem;
  font-weight: 900;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h3 {
  font-family: "Lato", Arial, sans-serif;
  font-size: 1.3125rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.25;
  -webkit-transition: color 0.5s ease;
  transition: color 0.5s ease;
}

p {
  font-family: "Lato", Arial, sans-serif;
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.5;
}

a {
  text-decoration: none;
}

a.btn {
  display: inline-block;
  background: #000000;
  color: #FFFFFF;
  font-size: 1.125rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "Lato", Arial, sans-serif;
  padding: 15px 23px 16px 25px;
  -webkit-transition: all 0.375s ease;
  transition: all 0.375s ease;
  margin-bottom: 3.8125rem;
}
a.btn:hover {
  background: #e82871;
  cursor: pointer;
}

hr {
  display: block;
  border: 0;
  margin: 0;
  padding: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgb(250, 78, 53)), color-stop(30%, rgb(228, 36, 120)), to(rgb(114, 107, 172)));
  background: linear-gradient(90deg, rgb(250, 78, 53) 0%, rgb(228, 36, 120) 30%, rgb(114, 107, 172) 100%);
  height: 1px;
  width: 100%;
}

i, em {
  font-style: italic;
}

b, strong {
  font-weight: 700;
}

::-moz-selection {
  color: #FFFFFF;
  background-color: #e82871;
}

::selection {
  color: #FFFFFF;
  background-color: #e82871;
}

/* media queries
------------------------------------------ */
@media (max-width: 900px) {
  h3 {
    font-size: 1.25rem;
  }
}
@media (max-width: 550px) {
  h2.alt {
    font-size: 2rem;
  }
  h3 {
    font-size: 1rem;
    letter-spacing: 1px;
    margin-bottom: 0.125rem;
  }
  a.btn {
    margin-bottom: 50px;
  }
}
/* grid
------------------------------------------ */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  background-color: #F9F9F9;
}

main {
  display: block;
  position: relative;
  top: 0;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}

#alpha {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
#alpha #content {
  width: 60%;
  background: #FFFFFF;
  padding-top: 5.5rem;
}
#alpha #sidebar {
  position: relative;
  width: 40%;
  background: transparent url("../img/stripe.png") top left repeat;
}

.pad {
  padding: 0 6.25rem;
}

img {
  display: block;
}

/* media queries
------------------------------------------ */
@media (max-width: 1440px) {
  .pad {
    padding: 0 3.125rem;
  }
}
@media (max-width: 1350px) {
  #alpha #content {
    width: 70%;
  }
  #alpha #sidebar {
    padding-top: 50px;
    width: 30%;
  }
}
@media (max-width: 1023px) {
  #alpha #content {
    padding-top: 40px;
  }
}
@media (max-width: 767px) {
  .pad {
    padding: 0 1.5625rem;
  }
}
@media (max-width: 550px) {
  .pad {
    padding: 0 0.9375rem;
  }
  #alpha #content {
    padding-top: 20px;
  }
}
/* gradient bar
------------------------------------------ */
.bar {
  display: block;
  position: relative;
  width: 100%;
  height: 25px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(250, 78, 53)), color-stop(30%, rgb(228, 36, 120)), to(rgb(114, 107, 172)));
  background: linear-gradient(90deg, rgb(250, 78, 53) 0%, rgb(228, 36, 120) 30%, rgb(114, 107, 172) 100%);
}

/* header & footer
------------------------------------------ */
header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #000000;
  width: 100%;
  height: 75px;
}
header .logo {
  width: 335px;
}
header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
header nav ul li {
  position: relative;
  margin-left: 50px;
}
header nav ul li a {
  display: block;
  position: relative;
  color: #FFFFFF;
  font-size: 1.125rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "Lato", Arial, sans-serif;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  border-bottom: 1px transparent solid;
}
header nav ul li a:hover {
  cursor: pointer;
  color: #1AC4E3;
  border-bottom: 1px #e82871 solid;
}
header nav ul li.current_page_item a {
  position: relative;
  color: #000000 !important;
  z-index: 1;
}
header nav ul li.current_page_item a::before {
  content: "";
  position: absolute;
  top: -7px;
  left: -25px;
  height: 34px;
  width: calc(100% + 50px);
  background: #FFFFFF;
  z-index: -1;
}
header nav ul li.current_page_item a::after {
  content: "";
  position: absolute;
  bottom: -11px;
  left: -25px;
  width: calc(100% + 50px);
  height: 5px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(250, 78, 53)), color-stop(30%, rgb(228, 36, 120)), to(rgb(114, 107, 172)));
  background: linear-gradient(90deg, rgb(250, 78, 53) 0%, rgb(228, 36, 120) 30%, rgb(114, 107, 172) 100%);
  z-index: -1;
}

body.single-comics header.pad nav ul li:nth-of-type(1) a {
  position: relative;
  color: #000000 !important;
  z-index: 1;
}
body.single-comics header.pad nav ul li:nth-of-type(1) a::before {
  content: "";
  position: absolute;
  top: -7px;
  left: -25px;
  height: 34px;
  width: calc(100% + 50px);
  background: #FFFFFF;
  z-index: -1;
}
body.single-comics header.pad nav ul li:nth-of-type(1) a::after {
  content: "";
  position: absolute;
  bottom: -11px;
  left: -25px;
  width: calc(100% + 50px);
  height: 5px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(250, 78, 53)), color-stop(30%, rgb(228, 36, 120)), to(rgb(114, 107, 172)));
  background: linear-gradient(90deg, rgb(250, 78, 53) 0%, rgb(228, 36, 120) 30%, rgb(114, 107, 172) 100%);
  z-index: -1;
}

/* media queries
------------------------------------------ */
@media (max-width: 1280px) {
  .bar {
    height: 10px;
  }
  header.pad {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    height: auto;
    padding: 0.9375rem 3.125rem;
  }
  header.pad .logo {
    width: 100%;
    margin-bottom: 11px;
  }
  header.pad .logo img {
    max-width: 250px;
    margin-bottom: 11px;
  }
  header.pad .logo::after {
    content: "";
    display: block;
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: -webkit-gradient(linear, left top, right top, from(rgb(250, 78, 53)), color-stop(30%, rgb(228, 36, 120)), to(rgb(114, 107, 172)));
    background: linear-gradient(90deg, rgb(250, 78, 53) 0%, rgb(228, 36, 120) 30%, rgb(114, 107, 172) 100%);
  }
  header nav {
    width: 100%;
  }
  header.pad nav ul li {
    margin-left: 1.5625rem;
  }
  header.pad nav ul li.current_page_item a {
    color: #FFFFFF !important;
  }
  header.pad nav ul li.current_page_item a::before {
    display: none;
  }
  header.pad nav ul li.current_page_item a::after {
    width: calc(100% - 2px);
    left: 0;
    bottom: 4px;
  }
  header nav ul li a {
    font-size: 0.75rem;
    letter-spacing: 2px;
  }
  body.page-id-10 header.pad nav ul li:first-of-type {
    margin-left: 0;
  }
  header.pad nav ul li:first-of-type {
    margin-left: 0;
  }
  body.single-comics header.pad nav ul li:nth-of-type(1) a {
    z-index: 1;
    color: #FFFFFF !important;
  }
  body.single-comics header.pad nav ul li:nth-of-type(1) a::before {
    display: none;
  }
  body.single-comics header.pad nav ul li:nth-of-type(1) a::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 0;
    width: calc(100% - 2px);
    height: 5px;
    background: -webkit-gradient(linear, left top, right top, from(rgb(250, 78, 53)), color-stop(30%, rgb(228, 36, 120)), to(rgb(114, 107, 172)));
    background: linear-gradient(90deg, rgb(250, 78, 53) 0%, rgb(228, 36, 120) 30%, rgb(114, 107, 172) 100%);
    z-index: -1;
  }
}
@media (max-width: 767px) {
  header.pad {
    padding: 0.9375rem 1.5625rem;
  }
}
@media (max-width: 550px) {
  header.pad {
    padding: 0.9375rem;
  }
}
/* stripes
------------------------------------------ */
.stripes {
  display: block;
  position: relative;
  width: 100%;
  height: 100px;
  background: transparent url("../img/stripe.png") top left repeat;
}

/* footer
------------------------------------------ */
.bar.footer {
  height: 10px;
}

footer.pad {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: #000000;
  width: 100%;
  height: auto;
  padding: 1.5625rem 6.25rem 0.9375rem 6.25rem;
}
footer.pad .logo {
  margin-bottom: 11px;
  width: 100%;
}
footer.pad .logo img {
  max-width: 250px;
  margin-bottom: 11px;
}
footer.pad .logo::after {
  content: "";
  display: block;
  position: relative;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(250, 78, 53)), color-stop(30%, rgb(228, 36, 120)), to(rgb(114, 107, 172)));
  background: linear-gradient(90deg, rgb(250, 78, 53) 0%, rgb(228, 36, 120) 30%, rgb(114, 107, 172) 100%);
}
footer.pad nav {
  width: 100%;
}
footer.pad nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
footer.pad nav ul li {
  position: relative;
  margin-left: 1.5625rem;
}
footer.pad nav ul li a {
  display: block;
  position: relative;
  color: #FFFFFF !important;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "Lato", Arial, sans-serif;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
footer.pad nav ul li a::before {
  display: none;
}
footer.pad nav ul li a::after {
  width: calc(100% - 2px);
  left: 0;
  bottom: 5px;
}
footer.pad nav ul li a:hover {
  cursor: pointer;
  color: #1AC4E3;
}

body.page-id-10 footer.pad nav ul li:first-of-type {
  margin-left: 0;
}

footer.pad nav ul li:first-of-type {
  margin-left: 0;
}

/* lower footer
------------------------------------------ */
footer#lower-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
  height: 120px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer#lower-footer #copyright {
  color: #FFFFFF;
  font-family: "Lato", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}
footer#lower-footer #copyright .mobile-break {
  display: none;
}
footer#lower-footer #into-december-logo {
  width: 80px;
  padding-bottom: 25px;
}

@media (max-width: 1440px) {
  footer.pad {
    padding: 1.5625rem 3.125rem 0.9375rem 3.125rem;
  }
}
@media (max-width: 767px) {
  footer.pad {
    padding: 0.9375rem 1.5625rem;
  }
}
@media (max-width: 550px) {
  footer.pad {
    padding: 0.9375rem;
  }
  footer#lower-footer #copyright .dash {
    display: none;
  }
  footer#lower-footer #copyright .mobile-break {
    display: block;
  }
}
/* promo
------------------------------------------ */
#promo {
  padding: 100px 0 125px 0;
  background: transparent url("../img/stripe.png") top left repeat;
}
#promo.pad-promo {
  padding-left: 200px;
  padding-right: 200px;
}
#promo #promo-content {
  color: #FFFFFF;
  position: relative;
  background: transparent;
  width: calc(100% - 25px);
  padding: 50px 100px 10px 50px;
  z-index: 3000;
}
#promo #promo-content span {
  display: block;
  font-family: "Lato", Arial, sans-serif;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-left: 1.5625rem;
  margin-bottom: 1.5rem;
}
#promo #promo-content hr {
  margin-bottom: 1.3125rem;
}
#promo #promo-content h1 {
  font-family: "Lato", Arial, sans-serif;
  font-size: 3rem;
  margin-left: 25px;
  margin-bottom: 2.25rem;
}
#promo #promo-content p {
  margin-left: 25px;
  margin-bottom: 0.8125rem;
}
#promo #promo-content p a {
  color: #1AC4E3;
  font-weight: bold;
  border-bottom: 1px #e82871 solid;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
#promo #promo-content p a:hover {
  color: #FFFFFF;
  border-color: #e82871;
}
#promo #promo-content::before {
  content: "";
  position: absolute;
  top: 25px;
  right: -25px;
  bottom: -25px;
  left: 25px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(250, 78, 53)), color-stop(30%, rgb(228, 36, 120)), to(rgb(114, 107, 172)));
  background: linear-gradient(90deg, rgb(250, 78, 53) 0%, rgb(228, 36, 120) 30%, rgb(114, 107, 172) 100%);
  z-index: -1;
  -webkit-transition: opacity 0.37s ease;
  transition: opacity 0.37s ease;
  -webkit-transform: skew(0deg, -2deg);
      -ms-transform: skew(0deg, -2deg);
          transform: skew(0deg, -2deg);
  opacity: 1;
}
#promo #promo-content::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #000000;
  z-index: -1;
  -webkit-transition: opacity 0.37s ease;
  transition: opacity 0.37s ease;
  -webkit-transform: skew(0deg, -2deg);
      -ms-transform: skew(0deg, -2deg);
          transform: skew(0deg, -2deg);
  opacity: 1;
}

/* breadcrumbs
------------------------------------------ */
#breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 50px;
  background: #FFFFFF;
  border-bottom: 1px #EDEDED solid;
  font-family: "Lato", Arial, sans-serif;
  color: #555555;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}
#breadcrumbs a {
  position: relative;
  color: #555555;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
#breadcrumbs a:hover {
  color: #1AC4E3;
}
#breadcrumbs a:hover::after {
  opacity: 1;
}
#breadcrumbs a::after {
  content: "";
  display: block;
  position: absolute;
  background: #1AC4E3;
  width: calc(100% - 2px);
  height: 1px;
  bottom: -3px;
  opacity: 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
#breadcrumbs span.current-item {
  color: #000000;
}

/* 
------------------------------------------ */
main #alpha #content p {
  margin-bottom: 44px;
}

/* hero
------------------------------------------ */
main #alpha #content #hero .h1-max {
  width: calc(100% - 200px);
}
main #alpha #content #hero .h1-max h1 {
  margin-bottom: 1.1875rem;
  font-style: normal;
}
main #alpha #content #hero span {
  display: block;
  font-family: "Lato", Arial, sans-serif;
  font-size: 3rem;
  margin-bottom: 1.5625rem;
}
main #alpha #content #hero span.number {
  font-family: Helvetica;
  font-style: normal;
  margin-bottom: 1.125rem;
}
main #alpha #content #hero hr {
  margin-bottom: 1.4375rem;
}
main #alpha #content #hero #notes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 2rem;
}
main #alpha #content #hero #notes #note {
  font-family: "Lato", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}
main #alpha #content #hero #notes #note span {
  display: inline-block;
  font-size: 0.9375rem;
  text-transform: lowercase;
  letter-spacing: 0px;
  font-weight: normal;
  margin: 0;
}

main #alpha #content #hero .h1-max.large {
  width: 60%;
}

/* comics hub
------------------------------------------ */
#comics-hub {
  background: #000000;
  padding-top: 50px;
  padding-bottom: 25px;
}
#comics-hub #comics-hub__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 50px;
}
#comics-hub #comics-hub__container .comic-item {
  position: relative;
  width: calc(16.66666667% - 42px);
  margin-bottom: 25px;
  margin-right: 50px;
}
#comics-hub #comics-hub__container .comic-item:nth-of-type(6n) {
  margin-right: 0;
}
#comics-hub #comics-hub__container .comic-item .comic-item-top .comic-cover {
  position: relative;
  color: #FFFFFF;
}
#comics-hub #comics-hub__container .comic-item .comic-item-top .comic-cover figure {
  position: relative;
  margin-bottom: 19px;
  z-index: 2000;
}
#comics-hub #comics-hub__container .comic-item .comic-item-top .comic-cover figure img {
  display: block;
  z-index: 3000;
  -webkit-transition: opacity 0.37s ease;
  transition: opacity 0.37s ease;
}
#comics-hub #comics-hub__container .comic-item .comic-item-top .comic-cover figure::before {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  bottom: -10px;
  left: -10px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(250, 78, 53)), color-stop(30%, rgb(228, 36, 120)), to(rgb(114, 107, 172)));
  background: linear-gradient(90deg, rgb(250, 78, 53) 0%, rgb(228, 36, 120) 30%, rgb(114, 107, 172) 100%);
  z-index: -1;
  -webkit-transition: opacity 0.37s ease;
  transition: opacity 0.37s ease;
  opacity: 0;
}
#comics-hub #comics-hub__container .comic-item .comic-item-top .comic-cover span {
  display: block;
  font-family: "Lato", Arial, sans-serif;
  font-size: 1.375rem;
  margin-bottom: 21px;
  -webkit-transition: color 0.37s ease;
  transition: color 0.37s ease;
}
#comics-hub #comics-hub__container .comic-item .comic-item-top .comic-cover a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5000;
  /*&:hover + figure::after {
  	opacity: 0.75;
  }*/
}
#comics-hub #comics-hub__container .comic-item .comic-item-top .comic-cover a:hover + figure::before {
  opacity: 1;
}
#comics-hub #comics-hub__container .comic-item .comic-item-top .comic-cover a:hover + figure img {
  opacity: 0.75;
}
#comics-hub #comics-hub__container .comic-item .comic-item-top .comic-cover a:hover + figure + h3, #comics-hub #comics-hub__container .comic-item .comic-item-top .comic-cover a:hover + figure + h3 + span {
  color: #1AC4E3;
}
#comics-hub #comics-hub__container .comic-item .comic-item-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.25;
}
#comics-hub #comics-hub__container .comic-item .comic-item-bottom span.by {
  display: inline-block !important;
  font-family: "Lato", Arial, sans-serif;
  font-size: 0.875rem;
  text-transform: lowercase;
  font-weight: normal;
  letter-spacing: 0px;
  margin-right: 7px;
}
#comics-hub #comics-hub__container .comic-item .comic-item-bottom::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(250, 78, 53)), color-stop(30%, rgb(228, 36, 120)), to(rgb(114, 107, 172)));
  background: linear-gradient(90deg, rgb(250, 78, 53) 0%, rgb(228, 36, 120) 30%, rgb(114, 107, 172) 100%);
}

/* comic viewer
------------------------------------------ */
body.single-comics #content .comics-river {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
body.single-comics #content .comics-river figure {
  position: relative;
  width: calc(25% - 25px);
  z-index: 1000;
  cursor: pointer;
}
body.single-comics #content .comics-river figure img {
  z-index: 2000;
  -webkit-transition: opacity 0.37s ease;
  transition: opacity 0.37s ease;
}
body.single-comics #content .comics-river figure::before {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  bottom: -10px;
  left: -10px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(250, 78, 53)), color-stop(30%, rgb(228, 36, 120)), to(rgb(114, 107, 172)));
  background: linear-gradient(90deg, rgb(250, 78, 53) 0%, rgb(228, 36, 120) 30%, rgb(114, 107, 172) 100%);
  z-index: -1;
  -webkit-transition: opacity 0.37s ease;
  transition: opacity 0.37s ease;
  opacity: 0;
}
body.single-comics #content .comics-river figure::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4000;
  background: transparent url("../img/badge.png") center center no-repeat;
  background-size: 90%;
  -webkit-transition: opacity 0.37s ease;
  transition: opacity 0.37s ease;
  opacity: 0;
}
body.single-comics #content .comics-river figure:hover::before {
  opacity: 1;
}
body.single-comics #content .comics-river figure.active {
  pointer-events: none;
}
body.single-comics #content .comics-river figure.active img {
  opacity: 0.5 !important;
}
body.single-comics #content .comics-river figure.active::before {
  opacity: 1;
}
body.single-comics #content .comics-river figure.active::after {
  opacity: 0.9;
}
body.single-comics #content .comics-river figure:hover img {
  opacity: 0.8;
}

body.single-comics #sidebar {
  overflow-x: inherit;
}
body.single-comics #sidebar img {
  position: absolute;
  width: calc(100% - 100px);
  opacity: 0;
  -webkit-transition: opacity 0.37s ease;
  transition: opacity 0.37s ease;
}
body.single-comics #sidebar img:nth-of-type(1) {
  z-index: 1000;
}
body.single-comics #sidebar img:nth-of-type(2) {
  z-index: 2000;
}
body.single-comics #sidebar img:nth-of-type(3) {
  z-index: 3000;
}
body.single-comics #sidebar img:nth-of-type(4) {
  z-index: 4000;
}
body.single-comics #sidebar img.active {
  opacity: 1;
}

/* creator links
------------------------------------------ */
#links {
  position: absolute;
  top: 50%;
  left: 100px;
  width: calc(100% - 225px);
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
#links::before {
  content: "";
  display: block;
  position: absolute;
  top: 20px;
  right: -20px;
  bottom: -20px;
  left: 20px;
  background: -webkit-gradient(linear, left top, right top, from(rgb(250, 78, 53)), color-stop(30%, rgb(228, 36, 120)), to(rgb(114, 107, 172)));
  background: linear-gradient(90deg, rgb(250, 78, 53) 0%, rgb(228, 36, 120) 30%, rgb(114, 107, 172) 100%);
  -webkit-transform: rotate(-5deg) skew(-5deg);
      -ms-transform: rotate(-5deg) skew(-5deg);
          transform: rotate(-5deg) skew(-5deg);
  z-index: 1000;
}
#links::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #000000;
  -webkit-transform: rotate(-5deg) skew(-5deg);
      -ms-transform: rotate(-5deg) skew(-5deg);
          transform: rotate(-5deg) skew(-5deg);
  z-index: 2000;
}
#links #links-container {
  position: relative;
  margin-top: -100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 50px;
  z-index: 3000;
}
#links #links-container div .headshot {
  position: relative;
  width: 200px;
  margin-bottom: 19px;
}
#links #links-container div .headshot img {
  display: block;
}
#links #links-container div .headshot::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgb(250, 78, 53)), color-stop(30%, rgb(228, 36, 120)), to(rgb(114, 107, 172)));
  background: linear-gradient(90deg, rgb(250, 78, 53) 0%, rgb(228, 36, 120) 30%, rgb(114, 107, 172) 100%);
  z-index: 2000;
  opacity: 50%;
}
#links #links-container div span {
  display: block;
  font-family: "Lato", Arial, sans-serif;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
#links #links-container div hr {
  position: relative;
  left: -25px;
  margin-bottom: 15px;
}
#links #links-container div a {
  margin-bottom: 1.0625rem;
  font-family: "Lato", Arial, sans-serif;
  color: #FFFFFF;
  font-size: 1.5rem;
  padding-bottom: 2px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  border-bottom: 1px transparent solid;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}
#links #links-container div a:hover {
  color: #1AC4E3;
  border-color: #1AC4E3;
}

/* form
------------------------------------------ */
form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
form p {
  width: 50%;
  margin: 0 !important;
  padding: 0 !important;
}
form p:nth-of-type(5) {
  width: 100%;
}
form p:nth-of-type(6) {
  margin-bottom: 0 !important;
  width: 116px;
}
form p label {
  font-family: "Lato", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}
form p label span {
  color: #e82871;
}
form p input {
  border: 0;
  border-bottom: 1px #EDEDED solid;
  width: calc(100% - 50px);
  font-family: "Lato", Arial, sans-serif;
  font-size: 1.125rem;
  padding: 0;
  padding-bottom: 5px;
  margin: 0;
  margin-bottom: 20px;
}
form p input.wpcf7-not-valid {
  border-color: #e82871;
}
form p select {
  width: calc(100% - 50px);
  margin-bottom: 20px;
  height: 40px;
  margin-top: 5px;
  border: 1px #EDEDED solid;
  font-family: "Lato", Arial, sans-serif;
}
form p textarea {
  border: 1px #EDEDED solid;
  width: calc(100% - 50px);
  font-family: "Times New Roman", Times, serif;
  font-size: 1.125rem;
  padding: 10px;
  margin-bottom: 20px;
  height: 100px;
  margin-top: 5px;
}
form p input[type=submit] {
  width: 125px;
  margin-bottom: 0;
  background: #000000;
  color: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-family: "Lato", Arial, sans-serif;
  border: 0;
  padding: 10px 0 11px 0;
  border: 1px transparent solid;
  -webkit-transition: all 0.375s ease;
  transition: all 0.375s ease;
}
form p input[type=submit]:hover, form p input[type=submit]:focus {
  color: #FFFFFF;
  background: #e82871;
  border: 1px #e82871 solid;
  cursor: pointer;
}
form .wpcf7-not-valid-tip {
  position: absolute;
  top: 25px;
  font-size: 0.6875rem;
  text-transform: none;
  letter-spacing: 0;
  color: #e82871 !important;
  border-color: #e82871 !important;
}
form .wpcf7-response-output {
  position: relative;
  left: 25px;
  top: 0;
  font-size: 0.6875rem;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  padding-left: 40px !important;
  padding-top: 15px !important;
  height: 40px;
}
form.sent .wpcf7-response-output {
  background: transparent url("../img/ok.png") center left no-repeat;
  background-size: 40px;
}
form.invalid .wpcf7-response-output {
  background: transparent url("../img/x.png") center left no-repeat;
  background-size: 40px;
  color: #e82871;
}
form .wpcf7-spinner {
  display: none;
}

/* media queries
------------------------------------------ */
@media (max-width: 1800px) {
  main #alpha #content #hero #notes #note {
    font-size: 0.75rem;
    letter-spacing: 2px;
  }
  main #alpha #content #hero #notes #note span {
    font-size: 0.875rem;
  }
  #comics-hub #comics-hub__container .comic-item {
    width: calc(25% - 25px);
    margin-right: 25px;
  }
  #comics-hub #comics-hub__container .comic-item:nth-of-type(5n), #comics-hub #comics-hub__container .comic-item:nth-of-type(6n) {
    margin-right: 25px;
  }
  #comics-hub #comics-hub__container .comic-item:nth-of-type(4n) {
    margin-right: 0;
  }
}
@media (max-width: 1550px) {
  main #alpha #content #hero #notes #note {
    font-size: 0.6875rem;
    letter-spacing: 1px;
  }
  main #alpha #content #hero #notes #note span {
    font-size: 0.8125rem;
  }
}
@media (max-width: 1440px) {
  #promo.pad-promo {
    padding-left: 100px;
    padding-right: 100px;
  }
  body.page-id-10 #comics-hub {
    padding-top: 1px;
  }
}
@media (max-width: 1350px) {
  #links {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  #links::before {
    display: none;
  }
  #links::after {
    display: none;
  }
  #links #links-container {
    margin-top: 0;
    padding-left: 50px;
    padding-right: 50px;
  }
  #links #links-container div .headshot {
    width: 100%;
  }
  #links #links-container div span {
    display: none;
  }
  #links #links-container div hr {
    display: none;
  }
  #links #links-container div a {
    color: #000000;
  }
}
@media (max-width: 1280px) {
  #comics-hub #comics-hub__container .comic-item {
    width: calc(33% - 14px);
    margin-right: 25px;
  }
  #comics-hub #comics-hub__container .comic-item:nth-of-type(4n) {
    margin-right: 25px;
  }
  #comics-hub #comics-hub__container .comic-item:nth-of-type(3n) {
    margin-right: 0;
  }
}
@media (max-width: 1023px) {
  #alpha {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #alpha #content {
    width: 100%;
    padding-bottom: 43px;
  }
  #alpha #sidebar {
    width: 100%;
    margin-bottom: 50px;
  }
  #alpha #sidebar #links {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  #alpha #sidebar #links::before {
    display: none;
  }
  #alpha #sidebar #links::after {
    display: none;
  }
  #alpha #sidebar #links #links-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  #alpha #sidebar #links #links-container div .headshot {
    max-width: 200px;
    margin-bottom: 50px;
  }
  #alpha #sidebar #links #links-container div span {
    display: block;
    color: #000000;
  }
  #alpha #sidebar #links #links-container div hr {
    display: block;
    left: 0;
  }
  #alpha #sidebar #links #links-container div:nth-of-type(2) {
    width: 100%;
    padding-left: 50px;
  }
  form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-flow: column;
        flex-flow: column;
  }
  form p {
    width: 100%;
  }
  #alpha #sidebar {
    display: none;
  }
  body.single-comics #content .comics-river {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  body.single-comics #content .comics-river figure {
    width: calc(50% - 25px);
    margin-bottom: 50px;
    pointer-events: none;
  }
  body.single-comics #content .comics-river figure::before, body.single-comics #content .comics-river figure::after {
    display: none;
  }
  body.single-comics #content .comics-river figure.active {
    pointer-events: none;
  }
  body.single-comics #content .comics-river figure.active img {
    opacity: 1 !important;
  }
  body.single-comics #sidebar img {
    display: none;
  }
}
@media (max-width: 900px) {
  #comics-hub #comics-hub__container .comic-item {
    width: calc(50% - 14px);
  }
  #comics-hub #comics-hub__container .comic-item:nth-of-type(3n) {
    margin-right: 25px;
  }
  #comics-hub #comics-hub__container .comic-item:nth-of-type(2n) {
    margin-right: 0;
  }
  #comics-hub #comics-hub__container .comic-item .comic-item-top .comic-cover span {
    font-size: 1.375rem;
  }
}
@media (max-width: 767px) {
  #promo.pad-promo {
    padding-left: 25px;
    padding-right: 25px;
  }
  #alpha #sidebar {
    padding-top: 25px;
  }
  #alpha #sidebar #links #links-container {
    padding-left: 25px;
    padding-right: 25px;
  }
  #alpha #sidebar #links #links-container div .headshot {
    margin-bottom: 25px;
  }
  #alpha #sidebar #links #links-container div a {
    font-size: 1.375rem;
    line-height: 1.25;
  }
  #alpha #sidebar #links #links-container div br:nth-of-type(odd) {
    display: none;
  }
  main #alpha #content #hero .h1-max {
    width: calc(100% - 50px);
  }
  main #alpha #content #hero #notes {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 15px;
  }
  main #alpha #content #hero #notes #note {
    margin-bottom: 0.625rem;
  }
  #alpha #sidebar #links #links-container div:nth-of-type(2) {
    padding-left: 25px;
  }
  body.single-comics #content .comics-river figure {
    width: calc(50% - 12px);
    margin-bottom: 25px;
  }
}
@media (max-width: 550px) {
  body.home #comics-hub {
    padding-top: 20px;
  }
  #promo {
    padding: 50px 0px 75px 0px;
  }
  #promo.pad-promo {
    padding-left: 15px;
    padding-right: 15px;
  }
  #promo #promo-content {
    padding: 25px 50px 25px 25px;
  }
  #promo #promo-content span {
    margin-bottom: 14px;
  }
  #promo #promo-content h1 {
    font-size: 2rem;
    margin-bottom: 14px;
  }
  #breadcrumbs {
    display: none;
  }
  main #alpha #content #hero .h1-max {
    margin-bottom: 0;
  }
  main #alpha #content #hero .h1-max h1 {
    margin-bottom: 10px;
  }
  main #alpha #content #hero span {
    font-size: 32px;
  }
  main #alpha #content #hero span.number {
    font-family: "Lato", Arial, sans-serif;
  }
  main #alpha #content #hero #notes #note {
    font-size: 0.8125rem;
  }
  main #alpha #content #hero #notes {
    margin-bottom: 5px;
  }
  body.single-comics #content .comics-river {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  main #alpha #content p {
    margin-bottom: 17px;
  }
  body.page-id-10 #comics-hub {
    padding-top: 1px;
  }
  #comics-hub #comics-hub__container {
    margin-top: 21px;
  }
  #comics-hub #comics-hub__container .comic-item .comic-item-top .comic-cover {
    font-size: 1.125rem;
  }
  #comics-hub #comics-hub__container .comic-item .comic-item-top .comic-cover span {
    font-size: 1.125rem;
  }
  body.single-comics #content .comics-river figure {
    width: 100%;
  }
}
/*# sourceMappingURL=main.css.map */