@charset "UTF-8";
html {
  box-sizing: border-box;
  background-color: #f5f4f2;
}
@media only screen and (min-width: 320px) {
  html {
    font-size: 53%;
  }
}
@media only screen and (min-width: 720px) {
  html {
    font-size: 56%;
  }
}
@media only screen and (min-width: 1000px) {
  html {
    font-size: 59%;
  }
}
@media only screen and (min-width: 1281px) {
  html {
    font-size: 62.5%;
  }
}
@media only screen and (min-width: 1281px) {
  html {
    font-size: 66.666%;
  }
}

* {
  font-family: Source Sans Pro, Arial, sans-serif;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: none;
}

.border-error {
  border-color: #e55a20;
  border-width: 2px;
}

a, abbr, span, u {
  font: inherit;
  color: inherit;
}

ul {
  list-style-type: square;
}

hr {
  margin: 3rem 0;
  background-color: #ccc;
  height: 1px;
  border: none;
  outline-style: none;
}

.border-error input {
  border-color: #e55a20;
  border-style: solid;
}

ul.errorlist {
  margin: 0;
  margin-bottom: 0.5rem;
  padding: 1rem;
  background-color: rgba(220, 20, 60, 0.05);
  border: none;
  border-color: crimson;
  border-width: 0.2rem;
  border-style: solid;
  border-radius: 1rem;
}
ul.errorlist li {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 1.22rem;
  text-transform: uppercase;
  color: crimson;
  padding: 0;
  margin: 0;
}

a.section {
  padding: 1.5rem 3rem;
}

@media only screen and (min-width: 320px) {
  body > header {
    width: 100%;
    height: 7rem;
    position: sticky;
    top: 0;
    z-index: 500;
  }
  body > header > div.laptop-screens {
    display: none;
  }
  body > header > div.tablet-screens {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding-left: 2rem;
    padding-right: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    background-color: #32312E;
    transition: background-color 0.2s linear;
  }
  body > header > div.tablet-screens nav > p, body > header > div.tablet-screens nav > p > a, body > header > div.tablet-screens nav > ul > li {
    line-height: 7rem;
  }
  body > header > div.tablet-screens p {
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
  }
  body > header > div.tablet-screens figure {
    margin-right: auto;
  }
  body > header > div.tablet-screens figure img {
    height: 7rem;
    cursor: pointer;
  }
  body > header > div.tablet-screens canvas {
    width: 7rem;
    height: 7rem;
  }
  body > header > div.tablet-screens nav.cart {
    margin-right: 2rem;
    flex-shrink: 2;
    display: flex;
    align-items: center;
  }
  body > header > div.tablet-screens nav.cart p.empty {
    background-color: #394336;
    opacity: 0.6;
  }
  body > header > div.tablet-screens nav.cart p {
    background-color: #2A5E3E;
    border-radius: 0.4rem;
    line-height: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    padding-left: 1rem;
    padding-right: 0.5rem;
  }
  body > header > div.tablet-screens nav.cart p img {
    display: inline-block;
    width: 3rem;
    height: 3rem;
  }
  body > header > div.tablet-screens nav.cart p span {
    display: inline-block;
    height: 3rem;
    width: 3rem;
    line-height: 3rem;
    text-align: center;
    color: white;
  }
  body > header > div.tablet-screens nav.main figure.nav-main-menu-icon {
    margin: 0;
    width: 3rem;
    height: 3rem;
    position: relative;
    display: block;
    cursor: pointer;
    z-index: 0;
  }
  body > header > div.tablet-screens nav.main figure.nav-main-menu-icon span {
    background-color: #ceccc6;
    display: block;
    position: absolute;
    width: 17px;
    height: 2px;
    transform-origin: center;
    animation-duration: 0.15s;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
  }
  body > header > div.tablet-screens nav.main figure.nav-main-menu-icon span.top_rect {
    left: 5px;
    top: 7.5px;
  }
  body > header > div.tablet-screens nav.main figure.nav-main-menu-icon span.top_rect.to_close {
    animation-name: anim_top_rect_to_close;
  }
  body > header > div.tablet-screens nav.main figure.nav-main-menu-icon span.top_rect.to_open {
    animation-name: anim_top_rect_to_open;
  }
  body > header > div.tablet-screens nav.main figure.nav-main-menu-icon span.mid_rect {
    left: 5px;
    top: 12.5px;
  }
  body > header > div.tablet-screens nav.main figure.nav-main-menu-icon span.mid_rect.to_close {
    animation-name: anim_mid_rect_to_close;
  }
  body > header > div.tablet-screens nav.main figure.nav-main-menu-icon span.mid_rect.to_open {
    animation-name: anim_mid_rect_to_open;
  }
  body > header > div.tablet-screens nav.main figure.nav-main-menu-icon span.bot_rect {
    left: 5px;
    top: 17.5px;
  }
  body > header > div.tablet-screens nav.main figure.nav-main-menu-icon span.bot_rect.to_close {
    animation-name: anim_bot_rect_to_close;
  }
  body > header > div.tablet-screens nav.main figure.nav-main-menu-icon span.bot_rect.to_open {
    animation-name: anim_bot_rect_to_open;
  }
  @keyframes anim_top_rect_to_open {
    0% {
      transform: rotate(45deg);
      top: 12.5px;
    }
    50% {
      transform: rotate(0deg);
      top: 12.5px;
    }
    100% {
      transform: rotate(0deg);
      top: 7.5px;
    }
  }
  @keyframes anim_bot_rect_to_open {
    0% {
      transform: rotate(45deg);
      top: 12.5px;
    }
    50% {
      transform: rotate(0deg);
      top: 12.5px;
    }
    100% {
      transform: rotate(0deg);
      top: 17.5px;
    }
  }
  @keyframes anim_mid_rect_to_open {
    0% {
      transform: rotate(-45deg);
    }
    50% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(0deg);
    }
  }
  @keyframes anim_top_rect_to_close {
    0% {
      top: 7.5px;
      transform: rotate(0deg);
    }
    50% {
      top: 12.5px;
      transform: rotate(0deg);
    }
    100% {
      top: 12.5px;
      transform: rotate(45deg);
    }
  }
  @keyframes anim_bot_rect_to_close {
    0% {
      top: 17.5px;
      transform: rotate(0deg);
    }
    50% {
      top: 12.5px;
      transform: rotate(0deg);
    }
    100% {
      top: 12.5px;
      transform: rotate(45deg);
    }
  }
  @keyframes anim_mid_rect_to_close {
    0% {
      transform: rotate(0deg);
    }
    50% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(-45deg);
    }
  }
  body > header > div.tablet-screens nav.main, body > header > div.tablet-screens nav.cart {
    display: flex;
    align-items: center;
    margin-top: auto;
    margin-bottom: auto;
  }
  body > header > div.tablet-screens nav.main div, body > header > div.tablet-screens nav.cart div {
    display: none;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
  }
  body > header > div.tablet-screens nav.main div ul, body > header > div.tablet-screens nav.cart div ul {
    transition: margin-left 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
    box-sizing: border-box;
    position: fixed;
    display: block;
    width: 24rem;
    margin-left: -24rem;
    height: 100%;
    overflow: auto;
    background-color: #32312E;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 1rem;
    list-style-type: none;
  }
  body > header > div.tablet-screens nav.main div ul li, body > header > div.tablet-screens nav.cart div ul li {
    display: flex;
    flex-direction: row;
    flex-basis: 100%;
    flex-wrap: wrap;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  body > header > div.tablet-screens nav.main div ul li::last, body > header > div.tablet-screens nav.cart div ul li::last {
    padding-bottom: 0px;
  }
  body > header > div.tablet-screens nav.main div ul li hr, body > header > div.tablet-screens nav.cart div ul li hr {
    background-color: #3b3b3b;
    margin: 0px 0px 2rem 0px;
    height: 2px;
    flex-grow: 1;
    width: 100%;
  }
  body > header > div.tablet-screens nav.main div ul li a, body > header > div.tablet-screens nav.cart div ul li a {
    display: flex;
    align-items: center;
    width: 100%;
  }
  body > header > div.tablet-screens nav.main div ul li a img, body > header > div.tablet-screens nav.cart div ul li a img {
    width: 3rem;
    height: 3rem;
    margin-right: 1rem;
  }
  body > header > div.tablet-screens nav.main div ul li:nth-child(1), body > header > div.tablet-screens nav.cart div ul li:nth-child(1) {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  body > header > div.tablet-screens nav.main div ul li:nth-child(1) a img, body > header > div.tablet-screens nav.cart div ul li:nth-child(1) a img {
    width: auto;
    height: 7rem;
  }
  body > header > div.tablet-screens li, body > header > div.tablet-screens a, body > header > div.tablet-screens p {
    color: #CECCC6;
    font-size: 1.92rem;
    line-height: 3rem;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 400;
  }
}
@media only screen and (min-width: 1000px) {
  body > header {
    width: 100%;
    height: 8rem;
    position: sticky;
    top: 0;
  }
  body > header > div.tablet-screens {
    display: none;
  }
  body > header > div.laptop-screens {
    box-sizing: border-box;
    padding-left: 2rem;
    padding-right: 2rem;
    width: 100%;
    height: 100%;
    background-color: #32312E;
    display: grid;
    grid-template-columns: 1fr max-content max-content;
    align-items: center;
    gap: 1.5rem;
  }
  body > header > div.laptop-screens li, body > header > div.laptop-screens a, body > header > div.laptop-screens p {
    color: #CECCC6;
    font-size: 1.92rem;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 400;
  }
  body > header > div.laptop-screens nav.home {
    display: block;
    height: 8rem;
    grid-column: 1;
    grid-row: 1;
  }
  body > header > div.laptop-screens nav.home > a {
    z-index: 40;
    display: inline-block;
  }
  body > header > div.laptop-screens nav.home > a figure {
    display: block;
    height: 8rem;
  }
  body > header > div.laptop-screens nav.home > a figure img {
    display: block;
    height: 8rem;
  }
  body > header > div.laptop-screens nav.main {
    grid-column: 1/-1;
    grid-row: 1;
  }
  body > header > div.laptop-screens nav.main ul {
    display: flex;
    justify-content: center;
    gap: 3rem;
  }
  body > header > div.laptop-screens nav.main ul li {
    z-index: 18;
  }
  body > header > div.laptop-screens nav.main ul li a {
    display: flex;
    align-items: center;
    height: 8rem;
  }
  body > header > div.laptop-screens nav.cart {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  body > header > div.laptop-screens nav.cart p.empty {
    background-color: #394336;
    opacity: 0.6;
  }
  body > header > div.laptop-screens nav.cart p {
    background-color: #2A5E3E;
    border-radius: 0.4rem;
    line-height: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    padding-left: 1rem;
    padding-right: 0.5rem;
  }
  body > header > div.laptop-screens nav.cart p img {
    display: inline-block;
    width: 3rem;
    height: 3rem;
  }
  body > header > div.laptop-screens nav.cart p span {
    display: inline-block;
    height: 3rem;
    width: 3rem;
    line-height: 3rem;
    text-align: center;
    color: white;
  }
  body > header > div.laptop-screens p.account {
    grid-column: 3;
    grid-row: 1;
    display: flex;
    height: 8rem;
    align-items: center;
  }
  body > header > div.laptop-screens p.account a {
    height: 8rem;
    display: flex;
    align-items: center;
  }
  body > header > div.laptop-screens nav.account {
    grid-column: 3;
    grid-row: 1;
    display: flex;
    height: 8rem;
    align-items: center;
  }
  body > header > div.laptop-screens nav.account p {
    height: 4rem;
    line-height: 4rem;
  }
  body > header > div.laptop-screens nav.account p img {
    display: inline-block;
    width: 4rem;
    height: 4rem;
    line-height: 4rem;
    margin: 0 1.5rem;
  }
  body > header > div.laptop-screens li {
    list-style-type: none;
    display: inline;
    margin: 0;
  }
  body > header > div.laptop-screens figure a {
    cursor: default;
  }
  body > header > div.laptop-screens figure img {
    height: 8rem;
    cursor: pointer;
  }
  body > header > div.laptop-screens p {
    cursor: pointer;
    user-select: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
  }
  body > header > div.laptop-screens nav.account div {
    display: none;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
    transition: opacity 0.15s linear;
  }
  body > header > div.laptop-screens nav.account div ul {
    background-color: #1F1E1C;
    position: absolute;
    top: 8rem;
    right: 2rem;
    padding: 1rem;
  }
  body > header > div.laptop-screens nav.account div ul li {
    display: flex;
    align-items: center;
    padding: 1rem;
    height: 3rem;
    line-height: 3rem;
  }
  body > header > div.laptop-screens nav.account div ul li a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  body > header > div.laptop-screens nav.account div ul li a img {
    margin-right: 1rem;
    width: 3rem;
    height: 3rem;
  }
  body > header > div.laptop-screens nav.account div ul li hr {
    background-color: #3b3b3b;
    margin: 0px 0px 2rem 0px;
    height: 2px;
  }
}
body > section#promo, body > section.promo {
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0 1.5rem;
  color: white;
  background-color: black;
}
body > section#promo a, body > section.promo a {
  width: 100%;
  max-width: 120rem;
  margin: 0;
  padding: 0;
  padding-top: 1.5rem;
  padding-bottom: 1.1rem;
  display: grid;
  justify-items: center;
  align-items: center;
}
body > section#promo a article, body > section.promo a article {
  grid-column: 1;
  grid-row: 1;
  justify-self: center;
  font-family: "Knockout 51 A", "Knockout 51 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  font-size: 2rem;
  text-transform: uppercase;
  line-height: 2rem;
  text-align: center;
}
body > section#promo a aside, body > section.promo a aside {
  grid-column: 1;
  grid-row: 2;
  justify-self: center;
  font-family: "Knockout 51 A", "Knockout 51 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  font-size: 1.4rem;
  text-transform: uppercase;
  line-height: 2rem;
  text-align: center;
  color: #cccccc;
}
body > section#messages {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  padding-top: 9rem;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  z-index: 2000;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.15s linear;
}
body > section#messages div {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 68rem;
  width: 100%;
  height: fit-content;
  position: relative;
  box-sizing: border-box;
  padding: 3.6rem;
  background-color: #f6f5f2;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.5);
}
body > section#messages div img.close-icon {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}
body > section#messages div ul {
  width: 100%;
}
body > section#messages div ul li {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #232322;
  font-size: 1.9rem;
  line-height: 3rem;
  margin: 0;
  padding: 0;
  padding-left: 1.5rem;
  list-style: none;
}
body > section#messages div ul li::before {
  content: "▬";
  position: absolute;
  left: 3rem;
}
body > section#messages div ul li.debug::before {
  color: goldenrod;
}
body > section#messages div ul li.info::before {
  color: skyblue;
}
body > section#messages div ul li.success::before {
  color: limegreen;
}
body > section#messages div ul li.warning::before {
  color: orange;
}
body > section#messages div ul li.error::before {
  color: red;
}
body > section#messages div ul li strong {
  color: black;
  font: inherit;
  font-weight: bold;
}
body > section#messages div ul li .underline {
  text-decoration: underline;
}
body > footer {
  background-color: #373633;
}
body > footer li, body > footer span, body > footer a, body > footer p, body > footer h2 {
  color: hsl(45, 7.55%, 79.22%);
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  line-height: 3rem;
  font-size: 1.8rem;
}
body > footer section.util form {
  display: table;
  text-align: left;
  padding: 0.2rem 1rem 0.2rem 0.25rem;
  border-radius: 0.5rem;
  cursor: pointer;
  border: 1px solid #CECCC6;
}
@media only screen and (min-width: 320px) {
  body > footer section.util form {
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 720px) {
  body > footer section.util form {
    margin: 0;
  }
}
body > footer section.util form img {
  width: 3rem;
  height: 3rem;
  vertical-align: bottom;
}
body > footer section.util form span {
  vertical-align: bottom;
  margin-left: 0.5rem;
}
body > footer section#engagement {
  text-align: center;
}
body > footer section#engagement h2 {
  text-align: center;
  font-size: 2rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  line-height: 3rem;
  margin-bottom: 0.75rem;
}
body > footer section#engagement input {
  box-sizing: border-box;
  margin-left: 1rem;
  margin-right: 1rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #232322;
  font-size: 1.6rem;
  border: none;
  outline: none;
}
body > footer section#engagement input[type=email] {
  font-size: 1.9rem;
  font-weight: 400;
  width: 80%;
  padding-left: 1rem;
  padding-right: 1rem;
  height: 4.5rem;
}
body > footer section#engagement button[type=submit] {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  border: none;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  font-family: "Knockout 53 A", "Knockout 53 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  font-size: 1.8rem;
  line-height: 1.8rem;
  gap: 0.1rem;
}
body > footer section#engagement button[type=submit].call-to-action-option span {
  background-color: rgb(32.4494382022, 75.5730337079, 0.4269662921);
}
body > footer section#engagement button[type=submit] span, body > footer section#engagement button[type=submit] a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0 2rem;
  height: 4.2rem;
  min-width: 4.2rem;
  font: inherit;
  text-transform: uppercase;
  background-color: #4CB101;
  color: white;
}
body > footer section#engagement input[type=submit] {
  padding: 0;
  height: 3rem;
  font-size: 1.9rem;
  padding: 0 1rem;
  display: inline-block;
  background: #4CB101;
  border: none;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
}
body > footer section#engagement input[type=submit]:focus {
  outline: none;
}
body > footer {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
@media only screen and (min-width: 320px) {
  body > footer {
    padding: 3rem 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  body > footer {
    padding: 6rem 3rem;
  }
}
body > footer div {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0;
}
@media only screen and (min-width: 320px) {
  body > footer div {
    display: flex;
    flex-direction: column;
    row-gap: 3rem;
  }
  body > footer div nav {
    display: flex;
    justify-content: center;
  }
  body > footer div nav ul {
    display: block;
    column-count: 2;
    column-gap: 3rem;
    list-style-type: none;
  }
  body > footer div section.newsletter form {
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
    align-items: center;
  }
  body > footer div section.newsletter form button span {
    background-color: #28a15b !important;
  }
  body > footer div section.social-media {
    margin-top: 3rem;
  }
  body > footer div section.social-media ul {
    list-style-type: none;
    display: flex;
    gap: 2rem;
    justify-content: center;
  }
  body > footer div section.social-media ul li {
    display: block;
  }
  body > footer div section.social-media ul li a {
    display: block;
    line-height: 0;
    font-size: 0;
  }
}
@media only screen and (min-width: 720px) {
  body > footer div {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  body > footer div nav {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    box-sizing: border-box;
  }
  body > footer div nav ul {
    width: 75%;
    margin-right: auto;
  }
  body > footer div nav ul li {
    break-inside: avoid;
    width: 20ch;
  }
  body > footer div section.util {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    align-self: end;
  }
  body > footer div section#engagement {
    grid-column: 2;
    grid-row: 1/span 2;
    width: 100%;
    box-sizing: border-box;
  }
}
@media only screen and (min-width: 1000px) {
  body > footer div {
    max-width: 90rem;
  }
}
@media only screen and (min-width: 1281px) {
  body > footer div {
    max-width: 100rem;
  }
}
@media only screen and (min-width: 1710px) {
  body > footer div {
    max-width: 110rem;
  }
}
body > footer > p {
  width: 100%;
  text-align: center;
  background-color: #373633;
  margin: 0;
  margin-top: 3rem;
}
body > footer > p.to-the-top, body > footer > p.to-the-top a {
  color: hsl(45, 7.55%, 40%);
}
body > footer > p.copyrights {
  border-top: 1px solid #585755;
  padding: 0;
  padding-top: 3rem;
}

section#download-feedback {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  opacity: 0;
  transition: opacity 200ms linear;
  box-sizing: border-box;
  width: 100vw;
  height: 100vh;
  padding: 0;
  margin: 0;
  z-index: 500;
  background-color: rgba(0, 0, 0, 0.2980392157);
}
section#download-feedback div {
  box-sizing: border-box;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.5019607843);
  position: relative;
  width: max-content;
  border-radius: 1.5rem;
  background-color: #f5f4f2;
}
section#download-feedback div p {
  font-size: 1.92rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #1b1b1a;
  text-align: center;
  padding: 3rem;
}

