@font-face {
  font-family: "C";
  font-style: normal;
  font-weight: normal;
  src: url("https://files.cargocollective.com/c1657138/Tabasco.otf")
    format("opentype");
}

/* Cushing Std – multiple weights */

@font-face {
  font-family: "Cushing Std";
  font-style: normal;
  font-weight: 400; /* Book */
  src: url("https://files.cargocollective.com/c1657138/CushingStd-Book.ttf")
    format("truetype");
}

@font-face {
  font-family: "Cushing Std";
  font-style: normal;
  font-weight: 500; /* Medium */
  src: url("https://files.cargocollective.com/c1657138/CushingStd-Medium.ttf")
    format("truetype");
}

@font-face {
  font-family: "Cushing Std";
  font-style: normal;
  font-weight: 700; /* Bold */
  src: url("https://files.cargocollective.com/c1657138/CushingStd-Bold.ttf")
    format("truetype");
}

/* Tokens */

:root {
  --font-system: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif, "Sans Serif",
    Icons;

  --font-body: "Alte Haas Grotesk", -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans",
    "Helvetica Neue", sans-serif, "Sans Serif", Icons;

  /* Core palette */
  --color-bg: #ffffff;
  --color-page-bg: rgb(150, 237, 0);

  --color-text: #212121;
  --color-strong:  #212121;
  --color-muted: rgba(0, 0, 0, 0.35);

  --color-accent: #fe4d0d;

  /* Overlays / menus */
  --color-overlay: rgba(0, 0, 0, 0.85);
  --menu-bg: rgba(20, 20, 20, 0.95);
  --menu-link: rgba(255, 255, 255, 0.75);
  --menu-heading: rgba(255, 255, 255, 1);
  --menu-close: rgba(255, 255, 255, 0.4);

  --color-white: #fff;
  --color-black: #212121;
}

/* Base */

body {
  background-color: var(--color-bg);
  color: var(--color-text);
}

a:active {
  opacity: 0.7;
}

.page a.active {
  opacity: 0.4;
}

i,
em {
  font-style: italic;
}

b,
strong {
  font-weight: 600;

}

sub,
sup {
  position: relative;
  vertical-align: baseline;
}

sub {
  top: 0.3em;
}

sup {
  top: -0.4em;
}

s {
  text-decoration: line-through;
}

img {
  border: 0;
  padding: 0;
}

ul,
ol {
  margin: 0;
  padding: 0 0 0 1em;
}

blockquote {
  margin: 0;
  padding: 0 0 0 2em;
}

hr {
  background: var(--color-strong);
  border: 0;
  height: 5px;
  display: block;
}

.content img {
  float: none;
  margin-bottom: 0.5rem;
}

.gallery_image_caption {
  margin-top: 1.2rem;
  margin-bottom: 0.5rem;

  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.3;
  font-family: var(--font-system);

  color: var(--color-muted);
}

/* Loading */

.loading[data-loading] {
  position: fixed;
  bottom: 8px;
  left: 8px;
}

/* Editor styles */

[data-predefined-style="true"] bodycopy {
  font-size: 1.4rem;
  font-weight: 400; /* Book weight */
  line-height: 1.8;
  font-family: "Alte Haas Grotesk", Icons;
  color: var(--color-text);
  text-decoration: none;
  font-style: normal;
  letter-spacing: 0.02rem;
	font-variation-settings: 'slnt' 0, 'SRFF' 1;
}

/* Button-like links in bodycopy */

[data-predefined-style="true"] bodycopy a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;

  color: var(--color-text);
  background-color: transparent;
  text-decoration: none;

  padding: 1rem 2rem;
  border-radius: 0.5rem;
  border: 1px solid var(--color-strong);
  margin: 1rem 0;
  line-height: 3rem;
  transition: 0.2s ease all;
}

[data-predefined-style="true"] bodycopy a .icon {
  margin-right: auto;
}

[data-predefined-style="true"] bodycopy a .label {
  margin: 0 auto;
  text-align: center;
}

[data-predefined-style="true"] bodycopy a .arrow {
  margin-left: auto;
  transition: transform 0.2s ease;
}

[data-predefined-style="true"] bodycopy a:hover {
  border-color: var(--color-strong);
  background-color: var(--color-strong);
  color: var(--color-accent);
}

[data-predefined-style="true"] bodycopy a.project-requests {
  border-color: #212121;
  background-color: #212121;
  color: var(--color-accent);
}

[data-predefined-style="true"] bodycopy a.project-requests:hover {
  border-color: var(--color-strong);
  background-color: var(--color-strong);
  color: var(--color-accent);
}

bodycopy a.image-link,
bodycopy a.icon-link,
bodycopy a.image-link:hover,
bodycopy a.icon-link:hover {
  border-bottom: 0;
  padding-bottom: 0;
}

/* Headings / small */

[data-predefined-style="true"] h1 {
  font-family: "Bookmania", Icons;
  font-style: normal;
  font-weight: 400;
  margin: 0;
  padding: 0;
  font-size: 2.8rem;
  line-height: 1.4;
  letter-spacing: -0.12rem;
  color: var(--color-text);
}

