@charset "UTF-8";
/* COLOR PALETTE */
@import "fontfiles.css";
@import "classes.css";
:root {
  --occWhite: #fffdf5;
  --occBlack: #001c24;
  --occTeal: rgb(0,144,158);
  --occRed: #ff3b00;
  --occYellow: #ffdd00;
  --occDarkGrey: #9e9e9e;
  --occGrey: #deddd7;
  --occLightTeal: #00c4c5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* GLOBAL TYPOGRAPHY */
:root {
  --bar-color: var(--occRed);
  --bar-textcolor: var(--occWhite);
  --size-small: 0.9rem;
  --size-base: 1.5rem;
  --size-xl: 300px;
  --pad-xsmall: .875rem;
  --pad-small: 1rem;
  --pad: 1.6rem;
  --pad-medium: 3rem;
  --pad-large: 5rem;
  --pad-section: 8rem;
  --max-width: 40rem;
  --max-content-width: 62rem;
  --margin: calc( ( 100% - var(--max-content-width) ) / 2 );
  --bar-height: 50px;
  --font-body: "Zocalo Text";
  --font-control: "Antenna";
  --font-header: "Salvo Sans";
  --border: 1px solid var(--occRed);
}
@media (max-width: 1200px) {
  :root {
    --max-content-width: 80%;
  }
}
@media (max-width: 950px) {
  :root {
    --max-content-width: 90%;
  }
}
@media (max-width: 500px) {
  :root {
    --max-content-width: 95%;
    --size-small: 10px;
  }
}

html {
  font-size: 16px;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
@media (max-width: 1200px) {
  html {
    font-size: 15px;
  }
}
@media (max-width: 950px) {
  html {
    font-size: 14px;
  }
}
@media (max-width: 500px) {
  html {
    font-size: 13px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: inherit;
  font-size: inherit;
}

body {
  color: var(--occBlack);
  background: var(--occWhite);
}

body.fouc {
  visibility: hidden;
}

/* ==========================
TYPOGRAPHY
============================= */
.layout--page, .layout--news .news-list-item, body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.5;
}

.layout--page article .edit-switch strong, .layout--page article h2, .layout--page article h1, .edit-options .option-header, #edit-toggler {
  font-family: var(--font-header);
  font-weight: 700;
}

.post-title {
  font-size: 7rem;
}

.form button[type=submit], .font h2, .meta, .vfmarker {
  font-size: var(--size-small);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-family: var(--font-control);
  font-weight: 700;
  line-height: 1.2;
}

@font-face {
  font-family: "OCC Arrow";
  src: url("../arrows/OCCWebArrows-VF.woff2") format("woff2-variations");
  font-weight: normal;
  font-style: normal;
}
a {
  color: var(--occRed);
  text-decoration: none;
}

a:hover {
  color: var(--occTeal);
}

::selection {
  background: var(--occTeal);
  color: var(--occWhite);
}

.grey, .grey a {
  color: var(--occDarkGrey);
}

.content [data-style=italic], #font-detail[data-style=italic] {
  font-style: italic;
}

.post-list em, .content em {
  font-style: normal;
}

/* ==========================
STRUCTURES
============================= */
header, #font-drawer {
  color: var(--occWhite);
  left: 0;
  width: 100vw;
}
header:hover, #font-drawer:hover {
  cursor: pointer;
}
header a, #font-drawer a {
  color: var(--occWhite);
}
header h1, #font-drawer h1 {
  display: block;
  margin: auto;
  font-size: var(--size-base);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 14px var(--pad-small) 0;
  text-align: center;
}

header {
  background: var(--bar-color);
}
header h1 {
  height: 100%;
}
header a:hover {
  color: var(--occYellow);
}
header .title-bar {
  position: fixed;
  top: 0;
  width: 100vw;
  height: var(--bar-height);
  background: var(--occRed);
  z-index: 400;
  transition: height 200ms linear;
}

.vf-responsive {
  font-family: "Magmatic VF";
  --wdth: 150;
  --wght: 900;
  --XHGT: 0;
  font-variation-settings: "wdth" var(--wdth), "wght" var(--wght), "XHGT" var(--XHGT);
}

header:hover .title-bar {
  height: 60px;
}

#font-drawer:hover {
  transform: translateY(-10px);
}

.layout--font .site-header.expanded .vf-header {
  width: 100%;
}
@media screen and (max-width: 500px) {
  .layout--font .vf-header .fullname {
    display: none;
  }
}

.layout--foundry article, .layout--font #font-detail {
  padding: var(--pad-section) 0;
  margin: auto;
  max-width: var(--max-content-width);
}

.cols {
  display: flex;
  align-items: flex-start;
}

.col {
  margin-right: var(--pad-small);
}

.col:last-child {
  margin-right: 0;
}

#occupant_o {
  width: 50px;
}
#occupant_o .svg_o {
  fill: var(--occWhite);
}

.fixedPosition {
  overflow: hidden;
}

/* ==========================
NAVIGATION
============================= */
nav li a {
  position: relative;
}

.soon {
  opacity: 0.5;
}

#svg_soon {
  width: 200px;
  position: absolute;
  top: -20px;
  right: -100px;
}
#svg_soon .cls-1 {
  fill: var(--occYellow);
}
#svg_soon .cls-2 {
  fill: var(--occRed);
}

header[data-expanded] .main-nav {
  transform: translateY(calc(100vh + 50px));
}

nav.main-nav {
  z-index: 300;
  background: var(--occRed);
  text-align: center;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 100px);
  width: 100vw;
  top: -100vh;
  transition: transform 300ms ease-in-out;
}
nav.main-nav ul {
  list-style-type: none;
  font-family: "Magmatic VF";
  --wdth: 150;
  --wght: 800;
  --XHGT: 0;
  font-variation-settings: "wdth" var(--wdth), "wght" var(--wght), "XHGT" var(--XHGT);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 16vh;
  line-height: 0.9;
  width: 100%;
}
nav.main-nav .nav-icons {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 500px) {
  nav.main-nav .nav-icons {
    bottom: 10%;
  }
}
nav.main-nav #trial {
  display: block;
  position: absolute;
  left: 20px;
  bottom: 5px;
  right: auto;
  top: auto;
}
nav.main-nav #trial .flaskicon {
  width: 35px;
}
nav.main-nav .controls-fill {
  fill: var(--occWhite);
}

/* ==========================
FONT DRAWER
============================= */
.bar-toggle {
  right: 1rem;
  position: absolute;
  top: 10px;
}

#font-drawer {
  position: fixed;
  z-index: 350;
  top: calc(100vh - var(--bar-height));
  height: calc(100vh - var(--bar-height));
  transition: transform 250ms ease-in-out;
  background: var(--occTeal);
  padding-bottom: var(--bar-height);
}
#font-drawer h1 {
  height: calc(var(--bar-height) + 1px);
  border-bottom: 1px solid var(--occWhite);
}
#font-drawer .accordion-toggle {
  float: right;
}
#font-drawer .accordion-toggle::after, #font-drawer .font-drawer .bar-toggle:after {
  content: "+";
}
#font-drawer .scroll {
  max-height: 0;
  overflow: auto;
}
#font-drawer[data-expanded] {
  transform: translateY(calc(-100vh + 100px));
}
#font-drawer[data-expanded] .scroll {
  max-height: 100%;
}
#font-drawer[data-expanded] .font-card .accordion-expanded {
  height: 0px;
  overflow: hidden;
}
#font-drawer[data-expanded] .font-card [data-expanded] .accordion-toggle::after {
  content: "–";
}
#font-drawer[data-expanded] .font-card [data-expanded] .accordion-expanded {
  height: 100%;
}