section#lightbox {
  display: none;
  flex-grow: 1;
  justify-content: center;
  box-sizing: border-box;
  position: fixed;
  top: 0px !important;
  opacity: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  transition: opacity 0.15s linear;
}
section#lightbox > div {
  position: relative;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-basis: 68rem;
  padding: 3.6rem 0 3.6rem 0;
  background-color: #f5f4f2;
  box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.5);
}
@media only screen and (min-width: 320px) {
  section#lightbox > div {
    height: 100%;
    margin: 0 5rem 0 0;
  }
}
@media only screen and (min-width: 720px) {
  section#lightbox > div {
    height: fit-content;
    margin: 4.5rem;
  }
}
@media only screen and (min-width: 320px) {
  section#lightbox > div img.close-icon {
    display: none;
  }
}
@media only screen and (min-width: 720px) {
  section#lightbox > div img.close-icon {
    display: block;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
  }
}
section#lightbox > div section#cart-detail-empty button.call-to-action-2nd-tier {
  margin-bottom: 3rem;
}
section#lightbox > div > section {
  box-sizing: border-box;
  width: 100%;
  opacity: 0;
  transition: height 0.5s;
}
@media only screen and (min-width: 320px) {
  section#lightbox > div > section {
    overflow-y: scroll;
    padding: 0 3.6rem 0 3.6rem;
    max-height: calc(100vh - 7.2rem);
  }
  section#lightbox > div > section div > img {
    display: none;
  }
}
@media only screen and (min-width: 720px) {
  section#lightbox > div > section {
    overflow: auto;
    max-height: calc(100vh - 9rem - 7.2rem);
  }
}
section#lightbox > div > section img {
  display: block;
}
section#lightbox > div > section img.close-icon {
  cursor: pointer;
}
section#lightbox > div > section .cart-icon, section#lightbox > div > section svg {
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 4.5rem;
  height: 4.5rem;
}
section#lightbox > div > section .cart-icon g#cart-add-item, section#lightbox > div > section svg g#cart-add-item {
  fill: transparent;
}
section#lightbox > div > section .cart-icon path#cart,
section#lightbox > div > section .cart-icon g#checkmark path,
section#lightbox > div > section .cart-icon g#cart-filled path,
section#lightbox > div > section .cart-icon path#Combined-Shape,
section#lightbox > div > section .cart-icon path#dummy, section#lightbox > div > section svg path#cart,
section#lightbox > div > section svg g#checkmark path,
section#lightbox > div > section svg g#cart-filled path,
section#lightbox > div > section svg path#Combined-Shape,
section#lightbox > div > section svg path#dummy {
  fill: #17a352 !important;
}
section#lightbox > div > section h2 {
  font-size: 3.61rem;
  line-height: 3.61rem;
  font-family: "Knockout 50 A", "Knockout 50 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
  text-align: center;
  color: #17a352;
}
section#lightbox > div > section h2 + p {
  text-align: center;
  font-size: 1.92rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #1b1b1a;
  margin-bottom: 3rem;
}
section#lightbox > div > section h3 {
  font-size: 2rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
}
section#lightbox > div > section h3 label {
  display: block;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 1.22rem;
  text-transform: uppercase;
  color: #808080;
}
section#lightbox > div > section h3 input[type=text], section#lightbox > div > section h3 input[type=email], section#lightbox > div > section h3 select {
  width: 100%;
  box-sizing: border-box;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-size: 1.9rem;
  color: rgba(0, 0, 0, 0.85);
  line-height: 4.5rem;
  height: 4.5rem;
  background: #FFFFFF;
  border: 1px solid #786F53;
  box-shadow: inset 0 0 6px 0 rgba(0, 0, 0, 0.24);
  border-radius: 6px;
  padding: 0 1.5rem 0 1.5rem;
}
section#lightbox > div > section h3 select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-image: url("../images/cart-dropdown-list-arrows.svg");
  background-position: center right 1rem;
  background-repeat: no-repeat;
}
section#lightbox > div > section ul.cart-items {
  list-style-type: none;
  margin-bottom: 3rem;
  box-sizing: border-box;
}
section#lightbox > div > section ul.cart-items li {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #232322;
  font-size: 1.9rem;
  line-height: 3rem;
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid black;
  position: relative;
  padding: 0.3rem 0;
}
section#lightbox > div > section ul.cart-items li.short {
  margin-left: auto;
  width: 22rem;
}
section#lightbox > div > section ul.cart-items li:first-child {
  border-top: 1px solid black;
}
section#lightbox > div > section ul.cart-items li:hover img {
  opacity: 100%;
}
section#lightbox > div > section ul.cart-items li img {
  display: inline;
  vertical-align: bottom;
  opacity: 100%;
  cursor: pointer;
}
section#lightbox > div > section ul.cart-items li p {
  font: inherit;
  line-height: 3rem;
}
section#lightbox > div > section ul.cart-items li p.name {
  margin-right: auto;
  overflow: hidden;
}
section#lightbox > div > section ul.cart-items li p.subtotal, section#lightbox > div > section ul.cart-items li p.subtotal-amount, section#lightbox > div > section ul.cart-items li p.taxes, section#lightbox > div > section ul.cart-items li p.taxes-amount, section#lightbox > div > section ul.cart-items li p.total, section#lightbox > div > section ul.cart-items li p.total-amount {
  width: 12rem;
  text-align: right;
}
section#lightbox > div > section ul.cart-items li p.price-regular {
  text-decoration: line-through;
  opacity: 0.5;
  text-align: right;
}
section#lightbox > div > section ul.cart-items li p.price-current {
  text-align: right;
  margin-left: 0.5rem;
}
section#lightbox > div > section ul.cart-items li p.subtotal, section#lightbox > div > section ul.cart-items li p.taxes, section#lightbox > div > section ul.cart-items li p.total {
  margin-left: auto;
}
section#lightbox > div > section ul.cart-items li p.subtotal, section#lightbox > div > section ul.cart-items li p.subtotal-amount, section#lightbox > div > section ul.cart-items li p.total, section#lightbox > div > section ul.cart-items li p.total-amount {
  font-weight: bold;
}
section#lightbox > div > section h4 {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 1.22rem;
  line-height: 1.5rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 600;
  font-style: normal;
  text-transform: uppercase;
  color: #808080;
  line-height: 1.9rem;
  margin-top: auto;
}
section#lightbox > div > section img.payment-methods {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 386px;
}
section#lightbox > div > section > div.call-to-action {
  display: flex;
  flex-direction: row;
  justify-content: center;
  text-align: center;
  margin-top: 3rem;
}
@media only screen and (min-width: 320px) {
  section#lightbox > div > section > div.call-to-action {
    flex-direction: column;
  }
  section#lightbox > div > section > div.call-to-action button {
    display: list-item;
    margin: 1rem 0;
  }
}
@media only screen and (min-width: 720px) {
  section#lightbox > div > section > div.call-to-action {
    flex-direction: row;
  }
  section#lightbox > div > section > div.call-to-action button {
    margin: 0 1rem;
  }
}
section#lightbox > div > section button {
  display: inline-block;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0 1rem;
}
section#lightbox > div > section button:focus {
  outline: none;
}
section#lightbox > div > section button.call-to-action {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  border: none;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  font-family: "Knockout 53 A", "Knockout 53 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  font-size: 1.8rem;
  line-height: 1.8rem;
  gap: 0.1rem;
}
section#lightbox > div > section button.call-to-action.call-to-action-option span {
  background-color: rgb(32.4494382022, 75.5730337079, 0.4269662921);
}
section#lightbox > div > section button.call-to-action span, section#lightbox > div > section button.call-to-action a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0 2rem;
  height: 4.2rem;
  min-width: 4.2rem;
  font: inherit;
  text-transform: uppercase;
  background-color: #4CB101;
  color: white;
}
section#lightbox > div > section button.call-to-action span {
  background-color: #15a150 !important;
}
section#lightbox > div > section button.call-to-action-option {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  border: none;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  font-family: "Knockout 53 A", "Knockout 53 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  font-size: 1.8rem;
  line-height: 1.8rem;
  gap: 0.1rem;
}
section#lightbox > div > section button.call-to-action-option.call-to-action-option span {
  background-color: rgb(32.4494382022, 75.5730337079, 0.4269662921);
}
section#lightbox > div > section button.call-to-action-option span, section#lightbox > div > section button.call-to-action-option a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0 2rem;
  height: 4.2rem;
  min-width: 4.2rem;
  font: inherit;
  text-transform: uppercase;
  background-color: #4CB101;
  color: white;
}
section#lightbox > div > section button.call-to-action-option span {
  background-color: rgb(9.2307692308, 70.7692307692, 35.1648351648) !important;
}
section#lightbox > div > section button.call-to-action-2nd-tier {
  font-size: 1.92rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #1b1b1a;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.8rem;
  text-align: center;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  background-color: transparent;
}

