<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/***2022 refresh, kinda messy since it's only temporary ************/

/* HEADER HIDING - all links out of store are hidden for now */
.nav-link, #menu, .menu-container {
  display: none !important;
}


/* CATEGORY PAGES */
body[id^="category"] .width-wrapper {
  max-width: 100%;
  width: 100%;
  padding: 0;
}

#store-content {
  display: flex;
}

.category-content {
  padding: 1vw;
  flex-basis: 1400px;
  margin: 0 auto auto;
}

.category-content h1 {
  border-bottom: 1px solid;
  margin-top: 0;
  font-size: 3em;
  text-align: left;
  padding: 0.25em;
}

.category-nav, .category-nav &gt; * {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.category-nav {
  padding: 1vw;
  background: #1d1d1d;
  position: relative;
  width: 250px;
  color: white;
}

.category-nav::before { /* this adds vertical backing behind the shrink-nav when you scroll */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 30vh;
  width: 100%;
  transform: translateY(-100%);
  background: inherit;
  z-index: -1;
}

.category-nav &gt; * + * {
  margin-top: 1em;
}

.category-nav a {
  display: inline-block;
  margin-left: 1em;
  margin-bottom: 0.2em;
  border-bottom: 1px solid transparent;
  font-size: 0.9em;
}

.category-nav a.active, .category-nav a:hover, .category-nav a:focus {
  color: white;
  border-bottom: 1px solid;
}

.category-nav .category-close {
  display: none;
  font-size: 2em;
  text-transform: uppercase;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

.btn.filter {
  display: none;
  line-height: unset;
  height: auto;
  margin: -10px 10px 10px;
  position: absolute;
  z-index: 2;
}

.item-name {
  font-size: 1rem;
}

@media only screen and (max-width: 1200px) {
  .category-nav .category-close {
    display: flex;
  }
  
  .btn.filter {
    display: block;
  }
  
  .category-nav, .category-content {
    transition: transform 200ms ease-in-out;
  }
  
  .category-nav {
    z-index: 2;
    width: auto;
    max-width: 70vw;
    padding: 1em;
    position: fixed;
    overflow-y: scroll;
    height: 100vh;
    width: 400px;
    top: 0;
    padding-top: 15vh;
    font-size: 1.2em;
    transform: translateX(-100%);
  }
  
  .category-nav-open {
    overflow: hidden;
  }
  
  .category-nav-open .category-nav {
    transform: translateX(0);
  }
  
  .category-nav-open .category-content {
    transform: translateX(50vw);
  }
  
  .category-content .product-grid {
    margin-top: 5vh;
  }
}

/* HOMEPAGE */
.release-content {
  max-width: 1250px;
  margin: auto;
}

.release-selection {
  color: white;
  background-color: #1d1d1d;
}

.release-selection h2 {
  font-style: italic;
  width: 100%;
  color: inherit;
  font-size: calc(1.5em + 1vw);
  padding: 1em;
  margin: 0;
  text-align: left;
}

.release-selection h2::after {
  content: "Swipe to view more!";
  display: block;
  font-size: 0.5em;
}

.release-grid {
  color: white;
  margin: auto;
  max-width: unset;
  width: 100%;
}

.release-grid {
  overflow-x: scroll;
  white-space: nowrap;
}

.release-box {
  display: inline-block;
  width: 60%;
  padding: 1em;
  cursor: pointer;
}

@media only screen and (min-width: 800px) {
  .release-selection h2::after {
    display: none;
  }
  
  .release-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: initial;
    white-space: initial;
  }
  
  .release-box {
    display: block;
    width: auto;
    flex-basis: 33%;
  }
}

@media only screen and (min-width: 1200px) {
  .release-box {
    flex-basis: 20%;
  }
}
  
.release-details &gt; span {
  display: block;
  text-align: center;
}

.release-details &gt; span:first-child {
  font-size: 1.1em;
  text-transform: uppercase;
}

.release-details &gt; span:last-child {
  opacity: 0.6;
  font-style: italic;
}

.release-display &gt; .release {
  display: none;
  position: relative;
  border-bottom: 10px solid #1d1d1d;
  background: white;
  z-index: 2;
}

.release-content {
  padding: 5vh 0;
}

.release-box.active-release {
  background: white;
  color: black;
}

.release-display &gt; .release.active-release {
  display: block;
}

.release-content h2 {
  font-size: calc(1.5em + 2vw);
}

h2 .subheading {
  font-style: italic;
}

h2 .subheading.out {
  display: block;
  font-size: 0.5em;
  line-height: 1em;
}

h2 .subheading:not(.out)::before {
  content: " - ";
}

.vid {
  max-width: 800px;
  margin: 5vh auto;
}

@media screen and (min-width: 64em) {
  .release .grid-sizer, .release .grid-item {
    width: calc(100% / var(--perRow));
  }
}















/********************************************/

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 5px;
}