.font-card {
  border-top: 1px solid var(--occWhite);
  padding: 0.2rem var(--pad-small) 0;
  min-height: 50px;
  overflow: hidden;
}
@media (max-width: 500px) {
  .font-card .cols {
    display: block;
  }
}
.font-card .col {
  flex: 1;
}
.font-card .description {
  flex: 1;
}
.font-card .description .excerpt {
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.25px;
  font-size: 1rem;
}
.font-card .excerpt {
  margin-top: var(--pad-small);
}
.font-card .reps {
  display: block;
  flex: 1;
  font-size: 10rem;
  text-align: center;
  line-height: 1;
  margin-bottom: var(--pad-small) -large;
}
@media (max-width: 950px) {
  .font-card .reps {
    flex: none;
    font-size: 8rem;
  }
}
@media (max-width: 500px) {
  .font-card .reps {
    font-size: 5rem;
    text-align: left;
  }
}
.font-card a:hover {
  color: var(--occWhite);
}
.font-card a.link:hover {
  color: var(--occYellow);
}
.font-card .meta {
  margin-bottom: 1.5rem;
}
.font-card .meta p {
  margin-bottom: 1em;
}
.font-card:first-child {
  border-top: 0;
}
.font-card .drawer-title {
  font-size: 30px;
  line-height: 40px;
}
.font-card[data-appliedfont=occupant-oldstyle-VF] .drawer-title {
  line-height: 1.6;
}

.vfmarker {
  color: var(--occYellow);
  margin-left: 2em;
  position: relative;
  top: -4px;
}

/* ==========================
GLOBAL
============================= */
html {
  scroll-behavior: smooth;
}

main {
  margin: 0;
  padding: 0;
}

.layout--home main, .layout--default main, .layout--articles main, .layout--news main {
  max-width: none;
  margin: 50px 0;
}

/* ==========================
HOMEPAGE
============================= */
.hero {
  --home-bgcolor: var(--occWhite);
  --home-captioncolor: var(--occBlack);
  height: calc(100vh - 100px);
  background-color: var(--home-bgcolor) !important;
  position: relative;
  overflow: hidden;
}

#amira-feature {
  font-family: "Amira 2 VF";
  height: 100%;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.amira-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.amira-bg .layer1, .amira-bg .layer2 {
  background-image: url("../images/home/amira-bg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: color-burn;
}
.amira-bg .layer1 {
  animation: sticks 2s steps(2, start) infinite;
}
.amira-bg .layer2 {
  transform: translateX(3%);
  opacity: 0.5;
  animation: sticks 1s steps(2, end) infinite alternate;
}

@keyframes sticks {
  0% {
    transform: translateX(6%);
  }
  100% {
    transform: translateX(0%);
  }
}
#popup {
  position: relative;
  z-index: 2;
  text-align: center;
  font-weight: 400;
  padding: 3rem 4rem;
}

.feature-link {
  display: block;
}

.font-feature {
  font-size: 150px;
  font-variation-settings: "wght" 700;
  line-height: 1;
  letter-spacing: -0.03em;
}
.font-feature a {
  color: var(--home-captioncolor) !important;
}
.font-feature a:hover {
  color: var(--occRed) !important;
}
@media screen and (max-width: 800px) {
  .font-feature {
    font-size: 16vw;
  }
}

.font-feature-caption {
  color: var(--home-captioncolor);
  font-variation-settings: "wght" 600;
  cursor: pointer;
}
.font-feature-caption a {
  color: var(--occRed) !important;
}

#down-arrow {
  position: absolute;
  bottom: 0px;
  display: block;
  width: 100%;
  height: var(--bar-height);
  text-align: center;
  font-family: var(--font-header);
  font-weight: 700;
  transform: rotate(180deg);
  font-size: 40px;
  line-height: 2.2;
}
#down-arrow:hover {
  cursor: pointer;
}

#posts {
  visibility: hidden;
  position: relative;
  top: -50px;
  height: 0;
  display: block;
}

.post-list .row {
  display: flex;
  flex-wrap: nowrap;
  border-top: var(--border);
}
.post-list .post-item {
  position: relative;
  list-style-type: none;
  width: 100vw;
  overflow-x: hidden;
  overflow-y: hidden;
  height: 180px;
  width: auto;
  border-right: var(--border);
  font-size: 120px;
  line-height: 1.2;
}
@media (max-width: 1200px) {
  .post-list .post-item {
    font-size: 68px;
    height: 125px;
  }
}
@media (max-width: 500px) {
  .post-list .post-item {
    height: 100px;
  }
}
@media (max-width: 500px) {
  .post-list .post-item {
    border-right: 0;
    height: 80px;
  }
  .post-list .post-item:hover {
    background: none;
  }
  .post-list .post-item h2 {
    font-size: 3.6rem;
    padding-left: 10px;
  }
  .post-list .post-item .meta {
    left: var(--pad-xsmall);
  }
}
.post-list h2::-webkit-scrollbar {
  width: 0px;
  background: transparent; /* make scrollbar transparent */
}
.post-list h2 {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
  padding: 0.25rem var(--pad-small) 0 var(--pad-small);
  margin: 0;
  white-space: nowrap;
}
.post-list .meta {
  position: absolute;
  bottom: 0px;
  left: var(--pad-small);
  white-space: nowrap;
}
@media (max-width: 500px) {
  .post-list .news-item {
    display: none;
  }
}

.post-link {
  display: block;
}

.row:nth-child(2n) .post-item {
  order: 2;
  border-right: 0;
}
.row:nth-child(2n) .news-item {
  order: 1;
  border-right: var(--border);
}

.post-item {
  flex-grow: 1;
}
.post-item h2 {
  color: var(--occBlack);
}
.post-item .meta {
  color: var(--occTeal);
}
.post-item h3 {
  font-family: var(--font-body);
}

.news-item {
  --news-fontsize: 120;
  --news-leading: 1.3;
  position: relative;
  flex-shrink: 0;
}
.news-item h2 {
  color: var(--occRed);
  overflow: visible;
  font-size: calc(var(--news-fontsize) * 1px);
  line-height: var(--news-lineheight);
}
@media (max-width: 1200px) {
  .news-item h2 {
    font-size: calc(var(--news-fontsize) * 0.58px);
  }
}
.news-item h3 {
  display: none;
  font-family: "Zocalo Text";
  max-width: 18em;
  font-weight: 700;
  padding: 36px 26px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
}
@media (max-width: 1200px) {
  .news-item h3 {
    padding: 13px 22px;
    font-size: 15px;
  }
}

body:not(.tester-active) .post-item:hover {
  background: var(--occYellow);
}

body:not(.tester-active) .news-item:hover h3 {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  color: var(--occRed);
}
body:not(.tester-active) .news-item:hover h2 {
  visibility: hidden;
}

.layout--articles .post-list .post-item {
  border-right: 0;
}

.home-news-list {
  display: none;
  padding: 4px var(--pad-xsmall);
  border-top: 1px solid var(--occRed);
}
@media (max-width: 500px) {
  .home-news-list {
    display: block;
  }
}
.home-news-list .mobile-news-item {
  display: flex;
}
.home-news-list .mobile-news-item h2 {
  width: 70px;
  margin-right: 1rem;
  font-family: var(--font-header);
  font-variant-numeric: tabular-nums;
  -moz-font-feature-settings: "lnum";
  -webkit-font-feature-settings: "lnum";
  font-feature-settings: "lnum";
}
.home-news-list .mobile-news-item h2:hover {
  visibility: visible;
}
.home-news-list .mobile-news-item h3 {
  position: static;
}
.home-news-list .mobile-news-item h2, .home-news-list .mobile-news-item h3 {
  font-weight: 700;
  font-size: 15px;
  text-transform: none;
  letter-spacing: 0;
}