div.swatches h1, div.swatches h2, div.swatches h2 > ul > li {
  color: #633455;
}
div.swatches section#hero div.background-top {
  background: radial-gradient(circle, rgb(115.7185430464, 60.7814569536, 99.3543046358) 0%, rgb(65.5629139073, 34.4370860927, 56.2913907285) 75%, rgb(65.5629139073, 34.4370860927, 56.2913907285) 100%);
}
div.swatches section#hero header p {
  color: rgb(219.1854304636, 186.8145695364, 209.5430463576);
}
div.swatches button.call-to-action span {
  color: white;
  background-color: #633455 !important;
}
div.swatches .call-to-action div.add-to-cart span {
  color: white;
  background-color: #633455;
}
div.swatches .call-to-action div.owned span, div.swatches .call-to-action div.in-cart span {
  background-color: grey;
}
div.swatches section#media-embeds button {
  display: inline-block;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
}
div.swatches section#media-embeds button:focus {
  outline: none;
}
div.swatches section#media-embeds li.playing div {
  background-color: rgb(65.5629139073, 34.4370860927, 56.2913907285);
}
div.swatches section#media-embeds li.playing button {
  background-color: rgb(65.5629139073, 34.4370860927, 56.2913907285);
}
div.swatches section#media-embeds li div {
  background-color: #633455;
}
div.swatches section#media-embeds li div h3 {
  color: #633455;
}
div.swatches section#media-embeds li button {
  background-color: #633455;
}
div.swatches section#biography button a {
  background-color: #633455;
}
div.lounge-lizard-ep-5 h1, div.lounge-lizard-ep-5 h2, div.lounge-lizard-ep-5 h2 > ul > li {
  color: #ab2429;
}
div.lounge-lizard-ep-5 section#hero div.background-top {
  background: radial-gradient(circle, rgb(192.0652173913, 40.4347826087, 46.0507246377) 0%, rgb(128.8695652174, 27.1304347826, 30.8985507246) 75%, rgb(128.8695652174, 27.1304347826, 30.8985507246) 100%);
}
div.lounge-lizard-ep-5 section#hero header p {
  color: rgb(246.652173913, 215.347826087, 216.5072463768);
}
div.lounge-lizard-ep-5 button.call-to-action span {
  color: white;
  background-color: #ab2429 !important;
}
div.lounge-lizard-ep-5 .call-to-action div.add-to-cart span {
  color: white;
  background-color: #ab2429;
}
div.lounge-lizard-ep-5 .call-to-action div.owned span, div.lounge-lizard-ep-5 .call-to-action div.in-cart span {
  background-color: grey;
}
div.lounge-lizard-ep-5 section#media-embeds button {
  display: inline-block;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
}
div.lounge-lizard-ep-5 section#media-embeds button:focus {
  outline: none;
}
div.lounge-lizard-ep-5 section#media-embeds li.playing div {
  background-color: rgb(128.8695652174, 27.1304347826, 30.8985507246);
}
div.lounge-lizard-ep-5 section#media-embeds li.playing button {
  background-color: rgb(128.8695652174, 27.1304347826, 30.8985507246);
}
div.lounge-lizard-ep-5 section#media-embeds li div {
  background-color: #ab2429;
}
div.lounge-lizard-ep-5 section#media-embeds li div h3 {
  color: #ab2429;
}
div.lounge-lizard-ep-5 section#media-embeds li button {
  background-color: #ab2429;
}
div.lounge-lizard-ep-5 section#biography button a {
  background-color: #ab2429;
}
div.lounge-lizard-ep-5 section#media-embeds div svg filter#flood-filter-stopped feFlood {
  flood-color: #b87c7f;
  flood-opacity: 0.3;
}
div.lounge-lizard-ep-5 section#media-embeds div svg filter#flood-filter-playing feFlood {
  flood-color: #c0b8b8;
  flood-opacity: 0.6;
}
div.lounge-lizard-ep-5 section#media-embeds div ul.audio-demos li button {
  position: relative;
  background-color: #e1dcdc;
}
div.lounge-lizard-ep-5 section#media-embeds div ul.audio-demos li button svg {
  width: 100%;
  height: auto;
}
div.lounge-lizard-ep-5 section#media-embeds div ul.audio-demos li button svg#play {
  display: block;
}
div.lounge-lizard-ep-5 section#media-embeds div ul.audio-demos li button svg#play rect#bg {
  fill: #e1dcdc;
}
div.lounge-lizard-ep-5 section#media-embeds div ul.audio-demos li button svg#play polygon#triangle {
  fill: #ac2229;
}
div.lounge-lizard-ep-5 section#media-embeds div ul.audio-demos li button svg#pause {
  display: none;
}
div.lounge-lizard-ep-5 section#media-embeds div ul.audio-demos li button svg#pause rect#bg {
  fill: #ac2229;
}
div.lounge-lizard-ep-5 section#media-embeds div ul.audio-demos li button svg#pause g#bars {
  fill: white;
}
div.lounge-lizard-ep-5 section#media-embeds div ul.audio-demos li > div {
  position: relative;
  background-color: #e1dcdc;
}
div.lounge-lizard-ep-5 section#media-embeds div ul.audio-demos li > div h3 {
  color: #ac2229;
}
div.lounge-lizard-ep-5 section#media-embeds div ul.audio-demos li > div h3 span {
  color: #4b4c48;
}
div.lounge-lizard-ep-5 section#media-embeds div ul.audio-demos li > div p.time {
  color: #4b4c48;
}
div.lounge-lizard-ep-5 section#media-embeds div ul.audio-demos li > div img {
  filter: url(#flood-filter-stopped);
}
div.lounge-lizard-ep-5 section#media-embeds div ul.audio-demos li > div svg {
  position: absolute;
  top: 0;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
}
div.lounge-lizard-ep-5 section#media-embeds div ul.audio-demos li > div progress {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
div.lounge-lizard-ep-5 section#media-embeds div ul.audio-demos li > div progress::-webkit-progress-bar {
  background-color: transparent;
}
div.lounge-lizard-ep-5 section#media-embeds div ul.audio-demos li > div ::-webkit-progress-value {
  background-color: #e3c1c1;
}
div.lounge-lizard-ep-5 section#media-embeds div ul.audio-demos li > div ::-moz-progress-bar {
  background-color: #e3c1c1;
}
div.lounge-lizard-ep-5 section#media-embeds div ul.audio-demos li.playing button {
  background-color: #ac2229;
}
div.lounge-lizard-ep-5 section#media-embeds div ul.audio-demos li.playing button svg#play {
  display: none;
}
div.lounge-lizard-ep-5 section#media-embeds div ul.audio-demos li.playing button svg#pause {
  display: block;
}
div.lounge-lizard-ep-5 section#media-embeds div ul.audio-demos li.playing div {
  background-color: #ac2229;
}
div.lounge-lizard-ep-5 section#media-embeds div ul.audio-demos li.playing div h3 {
  color: white;
}
div.lounge-lizard-ep-5 section#media-embeds div ul.audio-demos li.playing div h3 span {
  color: #e1a6a9;
}
div.lounge-lizard-ep-5 section#media-embeds div ul.audio-demos li.playing div p.time {
  color: white;
}
div.lounge-lizard-ep-5 section#media-embeds div ul.audio-demos li.playing div img {
  filter: url(#flood-filter-playing);
}
div.lounge-lizard-ep-5 section#media-embeds div ul.audio-demos li.playing div ::-webkit-progress-value {
  background-color: #9b050d;
}
div.lounge-lizard-ep-5 section#media-embeds div ul.audio-demos li.playing div ::-moz-progress-bar {
  background-color: #9b050d;
}
div.string-studio-vs-3 h1, div.string-studio-vs-3 h2, div.string-studio-vs-3 h2 > ul > li {
  color: #e55a20;
}
div.string-studio-vs-3 section#hero div.background-top {
  background: radial-gradient(circle, rgb(231.6626506024, 106.8975903614, 54.8373493976) 0%, rgb(188.0722891566, 70.843373494, 21.9277108434) 75%, rgb(188.0722891566, 70.843373494, 21.9277108434) 100%);
}
div.string-studio-vs-3 section#hero header p {
  color: white;
}
div.string-studio-vs-3 button.call-to-action span {
  color: white;
  background-color: #e55a20 !important;
}
div.string-studio-vs-3 .call-to-action div.add-to-cart span {
  color: white;
  background-color: #e55a20;
}
div.string-studio-vs-3 .call-to-action div.owned span, div.string-studio-vs-3 .call-to-action div.in-cart span {
  background-color: grey;
}
div.string-studio-vs-3 section#media-embeds button {
  display: inline-block;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
}
div.string-studio-vs-3 section#media-embeds button:focus {
  outline: none;
}
div.string-studio-vs-3 section#media-embeds li.playing div {
  background-color: rgb(188.0722891566, 70.843373494, 21.9277108434);
}
div.string-studio-vs-3 section#media-embeds li.playing button {
  background-color: rgb(188.0722891566, 70.843373494, 21.9277108434);
}
div.string-studio-vs-3 section#media-embeds li div {
  background-color: #e55a20;
}
div.string-studio-vs-3 section#media-embeds li div h3 {
  color: #e55a20;
}
div.string-studio-vs-3 section#media-embeds li button {
  background-color: #e55a20;
}
div.string-studio-vs-3 section#biography button a {
  background-color: #e55a20;
}
div.string-studio-vs-3 section#media-embeds div svg filter#flood-filter-stopped feFlood {
  flood-color: #f2a586;
  flood-opacity: 0.6;
}
div.string-studio-vs-3 section#media-embeds div svg filter#flood-filter-playing feFlood {
  flood-color: #f2a586;
  flood-opacity: 0.6;
}
div.string-studio-vs-3 section#media-embeds div ul.audio-demos li button {
  position: relative;
  background-color: #f7e4dd;
}
div.string-studio-vs-3 section#media-embeds div ul.audio-demos li button svg {
  width: 100%;
  height: auto;
}
div.string-studio-vs-3 section#media-embeds div ul.audio-demos li button svg#play {
  display: block;
}
div.string-studio-vs-3 section#media-embeds div ul.audio-demos li button svg#play rect#bg {
  fill: #f7e4dd;
}
div.string-studio-vs-3 section#media-embeds div ul.audio-demos li button svg#play polygon#triangle {
  fill: #d46234;
}
div.string-studio-vs-3 section#media-embeds div ul.audio-demos li button svg#pause {
  display: none;
}
div.string-studio-vs-3 section#media-embeds div ul.audio-demos li button svg#pause rect#bg {
  fill: #d46234;
}
div.string-studio-vs-3 section#media-embeds div ul.audio-demos li button svg#pause g#bars {
  fill: white;
}
div.string-studio-vs-3 section#media-embeds div ul.audio-demos li > div {
  position: relative;
  background-color: #f7e4dd;
}
div.string-studio-vs-3 section#media-embeds div ul.audio-demos li > div h3 {
  color: #d46234;
}
div.string-studio-vs-3 section#media-embeds div ul.audio-demos li > div h3 span {
  color: #4b4c48;
}
div.string-studio-vs-3 section#media-embeds div ul.audio-demos li > div p.time {
  color: #4b4c48;
}
div.string-studio-vs-3 section#media-embeds div ul.audio-demos li > div img {
  filter: url(#flood-filter-stopped);
}
div.string-studio-vs-3 section#media-embeds div ul.audio-demos li > div svg {
  position: absolute;
  top: 0;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
}
div.string-studio-vs-3 section#media-embeds div ul.audio-demos li > div progress {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
div.string-studio-vs-3 section#media-embeds div ul.audio-demos li > div progress::-webkit-progress-bar {
  background-color: transparent;
}
div.string-studio-vs-3 section#media-embeds div ul.audio-demos li > div ::-webkit-progress-value {
  background-color: #fad1c0;
}
div.string-studio-vs-3 section#media-embeds div ul.audio-demos li > div ::-moz-progress-bar {
  background-color: #fad1c0;
}
div.string-studio-vs-3 section#media-embeds div ul.audio-demos li.playing button {
  background-color: #d46234;
}
div.string-studio-vs-3 section#media-embeds div ul.audio-demos li.playing button svg#play {
  display: none;
}
div.string-studio-vs-3 section#media-embeds div ul.audio-demos li.playing button svg#pause {
  display: block;
}
div.string-studio-vs-3 section#media-embeds div ul.audio-demos li.playing div {
  background-color: #d46234;
}
div.string-studio-vs-3 section#media-embeds div ul.audio-demos li.playing div h3 {
  color: white;
}
div.string-studio-vs-3 section#media-embeds div ul.audio-demos li.playing div h3 span {
  color: #f9c2ac;
}
div.string-studio-vs-3 section#media-embeds div ul.audio-demos li.playing div p.time {
  color: white;
}
div.string-studio-vs-3 section#media-embeds div ul.audio-demos li.playing div img {
  filter: url(#flood-filter-playing);
}
div.string-studio-vs-3 section#media-embeds div ul.audio-demos li.playing div ::-webkit-progress-value {
  background-color: #bf4514;
}
div.string-studio-vs-3 section#media-embeds div ul.audio-demos li.playing div ::-moz-progress-bar {
  background-color: #bf4514;
}
div.multiphonics-cv-3 h1, div.multiphonics-cv-3 h2, div.multiphonics-cv-3 h2 > ul > li {
  color: #3279AD;
}
div.multiphonics-cv-3 section#hero div.background-top {
  background: radial-gradient(circle, rgb(55.7174887892, 134.83632287, 192.7825112108) 0%, rgb(38.5650224215, 93.3273542601, 133.4349775785) 75%, rgb(38.5650224215, 93.3273542601, 133.4349775785) 100%);
}
div.multiphonics-cv-3 section#hero header p {
  color: rgb(230.1748878924, 240.3632286996, 247.8251121076);
}
div.multiphonics-cv-3 button.call-to-action span {
  color: white;
  background-color: #3279AD !important;
}
div.multiphonics-cv-3 .call-to-action div.add-to-cart span {
  color: white;
  background-color: #3279AD;
}
div.multiphonics-cv-3 .call-to-action div.owned span, div.multiphonics-cv-3 .call-to-action div.in-cart span {
  background-color: grey;
}
div.multiphonics-cv-3 section#media-embeds button {
  display: inline-block;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
}
div.multiphonics-cv-3 section#media-embeds button:focus {
  outline: none;
}
div.multiphonics-cv-3 section#media-embeds li.playing div {
  background-color: rgb(38.5650224215, 93.3273542601, 133.4349775785);
}
div.multiphonics-cv-3 section#media-embeds li.playing button {
  background-color: rgb(38.5650224215, 93.3273542601, 133.4349775785);
}
div.multiphonics-cv-3 section#media-embeds li div {
  background-color: #3279AD;
}
div.multiphonics-cv-3 section#media-embeds li div h3 {
  color: #3279AD;
}
div.multiphonics-cv-3 section#media-embeds li button {
  background-color: #3279AD;
}
div.multiphonics-cv-3 section#biography button a {
  background-color: #3279AD;
}
div.ultra-analog-va-3 h1, div.ultra-analog-va-3 h2, div.ultra-analog-va-3 h2 > ul > li {
  color: #658f30;
}
div.ultra-analog-va-3 section#hero div.background-top {
  background: radial-gradient(circle, rgb(114.4842931937, 162.0916230366, 54.4083769634) 0%, rgb(74.0314136126, 104.8167539267, 35.1832460733) 75%, rgb(74.0314136126, 104.8167539267, 35.1832460733) 100%);
}
div.ultra-analog-va-3 section#hero header p {
  color: rgb(224.8429319372, 238.9162303665, 207.0837696335);
}
div.ultra-analog-va-3 button.call-to-action span {
  color: white;
  background-color: #658f30 !important;
}
div.ultra-analog-va-3 .call-to-action div.add-to-cart span {
  color: white;
  background-color: #658f30;
}
div.ultra-analog-va-3 .call-to-action div.owned span, div.ultra-analog-va-3 .call-to-action div.in-cart span {
  background-color: grey;
}
div.ultra-analog-va-3 section#media-embeds button {
  display: inline-block;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
}
div.ultra-analog-va-3 section#media-embeds button:focus {
  outline: none;
}
div.ultra-analog-va-3 section#media-embeds li.playing div {
  background-color: rgb(74.0314136126, 104.8167539267, 35.1832460733);
}
div.ultra-analog-va-3 section#media-embeds li.playing button {
  background-color: rgb(74.0314136126, 104.8167539267, 35.1832460733);
}
div.ultra-analog-va-3 section#media-embeds li div {
  background-color: #658f30;
}
div.ultra-analog-va-3 section#media-embeds li div h3 {
  color: #658f30;
}
div.ultra-analog-va-3 section#media-embeds li button {
  background-color: #658f30;
}
div.ultra-analog-va-3 section#biography button a {
  background-color: #658f30;
}
div.ultra-analog-va-3 section#media-embeds div svg filter#flood-filter-stopped feFlood {
  flood-color: #567e2a;
  flood-opacity: 0.3;
}
div.ultra-analog-va-3 section#media-embeds div svg filter#flood-filter-playing feFlood {
  flood-color: #9fb785;
  flood-opacity: 0.6;
}
div.ultra-analog-va-3 section#media-embeds div ul.audio-demos li button {
  position: relative;
  background-color: #dce6d8;
}
div.ultra-analog-va-3 section#media-embeds div ul.audio-demos li button svg {
  width: 100%;
  height: auto;
}
div.ultra-analog-va-3 section#media-embeds div ul.audio-demos li button svg#play {
  display: block;
}
div.ultra-analog-va-3 section#media-embeds div ul.audio-demos li button svg#play rect#bg {
  fill: #dce6d8;
}
div.ultra-analog-va-3 section#media-embeds div ul.audio-demos li button svg#play polygon#triangle {
  fill: #567e2a;
}
div.ultra-analog-va-3 section#media-embeds div ul.audio-demos li button svg#pause {
  display: none;
}
div.ultra-analog-va-3 section#media-embeds div ul.audio-demos li button svg#pause rect#bg {
  fill: #567e2a;
}
div.ultra-analog-va-3 section#media-embeds div ul.audio-demos li button svg#pause g#bars {
  fill: white;
}
div.ultra-analog-va-3 section#media-embeds div ul.audio-demos li > div {
  position: relative;
  background-color: #dce6d8;
}
div.ultra-analog-va-3 section#media-embeds div ul.audio-demos li > div h3 {
  color: #567e2a;
}
div.ultra-analog-va-3 section#media-embeds div ul.audio-demos li > div h3 span {
  color: #4b4c48;
}
div.ultra-analog-va-3 section#media-embeds div ul.audio-demos li > div p.time {
  color: #4b4c48;
}
div.ultra-analog-va-3 section#media-embeds div ul.audio-demos li > div img {
  filter: url(#flood-filter-stopped);
}
div.ultra-analog-va-3 section#media-embeds div ul.audio-demos li > div svg {
  position: absolute;
  top: 0;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
}
div.ultra-analog-va-3 section#media-embeds div ul.audio-demos li > div progress {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
div.ultra-analog-va-3 section#media-embeds div ul.audio-demos li > div progress::-webkit-progress-bar {
  background-color: transparent;
}
div.ultra-analog-va-3 section#media-embeds div ul.audio-demos li > div ::-webkit-progress-value {
  background-color: #c1cbb6;
}
div.ultra-analog-va-3 section#media-embeds div ul.audio-demos li > div ::-moz-progress-bar {
  background-color: #c1cbb6;
}
div.ultra-analog-va-3 section#media-embeds div ul.audio-demos li.playing button {
  background-color: #567e2a;
}
div.ultra-analog-va-3 section#media-embeds div ul.audio-demos li.playing button svg#play {
  display: none;
}
div.ultra-analog-va-3 section#media-embeds div ul.audio-demos li.playing button svg#pause {
  display: block;
}
div.ultra-analog-va-3 section#media-embeds div ul.audio-demos li.playing div {
  background-color: #567e2a;
}
div.ultra-analog-va-3 section#media-embeds div ul.audio-demos li.playing div h3 {
  color: white;
}
div.ultra-analog-va-3 section#media-embeds div ul.audio-demos li.playing div h3 span {
  color: #c6d2b8;
}
div.ultra-analog-va-3 section#media-embeds div ul.audio-demos li.playing div p.time {
  color: white;
}
div.ultra-analog-va-3 section#media-embeds div ul.audio-demos li.playing div img {
  filter: url(#flood-filter-playing);
}
div.ultra-analog-va-3 section#media-embeds div ul.audio-demos li.playing div ::-webkit-progress-value {
  background-color: #427016;
}
div.ultra-analog-va-3 section#media-embeds div ul.audio-demos li.playing div ::-moz-progress-bar {
  background-color: #427016;
}
div.chromaphone-3 h1, div.chromaphone-3 h2, div.chromaphone-3 h2 > ul > li {
  color: #118177;
}
div.chromaphone-3 section#hero div.background-top {
  background: radial-gradient(circle, rgb(19.9691780822, 151.5308219178, 139.7842465753) 0%, rgb(11.0616438356, 83.9383561644, 77.4315068493) 75%, rgb(11.0616438356, 83.9383561644, 77.4315068493) 100%);
}
div.chromaphone-3 section#hero header p {
  color: rgb(158.6917808219, 242.3082191781, 234.8424657534);
}
div.chromaphone-3 button.call-to-action span {
  color: white;
  background-color: #118177 !important;
}
div.chromaphone-3 .call-to-action div.add-to-cart span {
  color: white;
  background-color: #118177;
}
div.chromaphone-3 .call-to-action div.owned span, div.chromaphone-3 .call-to-action div.in-cart span {
  background-color: grey;
}
div.chromaphone-3 section#media-embeds button {
  display: inline-block;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
}
div.chromaphone-3 section#media-embeds button:focus {
  outline: none;
}
div.chromaphone-3 section#media-embeds li.playing div {
  background-color: rgb(11.0616438356, 83.9383561644, 77.4315068493);
}
div.chromaphone-3 section#media-embeds li.playing button {
  background-color: rgb(11.0616438356, 83.9383561644, 77.4315068493);
}
div.chromaphone-3 section#media-embeds li div {
  background-color: #118177;
}
div.chromaphone-3 section#media-embeds li div h3 {
  color: #118177;
}
div.chromaphone-3 section#media-embeds li button {
  background-color: #118177;
}
div.chromaphone-3 section#biography button a {
  background-color: #118177;
}
div.chromaphone-3 section#media-embeds div svg filter#flood-filter-stopped feFlood {
  flood-color: #3a988f;
  flood-opacity: 0.3;
}
div.chromaphone-3 section#media-embeds div svg filter#flood-filter-playing feFlood {
  flood-color: #80b6b1;
  flood-opacity: 0.6;
}
div.chromaphone-3 section#media-embeds div ul.audio-demos li button {
  position: relative;
  background-color: #d8e6e4;
}
div.chromaphone-3 section#media-embeds div ul.audio-demos li button svg {
  width: 100%;
  height: auto;
}
div.chromaphone-3 section#media-embeds div ul.audio-demos li button svg#play {
  display: block;
}
div.chromaphone-3 section#media-embeds div ul.audio-demos li button svg#play rect#bg {
  fill: #d8e6e4;
}
div.chromaphone-3 section#media-embeds div ul.audio-demos li button svg#play polygon#triangle {
  fill: #118177;
}
div.chromaphone-3 section#media-embeds div ul.audio-demos li button svg#pause {
  display: none;
}
div.chromaphone-3 section#media-embeds div ul.audio-demos li button svg#pause rect#bg {
  fill: #118177;
}
div.chromaphone-3 section#media-embeds div ul.audio-demos li button svg#pause g#bars {
  fill: white;
}
div.chromaphone-3 section#media-embeds div ul.audio-demos li > div {
  position: relative;
  background-color: #d8e6e4;
}
div.chromaphone-3 section#media-embeds div ul.audio-demos li > div h3 {
  color: #118177;
}
div.chromaphone-3 section#media-embeds div ul.audio-demos li > div h3 span {
  color: #4b4c48;
}
div.chromaphone-3 section#media-embeds div ul.audio-demos li > div p.time {
  color: #4b4c48;
}
div.chromaphone-3 section#media-embeds div ul.audio-demos li > div img {
  filter: url(#flood-filter-stopped);
}
div.chromaphone-3 section#media-embeds div ul.audio-demos li > div svg {
  position: absolute;
  top: 0;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
}
div.chromaphone-3 section#media-embeds div ul.audio-demos li > div progress {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
div.chromaphone-3 section#media-embeds div ul.audio-demos li > div progress::-webkit-progress-bar {
  background-color: transparent;
}
div.chromaphone-3 section#media-embeds div ul.audio-demos li > div ::-webkit-progress-value {
  background-color: #b7dad5;
}
div.chromaphone-3 section#media-embeds div ul.audio-demos li > div ::-moz-progress-bar {
  background-color: #b7dad5;
}
div.chromaphone-3 section#media-embeds div ul.audio-demos li.playing button {
  background-color: #118177;
}
div.chromaphone-3 section#media-embeds div ul.audio-demos li.playing button svg#play {
  display: none;
}
div.chromaphone-3 section#media-embeds div ul.audio-demos li.playing button svg#pause {
  display: block;
}
div.chromaphone-3 section#media-embeds div ul.audio-demos li.playing div {
  background-color: #118177;
}
div.chromaphone-3 section#media-embeds div ul.audio-demos li.playing div h3 {
  color: white;
}
div.chromaphone-3 section#media-embeds div ul.audio-demos li.playing div h3 span {
  color: #b8d2cf;
}
div.chromaphone-3 section#media-embeds div ul.audio-demos li.playing div p.time {
  color: white;
}
div.chromaphone-3 section#media-embeds div ul.audio-demos li.playing div img {
  filter: url(#flood-filter-playing);
}
div.chromaphone-3 section#media-embeds div ul.audio-demos li.playing div ::-webkit-progress-value {
  background-color: #126b63;
}
div.chromaphone-3 section#media-embeds div ul.audio-demos li.playing div ::-moz-progress-bar {
  background-color: #126b63;
}
div.strum-gs-2 h1, div.strum-gs-2 h2, div.strum-gs-2 h2 > ul > li {
  color: #e8ad1f;
}
div.strum-gs-2 section#hero div.background-top {
  background: radial-gradient(circle, rgb(234.3744939271, 181.4655870445, 54.1255060729) 0%, rgb(192.2591093117, 141.6194331984, 19.7408906883) 75%, rgb(192.2591093117, 141.6194331984, 19.7408906883) 100%);
}
div.strum-gs-2 section#hero header p {
  color: white;
}
div.strum-gs-2 button.call-to-action span {
  color: white;
  background-color: #e8ad1f !important;
}
div.strum-gs-2 .call-to-action div.add-to-cart span {
  color: white;
  background-color: #e8ad1f;
}
div.strum-gs-2 .call-to-action div.owned span, div.strum-gs-2 .call-to-action div.in-cart span {
  background-color: grey;
}
div.strum-gs-2 section#media-embeds button {
  display: inline-block;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
}
div.strum-gs-2 section#media-embeds button:focus {
  outline: none;
}
div.strum-gs-2 section#media-embeds li.playing div {
  background-color: rgb(192.2591093117, 141.6194331984, 19.7408906883);
}
div.strum-gs-2 section#media-embeds li.playing button {
  background-color: rgb(192.2591093117, 141.6194331984, 19.7408906883);
}
div.strum-gs-2 section#media-embeds li div {
  background-color: #e8ad1f;
}
div.strum-gs-2 section#media-embeds li div h3 {
  color: #e8ad1f;
}
div.strum-gs-2 section#media-embeds li button {
  background-color: #e8ad1f;
}
div.strum-gs-2 section#biography button a {
  background-color: #e8ad1f;
}
div.strum-gs-2 section#media-embeds div svg filter#flood-filter-stopped feFlood {
  flood-color: #dda92b;
  flood-opacity: 0.6;
}
div.strum-gs-2 section#media-embeds div svg filter#flood-filter-playing feFlood {
  flood-color: #f0daa4;
  flood-opacity: 0.6;
}
div.strum-gs-2 section#media-embeds div ul.audio-demos li button {
  position: relative;
  background-color: #f0dfb7;
}
div.strum-gs-2 section#media-embeds div ul.audio-demos li button svg {
  width: 100%;
  height: auto;
}
div.strum-gs-2 section#media-embeds div ul.audio-demos li button svg#play {
  display: block;
}
div.strum-gs-2 section#media-embeds div ul.audio-demos li button svg#play rect#bg {
  fill: #f0dfb7;
}
div.strum-gs-2 section#media-embeds div ul.audio-demos li button svg#play polygon#triangle {
  fill: #e8ad1f;
}
div.strum-gs-2 section#media-embeds div ul.audio-demos li button svg#pause {
  display: none;
}
div.strum-gs-2 section#media-embeds div ul.audio-demos li button svg#pause rect#bg {
  fill: #e8ad1f;
}
div.strum-gs-2 section#media-embeds div ul.audio-demos li button svg#pause g#bars {
  fill: white;
}
div.strum-gs-2 section#media-embeds div ul.audio-demos li > div {
  position: relative;
  background-color: #f0dfb7;
}
div.strum-gs-2 section#media-embeds div ul.audio-demos li > div h3 {
  color: #e8ad1f;
}
div.strum-gs-2 section#media-embeds div ul.audio-demos li > div h3 span {
  color: #4b4c48;
}
div.strum-gs-2 section#media-embeds div ul.audio-demos li > div p.time {
  color: #4b4c48;
}
div.strum-gs-2 section#media-embeds div ul.audio-demos li > div img {
  filter: url(#flood-filter-stopped);
}
div.strum-gs-2 section#media-embeds div ul.audio-demos li > div svg {
  position: absolute;
  top: 0;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
}
div.strum-gs-2 section#media-embeds div ul.audio-demos li > div progress {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
div.strum-gs-2 section#media-embeds div ul.audio-demos li > div progress::-webkit-progress-bar {
  background-color: transparent;
}
div.strum-gs-2 section#media-embeds div ul.audio-demos li > div ::-webkit-progress-value {
  background-color: #f1cc72;
}
div.strum-gs-2 section#media-embeds div ul.audio-demos li > div ::-moz-progress-bar {
  background-color: #f1cc72;
}
div.strum-gs-2 section#media-embeds div ul.audio-demos li.playing button {
  background-color: #e8ad1f;
}
div.strum-gs-2 section#media-embeds div ul.audio-demos li.playing button svg#play {
  display: none;
}
div.strum-gs-2 section#media-embeds div ul.audio-demos li.playing button svg#pause {
  display: block;
}
div.strum-gs-2 section#media-embeds div ul.audio-demos li.playing div {
  background-color: #e8ad1f;
}
div.strum-gs-2 section#media-embeds div ul.audio-demos li.playing div h3 {
  color: white;
}
div.strum-gs-2 section#media-embeds div ul.audio-demos li.playing div h3 span {
  color: #414240;
}
div.strum-gs-2 section#media-embeds div ul.audio-demos li.playing div p.time {
  color: white;
}
div.strum-gs-2 section#media-embeds div ul.audio-demos li.playing div img {
  filter: url(#flood-filter-playing);
}
div.strum-gs-2 section#media-embeds div ul.audio-demos li.playing div ::-webkit-progress-value {
  background-color: #c78e04;
}
div.strum-gs-2 section#media-embeds div ul.audio-demos li.playing div ::-moz-progress-bar {
  background-color: #c78e04;
}
div.multiphonics-cv-3 h1, div.multiphonics-cv-3 h2, div.multiphonics-cv-3 h2 > ul > li {
  color: #3279AD;
}
div.multiphonics-cv-3 section#hero div.background-top {
  background: radial-gradient(circle, rgb(55.7174887892, 134.83632287, 192.7825112108) 0%, rgb(38.5650224215, 93.3273542601, 133.4349775785) 75%, rgb(38.5650224215, 93.3273542601, 133.4349775785) 100%);
}
div.multiphonics-cv-3 section#hero header p {
  color: rgb(230.1748878924, 240.3632286996, 247.8251121076);
}
div.multiphonics-cv-3 button.call-to-action span {
  color: white;
  background-color: #3279AD !important;
}
div.multiphonics-cv-3 .call-to-action div.add-to-cart span {
  color: white;
  background-color: #3279AD;
}
div.multiphonics-cv-3 .call-to-action div.owned span, div.multiphonics-cv-3 .call-to-action div.in-cart span {
  background-color: grey;
}
div.multiphonics-cv-3 section#media-embeds button {
  display: inline-block;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
}
div.multiphonics-cv-3 section#media-embeds button:focus {
  outline: none;
}
div.multiphonics-cv-3 section#media-embeds li.playing div {
  background-color: rgb(38.5650224215, 93.3273542601, 133.4349775785);
}
div.multiphonics-cv-3 section#media-embeds li.playing button {
  background-color: rgb(38.5650224215, 93.3273542601, 133.4349775785);
}
div.multiphonics-cv-3 section#media-embeds li div {
  background-color: #3279AD;
}
div.multiphonics-cv-3 section#media-embeds li div h3 {
  color: #3279AD;
}
div.multiphonics-cv-3 section#media-embeds li button {
  background-color: #3279AD;
}
div.multiphonics-cv-3 section#biography button a {
  background-color: #3279AD;
}
div.multiphonics-cv-3 section#media-embeds div svg filter#flood-filter-stopped feFlood {
  flood-color: #71add8;
  flood-opacity: 0.6;
}
div.multiphonics-cv-3 section#media-embeds div svg filter#flood-filter-playing feFlood {
  flood-color: #71add8;
  flood-opacity: 0.6;
}
div.multiphonics-cv-3 section#media-embeds div ul.audio-demos li button {
  position: relative;
  background-color: #d8eefd;
}
div.multiphonics-cv-3 section#media-embeds div ul.audio-demos li button svg {
  width: 100%;
  height: auto;
}
div.multiphonics-cv-3 section#media-embeds div ul.audio-demos li button svg#play {
  display: block;
}
div.multiphonics-cv-3 section#media-embeds div ul.audio-demos li button svg#play rect#bg {
  fill: #d8eefd;
}
div.multiphonics-cv-3 section#media-embeds div ul.audio-demos li button svg#play polygon#triangle {
  fill: #327aad;
}
div.multiphonics-cv-3 section#media-embeds div ul.audio-demos li button svg#pause {
  display: none;
}
div.multiphonics-cv-3 section#media-embeds div ul.audio-demos li button svg#pause rect#bg {
  fill: #327aad;
}
div.multiphonics-cv-3 section#media-embeds div ul.audio-demos li button svg#pause g#bars {
  fill: white;
}
div.multiphonics-cv-3 section#media-embeds div ul.audio-demos li > div {
  position: relative;
  background-color: #d8eefd;
}
div.multiphonics-cv-3 section#media-embeds div ul.audio-demos li > div h3 {
  color: #327aad;
}
div.multiphonics-cv-3 section#media-embeds div ul.audio-demos li > div h3 span {
  color: #4b4c48;
}
div.multiphonics-cv-3 section#media-embeds div ul.audio-demos li > div p.time {
  color: #4b4c48;
}
div.multiphonics-cv-3 section#media-embeds div ul.audio-demos li > div img {
  filter: url(#flood-filter-stopped);
}
div.multiphonics-cv-3 section#media-embeds div ul.audio-demos li > div svg {
  position: absolute;
  top: 0;
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
}
div.multiphonics-cv-3 section#media-embeds div ul.audio-demos li > div progress {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
div.multiphonics-cv-3 section#media-embeds div ul.audio-demos li > div progress::-webkit-progress-bar {
  background-color: transparent;
}
div.multiphonics-cv-3 section#media-embeds div ul.audio-demos li > div ::-webkit-progress-value {
  background-color: #d8eefd;
}
div.multiphonics-cv-3 section#media-embeds div ul.audio-demos li > div ::-moz-progress-bar {
  background-color: #d8eefd;
}
div.multiphonics-cv-3 section#media-embeds div ul.audio-demos li.playing button {
  background-color: #327aad;
}
div.multiphonics-cv-3 section#media-embeds div ul.audio-demos li.playing button svg#play {
  display: none;
}
div.multiphonics-cv-3 section#media-embeds div ul.audio-demos li.playing button svg#pause {
  display: block;
}
div.multiphonics-cv-3 section#media-embeds div ul.audio-demos li.playing div {
  background-color: #327aad;
}
div.multiphonics-cv-3 section#media-embeds div ul.audio-demos li.playing div h3 {
  color: white;
}
div.multiphonics-cv-3 section#media-embeds div ul.audio-demos li.playing div h3 span {
  color: #92c1e2;
}
div.multiphonics-cv-3 section#media-embeds div ul.audio-demos li.playing div p.time {
  color: white;
}
div.multiphonics-cv-3 section#media-embeds div ul.audio-demos li.playing div img {
  filter: url(#flood-filter-playing);
}
div.multiphonics-cv-3 section#media-embeds div ul.audio-demos li.playing div ::-webkit-progress-value {
  background-color: #1667a0;
}
div.multiphonics-cv-3 section#media-embeds div ul.audio-demos li.playing div ::-moz-progress-bar {
  background-color: #1667a0;
}
div.objeq-delay h1, div.objeq-delay h2, div.objeq-delay h2 > ul > li {
  color: #0A665E;
}
div.objeq-delay section#hero div.background-top {
  background: radial-gradient(circle, rgb(12.2767857143, 125.2232142857, 115.4017857143) 0%, rgb(5.4464285714, 55.5535714286, 51.1964285714) 75%, rgb(5.4464285714, 55.5535714286, 51.1964285714) 100%);
}
div.objeq-delay section#hero header p {
  color: rgb(124.7678571429, 242.2321428571, 232.0178571429);
}
div.objeq-delay button.call-to-action span {
  color: white;
  background-color: #0A665E !important;
}
div.objeq-delay .call-to-action div.add-to-cart span {
  color: white;
  background-color: #0A665E;
}
div.objeq-delay .call-to-action div.owned span, div.objeq-delay .call-to-action div.in-cart span {
  background-color: grey;
}
div.objeq-delay section#media-embeds button {
  display: inline-block;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
}
div.objeq-delay section#media-embeds button:focus {
  outline: none;
}
div.objeq-delay section#media-embeds li.playing div {
  background-color: rgb(5.4464285714, 55.5535714286, 51.1964285714);
}
div.objeq-delay section#media-embeds li.playing button {
  background-color: rgb(5.4464285714, 55.5535714286, 51.1964285714);
}
div.objeq-delay section#media-embeds li div {
  background-color: #0A665E;
}
div.objeq-delay section#media-embeds li div h3 {
  color: #0A665E;
}
div.objeq-delay section#media-embeds li button {
  background-color: #0A665E;
}
div.objeq-delay section#biography button a {
  background-color: #0A665E;
}
div.the-integral h1, div.the-integral h2, div.the-integral h2 > ul > li {
  color: #5C4C5E;
}
div.the-integral section#hero div.background-top {
  background: radial-gradient(circle, rgb(105.8, 87.4, 108.1) 0%, rgb(64.4, 53.2, 65.8) 75%, rgb(64.4, 53.2, 65.8) 100%);
}
div.the-integral section#hero header p {
  color: #d8d0d9;
}
div.the-integral button.call-to-action span {
  color: white;
  background-color: #5C4C5E !important;
}
div.the-integral .call-to-action div.add-to-cart span {
  color: white;
  background-color: #5C4C5E;
}
div.the-integral .call-to-action div.owned span, div.the-integral .call-to-action div.in-cart span {
  background-color: grey;
}
div.the-integral section#media-embeds button {
  display: inline-block;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
}
div.the-integral section#media-embeds button:focus {
  outline: none;
}
div.the-integral section#media-embeds li.playing div {
  background-color: rgb(64.4, 53.2, 65.8);
}
div.the-integral section#media-embeds li.playing button {
  background-color: rgb(64.4, 53.2, 65.8);
}
div.the-integral section#media-embeds li div {
  background-color: #5C4C5E;
}
div.the-integral section#media-embeds li div h3 {
  color: #5C4C5E;
}
div.the-integral section#media-embeds li button {
  background-color: #5C4C5E;
}
div.the-integral section#biography button a {
  background-color: #5C4C5E;
}
div.modeling-collection h1, div.modeling-collection h2, div.modeling-collection h2 > ul > li {
  color: #5C4C5E;
}
div.modeling-collection section#hero div.background-top {
  background: radial-gradient(circle, rgb(105.8, 87.4, 108.1) 0%, rgb(64.4, 53.2, 65.8) 75%, rgb(64.4, 53.2, 65.8) 100%);
}
div.modeling-collection section#hero header p {
  color: #d8d0d9;
}
div.modeling-collection button.call-to-action span {
  color: white;
  background-color: #5C4C5E !important;
}
div.modeling-collection .call-to-action div.add-to-cart span {
  color: white;
  background-color: #5C4C5E;
}
div.modeling-collection .call-to-action div.owned span, div.modeling-collection .call-to-action div.in-cart span {
  background-color: grey;
}
div.modeling-collection section#media-embeds button {
  display: inline-block;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
}
div.modeling-collection section#media-embeds button:focus {
  outline: none;
}
div.modeling-collection section#media-embeds li.playing div {
  background-color: rgb(64.4, 53.2, 65.8);
}
div.modeling-collection section#media-embeds li.playing button {
  background-color: rgb(64.4, 53.2, 65.8);
}
div.modeling-collection section#media-embeds li div {
  background-color: #5C4C5E;
}
div.modeling-collection section#media-embeds li div h3 {
  color: #5C4C5E;
}
div.modeling-collection section#media-embeds li button {
  background-color: #5C4C5E;
}
div.modeling-collection section#biography button a {
  background-color: #5C4C5E;
}
div.libraries h1, div.libraries h2, div.libraries h2 > ul > li {
  color: #5C4C5E;
}
div.libraries section#hero div.background-top {
  background: radial-gradient(circle, rgb(105.8, 87.4, 108.1) 0%, rgb(64.4, 53.2, 65.8) 75%, rgb(64.4, 53.2, 65.8) 100%);
}
div.libraries section#hero header p {
  color: #d8d0d9;
}
div.libraries button.call-to-action span {
  color: white;
  background-color: #5C4C5E !important;
}
div.libraries .call-to-action div.add-to-cart span {
  color: white;
  background-color: #5C4C5E;
}
div.libraries .call-to-action div.owned span, div.libraries .call-to-action div.in-cart span {
  background-color: grey;
}
div.libraries section#media-embeds button {
  display: inline-block;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
}
div.libraries section#media-embeds button:focus {
  outline: none;
}
div.libraries section#media-embeds li.playing div {
  background-color: rgb(64.4, 53.2, 65.8);
}
div.libraries section#media-embeds li.playing button {
  background-color: rgb(64.4, 53.2, 65.8);
}
div.libraries section#media-embeds li div {
  background-color: #5C4C5E;
}
div.libraries section#media-embeds li div h3 {
  color: #5C4C5E;
}
div.libraries section#media-embeds li button {
  background-color: #5C4C5E;
}
div.libraries section#biography button a {
  background-color: #5C4C5E;
}
div.session-bundle h1, div.session-bundle h2, div.session-bundle h2 > ul > li {
  color: #5C4C5E;
}
div.session-bundle section#hero div.background-top {
  background: radial-gradient(circle, rgb(105.8, 87.4, 108.1) 0%, rgb(64.4, 53.2, 65.8) 75%, rgb(64.4, 53.2, 65.8) 100%);
}
div.session-bundle section#hero header p {
  color: #d8d0d9;
}
div.session-bundle button.call-to-action span {
  color: white;
  background-color: #5C4C5E !important;
}
div.session-bundle .call-to-action div.add-to-cart span {
  color: white;
  background-color: #5C4C5E;
}
div.session-bundle .call-to-action div.owned span, div.session-bundle .call-to-action div.in-cart span {
  background-color: grey;
}
div.session-bundle section#media-embeds button {
  display: inline-block;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
}
div.session-bundle section#media-embeds button:focus {
  outline: none;
}
div.session-bundle section#media-embeds li.playing div {
  background-color: rgb(64.4, 53.2, 65.8);
}
div.session-bundle section#media-embeds li.playing button {
  background-color: rgb(64.4, 53.2, 65.8);
}
div.session-bundle section#media-embeds li div {
  background-color: #5C4C5E;
}
div.session-bundle section#media-embeds li div h3 {
  color: #5C4C5E;
}
div.session-bundle section#media-embeds li button {
  background-color: #5C4C5E;
}
div.session-bundle section#biography button a {
  background-color: #5C4C5E;
}

