@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;
}

.tassman-color {
  color: #60a3b4;
  background-color: #60a3b4;
}

.lounge-lizard-color {
  color: #ab2429;
  background-color: #ab2429;
}

.ultra-analog-color {
  color: #658f30;
  background-color: #658f30;
}

.string-studio-color {
  color: #e55a20;
  background-color: #e55a20;
}

.strum-acoustic-color {
  color: #e8ad1f;
  background-color: #e8ad1f;
}

.strum-electric-color {
  color: #6e375b;
  background-color: #6e375b;
}

.chromaphone-color {
  color: #118177;
  background-color: #118177;
}

.multiphonics-color {
  color: #3279AD;
  background-color: #3279AD;
}

.neutral-color {
  color: #6d6e67;
  background-color: #6d6e67;
}

section#hero {
  display: flex;
  flex-direction: column;
  align-items: center;
}
section#hero a {
  width: 100%;
}
section#hero a > div {
  width: 100%;
}
section#hero a > div header {
  display: grid;
}
section#hero a > div header figure.background {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  overflow: hidden;
}
@media only screen and (min-width: 720px) {
  section#hero a > div header figure.background {
    max-height: calc(100vh - 6.6rem - 8rem - 17rem);
  }
}
section#hero a > div header figure.background picture {
  display: flex;
  height: 100%;
}
section#hero a > div header figure.background picture img {
  aspect-ratio: 4000/2114;
  object-fit: cover;
  width: 100%;
}
section#hero a > div header figure.coupon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-column: 1;
  grid-row: 1;
  width: 100%;
}
@media only screen and (min-width: 320px) {
  section#hero a > div header figure.coupon {
    margin: 3rem 0 3rem 0;
  }
}
@media only screen and (min-width: 1281px) {
  section#hero a > div header figure.coupon {
    margin: 0;
  }
}
section#hero a > div header figure.coupon picture {
  display: flex;
  width: 100%;
}
@media only screen and (min-width: 320px) {
  section#hero a > div header figure.coupon picture {
    max-width: 75rem;
  }
}
@media only screen and (min-width: 1710px) {
  section#hero a > div header figure.coupon picture {
    max-width: 125rem;
  }
}
section#hero a > div header figure.coupon picture img {
  width: 100%;
}
section#hero a > div footer {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #da6c74;
}
@media only screen and (min-width: 320px) {
  section#hero a > div footer {
    padding: 3rem 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  section#hero a > div footer {
    padding: 6rem 3rem;
  }
}
section#hero a > div footer h1 {
  font-family: "Knockout 50 A", "Knockout 50 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}
@media only screen and (min-width: 320px) {
  section#hero a > div footer h1 {
    font-size: 3.75rem;
    line-height: 3.75rem;
  }
}
@media only screen and (min-width: 720px) {
  section#hero a > div footer h1 {
    font-size: 5rem;
    line-height: 5rem;
  }
}

body > section > section#engagement {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  background-color: #242321;
}
@media only screen and (min-width: 320px) {
  body > section > section#engagement {
    padding: 3rem 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  body > section > section#engagement {
    padding: 6rem 3rem;
  }
}
body > section > section#engagement div {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
}
@media only screen and (min-width: 320px) {
  body > section > section#engagement div {
    flex-direction: column;
    gap: 4.5rem;
  }
}
@media only screen and (min-width: 720px) {
  body > section > section#engagement div {
    flex-direction: row;
  }
}
body > section > section#engagement div section.newsletter h2 {
  font-family: "Source Sans Pro", sans-serif;
  font-style: normal;
  text-rendering: optimizeLegibility;
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
body > section > section#engagement div section.newsletter form {
  display: flex;
  gap: 1.5rem;
}
@media only screen and (min-width: 320px) {
  body > section > section#engagement div section.newsletter form {
    flex-direction: column;
  }
}
@media only screen and (min-width: 720px) {
  body > section > section#engagement div section.newsletter form {
    flex-direction: row;
  }
}
body > section > section#engagement div section.newsletter input[type=email] {
  font-family: "Knockout 50 A", "Knockout 50 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 3rem;
  width: 190px;
  padding-left: 1rem;
}
body > section > section#engagement div section.newsletter input[type=submit] {
  font-family: "Knockout 34 A", "Knockout 34 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  font-size: 15px;
  text-transform: uppercase;
  color: white;
  background-color: #3e3d39;
  cursor: pointer;
  border: 0px solid white;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: center;
  font-weight: 700;
  background-color: #269b57;
}
@media only screen and (min-width: 320px) {
  body > section > section#engagement div section.newsletter input[type=submit] {
    padding: 0.7rem 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  body > section > section#engagement div section.newsletter input[type=submit] {
    padding: 0 1.5rem;
  }
}
body > section > section#engagement div section.social-media h2 {
  font-family: "Source Sans Pro", sans-serif;
  font-style: normal;
  text-rendering: optimizeLegibility;
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
body > section > section#engagement div section.social-media ul {
  display: flex;
  gap: 1.5rem;
}
body > section > section#engagement div section.social-media ul li {
  list-style-type: none;
}