/* ==========================
NEWS PAGE
============================= */
.layout--news article p {
  margin: 0;
}
.layout--news .news-list {
  margin: 0;
}
.layout--news .news-list-item {
  min-height: 25vh;
  list-style-type: none;
  border-bottom: var(--border);
  border-color: var(--occTeal);
  display: grid;
  grid-template-columns: 2fr 2fr 3fr 2fr;
  grid-template-rows: min-content;
}
@media (max-width: 950px) {
  .layout--news .news-list-item {
    grid-template-rows: auto auto auto 1fr;
    padding: var(--pad-small);
  }
  .layout--news .news-list-item .news-header, .layout--news .news-list-item .news-title, .layout--news .news-list-item .news-content, .layout--news .news-list-item .news-location {
    grid-column-start: 1;
    grid-column-end: 5;
    padding: 0;
    font-size: 0.9em;
    grid-row-end: span 1;
  }
  .layout--news .news-list-item .news-title {
    grid-row-start: 2;
  }
  .layout--news .news-list-item .news-location {
    grid-row-start: 3;
  }
  .layout--news .news-list-item .news-content {
    padding-top: 0.5em;
    grid-row-start: 4;
    grid-row-end: 5;
  }
}
.layout--news .news-list-item.cancelled {
  opacity: 0.4;
}
.layout--news .news-list-item:last-child {
  border-bottom: 0;
}
.layout--news .year-header {
  background: var(--occWhite);
  color: var(--occBlack);
  padding: var(--pad-small);
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  position: sticky;
  position: -webkit-sticky;
  top: 50px;
  z-index: 50;
  border-bottom: var(--border);
}
.layout--news .news-header {
  padding: var(--pad-small);
  grid-row-start: 1;
  grid-row-end: 3;
}
.layout--news .year {
  display: none;
}
.layout--news .news-cat {
  text-transform: uppercase;
}
.layout--news .news-title {
  padding-top: var(--pad-small);
  text-transform: none;
  letter-spacing: 0;
  width: 85%;
  margin-bottom: 0;
}
.layout--news .news-content {
  padding: var(--pad-small) 0;
}
.layout--news .news-content p {
  max-width: 30em;
}
@media (max-width: 1200px) {
  .layout--news .news-title, .layout--news .news-content {
    grid-column-start: 2;
    grid-column-end: 4;
    width: 90%;
  }
  .layout--news .news-title h3, .layout--news .news-content h3 {
    padding-bottom: 0;
  }
  .layout--news .news-location {
    grid-column-start: 4;
    grid-row-start: 1;
    grid-row-end: 3;
  }
}
.layout--news .news-location {
  padding-top: var(--pad-small);
}
.layout--news .news-location p {
  width: 80%;
}
.layout--news a.meta {
  display: inline-block;
  margin: 0;
  margin-top: 1em;
}
.layout--news .anchor {
  display: block;
  position: relative;
  visibility: hidden;
  top: -90px;
}
.layout--news .highlight {
  animation: highlight 1s ease-in-out 1 forwards;
}

@keyframes highlight {
  0% {
    background-color: transparent;
  }
  25% {
    background-color: var(--occYellow);
  }
  75% {
    background-color: var(--occYellow);
  }
  100% {
    background-color: transparent;
  }
}
/* ==========================
ARTICLE VIEW
============================= */
article .intro {
  font-size: 2rem;
  line-height: 1.2;
  margin: 1.5rem 0;
  max-width: var(--max-content-width);
}

.post-title {
  line-height: 1;
  width: 95%;
}
@media (max-width: 950px) {
  .post-title {
    font-size: 6rem;
  }
}

article {
  line-height: 1.5;
  font-variant-numeric: oldstyle-nums;
  -moz-font-feature-settings: "onum";
  -webkit-font-feature-settings: "onum";
  font-feature-settings: "onum";
}
article .intro {
  max-width: var(--max-width);
  width: 90%;
}
@media (max-width: 1200px) {
  article .intro {
    width: 100%;
    max-width: var(--max-content-width);
  }
}
article h1, article h2, article h3, article p, article figcaption {
  transition: background 100ms ease-in-out;
}
article .post-body > p:first-child {
  margin-top: 1em;
}
article p {
  margin-bottom: 1em;
  max-width: var(--max-width);
}
article .image-caption {
  margin: 0.5rem 0 1.5rem 0;
}
article video {
  width: 100%;
}
article img {
  max-width: 100%;
  display: block;
}
article p + blockquote {
  margin-top: var(--pad-small);
}
article blockquote > p {
  margin-left: var(--pad);
  margin-right: var(--pad);
  max-width: calc(var(--max-width) - 2 * var(--pad));
  font-size: 0.9em;
}
article ul {
  margin: var(--pad-small) 0 var(--pad-small) 2rem;
}

.tester-active.layout--home .row a, .tester-active.layout--articles .row a, .tester-active article {
  cursor: url("../icons/pen.svg") 1 31, auto;
}

.content p.meta {
  color: var(--occTeal);
}

.meta {
  margin: var(--pad-small) 0;
  color: var(--occRed);
  white-space: nowrap;
  font-style: normal;
}

.layout--font .post-title + .meta {
  white-space: normal;
}
.layout--font .post-title + .meta .link {
  padding-bottom: var(--pad-xsmall);
}

.date, .tags {
  display: inline-block;
}

.tags {
  list-style-type: none;
}
.tags li {
  display: inline-block;
}

figure {
  margin: auto;
  margin-bottom: var(--pad-medium);
}

.layout--blog article {
  position: relative;
  height: calc(100vh - 100px);
}
@media (max-width: 1200px) {
  .layout--blog article {
    max-width: var(--max-content-width);
    margin: auto;
    height: 100%;
    position: relative;
  }
}
.layout--blog section.cover, .layout--blog section.body {
  flex: 1;
  position: absolute;
  height: calc(100vh - 100px);
  top: 50px;
}
@media (max-width: 1200px) {
  .layout--blog section.cover, .layout--blog section.body {
    border-right: 0;
    width: auto;
    position: static;
    height: auto;
    padding: 0;
    overflow: hidden;
  }
}
@media (max-width: 1200px) {
  .layout--blog section.cover {
    padding-top: var(--pad-large);
  }
}
.layout--blog .cover {
  left: 0;
  width: 50vw;
  padding-top: var(--pad);
  padding-left: var(--pad-medium);
  position: relative;
  overflow-y: auto;
}
.layout--blog .cover h1 {
  margin-top: 1rem;
  hyphens: auto;
}
.layout--blog .cover .meta {
  white-space: normal;
}
.layout--blog .body {
  overflow-y: auto;
  left: 50%;
  width: 50%;
  padding-top: var(--pad-medium);
}
.layout--blog .body .post-nav {
  max-width: var(--max-width);
  margin-bottom: 3em;
}
.layout--blog figure {
  margin-left: 0;
  width: 80%;
  max-width: var(--max-width);
}
.layout--blog #site-footer {
  bottom: -50px;
}

.layout--foundry article h1, .layout--foundry article h2, .layout--foundry article h3, .layout--foundry article p.meta, .layout--foundry article .intro {
  text-align: center;
  max-width: var(--max-width);
  margin: auto;
}
.layout--foundry article h2 {
  margin-top: var(--pad-medium);
  margin-bottom: var(--pad-small);
}
.layout--foundry article h3 {
  text-align: left;
}
.layout--foundry article .intro {
  margin-top: var(--pad-large);
  margin-bottom: var(--pad-large);
}
.layout--foundry article p.meta {
  margin-top: var(--pad-small);
}
.layout--foundry article p {
  margin: auto;
  margin-bottom: 1em;
}
.layout--foundry article figure img {
  width: 100%;
}
.layout--foundry article .image-caption {
  text-align: center;
}

/* ==========================
TYPE DETAIL VIEW
============================= */
:root {
  --liga: 0;
  --clig: 0;
  --smcp: 0;
  --onum: 0;
  --tnum: 0;
  --lnum: 0;
  --calt: 0;
  --zero: 0;
  --unic: 0;
  --locl: 0;
  --ss01: 0;
  --ss02: 0;
  --ss03: 0;
  --ss04: 0;
  --ss05: 0;
  --ss06: 0;
  --ss07: 0;
  --ss08: 0;
  --ss09: 0;
  --ss10: 0;
  --ss11: 0;
  --ss12: 0;
  --ss13: 0;
  --ss14: 0;
  --ss15: 0;
  --ss16: 0;
  --ss17: 0;
  --ss18: 0;
  --ss19: 0;
  --ss20: 0;
  --swsh: 0;
}

.font h1 {
  text-align: left;
}
.font h2 {
  color: var(--occTeal);
  margin-bottom: var(--pad-small);
  font-style: normal;
}

.font {
  --size: 2rem;
  --leading: 1.1;
  font-size: var(--size);
}

.summary {
  line-height: var(--leading);
  font-variant-numeric: oldstyle-nums;
  --onum: 1;
  margin-bottom: var(--pad-large);
}
@media (max-width: 950px) {
  .summary {
    font-size: 0.8em;
  }
}

.styles {
  line-height: 1.25;
  font-style: normal;
}
.styles .cols div {
  width: 49%;
}

.style-category {
  --size: .8em;
  font-size: var(--size);
  margin-bottom: var(--pad-small);
}