section#hero > div div.background-bottom, .STYLES > div div.background-bottom {
  background-color: #4F4E4B;
}
section#hero > div div.tag span, .STYLES > div div.tag span {
  color: white;
  background-color: black;
  font-size: 1.8rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 900;
  padding: 0rem 0.6rem 0.1rem 0.6rem;
}
section#hero > div header, .STYLES > div header {
  text-align: center;
}
section#hero > div header h1, .STYLES > div header h1 {
  font-family: "Knockout 50 A", "Knockout 50 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
}
@media only screen and (min-width: 320px) {
  section#hero > div header h1, .STYLES > div header h1 {
    font-size: 4.332rem;
    line-height: 4.8rem;
  }
}
@media only screen and (min-width: 720px) {
  section#hero > div header h1, .STYLES > div header h1 {
    font-size: 5.776rem;
    line-height: 6.4rem;
  }
}
@media only screen and (min-width: 1000px) {
  section#hero > div header h1, .STYLES > div header h1 {
    font-size: 7.22rem;
    line-height: 8rem;
  }
}
@media only screen and (min-width: 320px) {
  section#hero > div header h1, .STYLES > div header h1 {
    font-size: 2.8rem;
    line-height: 3rem;
    padding-top: 1.8rem;
  }
}
@media only screen and (min-width: 720px) {
  section#hero > div header h1, .STYLES > div header h1 {
    font-size: 4.6rem;
    line-height: 4.6rem;
    padding-top: 0;
  }
}
section#hero > div header p, .STYLES > div header p {
  font-family: "Knockout 34 A", "Knockout 34 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  color: #bee4ff;
  text-transform: uppercase;
}
@media only screen and (min-width: 320px) {
  section#hero > div header p, .STYLES > div header p {
    font-size: 1.4rem;
    line-height: 1.5rem;
    max-width: 25rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 720px) {
  section#hero > div header p, .STYLES > div header p {
    font-size: 2rem;
    line-height: 2.4rem;
    max-width: unset;
    margin: 0;
  }
}
section#hero > div section.offer, .STYLES > div section.offer {
  text-align: center;
}
section#hero > div section.offer div.flash-sale-header, .STYLES > div section.offer div.flash-sale-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}
section#hero > div section.offer div.flash-sale-header picture, .STYLES > div section.offer div.flash-sale-header picture {
  width: 100%;
}
@media only screen and (min-width: 320px) {
  section#hero > div section.offer div.flash-sale-header picture, .STYLES > div section.offer div.flash-sale-header picture {
    max-width: 5.3rem;
  }
}
@media only screen and (min-width: 720px) {
  section#hero > div section.offer div.flash-sale-header picture, .STYLES > div section.offer div.flash-sale-header picture {
    max-width: 6.6rem;
  }
}
@media only screen and (min-width: 1000px) {
  section#hero > div section.offer div.flash-sale-header picture, .STYLES > div section.offer div.flash-sale-header picture {
    max-width: 9.3rem;
  }
}
@media only screen and (min-width: 1281px) {
  section#hero > div section.offer div.flash-sale-header picture, .STYLES > div section.offer div.flash-sale-header picture {
    max-width: 8.4rem;
  }
}
@media only screen and (min-width: 1710px) {
  section#hero > div section.offer div.flash-sale-header picture, .STYLES > div section.offer div.flash-sale-header picture {
    max-width: 7.5rem;
  }
}
section#hero > div section.offer div.flash-sale-header picture img, .STYLES > div section.offer div.flash-sale-header picture img {
  width: 100%;
}
section#hero > div section.offer div.flash-sale-header h1, .STYLES > div section.offer div.flash-sale-header h1 {
  font-family: "Knockout 50 A", "Knockout 50 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 2.4rem;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  width: 100%;
}
section#hero > div section.offer p.flash-sale-footer, .STYLES > div section.offer p.flash-sale-footer {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  font-style: italic;
  line-height: 2.5rem;
  color: #fff;
}
section#hero > div section.offer p:first-child, .STYLES > div section.offer p:first-child {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 500;
  color: white;
  font-size: 1.92rem;
  line-height: 2.4rem;
}
section#hero > div section.offer p.new span, .STYLES > div section.offer p.new span {
  font-size: 1.8rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 900;
  background-color: black;
  padding: 0.3rem 2.6rem 0.3rem 0.6rem;
  color: white;
}
section#hero > div section.offer div.price, .STYLES > div section.offer div.price {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 3rem;
  color: white;
  display: table;
}
section#hero > div section.offer div.price span, .STYLES > div section.offer div.price span {
  display: table-cell;
}
section#hero > div section.offer div.price span.regular-price, .STYLES > div section.offer div.price span.regular-price {
  color: #99978E;
  font: inherit;
  text-decoration: line-through;
  text-decoration-thickness: 0.4rem;
}
section#hero > div section.offer div.price span.regular-price:before, section#hero > div section.offer div.price span.regular-price:after, .STYLES > div section.offer div.price span.regular-price:before, .STYLES > div section.offer div.price span.regular-price:after {
  content: " ";
}
section#hero > div section.offer div.price span.current-price, .STYLES > div section.offer div.price span.current-price {
  font: inherit;
}
section#hero > div section.offer div.price span.currency-symbol, .STYLES > div section.offer div.price span.currency-symbol {
  font: inherit;
  text-decoration: none;
  vertical-align: top;
  text-indent: 1rem;
}
section#hero > div section.offer button.call-to-action, .STYLES > div section.offer button.call-to-action {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  border: none;
  text-decoration: none;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  font-family: "Knockout 53 A", "Knockout 53 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  font-size: 1.8rem;
  line-height: 1.8rem;
  gap: 0.1rem;
}
section#hero > div section.offer button.call-to-action.call-to-action-option span, .STYLES > div section.offer button.call-to-action.call-to-action-option span {
  background-color: rgb(32.4494382022, 75.5730337079, 0.4269662921);
}
section#hero > div section.offer button.call-to-action span, section#hero > div section.offer button.call-to-action a, .STYLES > div section.offer button.call-to-action span, .STYLES > div section.offer button.call-to-action a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0 2rem;
  height: 4.2rem;
  min-width: 4.2rem;
  font: inherit;
  text-transform: uppercase;
  background-color: #4CB101;
  color: white;
}
section#hero > div header p, .STYLES > div header p {
  color: #affaf3;
}