[data-predefined-style="true"] h2 {
  font-size: 2.5rem;
  font-weight: 400; /* Book weight */
  line-height: 4.2rem;
  letter-spacing: -0.04rem;
  font-family: "Alte Haas Grotesk", Icons;

  margin: 0;
  padding: 0;
  color: var(--color-strong);
}

[data-predefined-style="true"] h2 a {
  color: inherit;
}

[data-predefined-style="true"] small {
  display: inline-block;

  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.3;
  font-family: var(--font-system);

  color: var(--color-muted);
}

[data-predefined-style="true"] small a {
  color: var(--color-strong);
  border-bottom-width: 0;
}

/* Layout / breakpoints */

[data-css-preset] .page {
  background-color: initial /*!page_bgcolor*/;
}

.mobile .page,
[data-css-preset].mobile .page {
  position: relative;
  min-height: 10px;
  max-width: 100%;
  width: 100%;
  background-color: transparent /*!page_bgcolor*/;
}

[data-css-preset] .container {
  margin: 0 auto /*!content_center*/;
  text-align: left /*!text_left*/;
}

[data-css-preset] body {
  background-color: var(--color-accent);/*!body_bgcolor*/;
}

[data-css-preset] .container_width {
  width: 50% /*!content_center*/;
}

[data-css-preset] .content_padding {
  padding: 4rem /*!main_margin*/;
}

[data-css-preset] text-limit {
  display: inline-block /*!text_width*/;
  max-width: 66rem /*!text_width*/;
}

/* Thumbnails */

div[thumbnails] {
  justify-content: flex-start;
}

[data-css-preset] .thumbnails {
  background-color: transparent /*!thumbnails_bgcolor*/;
}

[data-css-preset] .thumbnails_width {
  width: 100% /*!thumbnails_width*/;
}

[data-css-preset] [thumbnails-pad] {
  padding: 1rem /*!thumbnails_padding*/;
}

[data-css-preset] [thumbnails-gutter] {
  margin: -2rem /*!thumbnails_padding*/;
}

[data-css-preset] [responsive-layout] [thumbnails-pad] {
  padding: 0.5rem /*!responsive_thumbnails_padding*/;
}

[data-css-preset] [responsive-layout] [thumbnails-gutter] {
  margin: -1rem /*!responsive_thumbnails_padding*/;
}

.thumbnails .thumb_image {
  outline: 0 solid var(--ink-12);
  outline-offset: -1px;
}

.thumbnails .title {
  margin-top: 1.2rem;
  margin-bottom: 0.3rem;

  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.1;
  font-family: var(--font-system);

  color: var(--color-strong);
}

.thumbnails .tags {
  margin-top: 1.2rem;
  margin-bottom: 0.5rem;

  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.2;
  font-family: var(--font-system);

  color: var(--color-muted);
}

.thumbnails .tags a {
  border-bottom: 0;
  color: var(--color-muted);
  text-decoration: none;
}

.thumbnails .has_title .tags {
  margin-top: 0;
}

/* Site menu toggle */

[data-css-preset] #site_menu_button {
  position: fixed;
  top: 2rem /*!site_menu_button*/;
  right: 2rem /*!site_menu_button*/;
  padding: 6px;
  font-size: 28px /*!site_menu_button*/;
  line-height: 1;
  color: var(--ink-75);
  background: rgba(33, 32, 46, 0);
}

body.mobile #site_menu_button {
  margin: -6px;
  font-size: 34px;
}

#site_menu_button.custom_icon {
  width: 40px;
  height: auto;
}

#site_menu_button.active {
  display: none;
}

/* Site menu panel */

#site_menu {
  display: flex;
  justify-content: flex-start;
  max-width: 400px;
  min-width: 300px;
  padding: 20px 30px 90px;
  background: var(--menu-bg);

  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  font-family: var(--font-system);

  text-align: left;
}

body.mobile #site_menu {
  width: 100%;
}

#site_menu .page-link a,
#site_menu .set-link > a {
  color: var(--menu-link);
}

#site_menu .set-link > a {
  font-weight: 700;
}

#site_menu a:active {
  opacity: 0.7;
}

#site_menu a.active {
  opacity: 0.4;
}

#site_menu .close {
  display: none;
  font-size: 45px;
  line-height: 0.85;
  color: var(--menu-close);
}

body.mobile #site_menu .close {
  display: block;
  font-size: 50px;
  line-height: 1;
}

#site_menu .break {
  height: 28px;
}

#site_menu .indent {
  margin-left: 28px;
}

/* Shop button */

[data-css-preset] #shop_button {
  position: fixed;
  top: 2rem /*!shop_button*/;
  right: 2rem /*!shop_button*/;
  padding: 6px;
  font-size: 32px;
  line-height: 1;
  background: transparent;
  color: var(--color-strong);
  font-style: normal;
}