.no-italic.styles .cols div {
  width: 100%;
}

.category {
  margin-bottom: var(--pad-large);
  display: flex;
  flex-wrap: wrap;
}

.try {
  overflow-x: hidden;
  overflow-y: hidden;
  margin-bottom: 4rem;
  font-size: var(--size-xl);
  line-height: 1.1;
  letter-spacing: 0;
  width: 99%;
}
.try em {
  padding-left: 0.1em;
}
.try:hover {
  color: var(--occTeal);
}

.layout--font .modify {
  background: transparent !important;
}

[contenteditable^=true]:focus {
  outline: none;
}

[data-style=italic] .roman-only {
  display: none;
}

.italic-only {
  display: none;
}

[data-style=italic] .italic-only {
  display: block;
}

.glyph-box {
  border: 1px solid var(--occGrey);
  max-width: 55px;
  max-height: 55px;
  width: 12.5vw;
  height: 12.5vw;
  margin-left: -1px;
  margin-bottom: -1px;
  text-align: center;
  vertical-align: middle;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.glyph-box:hover {
  color: var(--occTeal);
  cursor: pointer;
}

.glyph {
  font-size: 30px;
  display: block;
  font-feature-settings: "liga" var(--liga), "smcp" var(--smcp), "onum" var(--onum), "tnum" var(--tnum), "lnum" var(--lnum), "calt" var(--calt), "zero" var(--zero), "unic" var(--unic), "locl" var(--locl), "ss01" var(--ss01), "ss02" var(--ss02), "ss03" var(--ss03), "ss04" var(--ss04), "ss05" var(--ss05), "ss06" var(--ss06), "ss07" var(--ss07), "ss08" var(--ss08), "ss09" var(--ss09), "ss10" var(--ss10), "ss11" var(--ss11), "ss12" var(--ss12), "ss13" var(--ss13), "ss14" var(--ss14), "ss15" var(--ss15), "ss16" var(--ss16), "ss17" var(--ss17), "ss18" var(--ss18), "ss19" var(--ss19), "ss20" var(--ss20), "swsh" var(--swsh);
}

#glyph-zoom {
  position: fixed;
  z-index: 80;
  font-size: 55vh;
  color: var(--occTeal);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -45%);
  line-height: 2;
  width: 100%;
  text-align: center;
  pointer-events: none;
}
@media (max-width: 500px) {
  #glyph-zoom {
    font-size: 360px;
  }
}

.ligatures {
  font-variant-ligatures: common-ligatures;
  --liga: 1;
  --clig: 1;
}

.sc {
  font-variant-caps: small-caps;
  --smcp: 1;
}

.onum {
  font-variant-numeric: oldstyle-nums;
  --onum: 1;
}

.tnum {
  font-variant-numeric: tabular-nums;
  --tnum: 1;
}

.lnum {
  font-variant-numeric: lining-nums;
  --lnum: 1;
}

.calt {
  font-variant-ligatures: contextual;
  --calt: 1;
}

.zero {
  --zero: 1;
}

.unic {
  --unic: 1;
}

.locl {
  --locl: 1;
}

.ss01 {
  --ss01: 1;
}

.ss02 {
  --ss02: 1;
}

.ss03 {
  --ss03: 1;
}

.ss04 {
  --ss04: 1;
}

.ss05 {
  --ss05: 1;
}

.ss06 {
  --ss06: 1;
}

.ss07 {
  --ss07: 1;
}

.ss08 {
  --ss08: 1;
}

.ss09 {
  --ss09: 1;
}

.ss10 {
  --ss10: 1;
}

.ss11 {
  --ss11: 1;
}

.ss12 {
  --ss12: 1;
}

.ss13 {
  --ss13: 1;
}

.ss14 {
  --ss14: 1;
}

.ss15 {
  --ss15: 1;
}

.ss16 {
  --ss16: 1;
}

.ss17 {
  --ss17: 1;
}

.ss18 {
  --ss18: 1;
}

.ss19 {
  --ss19: 1;
}

.ss20 {
  --ss20: 1;
}

.swash {
  --swsh: 1;
}

[lang=ro], [lang=bg] {
  font-feature-settings: "aalt" 1, "locl" 1;
}

.inline {
  margin-top: 0;
  display: inline-block;
}

#ss-switch {
  cursor: pointer;
}
#ss-switch svg {
  display: block;
}
#ss-switch svg .flip-switch-st {
  fill: var(--occTeal);
}
#ss-switch svg .flip-switch {
  fill: var(--occYellow);
}

.onoffswitch-checkbox + .onoffswitch-label #flip_on {
  display: none;
}

.onoffswitch-checkbox:checked + .onoffswitch-label #flip_on {
  display: block;
}

.onoffswitch-checkbox:checked + .onoffswitch-label #flip_off {
  display: none;
}

#ss-switch svg#flip_off .flip-switch {
  fill: var(--occWhite);
}

.font-footer .meta {
  color: var(--occBlack);
  white-space: normal;
}

[data-series=Serge] #tryit {
  padding-left: 0.1em;
}

#pageid-occupant-oldstyle .post-title {
  font-size: 5rem;
}

.quiosco_regular .summary {
  text-indent: -0.5em;
}

@media screen and (max-width: 500px) {
  .layout--font [data-series=Pentameter] .post-title {
    font-size: 46px;
  }
}
/* ==========================
TESTER MODAL
============================= */
#tester {
  --width-toggler: 150px;
}
@media (max-width: 1200px) {
  #tester {
    --width-toggler: 60px;
  }
}
@media (max-width: 500px) {
  #tester {
    --width-toggler: 40px;
  }
}

#edit-toggler {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  text-align: right;
  padding: 9px 10px 0 12px;
  width: var(--width-toggler);
  height: calc(var(--bar-height) - 1px);
  background: var(--bar-color);
  cursor: pointer;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 550;
}
#edit-toggler:hover #edit-indicator {
  display: inline-block;
}
@media (max-width: 1200px) {
  #edit-toggler:hover #edit-indicator {
    display: none;
  }
}
@media (max-width: 500px) {
  #edit-toggler {
    padding: 9px 5px;
  }
}

#edit-indicator, .edit-switch {
  display: inline-block;
}

#edit-indicator {
  position: relative;
  top: -5px;
  display: none;
  color: var(--occWhite);
}

.edit-switch {
  width: 35px;
  position: relative;
  top: 2px;
}
.edit-switch svg {
  display: none;
}
.edit-switch svg.off {
  display: block;
}
.edit-switch .controls-fill {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: var(--bar-textcolor);
}
@media (max-width: 500px) {
  .edit-switch {
    width: 30px;
  }
}

#edit-mode .edit-switch {
  width: 24px;
}

.controls-fill {
  fill: var(--occBlack);
}

svg:hover .controls-fill {
  cursor: pointer;
}

#controls-size {
  width: 22px;
}

#controls-leading {
  width: 28px;
}

#controls-tracking {
  width: 18px;
}

.slant-option {
  display: none;
  width: 15px;
  text-align: center;
}

[data-slant=roman] #roman {
  display: block;
}

[data-slant=italic] #italic {
  display: block;
}

#svg-italic {
  width: 12px;
}

#svg-roman {
  width: 9px;
}

.disabled svg {
  display: none;
}

header.expanded + #tester {
  visibility: hidden;
}

#tester {
  background: var(--bar-color);
  color: var(--bar-textcolor);
}
#tester .accordion-expanded {
  background: var(--bar-color);
}