section#hero, .LAYOUTS {
  width: 100%;
}
section#hero > div, .LAYOUTS > div {
  width: 100%;
  position: relative;
  display: grid;
  flex-basis: 100%;
  flex-shrink: 0;
  margin: 0;
  position: relative;
  scroll-snap-align: center;
}
section#hero > div > div.background-bottom, .LAYOUTS > div > div.background-bottom {
  overflow: hidden;
  position: relative;
}
@media only screen and (min-width: 320px) {
  section#hero > div, .LAYOUTS > div {
    grid-template-rows: auto auto auto 1fr;
    grid-template-columns: 1fr;
    column-gap: 3rem;
  }
  section#hero > div div.background-top, .LAYOUTS > div div.background-top {
    grid-column: 1/2;
    grid-row: 1/3;
  }
  section#hero > div div.background-bottom, .LAYOUTS > div div.background-bottom {
    grid-column: 1/2;
    grid-row: 3/5;
  }
  section#hero > div div.background-bottom img, .LAYOUTS > div div.background-bottom img {
    width: 100%;
  }
  section#hero > div div.tag, .LAYOUTS > div div.tag {
    grid-column: 1/2;
    grid-row: 2/4;
    position: relative;
    width: 100%;
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
    z-index: 20;
  }
  section#hero > div div.tag span, .LAYOUTS > div div.tag span {
    display: block;
    position: absolute;
    top: -1.4rem;
    right: 1.1rem;
    text-transform: uppercase;
  }
  section#hero > div header, .LAYOUTS > div header {
    grid-column: 1/2;
    grid-row: 1/2;
    margin-bottom: 1.5rem;
    position: relative;
  }
  section#hero > div header span, .LAYOUTS > div header span {
    position: absolute;
    display: block;
  }
  section#hero > div > picture, .LAYOUTS > div > picture {
    width: 100%;
    display: flex;
    z-index: 10;
    grid-column: 1/2;
    grid-row: 2/4;
    max-width: 60%;
    margin-left: auto;
    margin-right: auto;
    align-self: center;
    position: relative;
  }
  section#hero > div > picture::before, .LAYOUTS > div > picture::before {
    content: "";
    position: absolute;
    bottom: -1.5rem;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzgwcHgiIGhlaWdodD0iOTVweCIgdmlld0JveD0iMCAwIDM4MCA5NSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4KICAgIDxnIGlkPSJQYWdlLTEiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxwYXRoIGQ9Ik05NSwwIEwyODUsMCBDMzM3LjQ2NzA1MSwtOS42MzgwNDA5NWUtMTUgMzgwLDQyLjUzMjk0ODggMzgwLDk1IEwzODAsOTUgTDM4MCw5NSBMMCw5NSBDLTYuNDI1MzYwNjRlLTE1LDQyLjUzMjk0ODggNDIuNTMyOTQ4OCw5LjYzODA0MDk1ZS0xNSA5NSwwIFoiIGlkPSJSZWN0YW5nbGUiIGZpbGw9IiMwMDAwMDAiPjwvcGF0aD4KICAgIDwvZz4KPC9zdmc+);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 95%;
    filter: blur(10px);
    opacity: 0.5;
  }
  section#hero > div > picture img, .LAYOUTS > div > picture img {
    width: 100%;
    align-self: center;
    position: relative;
  }
  section#hero > div section.offer, .LAYOUTS > div section.offer {
    z-index: 10;
    grid-column: 1/2;
    grid-row: 4/5;
    padding-top: 3rem;
    padding-bottom: 4.5rem;
    display: grid;
    grid-template-columns: 1fr auto auto 1fr;
    grid-row-gap: 3rem;
    grid-column-gap: 8vw;
    justify-content: center;
    justify-items: center;
    align-items: center;
    margin: 0 1.5rem;
  }
  section#hero > div section.offer div.flash-sale-header, .LAYOUTS > div section.offer div.flash-sale-header {
    grid-column: 2/4;
  }
  section#hero > div section.offer p:first-child, .LAYOUTS > div section.offer p:first-child {
    min-height: 7.2rem;
  }
  section#hero > div section.offer p:first-child.expanded, .LAYOUTS > div section.offer p:first-child.expanded {
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 600;
    line-height: 2.4rem;
    align-self: center;
  }
  section#hero > div section.offer h2, section#hero > div section.offer p, .LAYOUTS > div section.offer h2, .LAYOUTS > div section.offer p {
    grid-column: 2/4;
  }
  section#hero > div section.offer div.price, .LAYOUTS > div section.offer div.price {
    grid-column: 2/3;
    justify-self: end;
  }
  section#hero > div section.offer div.price span, .LAYOUTS > div section.offer div.price span {
    display: inline;
  }
  section#hero > div section.offer div.call-to-action, .LAYOUTS > div section.offer div.call-to-action {
    grid-column: 3/4;
    justify-self: start;
    margin: 0;
  }
}
@media only screen and (min-width: 720px) {
  section#hero > div, .LAYOUTS > div {
    grid-template-rows: 6rem repeat(2, 16rem) 6rem;
    grid-template-columns: minmax(0, auto) 32rem minmax(32rem, 54rem) minmax(0, auto);
    column-gap: 1.5rem;
  }
  section#hero > div div.background-top, .LAYOUTS > div div.background-top {
    grid-column: 1/5;
    grid-row: 1/5;
  }
  section#hero > div div.background-bottom, .LAYOUTS > div div.background-bottom {
    grid-column: 1/5;
    grid-row: 3/5;
  }
  section#hero > div header, .LAYOUTS > div header {
    grid-column: 3/4;
    grid-row: 2/3;
    height: 50%;
    align-content: end;
    display: grid;
    margin: 0;
    padding: 0;
  }
  section#hero > div picture, section#hero > div div.tag, .LAYOUTS > div picture, .LAYOUTS > div div.tag {
    box-sizing: border-box;
    width: 100%;
    max-width: unset;
    margin: 0;
    z-index: 10;
    justify-self: center;
    grid-column: 2/3;
    grid-row: 2/4;
    display: grid;
  }
  section#hero > div picture img, section#hero > div div.tag img, .LAYOUTS > div picture img, .LAYOUTS > div div.tag img {
    width: 100%;
    align-self: center;
  }
  section#hero > div div.tag, .LAYOUTS > div div.tag {
    z-index: 20;
  }
  section#hero > div section.offer, .LAYOUTS > div section.offer {
    grid-column: 3/4;
    grid-row: 2/4;
    z-index: 10;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 16.66% 16.66% 16.66% 16.66% 16.66%;
    justify-content: center;
    align-content: center;
    padding: 0;
    grid-column-gap: 6rem;
    grid-row-gap: 0;
  }
  section#hero > div section.offer div.flash-sale-header, .LAYOUTS > div section.offer div.flash-sale-header {
    grid-column: 1/3;
    grid-row: 2/6;
  }
  section#hero > div section.offer p:first-child, .LAYOUTS > div section.offer p:first-child {
    margin-top: 3rem;
    min-height: unset;
  }
  section#hero > div section.offer div.price, .LAYOUTS > div section.offer div.price {
    grid-column: 1/3;
    grid-row: 3/6;
    align-self: center;
    justify-self: center;
  }
  section#hero > div section.offer h2, section#hero > div section.offer p, section#hero > div section.offer div.call-to-action, section#hero > div section.offer button.call-to-action, .LAYOUTS > div section.offer h2, .LAYOUTS > div section.offer p, .LAYOUTS > div section.offer div.call-to-action, .LAYOUTS > div section.offer button.call-to-action {
    grid-column: 1/3;
  }
  section#hero > div section.offer p, .LAYOUTS > div section.offer p {
    grid-row: 2/3;
  }
  section#hero > div section.offer div.call-to-action, section#hero > div section.offer button.call-to-action, .LAYOUTS > div section.offer div.call-to-action, .LAYOUTS > div section.offer button.call-to-action {
    grid-column: 1/3;
    grid-row: 5/6;
    align-self: start;
    justify-self: center;
  }
  section#hero > div section.offer p.flash-sale-footer, .LAYOUTS > div section.offer p.flash-sale-footer {
    grid-row: 6;
  }
}
@media only screen and (min-width: 1000px) {
  section#hero > div, .LAYOUTS > div {
    grid-template-rows: 6rem repeat(2, 16rem) 6rem;
    grid-template-columns: auto 32rem 54rem auto;
    column-gap: 3rem;
  }
  section#hero > div p.summary, .LAYOUTS > div p.summary {
    padding: 0;
    padding-bottom: 0.5rem;
  }
}
@media only screen and (min-width: 1281px) {
  section#hero > div, .LAYOUTS > div {
    grid-template-rows: 6rem repeat(2, 17rem) 6rem;
    grid-template-columns: auto 34rem 54rem auto;
  }
}
@media only screen and (min-width: 1710px) {
  section#hero > div, .LAYOUTS > div {
    grid-template-rows: 6rem repeat(2, 20rem) 6rem;
    grid-template-columns: auto 40rem 54rem auto;
  }
}

