@font-face {
  font-family: "MarcusCoaster";
  src: url("/assets/fonts/Marcuscoaster-Regular.otf");
  font-weight: normal;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("/assets/fonts/Source_Sans_Pro/SourceSansPro-Regular.ttf");
  font-weight: normal;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("/assets/fonts/Source_Sans_Pro/SourceSansPro-Italic.ttf");
  font-style: italic;
  font-weight: normal;
}
@font-face {
  font-family: "Source Sans Pro";
  src: url("/assets/fonts/Source_Sans_Pro/SourceSansPro-SemiBold.ttf");
  font-weight: 600;
}

html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, menu, nav, section, time, mark, audio, video, details, summary {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font-weight: normal;
	vertical-align: baseline;
	background: transparent;
}

main, article, aside, figure, footer, header, nav, section, details, summary {display: block;}

html {
	box-sizing: border-box;
	background-color: #fff;
  color: #45444C;
  font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  line-height: 1.5;
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.wrapper {
  flex: 1 0 auto;
}
.footer {
  flex-shrink: 0;
}
*,
*:before,
*:after {
	box-sizing: inherit;
}

img,
object,
embed {max-width: 100%; height: auto;}
blockquote, q {quotes: none;}
p {margin-bottom: 1.5em;}
ul, ol {margin: 0 0 1.5em 1.25em;}
h1, h2, h3, h4, h5, h6 {
	font-family: "MarcusCoaster", sans-serif;
	font-weight: normal;
	line-height: 1.2;
}
h1 {font-size: 1.5em;}
h2 {font-size: 1.25em;}
h3 {font-size: 1.125em;}
h4 {font-size: 1em;}
@media only screen and (min-width: 40rem) {
  h1 {font-size: 2em;}
	h1.h1-art {font-size: 1.5em;}
  h2 {font-size: 1.75em;}
  h3 {font-size: 1.5em;}
  h4 {font-size: 1.25em;}
	main {font-size: 1.25em;}
}
@media only screen and (min-width: 60rem) {
  h1 {font-size: 2.5em;}
}
a { color: inherit; text-decoration: none; }
a:hover { color: #000; }
a[href]:not([class]) { box-shadow: 0 2px 0 0 currentColor; transition: box-shadow 0.1s; }
a:visited {}
a[href]:not([class]):hover { box-shadow: 0 4px 0 0 currentColor; }
a:focus {}
a:active {}
strong {font-weight:bold;}

button {
	font-size: inherit;
	border: none;
}

select,
[type="text"],
[type="email"],
[type="search"],
[type="submit"],
textarea {
	background-color: #fff;
	/* border: 0.25rem solid #fff; */
	border: none;
	font-size: 1em;
	margin: 0;
	padding: 0.75em 1em;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
[type="submit"] {
  background-color: #e8830b; 	/* 66e4ba 9af3d5 */
}
[type="submit"]:focus {
	box-shadow: inset 0 0 0 3px #8f6924;
}
select:focus,
[type="text"]:focus,
[type="email"]:focus,
[type="search"]:focus,
textarea:focus {
	box-shadow: inset 0 0 0 3px #8f6924;
}
.input-tfs {
  display: none;
}
.signup-form {
  text-align: center;
}
.signup-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.signup-input,
.signup-button { margin-bottom: 0.25em; }
@media only screen and (min-width: 27rem) {
  .signup-input {
    border-radius: 2em 0 0 2em;
    width: 16em;
  }
  .signup-button { border-radius: 0 2em 2em 0; }
}
@media only screen and (min-width: 30rem) {
  .signup-input { width: 20em; }
}
.radio-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.radio-legend {
  margin-bottom: 0.25em;
  width: 100%;
}
.radio {
  display: flex;
  line-height: 1;
  margin: 0 0.5em 0.5em 0;
  position: relative;
}
.radio input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.radio-wrap {
  background-color: rgba(255,255,255,0.5);
  border-radius: 2em;
  border: 2px solid #afa69c;
  display: flex;
  padding: 0.5em 0.75em 0.5em 0.5em;
}
.radio-control {
  background: #fff;
  border: 2px solid #adadad;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 1.25em;
  width: 1.25em;
}
.radio input:checked+.radio-wrap {
  border-color: #3685a6;
}
.radio input:checked+.radio-wrap .radio-control {
  border-color: #3685a6;
}
.radio input:checked+.radio-wrap .radio-control::before {
  content: "";
  background: #3685a6;
  border-radius: 50%;
  height: 0.75em;
  width: 0.75em;
}
.radio-text {
  font-size: 90%;
  line-height: 1.25;
  margin-left: 0.5em;
}


.form-error {
  background-color: #d5aba2;
  background-image: url('/assets/images/form-error-bg.png');
  background-repeat: no-repeat;
  background-position: left center;
  color: #111;
  display: inline-block;
  padding: 4px 16px 4px 30px;
}
.form-success {
  background-color: #9DBB94;
  background-image: url('/assets/images/form-success-bg.png');
  background-repeat: no-repeat;
  background-position: right center;
  color: #111;
  display: inline-block;
  padding: 4px 30px 4px 16px;
}


code {
	background: rgba(255,255,255,0.5);
	padding: 5px;
	font-size: 0.9em;
	border-radius: 0.25em;
}






/* Content */
.site-header {
  background-color: #e2e8e9;
  padding: 1em calc(2% + 1em) 0.75em calc(2% + 1em);
  flex-wrap: wrap;
  align-items: center;
}
@media only screen and (min-width: 40rem) {
  .site-header { display: flex; padding: 1.5em calc(2% + 1em); }
}
.h1-logo { text-align: center; }
.bcc-logo {
  background-image: url('/assets/images/bcc-logo-horizontal-red2.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
  color: rgba(0,0,0,0);
  font-size: 9px;
  height: 40px;
  width: 134px;
  margin-right: 2rem;
}
@media only screen and (min-width: 46rem) {
  .bcc-logo { height: 60px; width: 200px; }
}
.header-home-link {
  display: block;
  height: 100%;
  opacity: 0;
}
.site-desc {
  color: #646E6C;
  line-height: 1.25;
  margin: 0;
  text-align: center;
}
.series-heading {
  font-size: 1.125em;
  margin: 0 2% 0.5em 2%;
}
@media only screen and (min-width: 40rem) {
  .series-heading {font-size: 1.5em;}
}
.top-series-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 0.5em;
}
.top-series-heading .series-heading {
  margin: 0 1em 0 0;
}
.subh2 {
  color: #6D7876;
  font-size: 0.75em;
  padding-left: 0.5em;
}

.site-menu {
  font-family: "MarcusCoaster", sans-serif;
  margin-top: 1em;
}
.menu-link {margin-right: 1em;}
@media only screen and (min-width: 40rem) {
  .site-menu { margin-top: 0.25em; }
}
@media only screen and (min-width: 46rem) {
  .site-menu {font-size: 1.25em;}
}

.button {
  display: inline-block;
  background-color: #fff;
  border: 2px solid #d6dddc;
  border-radius: 4px;
	padding: 0.5em 1em;
}
.button:hover,
.button:focus {
  border-color: #e8830b;
  color: #B36100;
}


.filters {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin: 0 2%;
}
.filter-layout {
  margin-left: 2em;
}
@media only screen and (min-width: 60rem) {
  .filter-layout { display: none; }
}
.filter-label {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.75em;
}
.layout-btn {
  background: #d5dbdb;
  height: 36px;
  width: 36px;
  position: relative;
}
.layout-btn.active {
  background: #afd5dd;
}
.layout-btn-expand {
  margin-left: 0.25em;
}
.layout-btn-compact::after {
  content: '';
  background: rgba(0,0,0,0.4);
  box-shadow: 16px 0 0 0 rgba(0,0,0,0.4), 0 16px 0 0 rgba(0,0,0,0.4), 16px 16px 0 0 rgba(0,0,0,0.4);
  height: 12px;
  width: 12px;
  position: absolute;
  top: 4px;
  left: 4px;
}
.layout-btn-expand::after {
  content: '';
  background: rgba(0,0,0,0.4);
  box-shadow: 0 16px 0 0 rgba(0,0,0,0.4);
  height: 12px;
  width: 28px;
  position: absolute;
  top: 4px;
  left: 4px;
}
@media only screen and (min-width: 44rem) { /* 704px */
  .layout-btn-compact::after {
    box-shadow: 8px 0 0 0 rgba(0,0,0,0.4), 16px 0 0 0 rgba(0,0,0,0.4), 24px 0 0 0 rgba(0,0,0,0.4),
                0 16px 0 0 rgba(0,0,0,0.4), 8px 16px 0 0 rgba(0,0,0,0.4), 16px 16px 0 0 rgba(0,0,0,0.4), 24px 16px 0 0 rgba(0,0,0,0.4);
    width: 4px;
  }
  .layout-btn-expand::after {
    box-shadow: 16px 0 0 0 rgba(0,0,0,0.4), 0 16px 0 0 rgba(0,0,0,0.4), 16px 16px 0 0 rgba(0,0,0,0.4);
    width: 12px;
  }
}
.controls {
  padding-top: 1em;
}
.play-pause-btn {
  background: #d5dbdb;
  color: #45444C;
  font-size: 0.875em;
  margin-bottom: 0;
  padding: 6px 10px;
}


.cards-margin {
  margin-left: 2%;
  margin-right: 2%;
}
.cards-wrap {
  padding: 1em 1em 2em 1em;
  margin: auto;
  max-width: 352px;
}
@media only screen and (min-width: 60rem) {
  .cards-wrap { padding: 3em 1em 4em 1em; }
}
.cards {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.5em;
  margin-left: 2%;
}
.card {
  margin-bottom: 1.5em;
  margin-right: 2%;
  max-width: 320px;
  width: 100%;
}
.cards-compact .card { width: 48%; }
.cards-compact.cards-wrap { max-width: 100%; }

@media only screen and (min-width: 44rem) { /* 704px */
  .cards-compact .card { width: 31.33%; }
  .cards-wrap { max-width: 700px; }
  .card { width: 49%; }
}
@media only screen and (min-width: 60rem) {
  .cards-compact.cards-wrap,
  .cards-wrap { max-width: 1394px; }
  .card { width: 31.33%; }
}
@media only screen and (min-width: 62.5rem) {
  .cards-compact.cards-wrap,
  .cards-wrap { max-width: 1848px; }
  .cards-compact .card,
  .card { width: 18%; }
}
.card-img {
  aspect-ratio: 1 / 1;
  background-color: #f1f0f0;
  position: relative;
}
.card-img img { display: block; }
.card-img-soon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-img-overlay {
  position: absolute;
  background: rgba(255,255,255,0.9);
  padding: 1em;
  margin: 4px;
  top: 0;
  left: 0;
}
.gif-cover {
  position: absolute;
}
/*
.card-img-gif::after {
  content: '';
  background-image: url('/assets/images/play-icon.svg');
  background-repeat: no-repeat;
  background-size: contain;
  height: 36px;
  width: 36px;
  bottom: 4px;
  left: 4px;
  position: absolute;
  opacity: 0.6;
} */
.card-img-gif:hover .gif-cover,
.card-img-gif:hover .gif-cover::after,
.card-img-gif:hover::after {
  /* display: none; */
}
.card-img-gif-play .gif-cover,
.card-img-gif-play .gif-cover::after,
.card-img-gif-play::after {
  display: none;
}
.card-message {
  background: #931b1d;
  color: #e3dfdc;
  padding: 0.25em 0.5em;
  line-height: 1.25;
  margin-top: 2px;
}
.card-message-label {
  font-size: 0.75em;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-right: 0.25em;
}
.card-desc {
  padding: 0.75em 0.5em 0.75em 0.5em;
}
.card-name {
  font-size: 1.em;
  margin-bottom:0;
}
@media only screen and (min-width: 40rem) {
  .card-name {font-size: 1.25em;}
}
.card-details {
  color: #717776;
  font-size: 0.9em;
  display: flex;
  flex-wrap: wrap;
  margin:0;
}
@media only screen and (max-width: 24rem) {
  .card-details {font-size: 0.75em;}
}
.card-num {
  margin-right: 1em;
}
.card-links {
  padding: 0 0.5em;
}
.card-link {
  display: inline-block;
  background-color: #fff;
  border: 2px solid #bcc7c5; /* d6dddc */
  border-radius: 2em;
	padding: 0.25em 1em 0.25em 1em;
}
.card-link:hover,
.card-link:focus {
  border-color: #e8830b;
  color: #B36100;
}
.card-link-primary {
  background-color: #e4f2f5;
  border-color: #3685a6;
  color: #3685a6;
}
.card-link-primary:hover {
  background-color: #f9f1e8;
}

.card-link-set {
  display: flex;
  flex-wrap: wrap;
}
.card-link-set .card-link {
  border-radius: 0;
  border-width: 2px 1px 2px 1px;
  padding: 0.25em 0.75em 0.25em 0.75em;
}
.card-link-set .card-link:first-child {
  border-radius: 2em 0 0 2em;
  border-left-width: 2px;
  padding-left: 1em;
}
.card-link-set .card-link:last-child {
  border-radius: 0 2em 2em 0;
  border-right-width: 2px;
  padding-right: 1em;
}
@media only screen and (max-width: 60rem) {
  .cards-compact .card-link-set .card-link {
    border-radius: 2em;
    border-width: 2px;
    margin: 0 2px 2px 0;
    padding: 0.15em 0.5em 0.15em 0.5em;
  }
}

/* Address page */
.addresses-wrap {}
.address-list {
  display: flex;
  flex-wrap: wrap;
}
.addy {
  margin-right: 1%;
  padding: 2px 0;
  width: 99%;
}
@media only screen and (min-width: 48rem) {
  .addy { width: 49%; }
}
@media only screen and (min-width: 70rem) {
  .addy { width: 32%; }
}
@media only screen and (min-width: 70rem) {
  .addy { width: 32%; }
}
@media only screen and (min-width: 92rem) {
  .addy { width: 24%; }
}
.collection-h1 { margin-bottom: 1em; }
.address-title {display: block; font-size: 0.75rem;}
@media only screen and (min-width: 25rem) {
  .address-title {font-size: 1rem;}
}
@media only screen and (min-width: 30rem) {
  .address-title {font-size: 1.25rem;}
}
.card-quantity {
  margin-left: 1em;
  color: #45444C;
}
.q0 {
  display: none;
}
.addy-award {
  display: inline-block;
  margin-right: 10px;
  background: #ffc74f;
  color: #6c521a;
  font-size: 1.25em;
  line-height: 1;
  padding: 0.5em 1em;
  border-radius: 6px;
}



.contain {
  margin-left: auto;
  margin-right: auto;
  /* max-width: 82rem;*/ /* 1280 + 2rem */
  max-width: 1394px;
  padding-left: 1rem;
  padding-right: 1rem;
}

.contain-edge {
  margin-left: auto;
  margin-right: auto;
  max-width: 80rem;
}

.measure {
  margin-left: auto;
  margin-right: auto;
  max-width: 38rem;
}

@media only screen and (min-width: 60rem) {
  .bigger-text { font-size: 120%; }
}

.signup {
  background:#ffd89c; /* #ffc770 */
  padding: 3em 1em;
}
@media only screen and (min-width: 40rem) {
  .signup { border-radius: 12em;}
}






.footer {
  background-color: #e2e8e9;
  padding: 3em 1em;
  text-align: center;
}
.footer-links a {
  margin: 0.25em;
}




/* Card Details Page */
.cdp-image-wrap {padding:2em 0;}
.cdp-image {display: block; margin: auto; max-height: 90vh;}

.cdp-info {max-width: 960px; margin: auto;}
.cdp-desc {display: flex; justify-content: space-between; margin-bottom: 3em;}
.cdp-about {margin-right: 3em;}
.cdp-details {flex-grow: 0; flex-shrink: 0; flex-basis: 13em;}
@media only screen and (max-width: 40rem) {
  .cdp-desc {display: block;}
  .cdp-about {margin-right: 0;}
}
.det-item {padding: 3px 0; border-bottom: 1px solid #ddd; }
.det-label {display: inline-block; width: 5em;}

.cdp-links-heading {font-size: 1.25em; margin-bottom: 0.25em;}
.cdp-links {display: flex; flex-wrap: wrap;}
.cdp-links-ext {margin-bottom: 1.5em;}
@media only screen and (min-width: 30rem) {
  .cdp-links-ext {margin-right: 3em;}
}

.btn-prev::before,
.btn-next::after {
    content: '';
    display: inline-block;
    height: 0.5em;
    width: 0.5em;
    transform: rotate(45deg);
    border: 2px solid currentColor;
    border-width: 0 0 2px 2px;
    margin-right: 0.5em;
    top: -0.05em;
    position: relative;
}
.btn-next::after {
    border-width: 2px 2px 0 0;
    margin-right: 0;
    margin-left: 0.5em;
}
.btn-prev:hover::before,
.btn-prev:focus::before,
.btn-next:hover::after,
.btn-next:focus::after {
  border-color: #B36100;
}

.cdp-hodlers {display: flex; flex-wrap: wrap;}
.cdp-hodler {width: 50%;}
@media only screen and (max-width: 47.5rem) {
  .cdp-hodler {width: 100%;}
}
.hodler-count { display: inline-block; font-size: 0.875em; min-width: 2.25em;}
.hodler-link:hover, .hodler-link:focus { color: #B36100; }
.not-found {padding:4em 1em; text-align:center; font-size: 1.5em;}



















/* Utility */
.screen-reader, .screen-reader-text {
    position: absolute !important;
    clip: rect(1px,1px,1px,1px);
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Emoji */
.stc-emoji {width: auto; height: 1em;}

/* Margin and Padding */
.mb0 { margin-bottom: 0; }
.mb1 { margin-bottom: 8px; }
.mb2 { margin-bottom: 16px; }
.mb3 { margin-bottom: 24px; }
.mb4 { margin-bottom: 32px; }
.mb5 { margin-bottom: 48px; }
.mb6 { margin-bottom: 64px; }
.mb7 { margin-bottom: 80px; }

@media only screen and (min-width: 40rem) {
    .mb5 { margin-bottom: 64px; }
    .mb6 { margin-bottom: 128px; }
    .mb7 { margin-bottom: 192px; }
}

.pt0 { padding-top: 0; }
.pt1 { padding-top: 8px; }
.pt2 { padding-top: 16px; }
.pt3 { padding-top: 24px; }
.pt4 { padding-top: 32px; }
.pt5 { padding-top: 48px; }
.pt6 { padding-top: 64px; }
.pt7 { padding-top: 80px; }

.pb0 { padding-bottom: 0; }
.pb1 { padding-bottom: 8px; }
.pb2 { padding-bottom: 16px; }
.pb3 { padding-bottom: 24px; }
.pb4 { padding-bottom: 32px; }
.pb5 { padding-bottom: 48px; }
.pb6 { padding-bottom: 64px; }
.pb7 { padding-bottom: 80px; }

@media only screen and (min-width: 40rem) {
    .pt5 { padding-top: 64px; }
    .pt6 { padding-top: 128px; }
    .pt7 { padding-top: 192px; }

    .pb5 { padding-bottom: 64px; }
    .pb6 { padding-bottom: 128px; }
    .pb7 { padding-bottom: 192px; }
}

.ph0 { padding-left: 0;    padding-right: 0; }
.ph1 { padding-left: 8px;  padding-right: 8px; }
.ph2 { padding-left: 16px; padding-right: 16px; }
.ph3 { padding-left: 24px; padding-right: 24px; }


