.edit-options {
  background: var(--bar-color);
  width: calc(var(--max-content-width) + var(--margin));
  height: calc(var(--bar-height) - 1px);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 500;
  transform: translateX(100%);
  transition: transform 250ms ease-in-out;
}
@media (max-width: 950px) {
  .edit-options {
    width: 85%;
  }
}
@media (max-width: 500px) {
  .edit-options {
    width: calc(100vw - 50px);
    font-size: 12px;
  }
}
.edit-options .cols {
  opacity: 0;
  transition: opacity 100ms linear 100ms;
  padding-right: var(--width-toggler);
  display: flex;
  align-items: stretch;
  height: 100%;
}
.edit-options .option {
  position: relative;
  z-index: 5;
}
.edit-options .fontsettings .cell {
  min-width: 60px;
  position: relative;
}
.edit-options #options-font {
  width: 210px;
}
.edit-options #options-width {
  width: 195px;
}
.edit-options #options-weight {
  width: 143px;
}
.edit-options #options-variable {
  width: 130px;
}
.edit-options #options-variable .accordion-expanded {
  display: flex;
  width: auto;
  overflow: hidden;
}
.edit-options .accordion-expanded {
  z-index: 5;
  max-height: 50vh;
  overflow: auto;
  position: absolute;
  width: 100%;
  background: var(--bar-color);
  top: var(--bar-height);
  transform: translateY(calc(-100% - 50px));
  transition-duration: 250ms;
}
.edit-options a {
  color: var(--occRed);
}
.edit-options .option-wrapper {
  background: var(--bar-color);
  display: flex;
  white-space: nowrap;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  justify-content: space-between;
}
.edit-options .option-header {
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: none;
  font-size: 1rem;
  letter-spacing: 0;
  width: 100%;
  padding: 0 var(--pad-small);
}
.edit-options #trial-link {
  background: var(--bar-color);
  z-index: 10;
}
.edit-options #trial-link a {
  height: 100%;
  display: flex;
  align-items: center;
}
.edit-options #trial-link a .controls-fill {
  fill: var(--occRed);
}
.edit-options #trial-link a:hover .controls-fill {
  fill: var(--occTeal);
}
@media (max-width: 500px) {
  .edit-options #trial-link {
    display: none;
  }
}
.edit-options #font-link {
  width: 85px;
  flex: 1;
  background: var(--bar-color);
  display: flex;
  align-items: center;
  text-align: left;
}
.edit-options #font-link #applied-link {
  max-width: 100px;
}
.edit-options .svg-controls {
  position: relative;
  padding: 0;
  padding-right: 12px;
  width: 50px;
  flex: none;
}
.edit-options .svg-controls .option-header {
  padding: 0;
}
.edit-options .svg-controls svg {
  margin: auto;
}
@media (max-width: 500px) {
  .edit-options .svg-controls {
    width: 35px;
  }
}
.edit-options button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--bar-color);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.edit-options button:hover {
  background: var(--bar-textcolor);
}
.edit-options button:hover .controls-fill {
  fill: var(--bar-color);
}
@media (max-width: 950px) {
  .edit-options button:hover {
    background: var(--bar-color);
  }
  .edit-options button:hover .controls-fill {
    fill: var(--bar-textcolor);
  }
}
.edit-options ul {
  font-size: 1rem;
  list-style-type: none;
  font-family: var(--font-header);
  font-weight: 400;
}
.edit-options li {
  display: none;
  padding: calc(var(--pad-small) / 2) var(--pad-small);
  cursor: pointer;
}
.edit-options li[data-selected] {
  background: var(--bar-textcolor);
  color: var(--bar-color);
}
.edit-options li:hover, .edit-options .option-wrapper:hover {
  color: var(--bar-color);
  background: var(--bar-textcolor);
}
.edit-options #options-font li {
  display: block;
}
.edit-options #options-slant, .edit-options #options-width, .edit-options #options-variable {
  display: none;
}
.edit-options #options-variable.active, .edit-options #options-slant.active, .edit-options #options-slant.active li, .edit-options #options-width.active, .edit-options #options-width li.active, .edit-options #options-weight li.active {
  display: block;
}
.edit-options .accordion-toggle {
  font-size: 18px;
  position: absolute;
  right: var(--pad-small);
  top: 1rem;
}
.edit-options .accordion-toggle::after {
  content: "‹";
  transform: rotate(-90deg);
  position: relative;
  display: inline-block;
  right: -8px;
  top: -2px;
  width: 20px;
  height: 20px;
  line-height: 1;
}
.edit-options [data-expanded] .accordion-toggle::after {
  transform: rotate(90deg);
}

.tester-active {
  --bar-color: var(--occYellow);
  --bar-textcolor: var(--occBlack);
  --bar-bordercolor: var(--occBlack);
}
.tester-active.layout--font {
  --bar-color: var(--occRed);
  --bar-textcolor: var(--occWhite);
  --bar-bordercolor: var(--occWhite);
}
.tester-active.layout--font #trial-link {
  flex: 1;
}
.tester-active.layout--font #trial-link a {
  width: 40px;
}
.tester-active.layout--font #trial-link .controls-fill {
  fill: var(--bar-textcolor);
}
.tester-active #tester #edit-indicator {
  color: var(--occBlack);
}
.tester-active #tester .edit-options {
  transform: translateX(0);
}
.tester-active #tester .edit-options .cols {
  opacity: 1;
}
.tester-active .edit-switch svg.on {
  display: block;
}
.tester-active .edit-switch svg.off {
  display: none;
}
.tester-active .controls-fill {
  fill: var(--bar-textcolor);
}
.tester-active #options-font .option-wrapper {
  border-left: 1px solid transparent;
}
.tester-active .vf-header {
  width: var(--margin);
  margin-left: 0;
}
@media (max-width: 950px) {
  .tester-active .vf-header {
    width: 15%;
  }
}
@media (max-width: 500px) {
  .tester-active .vf-header {
    width: 50px;
  }
}

.accordion[disabled] .default {
  display: inline-block;
  opacity: 0.2;
}
.accordion[disabled] .accordion-toggle {
  opacity: 0.2;
}
.accordion[disabled] [id^=applied-] {
  display: none;
}

.multiple .default {
  display: inline-block;
}
.multiple [id^=applied-] {
  display: none;
}

#mobile-fontmenu {
  display: none;
  width: 60px;
  font-size: 1.4rem;
  flex: none;
  position: relative;
}
#mobile-fontmenu button {
  color: var(--bar-textcolor);
  width: 100%;
}
#mobile-fontmenu button:hover {
  background: var(--bar-color);
}

.edit-options .fontsettings {
  display: flex;
  z-index: 3;
}

@media (max-width: 1200px) {
  body:not(.layout--font) #mobile-fontmenu {
    display: block;
  }
  body:not(.layout--font) #mobile-fontmenu[data-expanded] + .cell.fontsettings {
    transform: translateY(0);
  }
  body:not(.layout--font) .edit-options .fontsettings {
    transform: translateY(calc(-100% - 50px));
    transition: transform 250ms ease-in-out;
    flex-wrap: wrap;
    position: absolute;
    z-index: 5;
    left: 0;
    top: var(--bar-height);
    height: auto;
    background: var(--bar-color);
  }
  body:not(.layout--font) .edit-options .fontsettings #options-width, body:not(.layout--font) .edit-options .fontsettings #options-weight {
    border-right: 1px solid var(--bar-bordercolor);
  }
  body:not(.layout--font) .edit-options .fontsettings .option-wrapper {
    display: none;
  }
  body:not(.layout--font) .edit-options .fontsettings .accordion-expanded {
    z-index: 0;
    transform: none;
    position: static;
  }
  body:not(.layout--font) .edit-options .fontsettings .accordion-toggle {
    display: none;
  }
  body:not(.layout--font) .edit-options .fontsettings button {
    position: static;
    height: var(--bar-height);
    margin: auto;
  }
  body:not(.layout--font) .edit-options .fontsettings .svg-controls {
    padding-right: 0;
    border-right: 0;
  }
  body:not(.layout--font) .edit-options .fontsettings .svg-controls .accordion-expanded {
    position: relative;
    top: 0;
    width: 100%;
  }
  body:not(.layout--font) .edit-options .fontsettings #options-variable {
    flex: 1;
    min-width: 280px;
  }
  body:not(.layout--font) .edit-options .fontsettings #options-variable .option-wrapper {
    display: flex !important;
    top: 0;
    height: var(--bar-height);
    position: static;
  }
  body:not(.layout--font) .edit-options .fontsettings #options-variable .option-wrapper:hover {
    color: inherit;
    background: inherit;
  }
  body:not(.layout--font) .edit-options .fontsettings #options-variable .accordion-expanded {
    width: 100%;
  }
  body:not(.layout--font) #options-variable {
    border-left: 0;
    border-right: 1px solid var(--bar-bordercolor);
  }
}