section#details h2, .STYLES h2 {
  font-family: "Knockout 50 A", "Knockout 50 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
  font-size: 3rem;
  line-height: 3rem;
}
section#details h3, .STYLES h3 {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.9rem;
  line-height: 2rem;
  margin-top: 1.5rem;
}
section#details p, section#details li, .STYLES p, .STYLES li {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 500;
  font-size: 1.9rem;
  line-height: 3rem;
  color: #1B1B1A;
}
section#details li, .STYLES li {
  margin-left: 2rem;
}
section#details li a, .STYLES li a {
  text-decoration: underline;
}
section#details li span, .STYLES li span {
  text-decoration: underline;
  cursor: pointer;
}

section#details, .LAYOUTS {
  width: 100%;
  margin: 0;
  padding: 0;
}
section#details > div, .LAYOUTS > div {
  box-sizing: border-box;
  width: 100%;
  margin: 3rem auto;
  padding: 0 1.5rem;
  max-width: 120rem;
  display: grid;
  grid-column-gap: 4vw;
}
section#details > div section#blurb p, .LAYOUTS > div section#blurb p {
  margin-top: 1.5rem;
}
section#details > div section#blurb h2 + p, section#details > div section#blurb h3 + p, .LAYOUTS > div section#blurb h2 + p, .LAYOUTS > div section#blurb h3 + p {
  margin-top: 0;
}
@media only screen and (min-width: 320px) {
  section#details > div section#works-two-ways, .LAYOUTS > div section#works-two-ways {
    margin-top: 3rem;
  }
  section#details > div section#works-two-ways picture, .LAYOUTS > div section#works-two-ways picture {
    width: 100%;
    display: grid;
    margin-top: 3rem;
    overflow: hidden;
  }
  section#details > div section#works-two-ways picture img, .LAYOUTS > div section#works-two-ways picture img {
    width: 108%;
    justify-self: center;
  }
}
@media only screen and (min-width: 720px) {
  section#details > div, .LAYOUTS > div {
    padding: 0 3rem;
    grid-template-rows: min-content 1fr;
  }
  section#details > div section#blurb, .LAYOUTS > div section#blurb {
    grid-row: 1/2;
  }
  section#details > div section#whats-included, .LAYOUTS > div section#whats-included {
    grid-column: 1/2;
    grid-row: 2/3;
    align-self: end;
  }
  section#details > div section#works-two-ways, .LAYOUTS > div section#works-two-ways {
    margin-top: 0;
    grid-column: 2/3;
    grid-row: 1/3;
  }
  section#details > div section#works-two-ways picture, .LAYOUTS > div section#works-two-ways picture {
    width: 100%;
    display: grid;
    margin-top: 3rem;
  }
  section#details > div section#works-two-ways picture img, .LAYOUTS > div section#works-two-ways picture img {
    width: 108%;
    justify-self: center;
  }
}
section#details > div aside#preset-list, .LAYOUTS > div aside#preset-list {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.3);
  transition: opacity 0.15s linear;
}
section#details > div aside#preset-list > div h3, .LAYOUTS > div aside#preset-list > div h3 {
  margin-top: 3rem;
}
section#details > div aside#preset-list > div h3:first-child, .LAYOUTS > div aside#preset-list > div h3:first-child {
  margin-top: 0;
}
@media only screen and (min-width: 320px) {
  section#details > div aside#preset-list > div, .LAYOUTS > div aside#preset-list > div {
    display: block;
    position: relative;
    width: 85vw;
    height: 100vh;
    margin: 0;
    background-color: #f6f5f2;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
    padding: 1.5rem;
    overflow: scroll;
  }
  section#details > div aside#preset-list > div > ul, .LAYOUTS > div aside#preset-list > div > ul {
    column-count: 2;
    list-style-type: none;
  }
  section#details > div aside#preset-list > div > ul > li, .LAYOUTS > div aside#preset-list > div > ul > li {
    margin-left: 0;
    box-sizing: border-box;
    font-size: smaller;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media only screen and (min-width: 720px) {
  section#details > div aside#preset-list > div, .LAYOUTS > div aside#preset-list > div {
    max-width: 100rem;
    max-height: calc(100vh - 72px);
    clear: both;
    margin-left: auto;
    margin-right: auto;
    margin-top: 36px;
  }
  section#details > div aside#preset-list > div ul, .LAYOUTS > div aside#preset-list > div ul {
    list-style-type: square;
    column-count: 3;
  }
  section#details > div aside#preset-list > div ul > li, .LAYOUTS > div aside#preset-list > div ul > li {
    margin-left: 2rem;
    font-size: initial;
    white-space: initial;
    overflow: initial;
    text-overflow: ellipsis;
  }
}