section#news {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #f5f4f2;
}
@media only screen and (min-width: 320px) {
  section#news {
    padding: 3rem 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  section#news {
    padding: 6rem 3rem;
  }
}
section#news > div {
  width: 100%;
}
@media only screen and (min-width: 320px) {
  section#news > div {
    max-width: 75rem;
  }
}
@media only screen and (min-width: 720px) {
  section#news > div {
    max-width: 900px;
  }
}
@media only screen and (min-width: 1000px) {
  section#news > div {
    max-width: 900px;
  }
}
@media only screen and (min-width: 1281px) {
  section#news > div {
    max-width: 1200px;
  }
}
@media only screen and (min-width: 1710px) {
  section#news > div {
    max-width: 1600px;
  }
}
section#news ul {
  list-style-type: none;
}
@media only screen and (min-width: 320px) {
  section#news ul {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    box-sizing: border-box;
  }
}
@media only screen and (min-width: 1710px) {
  section#news ul {
    width: 100%;
  }
}
section#news ul li {
  width: 100%;
  position: relative;
  aspect-ratio: 1;
}
@media only screen and (min-width: 320px) {
  section#news ul li {
    flex-basis: 100%;
  }
}
@media only screen and (min-width: 720px) {
  section#news ul li {
    flex-basis: calc((100% - 3rem) / 2);
  }
}
@media only screen and (min-width: 1000px) {
  section#news ul li {
    flex-basis: calc((100% - 3rem) / 2);
  }
}
@media only screen and (min-width: 1281px) {
  section#news ul li {
    flex-basis: calc((100% - 6rem) / 3);
  }
}
@media only screen and (min-width: 1710px) {
  section#news ul li {
    flex-basis: calc((100% - 9rem) / 4);
  }
}
section#news ul li picture img {
  position: absolute;
}
section#news ul li a {
  width: 100%;
  aspect-ratio: 1;
  position: absolute;
  display: flex;
  flex-direction: column;
  text-align: center;
  color: #fff;
}
section#news ul li a header h1 {
  font-family: "Knockout 50 A", "Knockout 50 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  font-size: 3.5rem;
  line-height: 3rem;
  text-transform: uppercase;
}
section#news ul li a header p {
  font-family: "Knockout 34 A", "Knockout 34 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  line-height: 2rem;
  font-size: 1.23rem;
  text-transform: uppercase;
}
section#news ul li a p {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1.6rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
section#news ul li picture {
  width: 100%;
  display: flex;
}
section#news ul li picture img {
  width: 100%;
  display: block;
  aspect-ratio: 1;
}
section#news ul li.sound-pack a {
  justify-content: flex-end;
}
section#news ul li.sound-pack a > p {
  height: 26%;
}
@media only screen and (min-width: 320px) {
  section#news ul li.sound-pack .tag, section#news ul li.plug-in .tag, section#news ul li.update .tag {
    font-family: "Knockout 50 A", "Knockout 50 B", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-rendering: optimizeLegibility;
    top: 0;
    right: 0;
    position: absolute;
    padding: 0 0.75rem 0 0.75rem;
    margin: -1.25rem 1.25rem;
    font-size: 3rem;
    text-transform: uppercase;
    background-color: #000;
  }
}
section#news ul li.strum-gs-2.sound-pack header h1, section#news ul li#latin-vibes header h1, section#news ul li#latin-vibes-2 header h1, section#news ul li#love-lost header h1, section#news ul li#all-that-jazz header h1, section#news ul li#post-rock header h1, section#news ul li#tropical-jam header h1, section#news ul li#take-3 header h1, section#news ul li#funky-cat header h1, section#news ul li#blue-rhythms header h1, section#news ul li#power-chords header h1, section#news ul li#good-folks header h1, section#news ul li#pop-rocks header h1, section#news ul li#hop-riffs header h1 {
  color: #bf912d;
}
section#news ul li.strum-gs-2.sound-pack header p, section#news ul li#latin-vibes header p, section#news ul li#latin-vibes-2 header p, section#news ul li#love-lost header p, section#news ul li#all-that-jazz header p, section#news ul li#post-rock header p, section#news ul li#tropical-jam header p, section#news ul li#take-3 header p, section#news ul li#funky-cat header p, section#news ul li#blue-rhythms header p, section#news ul li#power-chords header p, section#news ul li#good-folks header p, section#news ul li#pop-rocks header p, section#news ul li#hop-riffs header p {
  color: #fff;
}
section#news ul li.strum-gs-2.sound-pack header p.header-name, section#news ul li#latin-vibes header p.header-name, section#news ul li#latin-vibes-2 header p.header-name, section#news ul li#love-lost header p.header-name, section#news ul li#all-that-jazz header p.header-name, section#news ul li#post-rock header p.header-name, section#news ul li#tropical-jam header p.header-name, section#news ul li#take-3 header p.header-name, section#news ul li#funky-cat header p.header-name, section#news ul li#blue-rhythms header p.header-name, section#news ul li#power-chords header p.header-name, section#news ul li#good-folks header p.header-name, section#news ul li#pop-rocks header p.header-name, section#news ul li#hop-riffs header p.header-name {
  color: #cb962b;
}
section#news ul li.ultra-analog-va-3.sound-pack header h1, section#news ul li#tabby-dance header h1, section#news ul li#analog-orchestra header h1, section#news ul li#kicks-and-snares header h1, section#news ul li#technocracy header h1, section#news ul li#urban-trip header h1, section#news ul li#motions header h1 {
  color: #91b44d;
}
section#news ul li.ultra-analog-va-3.sound-pack header p, section#news ul li#tabby-dance header p, section#news ul li#analog-orchestra header p, section#news ul li#kicks-and-snares header p, section#news ul li#technocracy header p, section#news ul li#urban-trip header p, section#news ul li#motions header p {
  color: #fff;
}
section#news ul li.ultra-analog-va-3.sound-pack header p.header-name, section#news ul li#tabby-dance header p.header-name, section#news ul li#analog-orchestra header p.header-name, section#news ul li#kicks-and-snares header p.header-name, section#news ul li#technocracy header p.header-name, section#news ul li#urban-trip header p.header-name, section#news ul li#motions header p.header-name {
  color: #9cbc5b;
}
section#news ul li.lounge-lizard-ep-4.sound-pack header h1, section#news ul li#caffeine header h1, section#news ul li#insomnia header h1, section#news ul li#space-walk header h1 {
  color: #ec3138;
}
section#news ul li.lounge-lizard-ep-4.sound-pack header p, section#news ul li#caffeine header p, section#news ul li#insomnia header p, section#news ul li#space-walk header p {
  color: #fff;
}
section#news ul li.lounge-lizard-ep-4.sound-pack header p.header-name, section#news ul li#caffeine header p.header-name, section#news ul li#insomnia header p.header-name, section#news ul li#space-walk header p.header-name {
  color: #f85258;
}
section#news ul li.chromaphone-3.sound-pack header h1, section#news ul li#humanized header h1, section#news ul li#transmutation header h1, section#news ul li#synth-city header h1, section#news ul li#turmoil-district header h1, section#news ul li#hover header h1, section#news ul li#solids header h1, section#news ul li#ice-crystals header h1 {
  color: #14978c;
}
section#news ul li.chromaphone-3.sound-pack header p, section#news ul li#humanized header p, section#news ul li#transmutation header p, section#news ul li#synth-city header p, section#news ul li#turmoil-district header p, section#news ul li#hover header p, section#news ul li#solids header p, section#news ul li#ice-crystals header p {
  color: #fff;
}
section#news ul li.chromaphone-3.sound-pack header p.header-name, section#news ul li#humanized header p.header-name, section#news ul li#transmutation header p.header-name, section#news ul li#synth-city header p.header-name, section#news ul li#turmoil-district header p.header-name, section#news ul li#hover header p.header-name, section#news ul li#solids header p.header-name, section#news ul li#ice-crystals header p.header-name {
  color: #16a599;
}
section#news ul li.string-studio-vs-3.sound-pack header h1, section#news ul li#fear-within header h1, section#news ul li#masala-2 header h1, section#news ul li#string-theory header h1, section#news ul li#stranger-strings header h1, section#news ul li#asymmetric header h1, section#news ul li#bass-factory header h1 {
  color: #d4622f;
}
section#news ul li.string-studio-vs-3.sound-pack header p, section#news ul li#fear-within header p, section#news ul li#masala-2 header p, section#news ul li#string-theory header p, section#news ul li#stranger-strings header p, section#news ul li#asymmetric header p, section#news ul li#bass-factory header p {
  color: #fff;
}
section#news ul li.string-studio-vs-3.sound-pack header p.header-name, section#news ul li#fear-within header p.header-name, section#news ul li#masala-2 header p.header-name, section#news ul li#string-theory header p.header-name, section#news ul li#stranger-strings header p.header-name, section#news ul li#asymmetric header p.header-name, section#news ul li#bass-factory header p.header-name {
  color: #e16e3b;
}
section#news ul li.multiphonics-cv-2.sound-pack header h1, section#news ul li#modular-city header h1, section#news ul li#currents header h1, section#news ul li#real-illusions header h1 {
  color: #3a8cc7;
}
section#news ul li.multiphonics-cv-2.sound-pack header p, section#news ul li#modular-city header p, section#news ul li#currents header p, section#news ul li#real-illusions header p {
  color: #fff;
}
section#news ul li.multiphonics-cv-2.sound-pack header p.header-name, section#news ul li#modular-city header p.header-name, section#news ul li#currents header p.header-name, section#news ul li#real-illusions header p.header-name {
  color: #4a9bd5;
}
section#news ul li.plug-in a {
  justify-content: space-between;
}
section#news ul li.plug-in a header {
  margin-top: 2.5rem;
  height: 26%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section#news ul li.plug-in a p {
  height: 26%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section#news ul li.multiphonics-cv-2-v21 a {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (min-width: 320px) {
  section#news ul li.multiphonics-cv-2-v21 a header {
    margin-top: 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  section#news ul li.multiphonics-cv-2-v21 a header {
    margin-top: 2rem;
  }
}
@media only screen and (min-width: 1000px) {
  section#news ul li.multiphonics-cv-2-v21 a header {
    margin-top: 2.5rem;
  }
}
section#news ul li.multiphonics-cv-2-v21 a div.update-button-container {
  position: absolute;
  bottom: 1.4rem;
}
section#news ul li.multiphonics-cv-2-v21 a div.update-button-container button.update-button {
  font-family: "Knockout 50 A", "Knockout 50 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  height: 4.2rem;
  padding: 0 1.4rem;
  font-size: 3rem;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  border-style: none;
  background-color: #fff;
  color: #8a3d4a;
  cursor: pointer;
}
section#news ul li.multiphonics-cv-2-v21 p.text {
  color: #e194a1;
}
section#news ul li.multiphonics-cv-2-v22 a {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (min-width: 320px) {
  section#news ul li.multiphonics-cv-2-v22 a header {
    margin-top: 1.5rem;
  }
}
@media only screen and (min-width: 720px) {
  section#news ul li.multiphonics-cv-2-v22 a header {
    margin-top: 2rem;
  }
}
@media only screen and (min-width: 1000px) {
  section#news ul li.multiphonics-cv-2-v22 a header {
    margin-top: 2.5rem;
  }
}
section#news ul li.multiphonics-cv-2-v22 a header h1 {
  color: #e8e0bf;
}
section#news ul li.multiphonics-cv-2-v22 a div.update-button-container {
  position: absolute;
  bottom: 1.4rem;
}
section#news ul li.multiphonics-cv-2-v22 a div.update-button-container button.update-button {
  font-family: "Knockout 50 A", "Knockout 50 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  height: 4.2rem;
  padding: 0 1.4rem;
  font-size: 3rem;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  border-style: none;
  background-color: #000;
  color: #fff;
  cursor: pointer;
}
section#news ul li.multiphonics-cv-2-v22 p.text {
  color: #fff;
}
section#news ul li.multiphonics-cv-2 header p {
  color: #bee4ff;
}
section#news ul li.chromaphone-3 header p {
  color: #AEFAF3;
}
section#news ul li.lounge-lizard-ep-4 header p {
  color: #b2adad;
}
section#news ul li.objeq-delay header p {
  color: #affaf3;
}
section#news ul li.string-studio-vs-3 header p {
  color: #FFDD84;
}
section#news ul li.strum-gs-2 header p {
  color: #FFDD84;
}
section#news ul li.ultra-analog-va-3 header p {
  color: #E0FEA9;
}
section#news ul li.os a {
  justify-content: flex-end;
}
section#news ul li.os a header h1 {
  color: #fff;
}
section#news ul li.os a p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  justify-self: end;
  height: 26%;
  font-size: 1.6rem;
  text-transform: none;
}
section#news ul li.imagine a header, section#news ul li.plonk a header {
  display: none;
}
section#news ul li.imagine a p, section#news ul li.plonk a p {
  height: 28%;
}
section#news ul li.imagine a p span, section#news ul li.plonk a p span {
  display: contents;
  color: #febd8b;
}
section#news ul li.swatches a {
  justify-content: flex-end;
}
section#news ul li.swatches a header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 37%;
}
section#news ul li.swatches a header h1 {
  color: #ffc02a;
}
section#news ul li.swatches a header p.header-text {
  font-family: "Knockout 34 A", "Knockout 34 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  line-height: 2rem;
  text-transform: uppercase;
}
section#news ul li.swatches a header p.header-name {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  text-transform: none;
}
@media only screen and (min-width: 320px) {
  section#news ul li.swatches a .tag {
    font-family: "Knockout 50 A", "Knockout 50 B", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-rendering: optimizeLegibility;
    top: 0;
    right: 0;
    position: absolute;
    padding: 0 0.75rem 0 0.75rem;
    margin: -1.25rem 1.25rem;
    font-size: 3rem;
    text-transform: uppercase;
    background-color: #e35c20;
  }
}
section#news ul li.swatches a div {
  display: flex;
  justify-content: center;
}
section#news ul li.swatches a div button {
  font-family: "Knockout 53 A", "Knockout 53 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  margin-bottom: 1.4rem;
  height: 4.2rem;
  padding: 0 1.4rem;
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  border-style: none;
  background-color: #954b7e;
  color: white;
  cursor: pointer;
}
section#news ul li#flash-sale a {
  justify-content: space-between;
}
section#news ul li#flash-sale a header {
  margin-top: 1rem;
}
section#news ul li#flash-sale a header h1 {
  font-size: 2.5rem;
}
section#news ul li#flash-sale a header p.header-text {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  display: inline;
  font-size: 1.6rem;
  line-height: 2rem;
  text-transform: none;
  color: #fff;
}
section#news ul li#flash-sale a header p.header-text span.price.regular {
  color: #e37b9f !important;
}
section#news ul li#flash-sale a header p.header-text span.price.regular data {
  text-decoration: line-through;
}
section#news ul li#flash-sale a header p.header-text span.price small {
  font-size: 66.666%;
  vertical-align: text-top;
}
section#news ul li#flash-sale a header p.header-name {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2rem;
  text-transform: none;
  color: #edb1cd;
}
section#news ul li#flash-sale a header aside, section#news ul li#flash-sale a header p.header-promo-countdown {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2rem;
  color: #ff9fc1;
}
@media only screen and (min-width: 320px) {
  section#news ul li#flash-sale a .tag {
    top: 0;
    right: 0;
    position: absolute;
    padding: 0 1rem 0 1rem;
    margin: 0.5rem;
    font-family: "Knockout 50 A", "Knockout 50 B", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-rendering: optimizeLegibility;
    font-size: 3.5rem;
    text-transform: uppercase;
    background-color: #000;
  }
}
@media only screen and (min-width: 720px) {
  section#news ul li#flash-sale a .tag {
    margin: -1rem 1rem;
  }
}
section#news ul li#flash-sale a div {
  display: flex;
  justify-content: center;
}
section#news ul li#flash-sale a div button {
  font-family: "Knockout 50 A", "Knockout 50 B", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-rendering: optimizeLegibility;
  margin-bottom: 1.4rem;
  height: 4.2rem;
  padding: 0 1.4rem;
  font-size: 2.5rem;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  border-style: none;
  background-color: #b44069;
  color: white;
  cursor: pointer;
}
section#news ul li.namm a {
  justify-content: end;
}
section#news ul li.namm a header {
  margin-bottom: 2.2rem;
}
section#news ul li.namm a header h1 {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  text-transform: initial !important;
  line-height: 2rem;
}
section#news ul li.namm a header p.header-text {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 500;
  display: inline;
  font-size: 1.6rem;
  line-height: 2rem;
  text-transform: none;
  color: #fffffe;
}
section#news ul li.namm a header p.header-text span.price.regular {
  color: #e37b9f !important;
}
section#news ul li.namm a header p.header-text span.price.regular data {
  text-decoration: line-through;
}
section#news ul li.namm a header p.header-text span.price small {
  font-size: 66.666%;
  vertical-align: text-top;
}
section#news ul li.namm a header p.header-name {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 2rem;
  text-transform: none;
  color: #fffffe;
}

/*# sourceMappingURL=home-summer-sale-2025.css.map */