.layout--font .edit-options .accordion-expanded {
  border: 1px solid var(--occRed);
  border-top: 0;
}
@media (max-width: 950px) {
  .layout--font #mobile-fontmenu {
    display: block;
  }
  .layout--font #mobile-fontmenu[data-expanded] + .cell.fontsettings {
    transform: translateY(0);
  }
  .layout--font .edit-options .fontsettings {
    transform: translateY(calc(-100% - 50px));
    transition: transform 250ms ease-in-out;
    flex-wrap: wrap;
    position: absolute;
    z-index: 5;
    left: 0;
    top: var(--bar-height);
    height: auto;
    background: var(--bar-color);
  }
  .layout--font .edit-options .fontsettings #options-width, .layout--font .edit-options .fontsettings #options-weight {
    border-right: 1px solid var(--bar-bordercolor);
  }
  .layout--font .edit-options .fontsettings .option-wrapper {
    display: none;
  }
  .layout--font .edit-options .fontsettings .accordion-expanded {
    z-index: 0;
    transform: none;
    position: static;
  }
  .layout--font .edit-options .fontsettings .accordion-toggle {
    display: none;
  }
  .layout--font .edit-options .fontsettings button {
    position: static;
    height: var(--bar-height);
    margin: auto;
  }
  .layout--font .edit-options .fontsettings .svg-controls {
    padding-right: 0;
    border-right: 0;
  }
  .layout--font .edit-options .fontsettings .svg-controls .accordion-expanded {
    position: relative;
    top: 0;
    width: 100%;
  }
  .layout--font .edit-options .fontsettings #options-variable {
    flex: 1;
    min-width: 280px;
  }
  .layout--font .edit-options .fontsettings #options-variable .option-wrapper {
    display: flex !important;
    top: 0;
    height: var(--bar-height);
    position: static;
  }
  .layout--font .edit-options .fontsettings #options-variable .option-wrapper:hover {
    color: inherit;
    background: inherit;
  }
  .layout--font .edit-options .fontsettings #options-variable .accordion-expanded {
    width: 100%;
  }
  .layout--font .accordion-expanded {
    border: 0;
  }
  .layout--font #font-list {
    border: 1px solid var(--occRed);
    border-top: 0;
  }
  .layout--font .edit-options .fontsettings {
    border: 1px solid var(--occRed);
    border-top-color: var(--bar-textcolor);
  }
  .layout--font .edit-options .fontsettings #options-weight {
    border-right: 0;
  }
  .layout--font .edit-options .fontsettings #options-variable {
    border-top: 0;
    border-left: 1px solid var(--bar-bordercolor);
  }
}
@media (max-width: 500px) {
  .layout--font .edit-options .fontsettings #options-variable {
    border-top: 1px solid var(--bar-bordercolor);
    border-left: 0;
  }
}

@media (max-width: 950px) {
  #options-width, #options-weight {
    flex: 3;
  }
  #options-variable {
    min-width: 100%;
    border-top: 1px solid var(--bar-bordercolor);
    order: 10;
    border-right: 0;
  }
  .link.option-header {
    overflow: visible;
  }
}
@media (max-width: 500px) {
  #options-font {
    min-width: fit-content;
  }
  #options-font .option-header {
    width: 95%;
  }
  #font-link .option-header {
    padding: 0;
  }
  .fontsettings {
    width: 100%;
    height: calc(100vh - var(--bar-height) * 2);
  }
  .fontsettings .svg-controls {
    flex: 1;
  }
  .tester-active .fullname {
    display: none;
  }
  .hide {
    display: none;
  }
  #applied-link::after {
    position: static;
    font-size: 1.5rem;
    font-variation-settings: "wdth" 1000, "wght" 800;
  }
  #applied-link:hover::after {
    font-variation-settings: "wdth" 1000, "wght" 800;
  }
}
.multiple.svg-controls .default {
  display: none;
}

.default {
  display: none;
}

.flaskicon {
  width: 18px;
  top: -3px;
  position: relative;
}

#trial-intro #flaskicon {
  width: 50px;
  top: 13px;
}

.layout--font #edit-toggler {
  visibility: hidden;
}
.layout--font #tester {
  background: var(--bar-color);
  color: var(--occWhite);
}
.layout--font #tester .edit-options .cols {
  opacity: 1;
  padding-right: 0;
}
.layout--font #options-size, .layout--font #options-leading, .layout--font #options-tracking {
  display: none;
}

.slider {
  padding: var(--pad-small) 0;
  width: 65px;
  position: relative;
}
.slider.accordion-expanded {
  overflow: hidden;
}
.slider .slider-input {
  height: 120px;
  width: 3px;
  margin: var(--pad-xsmall) auto;
}
.slider .noUi-target {
  background: var(--bar-textcolor);
}
.slider .noUi-base, .slider .noUi-origin, .slider .noUi-touch-area {
  height: 100%;
}
.slider .noUi-handle {
  border-radius: 0;
  background: var(--bar-textcolor);
  width: 25px;
  height: 12px;
  cursor: pointer;
  top: -6px;
  left: -10px;
  position: relative;
}
@media (max-width: 500px) {
  .slider .noUi-handle {
    height: 23px;
  }
}
.slider .slider-indicator, .slider label {
  display: block;
  text-align: center;
  font-family: var(--font-header);
  font-weight: 700;
  font-size: 0.8rem;
  line-height: 1;
  text-transform: uppercase;
  width: 100%;
}
.slider .slider-name {
  margin-top: var(--pad-small);
  font-size: 10px;
}
.slider .min-indicator {
  top: var(--pad-xsmall);
}
.slider .max-indicator {
  top: 157px;
}
.slider .slider-name {
  bottom: 28px;
}

input[type=number] {
  -moz-appearance: textfield;
  outline: none;
  border: 0;
  background: var(--bar-color);
  color: var(--bar-textcolor);
}
input[type=number]:active, input[type=number]:focus {
  background: var(--occWhite);
  color: var(--occBlack);
}
input[type=number]:out-of-range {
  color: var(--occRed);
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.lang-list {
  display: inline-block;
  padding-right: 1rem;
}

/* VARIABLE SUPPORT */
.switch {
  position: relative;
  display: inline-block;
  width: 35px;
  height: 20px;
  cursor: pointer;
}
.switch input {
  opacity: 0;
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 100%;
}
.switch input:checked + .switch-slider {
  background-color: var(--occRed);
}
.switch input:checked + .switch-slider:before {
  transform: translateX(15px);
}
.switch input:checked + .switch-slider + label {
  color: var(--occRed);
}
.switch label {
  padding-left: 40px;
}
.switch .switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--occBlack);
  transition: 0.4s;
  border-radius: 10px;
}
.switch .switch-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: var(--bar-color);
  transition: 0.4s;
  border-radius: 50%;
}

.scrolllock {
  overflow: hidden;
}

/* ==========================
CONTENT SELECTORS
============================= */
.modify {
  background: var(--occYellow) !important;
}

[contenteditable]:focus, [contenteditable]:active {
  outline: none;
  border-radius: 0;
  box-shadow: 0;
}

/* ==========================
META LINKS
============================= */
.link {
  position: relative;
  display: inline-block;
  margin: 0;
}
.link::after {
  transition: font-variation-settings 150ms linear;
  position: absolute;
  content: "→";
  font-family: "OCC Arrow";
  font-variation-settings: "wdth" 200, "wght" 800;
}
.link:hover::after {
  font-variation-settings: "wdth" 1000, "wght" 800;
}

.next, .next0 {
  padding-right: 20px;
}

.next0 {
  margin-left: auto;
}

.prev.link {
  padding-left: 20px;
}
.prev.link::after {
  content: "";
}
.prev.link::before {
  transition: font-variation-settings 150ms linear;
  position: absolute;
  right: calc(100% - 18px);
  content: "←";
  font-family: "OCC Arrow";
  font-variation-settings: "wdth" 200, "wght" 800;
}
.prev.link:hover::before {
  font-variation-settings: "wdth" 1000, "wght" 800;
}

.links .link {
  padding-right: var(--pad);
}