section#media-embeds div ul.videos li, .STYLES div ul.videos li {
  cursor: pointer;
}
section#media-embeds div ul.videos li span, .STYLES div ul.videos li span {
  background: url("../images/video-embed-play.svg") no-repeat 50%;
  background-size: 8rem 8rem;
  position: absolute;
  height: 100%;
  width: 100%;
  padding: 0;
  top: 0;
}
section#media-embeds div ul.videos li.clicked iframe, .STYLES div ul.videos li.clicked iframe {
  position: absolute;
  z-index: 1;
}
section#media-embeds div ul.videos li.clicked span.play-icon, .STYLES div ul.videos li.clicked span.play-icon {
  z-index: 0;
}
section#media-embeds div ul.audio-demos li.playing div h3, section#media-embeds div ul.audio-demos li.playing div p, .STYLES div ul.audio-demos li.playing div h3, .STYLES div ul.audio-demos li.playing div p {
  color: white;
}
section#media-embeds div ul.audio-demos li.playing div p.time, .STYLES div ul.audio-demos li.playing div p.time {
  font-weight: 700;
}
section#media-embeds div ul.audio-demos li, .STYLES div ul.audio-demos li {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #232322;
  font-size: 1.9rem;
  line-height: 3rem;
}
section#media-embeds div ul.audio-demos li div, section#media-embeds div ul.audio-demos li div::selection, section#media-embeds div ul.audio-demos li h3, section#media-embeds div ul.audio-demos li p, section#media-embeds div ul.audio-demos li progress, .STYLES div ul.audio-demos li div, .STYLES div ul.audio-demos li div::selection, .STYLES div ul.audio-demos li h3, .STYLES div ul.audio-demos li p, .STYLES div ul.audio-demos li progress {
  cursor: url("../images/cursor-pointing-hand.png") 14 10, pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