.pagination a, .pagination .current, .pagination .inactive {
  display: inline-block;
  padding: calc( 5px + 0.25vw);
}

#scp-notice {
  top: unset !important;
  bottom: 0;
}

.grid-sizer {
  display: none;
}

#search-trigger {
  overflow: visible;
}

.logo.img-container img {
  max-width: 50vw;
}

nav#main-nav {
  max-width: 95vw;
  justify-content: center;
  align-items: center;
}

nav#main-nav .trigger-container, nav#main-nav a {
  flex-grow: 0;
}

@media only screen and (max-width: 400px) {
  nav#main-nav a {
    margin: 0 10px;
  }
}

aside#search ul li {
  position: relative;
  z-index: 1;
}

aside#search ul li:first-of-type {
  z-index: 2;
}

.triggers {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-container {
  display: none;
}

a.nav-link {
  margin: 0 10px;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: white;
  font-weight: 400;
  letter-spacing: 1px;
}

@media only screen and (max-width: 1024px) {
  nav#main-nav {
    justify-content: flex-start;  
  }
  
  nav#main-nav .logo-link {
    margin: 0;
  }
  
  .menu-container {
    display: block;
  }
  
  a.nav-link {
    display: none;
  }
}

@media only screen and (max-width: 700px) {
  .width-wrapper {
    max-width: 95vw;
    padding: 30px 0 15px;
  }
}

/* OVERRIDES */

.gc-noscroll header {
  z-index: -100;
}

.gc-noscroll .back-button {
  z-index: -100;
}

.loading .glass-case {
  transform: translateX(500vw);
}

.glass-case {
  margin: auto;
  width: 100% !important;
}

.gc-display-area {
  background-color: transparent;
  width: 100% !important;
  border: 0;
}

.gc-icon {
  background: #ffffff;
  border: #808080;
  color: #000;
  border-radius: 20px;
}

.gc-icon-next, .gc-icon-close::before, .gc-icon-next::before {
  right: 0;
}

.gc-icon-prev, .gc-icon-prev::before {
  left: 0;
}

.gc-icon-next::before, .gc-icon-prev::before .gc-icon-close::before {
  top: 0;
}

.gc-zoom-area {
  background-color: transparent;
  border-color: #808080;
}

.glass-case ul li {
  background-color: transparent;
  border: 0;
}

.glass-case ul li.gc-active {
  border: 2px solid #808080;
}

.glass-case ul li:hover, .glass-case ul li.gc-active:hover {
  border: 2px solid #000;
}

.glass-case ul li .gc-display-container img {
  width: 100% !important;
  height: auto !important;
}

/* SLICK */
.slick-slider {
  transition: opacity 0.2s ease-in-out;
}

.slick-prev {
  left: 0;
  z-index: 1;
  width: 50px;
  height: 100%;
}

.slick-next {
  right: 0;
  width: 50px;
  height: 100%;
}

.loading .slick-slider {
  opacity: 0;
}</pre></body></html>