.prev.link, .next.link {
  width: 50%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.post-nav.meta {
  width: 100%;
  margin-top: var(--pad-section);
  justify-content: space-between;
}
.post-nav.meta .col:nth-child(2) {
  text-align: right;
}

/* ==========================
ACCORDION
============================= */
.accordion {
  cursor: pointer;
}

.accordion-toggle {
  padding-right: var(--pad);
  font-family: var(--font-header);
  font-weight: 700;
  font-size: 1rem;
  display: inline-block;
  text-align: center;
  width: 22px;
  height: 22px;
}

.accordion-expanded {
  transform-origin: top center;
  transform: translateY(-100%);
  overflow: hidden;
  transition: transform 400ms ease-in-out;
}

[data-expanded] .accordion-expanded {
  transform: translateY(0);
}

/* ==========================
PAGE TEMPLATE
============================= */
.layout--page {
  --col1: 30%;
}
@media (max-width: 500px) {
  .layout--page {
    --col1: 0;
  }
}
.layout--page #tester {
  display: none;
}
.layout--page section {
  margin-bottom: var(--pad-medium);
}
.layout--page section:first-child div, .layout--page section:first-child p {
  margin-left: auto;
  margin-right: auto;
}
.layout--page section > h1 {
  margin-top: var(--pad-large);
}
.layout--page article {
  min-height: 100vh;
  padding: var(--pad-large) 0;
  max-width: var(--max-width);
  margin: auto;
}
@media (max-width: 950px) {
  .layout--page article {
    max-width: 100%;
    padding: var(--pad);
    margin: var(--pad-large) 0;
  }
}
.layout--page article h1 {
  font-size: 1.5em;
  line-height: 1.1;
  margin-bottom: 1em;
}
.layout--page article h2 {
  font-size: 1rem;
  margin-top: 1em;
  margin-bottom: 0;
  width: var(--col1);
}
@media (max-width: 500px) {
  .layout--page article h2 {
    width: 100%;
  }
}
.layout--page article p, .layout--page article ul {
  font-size: 1rem;
  margin-bottom: var(--pad-small);
  margin-left: var(--col1);
}
.layout--page article ul {
  padding-left: 1em;
}
.layout--page article h2 + p, .layout--page article h2 + .cols {
  margin-top: -1.5em;
}
@media (max-width: 500px) {
  .layout--page article h2 + p, .layout--page article h2 + .cols {
    margin: 0;
  }
}
.layout--page article .cols {
  margin-left: var(--col1);
}
.layout--page article .cols p {
  margin-left: 0;
}
.layout--page article .exlinks .col {
  width: 50%;
}
.layout--page article .definition {
  color: var(--occTeal);
  font-family: var(--font-header);
  font-weight: 700;
}
.layout--page article .quote {
  font-family: var(--font-header);
  font-size: 1rem;
  margin: var(--pad-small) 0;
  text-indent: -0.5em;
  font-weight: 700;
}
.layout--page article .edit-switch {
  width: auto;
  top: 0;
  display: inline-block;
}
.layout--page article .edit-switch strong {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.layout--page article .edit-switch svg {
  width: 22px;
}
.layout--page article .edit-switch .controls-fill {
  fill: var(--occBlack);
}
.layout--page article svg.off, .layout--page article svg.on {
  display: inline-block;
  position: relative;
  top: 3px;
}
.layout--page article .full-width p {
  margin-left: auto;
}
.layout--page .bios {
  font-family: var(--font-header);
  flex-wrap: wrap;
  justify-content: space-between;
}
.layout--page .bios.cols {
  margin-left: 0;
}
.layout--page .bios h2 {
  margin-bottom: 1em;
  width: 100%;
}
.layout--page .bios h4 {
  font-size: 0.9rem;
  font-weight: 700;
}
.layout--page .bios p {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.2px;
}
.layout--page .bios .occupant {
  margin-bottom: 1em;
  margin-right: 0;
  width: 100%;
  flex: none;
  flex-shrink: 0;
  display: flex;
}
.layout--page .bios figure {
  max-width: 30%;
  flex: 1;
  margin-top: 0;
  padding-right: 1em;
}
.layout--page .bios .bio {
  flex: 2;
}
.layout--page #subscribe-form {
  margin-left: var(--col1);
}

/* ==========================
// ARTICLE-SPECIFIC OVERRIDES
============================= */
#don-t-forget-to-floss .intro {
  font-variant-numeric: lining-nums;
  -moz-font-feature-settings: "lnum";
  -webkit-font-feature-settings: "lnum";
  font-feature-settings: "lnum";
}

/* ==========================
// 404 page
============================= */
#big-letter {
  margin: auto;
  letter-spacing: -2px;
  text-align: center;
  font-family: "Magmatic VF";
  font-size: 30vw;
  line-height: 1;
  text-transform: uppercase;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-variation-settings: "wght" 900, "wdth" 500;
  backface-visibility: hidden;
}

#info {
  position: absolute;
  bottom: 100px;
  text-align: center;
  width: 100%;
}

#pageid-page-not-found main {
  margin: 50px 0;
}
#pageid-page-not-found main article {
  margin: 0;
  max-width: none;
  min-height: none;
  padding: 0;
}
#pageid-page-not-found main article .hero {
  display: flex;
  align-items: center;
}

#dog-form h2, #trial-form h2 {
  margin: 2em 0 1em;
  width: auto;
}

#state-zip, #name {
  display: flex;
}
#state-zip .form-field, #name .form-field {
  flex: 1;
}

#province-field {
  display: none;
}

#zip-field, #lname-field {
  padding-left: 20px;
}

.form {
  margin-bottom: 1em;
}
.form .form-field {
  margin-bottom: 1em;
}
.form label {
  color: #757575;
}
.form input {
  color: var(--occBlack);
  width: 100%;
  border: 0;
  border-bottom: 2px solid var(--occGrey);
  border-radius: 0;
}
.form input, .form textarea, .form .checkbox-label, .form option, .form label, .form select {
  font-size: 1rem;
  font-family: var(--font-header);
  font-weight: 400;
  background: transparent;
}
.form select {
  width: 100%;
  color: #757575;
  border: 0;
  border-bottom: 2px solid var(--occGrey);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  height: 1.5em;
  background-color: transparent;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='grey'><polygon points='0,0 100,0 50,50'/></svg>") no-repeat;
  background-size: 12px;
  background-position: calc(100% - 5px) center;
  background-repeat: no-repeat;
}
.form textarea {
  width: 100%;
  max-width: 100%;
  height: 6em;
  padding: 5px;
  border-radius: 0;
  border: 1px solid var(--occGrey);
}
.form .checkbox-label, .form input[type=checkbox], .form input[type=radio], .form .radio-option {
  display: inline;
  border: 0;
  color: #757575;
}
.form .checkbox-label:hover, .form input[type=checkbox]:hover, .form input[type=radio]:hover, .form .radio-option:hover {
  cursor: pointer;
}
.form input[type=checkbox]:checked + .checkbox-label, .form input[type=radio]:checked + .checkbox-label {
  color: var(--occBlack);
}
.form input[type=checkbox], .form input[type=radio] {
  width: 30px;
}
.form input[type=radio] {
  margin-left: 20px;
}
.form button[type=submit] {
  background: var(--occYellow);
  margin: 0;
  border: 0;
  border-radius: 0;
  padding: var(--pad) 2em;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
}
.form button[type=submit]:hover {
  cursor: pointer;
  background: var(--occTeal);
  color: var(--occWhite);
}
.form .subtext {
  font-size: 0.8em;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #ababab;
  font-size: 1rem;
}

::-moz-placeholder { /* Firefox 19+ */
  color: #ababab;
  font-size: 1rem;
}

:-ms-input-placeholder { /* IE 10+ */
  color: #ababab;
  font-size: 1rem;
}

:-moz-placeholder { /* Firefox 18- */
  color: #ababab;
  font-size: 1rem;
}

input:focus, textarea:focus, select:focus {
  outline: none;
}

#trial-intro {
  margin-bottom: 0;
}

#trial-glyphs {
  padding-left: 4em;
  letter-spacing: 0.06em;
}

#thankyou {
  font-size: 1.5em;
  color: var(--occRed);
  text-align: center;
  padding-top: 1em;
}

#message {
  display: none;
}

#error {
  display: none;
  margin-top: 1em;
  color: var(--occRed);
}