section#media-embeds div ul.audio-demos li div h3, .STYLES div ul.audio-demos li div h3 {
  color: white;
}
section#media-embeds div ul.audio-demos li div p, .STYLES div ul.audio-demos li div p {
  color: white;
}
section#media-embeds div ul.audio-demos li h3, .STYLES div ul.audio-demos li h3 {
  font-size: 2rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
}
section#media-embeds div ul.audio-demos li h3 > span.composer, .STYLES div ul.audio-demos li h3 > span.composer {
  font-weight: 400;
}
section#media-embeds div ul.audio-demos li p, .STYLES div ul.audio-demos li p {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #232322;
  font-size: 1.9rem;
  line-height: 3rem;
}

section#media-embeds, .LAYOUTS {
  width: 100%;
  margin: 0;
  padding: 0;
}
section#media-embeds > div, .LAYOUTS > div {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  box-sizing: border-box;
}
@media only screen and (min-width: 320px) {
  section#media-embeds > div, .LAYOUTS > div {
    padding: 0 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  section#media-embeds > div, .LAYOUTS > div {
    padding: 0 3rem;
  }
}
section#media-embeds > div svg#filters, .LAYOUTS > div svg#filters {
  position: absolute;
  width: 0;
  height: 0;
}
section#media-embeds > div iframe, .LAYOUTS > div iframe {
  width: 100%;
}
section#media-embeds > div ul.videos, .LAYOUTS > div ul.videos {
  display: flex;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
@media only screen and (min-width: 320px) {
  section#media-embeds > div ul.videos, .LAYOUTS > div ul.videos {
    flex-wrap: wrap;
    column-gap: 1.5rem;
    margin-bottom: 1.5rem;
    gap: 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  section#media-embeds > div ul.videos, .LAYOUTS > div ul.videos {
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 120rem;
  }
}
section#media-embeds > div ul.videos li, .LAYOUTS > div ul.videos li {
  position: relative;
  margin: 0 auto;
}
section#media-embeds > div ul.videos li:first-child:nth-last-child(1), .LAYOUTS > div ul.videos li:first-child:nth-last-child(1) {
  flex-basis: 100%;
}
section#media-embeds > div ul.videos li:first-child:nth-last-child(even), section#media-embeds > div ul.videos li:first-child:nth-last-child(even) ~ li, .LAYOUTS > div ul.videos li:first-child:nth-last-child(even), .LAYOUTS > div ul.videos li:first-child:nth-last-child(even) ~ li {
  flex-basis: calc((100% - 3rem) / 2);
}
section#media-embeds > div ul.videos li:first-child:nth-last-child(odd), .LAYOUTS > div ul.videos li:first-child:nth-last-child(odd) {
  flex-basis: 100%;
}
section#media-embeds > div ul.videos li:first-child:nth-last-child(odd) ~ li, .LAYOUTS > div ul.videos li:first-child:nth-last-child(odd) ~ li {
  flex-basis: calc((100% - 3rem) / 2);
}
section#media-embeds > div ul.videos li img, section#media-embeds > div ul.videos li iframe, .LAYOUTS > div ul.videos li img, .LAYOUTS > div ul.videos li iframe {
  display: block;
  aspect-ratio: 1280/720;
  width: 100%;
  height: auto;
}
section#media-embeds > div ul.videos li span, .LAYOUTS > div ul.videos li span {
  top: 0;
}
section#media-embeds > div ul.audio-demos, .LAYOUTS > div ul.audio-demos {
  margin-left: auto;
  margin-right: auto;
  column-fill: balance;
  list-style-type: none;
  transition: height 1s;
}
@media only screen and (min-width: 720px) {
  section#media-embeds > div ul.audio-demos, .LAYOUTS > div ul.audio-demos {
    max-width: 120rem;
  }
}
section#media-embeds > div ul.audio-demos li, .LAYOUTS > div ul.audio-demos li {
  padding-bottom: 0.4rem;
  break-inside: avoid;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
}
@media only screen and (min-width: 320px) {
  section#media-embeds > div ul.audio-demos li button, .LAYOUTS > div ul.audio-demos li button {
    display: grid;
    align-content: center;
    width: 5rem;
    min-height: 7.5rem;
    margin: 0;
    padding: 0;
  }
  section#media-embeds > div ul.audio-demos li div h3 span, .LAYOUTS > div ul.audio-demos li div h3 span {
    display: block;
  }
  section#media-embeds > div ul.audio-demos li div p.notes, .LAYOUTS > div ul.audio-demos li div p.notes {
    display: none;
  }
}
@media only screen and (min-width: 720px) {
  section#media-embeds > div ul.audio-demos li button, .LAYOUTS > div ul.audio-demos li button {
    width: 7.5rem;
    height: 7.5rem;
  }
  section#media-embeds > div ul.audio-demos li div h3 span, .LAYOUTS > div ul.audio-demos li div h3 span {
    display: inline;
  }
  section#media-embeds > div ul.audio-demos li div p.notes, .LAYOUTS > div ul.audio-demos li div p.notes {
    display: block;
    min-height: 3rem;
  }
}
section#media-embeds > div ul.audio-demos li div, .LAYOUTS > div ul.audio-demos li div {
  box-sizing: border-box;
  position: relative;
  flex-grow: 1;
  margin-left: 0.4rem;
  background-position: bottom left;
  background-repeat: repeat-x;
  overflow: hidden;
}
section#media-embeds > div ul.audio-demos li div span.progress, .LAYOUTS > div ul.audio-demos li div span.progress {
  position: absolute;
  height: 100%;
}
section#media-embeds > div ul.audio-demos li div h3, section#media-embeds > div ul.audio-demos li div p, .LAYOUTS > div ul.audio-demos li div h3, .LAYOUTS > div ul.audio-demos li div p {
  position: relative;
  box-sizing: border-box;
  margin-left: 1rem;
  margin-right: 1rem;
  line-height: 3rem;
}
section#media-embeds > div ul.audio-demos li div p.time, .LAYOUTS > div ul.audio-demos li div p.time {
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
}
section#media-embeds > div ul.audio-demos li div img, .LAYOUTS > div ul.audio-demos li div img {
  z-index: 40;
  width: 100%;
  height: 5rem;
  position: absolute;
  bottom: 0;
}
section#media-embeds > div ul.audio-demos li div progress, .LAYOUTS > div ul.audio-demos li div progress {
  width: 100%;
  height: 9rem;
  flex-shrink: 0;
  position: absolute;
  bottom: 0px;
}

section#sound-designer h2, .STYLES h2 {
  font-family: "Knockout 50 A", "Knockout 50 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
  font-size: 3rem;
  line-height: 3rem;
}
section#sound-designer h3, .STYLES h3 {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.9rem;
  line-height: 3rem;
  margin-top: 1.5rem;
}
section#sound-designer p, section#sound-designer li, .STYLES p, .STYLES li {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 500;
  font-size: 1.9rem;
  line-height: 3rem;
  color: white;
}
section#sound-designer p span.action, section#sound-designer li span.action, .STYLES p span.action, .STYLES li span.action {
  font-weight: 600;
  font-size: larger;
  font-variant: small-caps;
  text-decoration: underline;
  text-transform: lowercase;
  cursor: pointer;
}
section#sound-designer p a, section#sound-designer li a, .STYLES p a, .STYLES li a {
  text-decoration: underline;
}
section#sound-designer li, .STYLES li {
  margin-left: 2rem;
}

section#sound-designer, .LAYOUTS {
  width: 100%;
  margin: 0;
  padding: 0;
  margin-top: 6rem;
  background-color: #2A2928;
}
section#sound-designer div, .LAYOUTS div {
  box-sizing: border-box;
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  padding: 0;
  display: grid;
}
@media only screen and (min-width: 320px) {
  section#sound-designer div picture, .LAYOUTS div picture {
    display: grid;
    grid-column: 1/3;
    width: 100%;
  }
  section#sound-designer div picture img, .LAYOUTS div picture img {
    width: 100%;
  }
  section#sound-designer div section#biography, .LAYOUTS div section#biography {
    box-sizing: border-box;
    width: 100%;
    padding: 3rem;
  }
}
@media only screen and (min-width: 320px) and (min-width: 320px) {
  section#sound-designer div section#biography, .LAYOUTS div section#biography {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
@media only screen and (min-width: 320px) and (min-width: 720px) {
  section#sound-designer div section#biography, .LAYOUTS div section#biography {
    justify-content: left;
    text-align: left;
  }
}
@media only screen and (min-width: 320px) {
  section#sound-designer div section#biography button, .LAYOUTS div section#biography button {
    -webkit-text-size-adjust: 100%;
    color: inherit;
    font: inherit;
    overflow: visible;
    text-transform: none;
    display: inline-block;
    padding: 0;
    border: none;
    border-radius: 0;
    text-decoration: none;
    cursor: pointer;
    -webkit-appearance: none;
    background-color: transparent;
    margin: 0;
    margin-top: 3rem;
    width: fit-content;
    appearance: none;
    border: none;
    border-radius: 0;
    border-width: 0;
  }
  section#sound-designer div section#biography button a, .LAYOUTS div section#biography button a {
    -webkit-text-size-adjust: 100%;
    cursor: pointer;
    margin: 0;
    font: inherit;
    text-decoration: none;
    line-height: 2rem;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    height: 4.2rem;
    padding: 0 1.4rem;
    font-family: "Knockout 53 A", "Knockout 53 B", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-rendering: optimizeLegibility;
    font-size: 1.5rem;
    text-align: center;
    text-transform: uppercase;
    color: white;
  }
}
@media only screen and (min-width: 720px) {
  section#sound-designer div, .LAYOUTS div {
    grid-template-columns: 38rem auto;
    column-gap: 6rem;
  }
  section#sound-designer div picture, .LAYOUTS div picture {
    grid-column: 1/2;
    width: 100%;
  }
  section#sound-designer div picture img, .LAYOUTS div picture img {
    width: 100%;
  }
  section#sound-designer div section#biography, .LAYOUTS div section#biography {
    display: grid;
    align-content: center;
    grid-column: 2/3;
    padding: 0;
    padding-right: 6rem;
  }
}

section.specifications {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  justify-content: center;
  display: flex;
}
@media only screen and (min-width: 320px) {
  section.specifications {
    padding: 3rem 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  section.specifications {
    padding: 6rem 3rem;
  }
}
section.specifications > div {
  box-sizing: border-box;
  width: 100%;
  max-width: 100rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}
section.specifications > div header {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 4.5rem;
}
section.specifications > div header h2 {
  font-size: 3.61rem;
  line-height: 3.61rem;
  font-family: "Knockout 50 A", "Knockout 50 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  color: #4CB101;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  position: relative;
}
section.specifications > div header h2 abbr {
  text-decoration: none;
}
section.specifications > div header h2 a {
  color: transparent;
  cursor: pointer;
  position: absolute;
  bottom: 0;
  right: 0;
}
section.specifications > div header h2 + p {
  font-size: 1.92rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  color: #1b1b1a;
  text-align: center;
  max-width: 100ch;
}
section.specifications > div header h2 ul {
  font-family: inherit;
}
section.specifications > div header h2 ul li {
  display: inline-block;
  font-family: inherit;
}
section.specifications > div header h2 ul li:after {
  content: " · ";
}
section.specifications > div header h2 ul li:last-child:after {
  content: "";
}
section.specifications > div header h2 ul li.no-dot:after {
  content: "";
}
section.specifications > div ul.digital-audio-workstations {
  box-sizing: border-box;
  list-style-type: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  row-gap: 2.25rem;
  margin-bottom: 3rem;
}
section.specifications > div ul.digital-audio-workstations li {
  text-align: center;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 320px) {
  section.specifications > div ul.digital-audio-workstations li {
    flex-basis: 30%;
  }
}
@media only screen and (min-width: 720px) {
  section.specifications > div ul.digital-audio-workstations li {
    flex-basis: 20%;
  }
}
@media only screen and (min-width: 1000px) {
  section.specifications > div ul.digital-audio-workstations li {
    flex-basis: 11.2%;
  }
}
section.specifications > div ul.digital-audio-workstations li a {
  display: flex;
  justify-content: center;
}
section.specifications > div ul.digital-audio-workstations li a picture img {
  width: 4.1rem;
  height: 4.1rem;
}
section.specifications > div ul.digital-audio-workstations li h3 {
  font-size: 2rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.35rem;
  line-height: 1.875rem;
}
section.specifications > div ul.digital-audio-workstations li p {
  margin-top: 0.75rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #232322;
  font-size: 1.9rem;
  line-height: 3rem;
  text-decoration: none;
  font-size: 1.35rem;
  line-height: 1.35rem;
}
section.specifications > div ul.minimum-system-requirements {
  list-style-type: none;
  display: flex;
  gap: 3rem;
  justify-content: center;
}
@media only screen and (min-width: 320px) {
  section.specifications > div ul.minimum-system-requirements {
    flex-direction: column;
  }
}
@media only screen and (min-width: 720px) {
  section.specifications > div ul.minimum-system-requirements {
    flex-direction: row;
  }
}
section.specifications > div ul.minimum-system-requirements > li h3 {
  font-size: 2rem;
  line-height: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2.4rem;
}
section.specifications > div ul.minimum-system-requirements > li > ul {
  list-style-type: square;
}
section.specifications > div ul.minimum-system-requirements > li > ul > li {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #232322;
  font-size: 1.9rem;
  line-height: 3rem;
  font-size: 1.52rem;
  line-height: 2.4rem;
  margin-left: 2.2rem;
}
section.specifications > div p.note {
  margin-top: 3rem;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  color: #232322;
  font-size: 1.9rem;
  line-height: 3rem;
  font-size: 1.52rem;
  line-height: 2.4rem;
  text-align: center;
}

/*# sourceMappingURL=sound-pack.css.map */