#shop_button.text {
  padding: 0;

  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  font-family: var(--font-system);

  color: var(--color-strong);
}

#shop_button.custom_icon {
  width: 40px;
  height: auto;
}

body.mobile #shop_button:not(.text) {
  margin: -6px;
  font-size: 36px;
}

/* Shop product widget */

.shop_product {
  position: relative;
  display: block;
  width: 100%;
  max-width: 22rem;
}

.shop_product .price {
  display: block;
  margin-bottom: 1rem;

  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  font-family: var(--font-system);

  color: var(--color-strong);
}

.shop_product .dropdown {
  display: inline-block;
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.7rem 2.5rem 0.7rem 1rem;

  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.2;
  font-family: var(--font-system);

  border: 1px solid var(--ink-20);
  background: var(--color-white)
    url(https://static.cargo.site/assets/images/select-arrows.svg) no-repeat
    right;
}

.shop_product .button {
  display: inline-block;
  flex: 0 0 50%;
  padding: 0.8rem 1rem 0.9rem;

  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  font-family: var(--font-system);

  text-align: left;
  background: rgba(0, 0, 0, 0.7);
  color: var(--color-white);
}

/* Image zoom */

.content img.image-zoom:active {
  opacity: 0.7;
}

/* Quick view */

[data-css-preset] .quick-view {
  width: 100% /*!quick_view_width*/;
  height: 100% /*!quick_view_height*/;
  padding: 2.5rem /*!quick_view_padding*/;
}

body.mobile .quick-view {
  width: 100%;
  height: 100%;
  margin: 0;
}

[data-css-preset] .quick-view-background {
  background: var(--color-overlay) /*!quick_view_bgcolor*/;
}

.quick-view-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  margin: 3.5rem 0;
  text-align: center;

  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.3;
  font-family: var(--font-system);

  color: var(--color-white);
  transition: opacity 100ms ease-in-out;
}

.quick-view-caption span {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.5);
}

/* Arrow icons */

.quick-view-navigation .left-arrow,
.quick-view-navigation .right-arrow,
.image-gallery-navigation .left-arrow,
.image-gallery-navigation .right-arrow,
.wallpaper-navigation .left-arrow,
.wallpaper-navigation .right-arrow {
  width: 36px;
  height: 36px;
}

.quick-view-navigation .left-arrow {
  left: 10px;
}

.quick-view-navigation .right-arrow {
  right: 10px;
}

.quick-view-navigation .left-arrow .inner-color,
.quick-view-navigation .right-arrow .inner-color,
.image-gallery-navigation .left-arrow .inner-color,
.image-gallery-navigation .right-arrow .inner-color,
.wallpaper-navigation .left-arrow .inner-color,
.wallpaper-navigation .right-arrow .inner-color {
  stroke: var(--color-white);
  stroke-width: 1.5px;
}

.quick-view-navigation .left-arrow .outer-color,
.quick-view-navigation .right-arrow .outer-color,
.image-gallery-navigation .left-arrow .outer-color,
.image-gallery-navigation .right-arrow .outer-color,
.wallpaper-navigation .left-arrow .outer-color,
.wallpaper-navigation .right-arrow .outer-color {
  stroke: rgba(0, 0, 0, 0.6);
  stroke-width: 2.5px;
}

.quick-view-navigation .close-button {
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
}

.quick-view-navigation .close-button .inner-color {
  stroke: var(--color-white);
  stroke-width: 1.5px;
}

.quick-view-navigation .close-button .outer-color {
  stroke: var(--color-black);
  stroke-width: 2.5px;
  opacity: 0.6;
}

/* Feed */

.feed .content_container .page {
  border-top: 0 dashed rgba(0, 0, 0, 0.2);
}

.feed .content_container .page_container:first-child .page {
  border-top: 0;
}

/* Audio player */

.audio-player {
  max-width: 36rem;
  height: 3.3rem;
  margin: 1px 1px 1em;

  background: var(--color-white);
  color: var(--ink-60);

  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.3;
  font-family: var(--font-system);

  text-align: left;

  outline: 1px solid var(--ink-15);
}

body.mobile .audio-player {
  max-width: 100%;
}

.audio-player .separator {
  width: 1px;
  background-color: var(--ink-15);
}

.audio-player .button {
  background: transparent;
  cursor: pointer;
  fill: var(--color-strong);
}

.audio-player .icon {
  width: 100%;
  margin: auto;
  padding: 30%;
  fill: var(--color-strong);
}

.audio-player .buffer {
  background: var(--ink-3);
}

.audio-player .progress {
  background: var(--ink-10);
}

.audio-player .progress-indicator {
  position: absolute;
  right: 0;
  width: 1px;
  height: 100%;
  border: 1px solid var(--ink-70);
  cursor: ew-resize;
}

.audio-player .note-icon {
  width: 3.8rem;
  height: 100%;
  padding: 1rem;
  fill: var(--ink-50);
}

.audio-player .current-time {
  padding-left: 1rem;
}

.audio-player .total-time {
  padding-right: 1rem;
}