/* ==========================
FOOTER
============================= */
#site-footer {
  font-family: "Magmatic Wide";
  font-weight: 300;
  font-size: 0.9rem;
  background: var(--occGrey);
  position: relative;
  bottom: 50px;
  padding-top: 16px;
  height: var(--bar-height);
}
#site-footer .cols {
  margin: 0 auto;
  max-width: var(--max-content-width);
  justify-content: space-between;
}
#site-footer .col {
  margin-right: 0;
}
#site-footer .insta-link {
  position: relative;
  top: -3px;
}

.insta-icon {
  width: 16px;
  position: relative;
  top: 3px;
}

.ig-fill {
  fill: var(--occRed);
}

.insta-link span {
  display: inline-block;
  padding-left: 5px;
}

.insta-link:hover .ig-fill {
  fill: var(--occTeal);
}

.insta-link::after {
  top: 3px;
}

.resize-animation-stopper * {
  transition: none !important;
}

/* ==========================
ARTICLE SETTINGS
============================= */
article {
  --titleFont-size: 6rem;
  --titleFont-leading: 1;
  --titleFont-tracking: 0em;
  --introFont-size: 2.5rem;
  --introFont-leading: 1;
  --introFont-tracking: 0em;
  --captionFont-size: 1rem;
  --captionFont-leading: 1.4;
  --captionFont-tracking: 0.02;
  --bodyFont-size: 1.4rem;
  --bodyFont-leading: 1.3;
  --bodyFont-tracking: 0em;
  --mobileTitleFont-size: 5rem;
  --mobileTitleFont-leading: 1;
  --mobileTitleFont-tracking: 0em;
  --mobileIntroFont-size: 2rem;
  --mobileIntroFont-leading: 1;
  --mobileIntroFont-tracking: 0em;
  --mobileCaptionFont-size: 1rem;
  --mobileCaptionFont-leading: 1;
  --mobileCaptionFont-tracking: 0.03;
  --mobileBodyFont-size: 1.2rem;
  --mobileBodyFont-leading: 1.4;
  --mobileBodyFont-tracking: 0em;
}

article h1.post-title {
  font-size: calc(var(--titleFont-size) * 1px);
  line-height: var(--titleFont-leading);
  letter-spacing: calc(var(--titleFont-tracking) * 1em);
}
article p.intro {
  font-size: calc(var(--introFont-size) * 1px);
  line-height: var(--introFont-leading);
  letter-spacing: calc(var(--introFont-tracking) * 1em);
}
article figcaption {
  font-size: calc(var(--captionFont-size) * 1px);
  line-height: var(--captionFont-leading);
  letter-spacing: calc(var(--captionFont-tracking) * 1em);
}
article .post-body {
  font-size: calc(var(--bodyFont-size) * 1px);
  line-height: var(--bodyFont-leading);
  letter-spacing: calc(var(--bodyFont-tracking) * 1em);
}

/* ==========================
DARKMODE SETTINGS
============================= */
#dark-mode {
  position: relative;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 20px;
  bottom: 20px;
  top: auto;
  display: none;
  visibility: hidden;
  transition: visibility 0s linear 250ms;
}
#dark-mode #lamp {
  width: 40px;
  position: absolute;
  left: 0;
}
#dark-mode #lamp-light {
  display: none;
  width: 21px;
  position: absolute;
  left: -10px;
  bottom: -2px;
}
#dark-mode .fill-lamp {
  fill: var(--occYellow);
}

[data-expanded] #dark-mode {
  display: block;
  visibility: visible;
}
[data-expanded] #dark-mode .controls-stroke {
  fill: none;
  stroke: var(--occWhite);
  stroke-miterlimit: 5;
  stroke-width: 9px;
}
[data-expanded] #dark-mode[data-darkmode=true] .controls-fill {
  fill: var(--occRed);
}
[data-expanded] #dark-mode[data-darkmode=true] #lamp-light {
  display: block;
}

body.dark {
  background: var(--occBlack);
  color: var(--occWhite);
  --bar-color: var(--occBlack);
  --bar-textcolor: var(--occYellow);
  --bar-bordercolor: var(--occYellow);
}
body.dark a {
  color: var(--occYellow);
}
body.dark ::selection {
  background: var(--occLightTeal);
}
body.dark header nav {
  background: var(--occBlack);
}
body.dark header .title-bar {
  background: var(--occBlack);
  border-bottom: 1px solid var(--occRed);
}
body.dark header[data-expanded] .title-bar {
  border-bottom: 0;
}
body.dark header, body.dark footer {
  color: var(--occRed);
}
body.dark header a, body.dark footer a {
  color: var(--occRed);
}
body.dark header a:hover, body.dark footer a:hover {
  color: var(--occYellow);
}
body.dark #edit-indicator {
  color: var(--occYellow);
}
body.dark #trial-link a .controls-fill {
  fill: var(--occYellow);
}
body.dark #font-drawer {
  background: var(--occBlack);
  color: var(--occLightTeal);
  border-top: 1px solid var(--occLightTeal);
}
body.dark #font-drawer h1 {
  border-bottom-color: var(--occLightTeal);
}
body.dark #font-drawer[data-expanded] {
  border-top-color: transparent;
}
body.dark #font-drawer a {
  color: var(--occLightTeal);
}
body.dark #font-drawer .font-card {
  border-top-color: var(--occLightTeal);
}
body.dark #font-drawer .font-card a:hover {
  color: var(--occLightTeal);
}
body.dark #font-drawer .font-card a.link:hover {
  color: var(--occYellow);
}
body.dark .hero {
  background: var(--occBlack);
}
body.dark #big-letter {
  color: var(--occYellow);
}
body.dark .post-list {
  border-top: 0;
}
body.dark .post-item h2 {
  color: var(--occWhite);
}
body.dark .post-item:hover {
  background: transparent;
}
body.dark .post-item:hover h2 {
  color: var(--occYellow);
}
body.dark #site-footer {
  background: transparent;
  border-top: 1px solid var(--occWhite);
}
body.dark .modify {
  color: var(--occYellow) !important;
  background: none !important;
}
body.dark .glyph-box {
  border-color: var(--occLightTeal);
}
body.dark.tester-active .edit-options .accordion-expanded {
  border: 1px solid var(--bar-bordercolor);
  border-top: 0;
}
@media (max-width: 1200px) {
  body.dark.tester-active:not(.layout--font) .accordion-expanded {
    border: 0;
  }
  body.dark.tester-active:not(.layout--font) #font-list, body.dark.tester-active:not(.layout--font) .fontsettings {
    border: 1px solid var(--bar-bordercolor);
    border-top: 0;
  }
}
body.dark.tester-active.layout--font {
  --bar-textcolor: var(--occWhite);
  --bar-color: var(--occBlack);
  --bar-bordercolor: var(--occRed);
}
@media (max-width: 950px) {
  body.dark.tester-active.layout--font .accordion-expanded {
    border: 0;
  }
  body.dark.tester-active.layout--font #font-list, body.dark.tester-active.layout--font .fontsettings {
    border: 1px solid var(--bar-bordercolor);
    border-top: 0;
  }
}
body.dark [data-expanded] #dark-mode .controls-fill {
  fill: var(--occRed);
}
body.dark [data-expanded] #dark-mode .controls-stroke {
  stroke: var(--occRed);
}
body.dark.layout--articles .row:first-child {
  border-top: 0;
}
body.dark .edit-switch .controls-fill {
  fill: var(--occYellow);
}
body.dark .main-nav .flaskicon .controls-fill {
  fill: var(--occRed);
}
body.dark .site-header[data-expanded] + #tester {
  border-bottom: none;
}
body.dark .font-footer .meta {
  color: var(--occWhite);
}
body.dark .year-header {
  background: var(--occBlack);
  border-bottom: 1px solid var(--occGrey);
  color: var(--occGrey);
}
body.dark a:hover, body.dark .content p.meta, body.dark .post-item .meta, body.dark .font h2, body.dark .zoom .glyph, body.dark .about-descriptions .definition, body.dark .about-descriptions h1 {
  color: var(--occLightTeal);
}
body.dark .tester-active + main article {
  cursor: url("/assets/icons/pen-dark.svg") 1 31, auto;
}
body.dark .form input, body.dark .form input[type=checkbox]:checked + .checkbox-label, body.dark .form input[type=radio]:checked + .checkbox-label, body.dark .form textarea {
  color: var(--occWhite);
}

/* ==========================
MOBILE SETTINGS
============================= */

/*# sourceMappingURL=main.css.map */
