/* Document
 * ========================================================================== */

/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Backgrounds do not repeat by default (opinionated).
 */

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  background-repeat: no-repeat; /* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */

::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Breaks words to prevent overflow in all browsers (opinionated).
 * 4. Use a 4-space tab width in all browsers (opinionated).
 * 5. Remove the grey highlight on links in iOS (opinionated).
 * 6. Prevent adjustments of font size after orientation changes in iOS.
 */

:where(:root) {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  overflow-wrap: break-word; /* 3 */
  -moz-tab-size: 4; /* 4 */
  tab-size: 4; /* 4 */
  -webkit-tap-highlight-color: transparent; /* 5 */
  -webkit-text-size-adjust: 100%; /* 6 */
}

/* Sections
 * ========================================================================== */

/**
 * Remove the margin in all browsers (opinionated).
 */

:where(body) {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */

:where(h1) {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */

/**
 * Remove the margin on nested lists in Chrome, Edge, and Safari.
 */

:where(dl, ol, ul) :where(dl, ol, ul) {
  margin: 0;
}

/**
 * 1. Correct the inheritance of border color in Firefox.
 * 2. Add the correct box sizing in Firefox.
 */

:where(hr) {
  color: inherit; /* 1 */
  height: 0; /* 2 */
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */

:where(nav) :where(ol, ul) {
  list-style-type: none;
  padding: 0;
}

/**
 * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
 */

:where(nav li)::before {
  content: "\200B";
  float: left;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Prevent overflow of the container in all browsers (opinionated).
 */

:where(pre) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
  overflow: auto; /* 3 */
}

/* Text-level semantics
 * ========================================================================== */

/**
 * Add the correct text decoration in Safari.
 */

:where(abbr[title]) {
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

:where(b, strong) {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

:where(code, kbd, samp) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

:where(small) {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */

/*
 * Change the alignment on media elements in all browsers (opinionated).
 */

:where(audio, canvas, iframe, img, svg, video) {
  vertical-align: middle;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */

:where(iframe) {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */

:where(svg:not([fill])) {
  fill: currentColor;
}

/* Tabular data
 * ========================================================================== */

/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */

:where(table) {
  border-collapse: collapse; /* 1 */
  border-color: inherit; /* 2 */
  text-indent: 0; /* 3 */
}

/* Forms
 * ========================================================================== */

/**
 * Remove the margin on controls in Safari.
 */

:where(button, input, select) {
  margin: 0;
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */

:where(button, [type="button" i], [type="reset" i], [type="submit" i]) {
  -webkit-appearance: button;
}

/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */

:where(fieldset) {
  border: 1px solid #a0a0a0;
}

/**
 * Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */

:where(progress) {
  vertical-align: baseline;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 3. Change the resize direction in all browsers (opinionated).
 */

:where(textarea) {
  margin: 0; /* 1 */
  resize: vertical; /* 3 */
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */

:where([type="search" i]) {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
 * ========================================================================== */

/*
 * Add the correct styles in Safari.
 */

:where(dialog) {
  background-color: white;
  border: solid;
  color: black;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

:where(dialog:not([open])) {
  display: none;
}

/*
 * Add the correct display in Safari.
 */

:where(details > summary:first-of-type) {
  display: list-item;
}

/* Accessibility
 * ========================================================================== */

/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */

:where([aria-busy="true" i]) {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */

:where([aria-controls]) {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */

:where([aria-disabled="true" i], [disabled]) {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */

:where([aria-hidden="false" i][hidden]) {
  display: initial;
}

:where([aria-hidden="false" i][hidden]:not(:focus)) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

@font-face{font-family:"Karla";font-style:normal;font-weight:400;src:local(""),url("/static/fonts/karla-v14-latin-ext_latin-regular.woff2") format("woff2"),url("/static/fonts/karla-v14-latin-ext_latin-regular.woff") format("woff")}@font-face{font-family:"Karla";font-style:normal;font-weight:500;src:local(""),url("/static/fonts/karla-v14-latin-ext_latin-500.woff2") format("woff2"),url("/static/fonts/karla-v14-latin-ext_latin-500.woff") format("woff")}@font-face{font-family:"Karla";font-style:normal;font-weight:600;src:local(""),url("/static/fonts/karla-v14-latin-ext_latin-600.woff2") format("woff2"),url("/static/fonts/karla-v14-latin-ext_latin-600.woff") format("woff")}@font-face{font-family:"Karla";font-style:italic;font-weight:400;src:local(""),url("/static/fonts/karla-v14-latin-ext_latin-italic.woff2") format("woff2"),url("/static/fonts/karla-v14-latin-ext_latin-italic.woff") format("woff")}@font-face{font-family:"Public Sans";font-style:normal;font-weight:600;src:local(""),url("/static/fonts/public-sans-v4-latin-ext_latin-600.woff2") format("woff2"),url("/static/fonts/public-sans-v4-latin-ext_latin-600.woff") format("woff")}@font-face{font-family:"Public Sans";font-style:normal;font-weight:800;src:local(""),url("/static/fonts/public-sans-v4-latin-ext_latin-800.woff2") format("woff2"),url("/static/fonts/public-sans-v4-latin-ext_latin-800.woff") format("woff")}@font-face{font-family:"Tiempos Text";font-style:normal;src:url("/static/fonts/TiemposTextWeb-Regular.eot") format("eot"),url("/static/fonts/TiemposTextWeb-Regular.woff") format("woff"),url("/static/fonts/TiemposTextWeb-Regular.woff2") format("woff2")}@font-face{font-family:"Tiempos Text";font-style:italic;src:url("/static/fonts/TiemposTextWeb-RegularItalic.eot") format("eot"),url("/static/fonts/TiemposTextWeb-RegularItalic.woff") format("woff"),url("/static/fonts/TiemposTextWeb-RegularItalic.woff2") format("woff2")}body{font-family:Karla,sans-serif;background:#fff;color:#000;font-size:16px;font-weight:400}button,input,select,textarea{font-family:Karla,sans-serif}a{color:#000;text-decoration:underline;cursor:pointer}h1,h2,h3,h4{font-family:"Public Sans",sans-serif;letter-spacing:-0.03em}h1{font-weight:800;font-size:28px}.cookies{background:#000;color:#fff;border-bottom:1px solid #fff;max-width:none;font-size:14px;padding:8px 0}.cookies__inner{max-width:1300px;margin:0 auto;padding:4px 12px;display:flex;justify-content:stretch;align-items:center;font-weight:300;gap:8px}.cookies__inner--advanced:not(.cookies__inner--visible){display:none}.cookies__text{flex:1 1 auto;align-self:flex-start}.cookies__text span,.cookies__text a{white-space:nowrap}.cookies a{color:#fff}.cookies__buttons{display:flex;flex:0 0 auto;gap:8px}.cookies__accept{background:#fff;color:#000;margin:0;flex:0 0 auto;padding:.4em;border:0;font-size:16px;cursor:pointer}.cookies__accept--less{font-size:14px}.cookies__more{background:#000;color:#fff;margin:0;padding:4px;border:0;flex:0 0 auto;cursor:pointer}.cookies__more svg{width:16px;height:16px}.cookies__spacer{flex:1 2 auto}@media(max-width: 896px){.cookies__inner{flex-direction:column}.cookies__inner span{white-space:normal}.cookies__inner--advanced{align-items:flex-start}.cookies__inner:not(.cookies__inner--advanced){align-items:flex-end}}.debug-window{z-index:9000;position:fixed;background:#fff;font-size:12px;padding:8px;border:1px solid #000;top:10px;left:10px;width:300px;max-height:calc(100vh - 20px);overflow:auto}.form h1{color:#333}.form label{display:flex;flex-direction:column;text-align:left}.form label span{margin:0 8px}.form input,.form button{font-size:18px;padding:8px 10px;border:1px solid #000;border-radius:4px}.form input{width:100%;margin:0 8px 8px}.form input::placeholder{color:#bbb}.form button{margin:16px 8px;background:#fff}.form textarea{font-size:16px;padding:8px 10px;margin:0 8px 8px;border:1px solid #000;border-radius:4px}.form__error{text-align:center;font-weight:bold;margin:8px}.form__error{color:#000}.form__success{color:#57ee81}.header-container{position:relative}.header{display:flex;align-items:flex-end;padding:32px 32px 82px 32px;max-width:1300px;margin:0 auto}.header__logo{font-size:28px;margin:0;flex:0 0 auto;line-height:1;font-weight:800}.header__logo a{text-decoration:none}.header__logo a sup{font-size:1.2rem}.header__content{flex:1 1 auto;display:flex;flex-direction:column;align-items:flex-end}.header__actions{flex:1 1 auto;display:flex;align-items:center}.header__button{margin:0 0 0 4px;display:flex;flex-direction:column;font-size:12px;text-decoration:none;align-items:center;font-weight:600;width:56px;font-family:Karla,sans-serif;position:relative;color:#000;transition:color .5s}.header__button::before{content:"";position:absolute;left:0;top:0;right:0;bottom:0;background-image:linear-gradient(to right, #ed2900, #ff00ee);opacity:0;transition:opacity .5s}.header__button>*{position:relative}.header__button svg{width:24px;height:24px}.header__button--ping{color:#fff}.header__button--ping::before{opacity:1}.header__search{border:2px solid #000;display:flex;position:relative;justify-content:stretch;align-items:stretch;width:40vw;max-width:400px;height:40px;margin:8px 0}.header__search input{border:0;background:rgba(0,0,0,0);width:100%;flex:1 1 auto;padding:0 8px;font-size:20px}.header__search button{margin:0;padding:0;border:0;background:rgba(0,0,0,0);width:40px;color:#0c0c0c}.header__search svg{width:24px;height:24px}.header__search-pop-up{border:2px solid #000;background:#fff;z-index:30;position:absolute;margin-top:36px;left:0;right:0}.header__search-pop-up-filter{display:flex;justify-content:space-evenly;height:4rem;align-items:center}.header__search-pop-up-filter-active{font-weight:800;text-decoration:none}.header__search-pop-up-item{border-top:2px solid #000;display:flex;height:4rem}.header__search-pop-up-item-image{width:4rem;display:flex;justify-content:center;align-items:center}.header__search-pop-up-item-image img{width:4rem;height:3.9rem}.header__search-pop-up-item-info{display:flex;flex-direction:column;justify-content:center;padding-left:1.5rem}.header__search-pop-up-item-info a{text-decoration:none;line-height:1}.header__search-pop-up-item-info a span{font-size:smaller}.header__search-pop-up-item-info span{font-size:smaller;line-height:1;font-weight:200}.header__search-pop-up-item:hover{background:#eee}.header__search-pop-up-item:hover a{text-decoration:underline}.header__menu{list-style:none;margin:8px 0 0 0;padding:0;display:flex;flex-wrap:wrap;justify-content:flex-end}.header__menu li{margin:0;padding:0;font-size:25px;font-family:"Public Sans",sans-serif;letter-spacing:-0.03em;font-weight:800;line-height:25px}.header__menu li:not(:last-child)::after{content:"/";margin:0 2px;font-weight:900}.header__menu a{text-decoration:none}.header__menu a:hover{text-decoration:underline}.header__mega-menu-container{position:absolute;left:0;width:100%;z-index:20}.header__mega-menu{background:#fff;border-bottom:1px solid #000;display:none;justify-content:center;font-family:"Public Sans",sans-serif}.header__mega-menu--visible{display:flex}.header__mega-menu li{margin:0;padding:0;font-weight:bold}.header__mega-menu a{text-decoration:none}.header__mega-menu a:hover{text-decoration:underline}.header__mega-menu-item{width:170px}.header__mega-menu-list{list-style:none;padding:0}.header__mega-menu-header{display:block;font-weight:900;font-size:x-large;height:1.5em}.header__image-placeholder{display:block;background-position:center;background-size:cover;height:80px;width:150px}.header__mobile{display:none}.header__mobile-search{display:none}.header__mobile-menu{display:none}@media(max-width: 896px){.header{padding:16px;padding-left:max( 32px , env(safe-area-inset-left,  32px ));padding-right:max( 32px , env(safe-area-inset-right,  32px ))}.header__search{display:none}}@media(max-width: 500px){.header{padding:0;position:fixed;width:100%;height:45px;background-color:#fff;z-index:10}.header__logo,.header__content{display:none}.header__mobile{width:100%;text-align:center;border-bottom:1px solid #000}.header__mobile--visible{display:flex}.header__mobile-logo{font-family:"Public Sans",sans-serif;font-weight:800;font-size:22px;line-height:45px;position:absolute;top:0;left:50%;width:200px;margin-left:-100px}.header__mobile a{line-height:45px;text-decoration:none}.header__mobile svg{width:24px;height:24px}.header__mobile-hamburger{margin-left:1rem;flex:1 1 auto;text-align:left}.header__mobile-search-btn{margin-right:.5rem}.header__mobile-cart{padding:0 .5rem;position:relative}.header__mobile-cart svg{position:relative;top:-2px}.header__mobile-cart a{position:relative;display:flex;align-items:center;height:100%;color:#000;transition:color .5s}.header__mobile-cart-count{margin-right:4px;font-weight:bold}.header__mobile-cart::before{content:"";position:absolute;left:0;top:0;right:0;bottom:0;background-image:linear-gradient(to right, #ed2900, #ff00ee);opacity:0;transition:opacity .5s}.header__mobile-cart--ping a{color:#fff}.header__mobile-cart--ping::before{opacity:1}.header__search{display:flex;border:none;width:100%;margin:4px;padding:0 8px 0 0;height:37px;font-size:14px}.header__search--visble{display:flex}.header__mobile-search{display:none;padding:0;position:fixed;width:100%;height:45px;background-color:#fff;z-index:10;border-bottom:1px solid #000}.header__mobile-search--visible{display:flex}.header__mobile-menu{display:none;position:fixed;overflow-y:scroll;overflow-x:hidden;max-height:100%;z-index:30;width:100%;background:#fff;border-bottom:1px solid #000;padding:0 0 10px 1rem;font-size:22px;font-weight:800;line-height:45px}.header__mobile-menu-visible{display:block}.header__mobile-menu-top-line{display:flex}.header__mobile-menu-top-line svg{width:24px;height:24px}.header__mobile-menu-top-line-close{flex:1 1 auto}.header__mobile-menu-top-line a{font-weight:300;font-size:16px;text-decoration:none;padding-right:16px}.header__mobile-menu-top-line a span{padding-left:8px}.header__mobile-menu-profile{display:flex;font-size:18px;font-weight:500}.header__mobile-menu-profile-email{flex:1 1 auto;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;text-decoration:none}.header__mobile-menu-profile-orders{flex:1 1 auto;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;text-decoration:none}.header__mobile-menu-profile-user-link{padding-right:1rem;flex:0 1 auto;text-align:end;white-space:nowrap}.header__mobile-menu-profile-login{flex:1 1 auto;text-align:end;padding-right:1rem}.header__mobile-menu-profile-signup{padding-right:1rem}.header__mobile-menu-admin{font-size:18px;font-weight:500;padding-right:1rem;line-height:1}.header__mobile-menu-item a{text-decoration:none}}.product{font-size:13px}.product__cover{display:block;overflow:hidden;font-size:0;text-align:center;margin-bottom:8px}.product__artists{font-weight:600;margin:2px 0}.product__title{display:block;margin:2px 0;font-family:"Public Sans",sans-serif}.product__blurb{margin:8px 0;font-size:12px;font-family:"Tiempos Text",serif}.product__price{font-weight:600}.product__old-price{font-size:90%;text-decoration:line-through}.product__add-to-cart{display:inline-block;font-family:Karla,sans-serif;font-size:14px;padding:2px 8px;border:1px solid #000;background:#fff;margin:.7rem .5rem .7rem 0;line-height:1em}.product__actions{display:flex;align-items:center;justify-content:space-between}.product__free{display:inline-block;background:#000;color:#fff;padding:3px 4px;font-size:9px;margin:.7rem .5rem .7rem 0;text-decoration:none !important}.product a{text-decoration:none}.product a:hover{text-decoration:underline}.add-to-cart{display:inline-grid;grid-template:[row1-start] "amount increase add-to-cart " 25px [row1-end] [row2-start] "amount decrease add-to-cart" 25px [row2-end]/50px 25px auto;border:2px solid #000;border-radius:0;width:400px}.add-to-cart input{grid-area:amount;border:none;border-radius:0;border-right:1px solid #000;background:rgba(255,255,255,0);text-align:end;padding:8px;font-size:20px;font-weight:200}.add-to-cart__increase{grid-area:increase;border-bottom:1px solid #000}.add-to-cart__decrease{grid-area:decrease}.add-to-cart__change{font-size:25px;font-weight:100;place-self:center;line-height:1;width:100%;height:100%;text-align:center;vertical-align:middle;cursor:pointer}.add-to-cart button{position:relative;grid-area:add-to-cart;background:#000;color:#fff;border:none;cursor:pointer;padding:0 15px;font-size:20px;font-weight:200;transition:background .3s}.add-to-cart button::before{position:absolute;content:"";top:-2px;right:-2px;bottom:-2px;left:0;background-image:linear-gradient(to right, #ed2900, #ff00ee);opacity:0;transition:opacity .2s}.add-to-cart button:hover::before{opacity:1}.add-to-cart button span{position:relative}.add-to-cart--compact{display:flex;align-items:stretch;justify-content:stretch;width:100%}.add-to-cart--compact button{flex:1 1 100%;font-size:16px}.add-to-wishlist{border:0;background:rgba(0,0,0,0);padding:4px;cursor:pointer}.add-to-wishlist svg{width:40px;height:40px}.add-to-wishlist--added svg{fill:#ff3700}.footer{font-family:Karla,sans-serif;padding-top:7rem}.footer__forms{display:grid;margin:3rem auto 3rem auto}@media(min-width: 801px){.footer__forms{grid:[s1] "member contact" auto [e1 s2] "subscribe contact" [e2]/1fr 1fr;width:50rem}.footer__contact{border-left:1px solid #000;max-width:30rem}.footer__member{max-width:20rem}.footer__subscribe{max-width:20rem}}@media(max-width: 800px){.footer__forms{grid:[s1] "member" auto [e1 s2] "subscribe" auto [e2 s3] "contact" auto [e3]/auto}.footer__contact{border-left:none;border-top:1px solid #000;max-width:20rem}.footer__member{max-width:20rem}.footer__subscribe{max-width:20rem}}.footer__member{grid-area:member;display:flex;flex-direction:column;align-items:center;padding:0 32px 2rem 32px;margin:0 auto;border-bottom:1px solid #000}.footer__member p{width:20rem}.footer__contact{grid-area:contact;display:flex;flex-direction:column;align-items:center;padding:0 32px;margin:0 auto}.footer__contact p{width:20rem}.footer__contact input{width:20rem}.footer__contact textarea{width:20em;height:13em}.footer__subscribe{grid-area:subscribe;display:flex;flex-direction:column;align-items:center;padding:0 32px 16px;margin:0 auto;align-self:end}.footer__subscribe p{width:20rem}.footer__subscribe a{display:inline-block;border:1px solid #000;border-radius:4px;padding:3px;margin:0 .5em}.footer__subscribe img{width:38px}.footer__subscribe input{width:20rem}.footer__sitemap{display:flex;max-width:1100px;margin:0 auto;padding:2rem 2rem;justify-content:space-evenly}.footer__sitemap a{display:block;text-decoration:none}.footer__copyright{padding:32px;max-width:1300px;margin:0 auto;font-size:smaller;color:gray;text-align:center}.excerpt-player{font-family:Karla,sans-serif}.excerpt-player canvas{width:100%;height:64px}.excerpt-player__controls{display:flex;align-items:center;justify-content:stretch}.excerpt-player__buttons{flex:0 0 auto;display:flex;justify-content:center;align-items:center}.excerpt-player__buttons svg{width:8px;height:8px}.excerpt-player__buttons button{border-radius:50%;border:1px solid #ccc;background:rgba(0,0,0,0);display:flex;justify-content:center;align-items:center;outline:0}.excerpt-player__play-button{width:40px;height:40px;margin:4px}.excerpt-player__switch-button{width:30px;height:30px;margin:4px}.excerpt-player__seek{flex:1 1 auto;height:10px;border:1px solid #ccc;position:relative;margin:0 16px}.excerpt-player__seek-inner{height:14px;width:24px;background:#fff;border:1px solid #ccc;position:relative;top:-3px;left:-12px}.excerpt-player__playlist{margin:8px 0;padding:0 0 0 4px;display:grid;row-gap:5px;grid-template-columns:repeat(var(--column-count), 1fr)}.excerpt-player__playlist--load-mask{opacity:0}.excerpt-player__playlist-block{display:flex;align-items:flex-start;background:linear-gradient(180deg, rgba(0, 0, 0, 0) calc(50% - 1px), rgb(192, 192, 192) 50%, rgba(0, 0, 0, 0) calc(50% + 1px))}.excerpt-player__playlist-block--top{justify-content:flex-start}.excerpt-player__playlist-block--rest{justify-content:flex-end}.excerpt-player__playlist-block--tail:is(.excerpt-player__playlist-block--top){background:rgba(0,0,0,0)}.excerpt-player__playlist-entry{overflow:hidden;width:24px;height:24px;border:1px solid #ccc;display:flex;align-items:center;border-radius:100%;justify-content:center;color:#212121;cursor:pointer;transition:all .2s ease;background:#fff}.excerpt-player__playlist-entry:hover{color:#000;background:#ccc}.excerpt-player__playlist-entry--listened{color:#ccc}.excerpt-player__playlist-entry--listened:hover{color:#fff;background:#ccc}.excerpt-player__playlist-entry--current{color:#fff;background:#000}.excerpt-player__playlist-entry--current:hover{color:#fff;background:#000}.product-zoom{position:fixed;top:0;left:0;right:0;bottom:0;z-index:1000;background:#fff;overflow:hidden}.product-zoom__close,.product-zoom__next,.product-zoom__prev{position:fixed;cursor:pointer;z-index:10}.product-zoom__close svg,.product-zoom__next svg,.product-zoom__prev svg{width:32px;height:32px;opacity:.7}.product-zoom__close{top:16px;right:16px}.product-zoom__prev{top:50%;left:16px}.product-zoom__next{top:50%;right:16px}.product-zoom__slider{display:flex;width:100%;height:calc(100% - 100px);margin-top:50px;transition:transform .3s}.product-zoom__slide{flex:0 0 100%;width:100%;height:100%;display:flex;justify-content:center;align-items:center}.product-zoom__slide img{max-width:100%;max-height:100%}.product-zoom__thumbs{height:50px;display:flex;justify-content:center;overflow:auto}.product-zoom__thumb{height:50px;opacity:.7;cursor:pointer}.product-zoom__thumb--active{opacity:1}.product-zoom__thumb img{height:50px}.product-slider{margin:32px 0;position:relative;overflow:hidden}.product-slider h2{text-align:center}.product-slider__content{display:flex;overflow:auto;scrollbar-width:none;cursor:pointer;padding:0 8px}.product-slider__content--short{justify-content:center}.product-slider__content::-webkit-scrollbar{display:none}.product-slider__product--filler{width:1px !important;flex:0 0 1px !important}.product-slider--small .product-slider__product{flex:0 0 calc(12.5vw - 24px);max-width:138px;margin-bottom:32px;overflow:hidden;margin:0 8px}.product-slider--small .product-slider__product .product__cover img{height:calc(12.5vw - 24px);max-height:138px}.product-slider--small .product-slider__product--filler{margin-bottom:0}@media(min-width: 801px)and (max-width: 1100px){.product-slider--small .product-slider__product{flex:0 0 calc(16.6666666667vw - 27px);max-width:190px;margin-bottom:32px;overflow:hidden}.product-slider--small .product-slider__product .product__cover img{height:calc(16.6666666667vw - 27px);max-height:190px}.product-slider--small .product-slider__product--filler{margin-bottom:0}}@media(min-width: 501px)and (max-width: 800px){.product-slider--small .product-slider__product{flex:0 0 calc(25vw - 32px);max-width:293px;margin-bottom:32px;overflow:hidden}.product-slider--small .product-slider__product .product__cover img{height:calc(25vw - 32px);max-height:293px}.product-slider--small .product-slider__product--filler{margin-bottom:0}}@media(max-width: 500px){.product-slider--small .product-slider__product{flex:0 0 calc(33.3333333333vw - 19px);max-width:414px;margin-bottom:16px;overflow:hidden}.product-slider--small .product-slider__product .product__cover img{height:calc(33.3333333333vw - 19px);max-height:414px}.product-slider--small .product-slider__product--filler{margin-bottom:0}}.product-slider--large .product-slider__product{flex:0 0 270px;max-width:270px;overflow:hidden;margin:0 25px}.product-slider--large .product-slider__product .product__cover img{height:270px}@media(min-width: 501px)and (max-width: 800px){.product-slider--large .product-slider__product{flex:0 0 calc(25vw - 32px);max-width:293px;margin-bottom:32px;overflow:hidden}.product-slider--large .product-slider__product .product__cover img{height:calc(25vw - 32px);max-height:293px}.product-slider--large .product-slider__product--filler{margin-bottom:0}}@media(max-width: 500px){.product-slider--large .product-slider__product{flex:0 0 calc(50vw - 24px);max-width:626px;margin-bottom:16px;overflow:hidden}.product-slider--large .product-slider__product .product__cover img{height:calc(50vw - 24px);max-height:626px}.product-slider--large .product-slider__product--filler{margin-bottom:0}}.product-slider__arrow{position:absolute;top:calc(50% - 32px);height:64px;width:64px;background:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;opacity:0;pointer-events:none;transition:opacity .3s;cursor:pointer}.product-slider__arrow--left{left:16px}.product-slider__arrow--right{right:16px}.product-slider__arrow svg{width:16px;height:16px}@media(min-width: 1000px){.product-slider__arrow--visible{opacity:1;pointer-events:all}}.content-item{margin:0 auto;position:relative}.content-item__rows>*>*{max-width:1300px;margin:0 auto}.content-item__columns{display:flex;flex-wrap:wrap;justify-content:stretch}.content-item__columns>*{min-width:250px;align-items:center;justify-content:center}.content-item__grid{display:grid}.content-item__grid .content-item{min-width:200px;text-align:center}.content-item__html,.content-item__image,.content-item__product{padding:0 16px}.content-item__image{display:flex}.content-item__image.image-center{justify-content:center}.content-item__image.image-left{justify-content:left}.content-item__image.image-right{justify-content:right}.content-item__image-full-width>img{width:100%}.content-item__productset>.listing{padding:32px 16px}.content-item__banner.image-center{justify-content:center}.content-item__banner.image-left{justify-content:left}.content-item__banner.image-right{justify-content:right}.content-item__banner{display:flex}.content-item__banner-overlay{position:relative;overflow-wrap:break-word;text-align:center}.content-item__banner-text{position:absolute;font-size:32px;font-weight:800;font-family:"Public Sans",sans-serif;line-height:48px;color:#f8f8f8;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;padding:0 5%;text-shadow:0 0 2px #d3d3d3}.content-item__button,.content-item__button-small,.content-item__button-small-black,.content-item__button-regular,.content-item__button-regular-black,.content-item__button-large,.content-item__button-large-black{display:inline-block;cursor:pointer;border:1px solid #000;font-family:"Karla",sans-serif;text-decoration:none}.content-item__button-large,.content-item__button-large-black{padding:.55em 2em;font-size:125%;background-color:#fff;color:#000}.content-item__button-regular,.content-item__button-regular-black{padding:.4em 1.5em;font-size:100%;background-color:#fff;color:#000}.content-item__button-small,.content-item__button-small-black{padding:.25em 1em;font-size:75%;background-color:#fff;color:#000}.content-item__button-large-black{background-color:#000;color:#fff}.content-item__button-regular-black{background-color:#000;color:#fff}.content-item__button-small-black{background-color:#000;color:#fff}.content-item__footer{font-family:Karla,sans-serif;font-size:16px;text-align:center;padding-top:32px}.content-item__footer-instagram{border:2px solid #000;border-radius:999px;padding:3px;width:32px}.content-item__product{margin:10px auto}.content-item__product .product-image-slider{margin:0 auto}.content-item__product .product{display:flex}.content-item__product .product img{width:180px}.content-item__product .product a{text-decoration:none}.content-item__product .product__cover{overflow:visible;margin-right:2rem;margin-bottom:0;flex:1 1 30%;max-width:180px}.content-item__product .product__info{flex:1 1 70%}.content-item__product .product__artists{margin:0 0 .5rem 0;font-size:24px;line-height:24px;font-family:"Public Sans",sans-serif;font-weight:800}.content-item__product .product__title{font-size:16px;font-weight:600}.content-item__product .product__labels{background:url("/static/icons/star.svg") no-repeat left center;background-size:10px;padding-left:12px;font-size:14px}.content-item__product .product__add-to-cart,.content-item__product .product__read-more{border-color:#ccc;color:#999;padding:8px}.content-item__product .product__large-player{display:grid;grid-template-columns:2fr 4fr 1fr;border:2px solid}@media screen and (max-width: 720px){.content-item__product .product__large-player{grid-template-columns:1fr;border:0}}@media screen and (max-width: 500px){.content-item__product .product__large-player{padding:16px}}.content-item__product .product__large-player-cover{margin:10px;max-width:250px}@media screen and (max-width: 720px){.content-item__product .product__large-player-cover{margin:0}}.content-item__product .product__large-player-view{display:flex;flex-direction:column;justify-content:space-between;margin-top:10px;padding-right:50px}@media screen and (max-width: 800px){.content-item__product .product__large-player-view{padding-right:0}}.content-item__product .product__large-player-view .excerpt-player__playlist{font-size:12px}.content-item__product .product__large-player-buttons{display:flex;flex-direction:column;justify-content:space-between;border-left:2px solid;align-items:stretch}@media screen and (max-width: 720px){.content-item__product .product__large-player-buttons{flex-direction:row-reverse;border:0}}.content-item__product .product__large-player-buttons button{cursor:pointer;text-transform:uppercase}@media screen and (max-width: 720px){.content-item__product .product__large-player-buttons button{border:2px solid;width:100%}}@media screen and (min-width: 721px){.content-item__product .product__large-player-buttons button{height:100%}}.content-item__product .product__large-player-buttons .add-to-cart--compact{margin:0;background-color:#000;border:0;color:#fff;height:100%}@media screen and (max-width: 720px){.content-item__product .product__large-player-buttons .add-to-cart--compact{margin:0 15px 0 0}}@media(max-width: 500px){.content-item__product .product{padding:8px}.content-item__product .product img{width:100px}.content-item__product .product__cover{margin-right:1rem}.content-item__product .product__artists{margin-bottom:.1rem;font-size:13px}.content-item__product .product__title{font-size:17px;line-height:23px}.content-item__product .product__blurb{display:none}}.content-item img{max-width:100%}@media(max-width: 500px){.content-item__product{padding:0}}@media(min-width: 1300px){.content-item .content-item{padding:0 max(( 100% - 1300px + 32px )/2,0)}}.vacation-notice{margin:16px auto 4px;max-width:1268px;background:rgba(255,215,0,.3);border-left:4px solid rgba(255,215,0,.8);padding:8px 16px}.error{padding:10vmin}.error__message{margin:0 auto;max-width:400px;text-align:center;font-size:20px}.error__message h1{font-weight:normal}.error__logo{font-size:5.8vmin;color:inherit;text-decoration:none}.site{overflow-y:scroll}.site__top-line{max-width:none;background:#000;color:#fff;font-family:Karla,sans-serif;font-size:14px}.site__top-line-inner{max-width:1300px;margin:0 auto;padding:0 24px;display:flex;justify-content:flex-end}.site__top-line-notice{margin-right:auto;line-height:1.25em;padding:4px 0;flex:50% 1 1}.site__top-line-menu{display:flex;justify-content:flex-end;flex:auto 0 0}.site__top-line-supplier{color:#afa !important}.site__top-line a{display:flex;align-items:center;color:#fff;text-decoration:none;padding:0 8px;font-weight:600}.site__top-line a:not(:first-child)::before{content:"";display:block;height:10px;border-left:2px solid #fff;position:relative;left:-8px}.site__break--visible{border-bottom:1px solid #000}.site__sale-banner{position:relative;padding:8px;margin-bottom:16px}.site__sale-banner-text{text-align:center;font-weight:bold}.site__sale-banner-text a{color:inherit}.site__mobile-notice{display:none}@media(max-width: 500px){.site__top-line{display:none}.site__break{border:none;height:45px}.site__mobile-notice{display:block;padding:16px;font-size:14px}.site__sale-banner-text{text-align:left;font-size:14px}}.auth{margin:0 auto;max-width:1300px;padding:32px}@media(max-width: 896px){.auth{padding:32px;padding-left:max( 32px , env(safe-area-inset-left,  32px ));padding-right:max( 32px , env(safe-area-inset-right,  32px ))}}@media(max-width: 500px){.auth{padding:16px}}.auth__options{display:flex;flex-wrap:wrap;flex-direction:column;align-items:center;justify-content:center}.auth__alt{display:flex;justify-content:space-between}.auth__forms{display:flex;justify-content:center}.auth__form{width:300px;margin:0 16px}.auth__form .auth__form-button{border-color:#000;background:#fff}.auth__text{margin:20px}.auth__social{margin:0 16px;display:flex;white-space:nowrap}.auth__social-button{display:flex;justify-content:flex-start;align-items:center;cursor:pointer;font-size:24px;margin:0 8px 8px;border:1px solid #ccc;border-radius:4px}.auth__social-button img{height:46px}.auth__social-button span{margin-left:8px;font-size:20px;padding:8px 10px 8px 0}@media(max-width: 1000px){.auth__forms{flex-wrap:wrap}}@media(max-width: 500px){.auth__options{justify-content:stretch}.auth__social{margin:0;flex-direction:column}.auth__social-button{width:auto}}@media(max-width: 350px){.auth__form{width:250px}}.landing{margin:0 auto;max-width:1300px;padding:32px}@media(max-width: 896px){.landing{padding:32px;padding-left:max( 32px , env(safe-area-inset-left,  32px ));padding-right:max( 32px , env(safe-area-inset-right,  32px ))}}@media(max-width: 500px){.landing{padding:16px}}.landing__update-info{font-size:24px}.landing__headers{text-align:center;text-decoration:none;margin-top:3em}.landing__see-all{font-weight:600;text-align:center;display:block;margin:2em 0 6em 0}.landing__top-banners{display:flex;flex-wrap:wrap;justify-content:space-between}.landing__top-banners-banner{flex:0 0 calc(33.3333333333vw - 38px);max-width:396px;margin-bottom:32px;overflow:hidden;margin:16px 0}.landing__top-banners-banner .product__cover img{width:100%}.landing__top-banners-banner--filler{margin-bottom:0}@media(min-width: 501px)and (max-width: 650px){.landing__top-banners-banner{flex:0 0 calc(100vw - 80px);max-width:1220px;margin-bottom:32px;overflow:hidden}.landing__top-banners-banner .product__cover img{width:100%}.landing__top-banners-banner--filler{margin-bottom:0}}@media(max-width: 500px){.landing__top-banners-banner{flex:0 0 calc(100vw - 40px);max-width:1260px;margin-bottom:16px;overflow:hidden}.landing__top-banners-banner .product__cover img{width:100%}.landing__top-banners-banner--filler{margin-bottom:0}}.landing__top-banners-title{font-weight:bold;font-size:18px}.landing__arrivals-grid{display:flex;flex-wrap:wrap;justify-content:space-between}.landing__arrivals-grid-cell{flex:0 0 calc(16.6666666667vw - 27px);max-width:190px;margin-bottom:32px;overflow:hidden}.landing__arrivals-grid-cell .product__cover img{height:calc(16.6666666667vw - 27px);max-height:190px}.landing__arrivals-grid-cell--filler{margin-bottom:0}@media(min-width: 501px)and (max-width: 800px){.landing__arrivals-grid-cell{flex:0 0 calc(25vw - 32px);max-width:293px;margin-bottom:32px;overflow:hidden}.landing__arrivals-grid-cell .product__cover img{height:calc(25vw - 32px);max-height:293px}.landing__arrivals-grid-cell--filler{margin-bottom:0}}@media(max-width: 500px){.landing__arrivals-grid-cell{flex:0 0 calc(50vw - 24px);max-width:626px;margin-bottom:16px;overflow:hidden}.landing__arrivals-grid-cell .product__cover img{height:calc(50vw - 24px);max-height:626px}.landing__arrivals-grid-cell--filler{margin-bottom:0}}.landing__showcase{display:flex;flex-wrap:wrap;justify-content:space-between}.landing__showcase-big{flex:0 0 calc(50vw - 48px);max-width:602px;margin-bottom:32px;overflow:hidden}.landing__showcase-big .product__cover img{width:100%}.landing__showcase-big--filler{margin-bottom:0}.landing__showcase-big--container{display:flex;flex-wrap:wrap;justify-content:space-between}.landing__showcase-big.product .product__blurb{white-space:pre-wrap}.landing__showcase-big .landing__showcase-small{flex:0 0 calc(25vw - 32px);max-width:293px;margin-bottom:32px;overflow:hidden}.landing__showcase-big .landing__showcase-small .product__cover img{height:calc(25vw - 32px);max-height:293px}.landing__showcase-big .landing__showcase-small--filler{margin-bottom:0}@media(max-width: 500px){.landing__showcase-big{flex:0 0 calc(100vw - 40px);max-width:1260px;margin-bottom:16px;overflow:hidden;margin-bottom:16px}.landing__showcase-big .product__cover img{width:100%}.landing__showcase-big--filler{margin-bottom:0}.landing__showcase-big .landing__showcase-small{flex:0 0 calc(50vw - 24px);max-width:626px;margin-bottom:16px;overflow:hidden}.landing__showcase-big .landing__showcase-small .product__cover img{height:calc(50vw - 24px);max-height:626px}.landing__showcase-big .landing__showcase-small--filler{margin-bottom:0}}.landing__products-row{display:flex;flex-wrap:wrap;justify-content:space-between}.landing__products-row-item{flex:0 0 calc(10vw - 23px);max-width:107px;margin-bottom:32px;overflow:hidden}.landing__products-row-item .product__cover img{height:calc(10vw - 23px);max-height:107px}.landing__products-row-item--filler{margin-bottom:0}@media(min-width: 501px)and (max-width: 800px){.landing__products-row-item{flex:0 0 calc(20vw - 29px);max-width:231px;margin-bottom:32px;overflow:hidden}.landing__products-row-item .product__cover img{height:calc(20vw - 29px);max-height:231px}.landing__products-row-item--filler{margin-bottom:0}}@media(max-width: 500px){.landing__products-row-item{flex:0 0 calc(50vw - 24px);max-width:626px;margin-bottom:16px;overflow:hidden}.landing__products-row-item .product__cover img{height:calc(50vw - 24px);max-height:626px}.landing__products-row-item--filler{margin-bottom:0}}.landing__products-row .product__info{font-size:12px}.landing__products-alt{display:flex;flex-wrap:wrap;justify-content:space-between}.landing__products-alt-item{flex:0 0 calc(33.3333333333vw - 38px);max-width:396px;margin-bottom:32px;overflow:hidden;display:flex}.landing__products-alt-item .product__cover{flex:0 0 calc(11.1vw - 38px);max-width:106px}.landing__products-alt-item .product__cover img{width:100%}.landing__products-alt-item .product__cover{margin-bottom:auto;margin-right:8px}.landing__products-alt-item .product_artists{margin-top:0}@media(min-width: 501px)and (max-width: 800px){.landing__products-alt-item{flex:0 0 calc(50vw - 48px);max-width:602px;margin-bottom:32px;overflow:hidden}.landing__products-alt-item .product__cover{flex:0 0 calc(16.65vw - 48px);max-width:168px}.landing__products-alt-item .product__cover img{width:100%}}@media(max-width: 500px){.landing__products-alt-item{flex:0 0 calc(100vw - 40px);max-width:1260px;margin-bottom:16px;overflow:hidden}.landing__products-alt-item .product__cover{flex:0 0 calc(33.3vw - 40px);max-width:392px}.landing__products-alt-item .product__cover img{width:100%}}.landing__products-alt .product__info{font-size:12px}@media(max-width: 500px){.landing__update-info{font-size:18px}.landing__update-info span{display:block}}.product-banner{font-size:36px;position:relative;text-align:center}.product-banner img{width:100%}.product-banner__overlay{position:absolute;top:0;left:0;bottom:0;right:0;display:flex;justify-content:center;align-items:center;text-decoration:none}.listing{margin:0 auto;max-width:1300px;padding:32px}@media(max-width: 896px){.listing{padding:32px;padding-left:max( 32px , env(safe-area-inset-left,  32px ));padding-right:max( 32px , env(safe-area-inset-right,  32px ))}}@media(max-width: 500px){.listing{padding:16px}}.listing__title{display:flex;align-items:center}.listing__title>:not(:first-child){margin-left:24px}.listing__styles{font-size:12px;margin:24px 0}.listing__styles a{margin:0 5px;line-height:16px;text-decoration:none;white-space:nowrap}.listing__styles a:hover{text-decoration:underline}.listing__page{padding:8px;flex:0 0 auto;text-align:center}.listing__page--current{text-decoration:none}.listing__columns{display:flex}.listing__columns>*:first-child{flex:1 1 auto}.listing__side{width:250px;flex:0 0 250px;margin-left:16px}.listing__wishlist-buy-all{border:0;background:#000;color:#fff;font-size:20px;padding:8px 16px}.new-arrivals-restock h3{margin:0 0 40px 0;text-align:right}.new-arrivals-restock__product{display:flex;margin:8px 0}.new-arrivals-restock__product .product__cover{width:80px;flex:0 0 80px;margin-right:8px}.new-arrivals-restock__product .product__format{display:none}.new-arrivals-restock__product img{width:80px;height:auto}@media(max-width: 1005px){.new-arrivals-restock{display:none}}.listing-grid{display:flex;flex-wrap:wrap;justify-content:space-between}.listing-grid-product{flex:0 0 calc(16.6666666667vw - 27px);max-width:190px;margin-bottom:32px;overflow:hidden}.listing-grid-product .product__cover img{height:calc(16.6666666667vw - 27px);max-height:190px}.listing-grid-product--filler{margin-bottom:0}@media(min-width: 501px)and (max-width: 800px){.listing-grid-product{flex:0 0 calc(25vw - 32px);max-width:293px;margin-bottom:32px;overflow:hidden}.listing-grid-product .product__cover img{height:calc(25vw - 32px);max-height:293px}.listing-grid-product--filler{margin-bottom:0}}@media(max-width: 500px){.listing-grid-product{flex:0 0 calc(50vw - 24px);max-width:626px;margin-bottom:16px;overflow:hidden}.listing-grid-product .product__cover img{height:calc(50vw - 24px);max-height:626px}.listing-grid-product--filler{margin-bottom:0}}.listing-grid-artist,.listing-grid-label{flex:0 0 calc(25vw - 32px);max-width:293px;margin-bottom:32px;overflow:hidden}.listing-grid-artist .product__cover img,.listing-grid-label .product__cover img{height:calc(25vw - 32px);max-height:293px}.listing-grid-artist--filler,.listing-grid-label--filler{margin-bottom:0}@media(min-width: 501px)and (max-width: 800px){.listing-grid-artist,.listing-grid-label{flex:0 0 calc(50vw - 48px);max-width:602px;margin-bottom:32px;overflow:hidden}.listing-grid-artist .product__cover img,.listing-grid-label .product__cover img{height:calc(50vw - 48px);max-height:602px}.listing-grid-artist--filler,.listing-grid-label--filler{margin-bottom:0}}@media(max-width: 500px){.listing-grid-artist,.listing-grid-label{flex:0 0 calc(100vw - 40px);max-width:1260px;margin-bottom:16px;overflow:hidden}.listing-grid-artist .product__cover img,.listing-grid-label .product__cover img{height:calc(100vw - 40px);max-height:1260px}.listing-grid-artist--filler,.listing-grid-label--filler{margin-bottom:0}}.listing-big-grid{display:flex;flex-wrap:wrap;justify-content:space-between}.listing-big-grid-product,.listing-big-grid-product-4{flex:0 0 calc(25vw - 32px);max-width:293px;margin-bottom:32px;overflow:hidden}.listing-big-grid-product .product__cover img,.listing-big-grid-product-4 .product__cover img{height:calc(25vw - 32px);max-height:293px}.listing-big-grid-product--filler,.listing-big-grid-product-4--filler{margin-bottom:0}@media(min-width: 501px)and (max-width: 800px){.listing-big-grid-product,.listing-big-grid-product-4{flex:0 0 calc(50vw - 48px);max-width:602px;margin-bottom:32px;overflow:hidden}.listing-big-grid-product .product__cover img,.listing-big-grid-product-4 .product__cover img{height:calc(50vw - 48px);max-height:602px}.listing-big-grid-product--filler,.listing-big-grid-product-4--filler{margin-bottom:0}}@media(max-width: 500px){.listing-big-grid-product,.listing-big-grid-product-4{flex:0 0 calc(100vw - 40px);max-width:1260px;margin-bottom:16px;overflow:hidden}.listing-big-grid-product .product__cover img,.listing-big-grid-product-4 .product__cover img{height:calc(100vw - 40px);max-height:1260px}.listing-big-grid-product--filler,.listing-big-grid-product-4--filler{margin-bottom:0}}.listing-big-grid-product-3{flex:0 0 calc(33.3333333333vw - 38px);max-width:396px;margin-bottom:32px;overflow:hidden}.listing-big-grid-product-3 .product__cover img{height:calc(33.3333333333vw - 38px);max-height:396px}.listing-big-grid-product-3--filler{margin-bottom:0}@media(min-width: 501px)and (max-width: 800px){.listing-big-grid-product-3{flex:0 0 calc(50vw - 48px);max-width:602px;margin-bottom:32px;overflow:hidden}.listing-big-grid-product-3 .product__cover img{height:calc(50vw - 48px);max-height:602px}.listing-big-grid-product-3--filler{margin-bottom:0}}@media(max-width: 500px){.listing-big-grid-product-3{flex:0 0 calc(100vw - 40px);max-width:1260px;margin-bottom:16px;overflow:hidden}.listing-big-grid-product-3 .product__cover img{height:calc(100vw - 40px);max-height:1260px}.listing-big-grid-product-3--filler{margin-bottom:0}}.listing-list{display:flex;flex-direction:column}.listing-list .product{display:flex;margin-bottom:2rem}.listing-list .product img{width:230px}.listing-list .product__cover{overflow:visible;margin-right:2rem;margin-bottom:0}.listing-list .product__artists{margin:0 0 .5rem 0;font-size:24px;line-height:30px;font-family:"Public Sans",sans-serif;font-weight:800}.listing-list .product__title{font-size:16px;font-weight:600}.listing-list .product__labels{background:url("/static/icons/star.svg") no-repeat left center;background-size:10px;padding-left:12px}@media(max-width: 500px){.listing-list .product{margin-bottom:1rem}.listing-list .product img{width:100px}.listing-list .product__cover{margin-right:1rem}.listing-list .product__artists{margin-bottom:.1rem;font-size:13px}.listing-list .product__title{font-size:17px;line-height:23px}.listing-list .product__blurb{display:none}.listing-list .product__add-to-cart{margin:.4rem 0}}.listing-params{margin-bottom:3rem;display:flex;flex-direction:column;font-family:Karla,sans-serif}.listing-params__top-line{flex:1 1 100%;display:flex;flex-wrap:wrap;font-size:80%;margin:3rem 0 .5rem 0;font-weight:200;align-items:center}.listing-params a{text-decoration:none}.listing-params__sort{padding:.3rem .7rem .3rem 0;border-right:1px solid #000}.listing-params__filter{padding:.3rem .3rem .3rem .5rem;border-left:1px solid #000}.listing-params__sort,.listing-params__filter{position:relative}.listing-params__sort svg,.listing-params__filter svg{width:.85rem;margin-left:.5rem}.listing-params__sort-dropdown,.listing-params__filter-dropdown{position:absolute;background:#fff;border:1px solid #000;padding:1rem;margin-top:.4rem;width:9rem;left:-1rem;display:none}.listing-params__sort-dropdown--visible,.listing-params__filter-dropdown--visible{display:block}.listing-params__sort-dropdown-item,.listing-params__filter-dropdown-item{display:block}.listing-params__sort-dropdown-item--selected,.listing-params__filter-dropdown-item--selected{font-weight:600}@media(max-width: 500px){.listing-params__sort,.listing-params__filter{flex:0 0 50%;border-right:0;order:-1}}.listing-params__display{padding:0 .7rem 0 .2rem;border-right:1px solid #000}.listing-params__display svg{width:.85rem;margin-left:.5rem}.listing-params__display-option--big-grid svg{width:1rem}.listing-params__display-option--grid svg{width:1.08rem}.listing-params__display-option--list svg{width:1.3rem}.listing-params__display-option--disabled{color:gray}@media(max-width: 500px){.listing-params__display{padding-left:0}.listing-params__display *:first-child svg{margin-left:0}}.listing-params__length{padding:.3rem .7rem;position:relative;border-right:1px solid #000}.listing-params__length svg{width:.85rem;margin-left:.5rem}.listing-params__length-dropdown{position:absolute;background:#fff;border:1px solid #000;padding:1rem;margin-top:.4rem;width:9rem;left:-0.3rem;display:none}.listing-params__length-dropdown--visible{display:block}.listing-params__length-dropdown-item--selected{font-weight:600}.listing-params__available{margin:0 .5rem;display:flex;align-items:center}.listing-params__available svg{width:.85rem;margin-right:.5rem}.listing-params__filters{border-left:1px solid #000;padding:.3rem .7rem;display:flex;align-items:center;cursor:pointer}.listing-params__filters svg{width:1.1rem;margin-right:.5rem}.listing-params__spacer{flex:1 2 auto}.listing-params__previous-page{padding:.3rem .7rem;border-right:1px solid #000;display:flex;align-items:center;height:25px}.listing-params__previous-page svg{width:.85rem}.listing-params__pages{padding:.3rem .7rem;border-right:1px solid #000}.listing-params__next-page{padding:.3rem 0 .3rem .7rem;display:flex;align-items:center;height:25px}.listing-params__next-page svg{width:.85rem}.listing-params__mobile-only{display:none}@media(max-width: 500px){.listing-params__desktop-only{display:none}.listing-params__mobile-only{display:inline}}.listing-params__tags{display:none;align-items:baseline;overflow-x:auto;border-top:1px solid #d3d3d3}.listing-params__tags--visible{display:flex}.listing-params__tags--active{background:#000 !important;color:#fff}.listing-params__tags a{background:rgba(255,255,255,.3);border-radius:2em;padding:.2em .7em;margin:.4em;border:1px solid #d3d3d3;text-decoration:none;flex:0 0 auto}.listing-params__tags-styles{border-bottom:1px solid #d3d3d3}.listing-params__tags::-webkit-scrollbar{display:none}.listing-pager{display:flex;justify-content:center;flex-wrap:wrap}.product-page__content{margin:0 auto;max-width:1300px;padding:32px;display:flex;justify-content:stretch;align-items:stretch;margin-bottom:64px}@media(max-width: 896px){.product-page__content{padding:32px;padding-left:max( 32px , env(safe-area-inset-left,  32px ));padding-right:max( 32px , env(safe-area-inset-right,  32px ))}}@media(max-width: 500px){.product-page__content{padding:16px}}@media(max-width: 500px){.product-page__content{padding:0}}.product-page__side{flex:1 1 40%;display:flex;flex-direction:column}.product-page__main{padding-left:32px;flex:1 1 60%}.product-page__info h1{margin-top:0}.product-page__info h2{font-weight:normal}.product-page__featured-artists{font-family:Karla,sans-serif;font-size:14px;font-weight:normal}.product-page__featured-artists a{margin-left:4px}.product-page__details{font-family:Karla,sans-serif;font-size:14px;margin-bottom:16px}.product-page__details p{margin:4px 0}.product-page__details span{margin-right:8px}.product-page__details-format{display:inline-block;padding:4px 8px;border-radius:3px;margin-right:10px;margin-top:10px;line-height:16px}.product-page__details-format--current{border:solid #000 2px}.product-page__details-format--other{border:solid #d3d3d3 2px}.product-page__details-format-name{font-weight:bold}.product-page__details .product-page__details-stock{margin-top:16px}.product-page__abstract{margin:16px 0;font-size:20px}.product-page__description{font-family:"Tiempos Text",serif;font-size:18px;padding:16px 0}.product-page__description img{max-width:100%}.product-page__price{padding:8px 0;font-size:24px;line-height:1em;margin:8px 0}.product-page__old-price{font-size:20px;color:#999;text-decoration:line-through}.product-page__free{margin-left:auto;font-size:14px}.product-page__details-fold{border-bottom:1px solid #000;border-top:1px solid #000}.product-page__details-fold-title{padding:.7em 0;display:flex;justify-content:space-between;align-items:center;cursor:pointer;font-family:"Public Sans",sans-serif;font-weight:bold;letter-spacing:-0.03em}.product-page__details-fold-title svg{width:14px;height:14px}.product-page__details-fold-close-icon{display:none}.product-page__details-fold-content{display:none;padding:.5em 0}.product-page__details-fold--open .product-page__details-fold-open-icon{display:none}.product-page__details-fold--open .product-page__details-fold-close-icon{display:block}.product-page__details-fold--open .product-page__details-fold-content{display:block}.product-page__details-fold-item{font-family:Karla,sans-serif;font-size:85%;line-height:2.2}.product-page__details-fold-item-notes{line-height:initial}.product-page__actions{display:flex;align-items:center;margin-bottom:50px}.product-page__actions .add-to-cart{margin-right:8px}.product-page__included-in{font-family:Karla,sans-serif;font-size:85%}.product-page__included-in-item{display:flex;margin:10px 0}.product-page__included-in-image{height:80px;width:120px;flex:0 0 auto;background-size:cover;background-position:top center;border:2px solid #fff;outline:2px solid #ff3700;margin:2px 16px 2px 2px}.product-page__included-in-details h3{color:#ff3700;margin:0;font-family:Karla,sans-serif}.product-page__included-in-details a{color:#ff3700;text-decoration:none}.product-page__included-in-details p{margin:0;color:#666}@media(max-width: 500px){.product-page__included-in{padding:0 16px}}.product-page__file-under{margin:40px 0;font-family:Karla,sans-serif;font-size:85%;display:flex;flex-wrap:wrap;align-items:baseline;line-height:1.4em}.product-page__file-under b{margin-right:.5em}.product-page__file-under-item{border-radius:2em;padding:.2em .7em;margin:.1em .4em .1em 0;border:1px solid #d3d3d3;text-decoration:none}@media(max-width: 500px){.product-page__file-under{padding:0 16px}}.product-page__playlist-ribbon-mobile{display:none;justify-content:flex-start;flex-direction:row-reverse;align-items:center;background:#fff;margin:5px 0;border:2px solid #000;border-right:0;border-left:0;line-height:1em;text-decoration:none}.product-page__playlist-ribbon-mobile svg{width:8px;height:8px;margin:10px 30px;transform:scale(6);fill:#ff3700}@media(max-width: 500px){.product-page__playlist-ribbon-mobile{display:flex}}.product-page__playlist-ribbon-desktop{display:block;position:relative;top:-50px;background:#fff;float:right;text-align:center;margin-left:20px;font-family:"Public Sans",sans-serif;font-weight:800;font-size:16px;border:1px solid #000;border-bottom:0;width:101px;padding-bottom:50px;overflow:hidden;text-decoration:none}.product-page__playlist-ribbon-desktop svg{width:40px;height:40px;margin:10px 10px 0 10px;fill:#ff3700}.product-page__playlist-ribbon-desktop div{margin:5px 10px 10px 10px}.product-page__playlist-ribbon-desktop::after{position:absolute;left:0;bottom:-70px;display:block;content:"";width:100px;height:100px;transform-origin:center;transform:rotate(45deg);border:1px solid #000}@media(max-width: 500px){.product-page__playlist-ribbon-desktop{display:none}}.product-page__reviews{margin:0 auto;max-width:1300px;padding:32px;margin-top:80px;margin-bottom:80px}@media(max-width: 896px){.product-page__reviews{padding:32px;padding-left:max( 32px , env(safe-area-inset-left,  32px ));padding-right:max( 32px , env(safe-area-inset-right,  32px ))}}@media(max-width: 500px){.product-page__reviews{padding:16px}}.product-page__reviews-container{overflow:hidden}.product-page__reviews-slider{display:flex;width:100%;transform:translateX(0);transition:transform .3s}.product-page__reviews-review{width:100%;flex:0 0 100%;text-align:center;padding:24px;font-size:120%}.product-page__reviews-stars{display:flex;height:24px;width:140px;margin:20px auto}.product-page__reviews-star{width:24px;height:24px;position:relative;margin:2px}.product-page__reviews-star svg{position:absolute;width:24px;height:24px;top:0;left:0}.product-page__reviews-star svg:first-child{fill:#eee}.product-page__reviews-star--half svg:last-child{clip:rect(0, 12px, 24px, 0)}.product-page__reviews-star--empty svg:last-child{display:none}.product-page__reviews-text{font-style:italic}.product-page__reviews-source,.product-page__reviews-toggle{white-space:nowrap}.product-page__reviews-source{text-align:right}.product-page__reviews-bullets{display:flex;justify-content:center}.product-page__reviews-bullet{width:20px;height:20px;flex:0 0 auto;border-radius:50%;border:2px solid #000;cursor:pointer;margin:4px}.product-page__reviews-bullet--active{background:#ff3700}.product-page__reviews-full{overflow:hidden;height:0;transition:height .5s}.product-page__products{border-top:1px solid #000;padding-top:64px}.product-page__mobile-menu{display:none}.product-page__details-fold .product-page__file-under{display:none}@media(min-width: 500px)and (max-width: 896px){.product-page__content{flex-wrap:wrap}.product-page__side{flex:1 0 100%;display:flex;flex-wrap:wrap}.product-page__main{padding:0}.product-page .product-image-slider{flex:0 0 39vw}.product-page .excerpt-player{flex:1 1 calc(60vw - 96px);padding-left:32px}.product-page__info{padding-left:0}.product-page__description{clear:both}.product-page__included-in{flex:1 0 100%}}@media(max-width: 500px){.product-page{padding:0}.product-page__content{flex-wrap:wrap}.product-page__side{flex:1 0 100%}.product-page__cover{text-align:center}.product-page__cover img{max-width:100%;width:auto}.product-page__main{padding:0 16px;overflow:hidden}.product-page__player{position:fixed;left:0;right:0;bottom:-250px;background:#fff;border-top:1px solid #000;z-index:100;transition:bottom .3s}.product-page__player .excerpt-player__playlist{max-height:100px;overflow:auto}.product-page__player--visible{bottom:50px}.product-page__mobile-menu{position:fixed;bottom:0;left:0;right:0;height:50px;background:#fff;display:flex;z-index:200}.product-page__mobile-menu>*{flex:1 0 33%;border-top:1px solid #000;display:flex}.product-page__mobile-menu-wishlist{justify-content:stretch;align-items:stretch}.product-page__mobile-menu-wishlist .add-to-wishlist{font-size:16px;display:flex;flex:1 1 100%;justify-content:center;align-items:center}.product-page__mobile-menu-wishlist .add-to-wishlist svg{width:20px;height:20px;margin-right:4px}.product-page__mobile-menu-play{font-size:18px;border-left:1px solid #000;border-bottom:none;justify-content:center;align-items:center}.product-page__mobile-menu-play svg{width:20px;height:20px;margin-right:4px}.product-page__mobile-menu-play--disabled{color:#999}.product-page__mobile-menu-play--active{color:#ff3700;border-top:0}.product-page__mobile-menu-cart{justify-content:stretch;align-items:stretch}.product-page__mobile-menu-oos{border-left:1px solid #000;justify-content:center;align-items:center}.product-page__file-under{margin:0}.product-page__actions{display:none}.product-page h1,.product-page h2{margin:8px 0}.product-page__side .product-page__file-under{display:none}.product-page__details-fold .product-page__file-under{display:block}.product-page__description{padding:0}}.product-image-slider{width:500px;height:520px;position:relative;z-index:1}.product-image-slider__container{width:500px;height:520px;overflow:hidden;position:relative}.product-image-slider__inner{position:absolute;top:0;left:0;display:flex;transform:translateX(0);transition:transform .3s;z-index:2}.product-image-slider__inner--dragging{transition:none}.product-image-slider__image{width:500px;height:500px;background-size:contain;background-position:center;background-repeat:no-repeat}.product-image-slider__dots{position:absolute;left:-25px;height:100%;bottom:0;display:flex;flex-direction:column;justify-content:center;z-index:5}.product-image-slider__dot{background:rgba(255,255,255,.6);width:10px;height:10px;border-radius:50%;margin:4px;border:1px solid rgba(0,0,0,.6);cursor:pointer}.product-image-slider__dot--active{background:rgba(0,0,0,.6);border:none}.product-image-slider__next,.product-image-slider__prev{position:absolute;z-index:4;top:0;bottom:0;width:50%;cursor:pointer}.product-image-slider__next{right:0}.product-image-slider__prev{left:0}.product-image-slider__zoom{cursor:pointer}.product-image-slider__zoom svg{width:16px;height:16px;position:relative;left:2px}@media(min-width: 501px)and (max-width: 1300px){.product-image-slider{width:39vw;height:calc(39vw + 20px)}.product-image-slider__container{width:39vw;height:calc(39vw + 20px)}.product-image-slider__image{width:39vw;height:39vw}}@media(max-width: 500px){.product-image-slider{width:100vw;height:calc(100vw + 20px)}.product-image-slider__container{width:100vw;height:calc(100vw + 20px)}.product-image-slider__dots{left:5px}.product-image-slider__image{width:100vw;height:100vw}}.artist-page__small-header{text-align:center}.artist-page__small-header h1{font-size:26px}@media(max-width: 500px){.artist-page__small-header{font-size:20px}}.artist-page__header{margin:10px 0}.artist-page__header-inner{margin:0 auto;max-width:1300px;padding:0 32px;display:flex;justify-content:stretch}@media(max-width: 500px){.artist-page__header-inner{padding:0 16px}}.artist-page__header--dark{color:#fff}.artist-page__info{flex:1 1 auto;padding:16px 0}.artist-page__description{margin:16px 0;font-family:"Tiempos Text",serif}.artist-page__image{display:flex;justify-content:flex-end;align-items:flex-end}.artist-page__image img{max-width:300px;max-height:300px;pointer-events:none;position:relative}.artist-page__image--transparent img{margin-top:-50px}.artist-page__image--opaque img{margin:-50px 0 10px 0}@media(max-width: 700px){.artist-page__header-inner{flex-direction:column;text-align:center;padding:0}.artist-page__description{display:none}.artist-page__image{justify-content:center}.artist-page__image img{max-height:none;margin:0}.artist-page__image--transparent img{max-width:90%}.artist-page__image--opaque img{max-width:100%}}.artist-page__content{margin:0 auto;max-width:1300px;padding:32px}@media(max-width: 896px){.artist-page__content{padding:32px;padding-left:max( 32px , env(safe-area-inset-left,  32px ));padding-right:max( 32px , env(safe-area-inset-right,  32px ))}}@media(max-width: 500px){.artist-page__content{padding:16px}}.artist-page__mobile-description{display:none}@media(max-width: 700px){.artist-page__mobile-description{display:block;margin:16px 0}}.artist-page__relations{margin:16px 0}.artist-page__products{display:flex;flex-wrap:wrap;justify-content:space-between}.artist-page__product{flex:0 0 calc(25vw - 32px);max-width:293px;margin-bottom:32px;overflow:hidden}.artist-page__product .product__cover img{height:calc(25vw - 32px);max-height:293px}.artist-page__product--filler{margin-bottom:0}@media(min-width: 501px)and (max-width: 800px){.artist-page__product{flex:0 0 calc(50vw - 48px);max-width:602px;margin-bottom:32px;overflow:hidden}.artist-page__product .product__cover img{height:calc(50vw - 48px);max-height:602px}.artist-page__product--filler{margin-bottom:0}}@media(max-width: 500px){.artist-page__product{flex:0 0 calc(50vw - 24px);max-width:626px;margin-bottom:16px;overflow:hidden}.artist-page__product .product__cover img{height:calc(50vw - 24px);max-height:626px}.artist-page__product--filler{margin-bottom:0}}.label-page__small-header{text-align:center}.label-page__small-header h1{display:flex;align-items:center;justify-content:center;font-size:26px}@media(max-width: 500px){.label-page__small-header{font-size:20px}}.label-page__small-header-star{font-size:1.2rem;margin-right:1.2rem;margin-bottom:.2rem}.label-page__header{margin:10px 0;background:#ccc}.label-page__header-inner{margin:0 auto;max-width:1300px;padding:32px;display:flex;justify-content:stretch}@media(max-width: 500px){.label-page__header-inner{padding:16px}}.label-page__info{max-width:700px;background:#fff;padding:16px}.label-page__info h1{margin:0}.label-page__info p{margin:.5em 0}.label-page__content{margin:0 auto;max-width:1300px;padding:32px}@media(max-width: 896px){.label-page__content{padding:32px;padding-left:max( 32px , env(safe-area-inset-left,  32px ));padding-right:max( 32px , env(safe-area-inset-right,  32px ))}}@media(max-width: 500px){.label-page__content{padding:16px}}.label-page__artists{margin:16px 0}.label-page__products{display:flex;flex-wrap:wrap;justify-content:space-between}.label-page__product{flex:0 0 calc(25vw - 32px);max-width:293px;margin-bottom:32px;overflow:hidden}.label-page__product .product__cover img{height:calc(25vw - 32px);max-height:293px}.label-page__product--filler{margin-bottom:0}@media(min-width: 501px)and (max-width: 800px){.label-page__product{flex:0 0 calc(50vw - 48px);max-width:602px;margin-bottom:32px;overflow:hidden}.label-page__product .product__cover img{height:calc(50vw - 48px);max-height:602px}.label-page__product--filler{margin-bottom:0}}@media(max-width: 500px){.label-page__product{flex:0 0 calc(50vw - 24px);max-width:626px;margin-bottom:16px;overflow:hidden}.label-page__product .product__cover img{height:calc(50vw - 24px);max-height:626px}.label-page__product--filler{margin-bottom:0}}.cart{margin:0 auto;max-width:1300px;padding:32px}@media(max-width: 896px){.cart{padding:32px;padding-left:max( 32px , env(safe-area-inset-left,  32px ));padding-right:max( 32px , env(safe-area-inset-right,  32px ))}}@media(max-width: 500px){.cart{padding:16px}}.cart button,.cart input{border:1px solid #000;background:#fff;margin-right:2px;padding:4px 8px}.cart__main{display:flex}.cart__positions{flex:2 2 auto;margin-right:2em}.cart__until-free{padding-top:12px}.cart__until-free-main{border-bottom:2px solid #32cd32;white-space:nowrap}.cart__sidebar{flex:0 0 23rem}.cart__membership-cta{margin-top:1.5em;padding-bottom:1.5em;border-bottom:1px solid #999}.cart__membership-cta-content{padding:1em 1em 0;font-weight:bold;border:2px solid #32cd32;line-height:1.2}.cart__membership-cta-content h2{margin:0}.cart__membership-cta-cols{display:flex;font-size:13px;padding-top:1.5em}.cart__membership-cta-cols-col{display:flex;flex-direction:row}.cart__membership-cta-cols-icon{width:16px;height:16px;margin:2px 6px 0 0}.cart__membership-cta-more{font-size:small;text-decoration:underline}.cart__membership-cta-detail{padding-top:1em;font-size:small}.cart__membership-cta-claimer{font-size:13px;font-weight:300;margin:8px 0;text-align:center}.cart__membership-cta-claimer strong{font-weight:700}.cart__membership-cta-action{margin:24px 0 8px 0;display:flex;justify-content:flex-end}.cart__membership-cta-action a{display:block;text-decoration:none;padding:5px 8px;color:#fff;background:#000;width:100%;text-align:center}.cart__total{padding-bottom:24px;border-bottom:1px solid #999;margin-top:24px}.cart__total-component{margin:4px 0;overflow:hidden}.cart__total-component strong{float:right}.cart__auth .auth{padding:0}.cart__auth .auth__text{margin:20px 0}.cart__auth .auth__social{flex-flow:row !important}.cart__auth .auth__social-button span{display:none}.cart__auth .auth__forms{flex-flow:column}.cart__item{position:relative;display:flex;justify-content:stretch;flex-wrap:nowrap;border-bottom:1px solid #999;padding-bottom:8px;margin-bottom:8px}.cart__item-image{width:120px;margin:10px 10px 10px 0;flex:0 0 120px}.cart__item-image img{max-width:120px}.cart__item-details{display:flex;justify-content:stretch;flex:1 1 auto;padding:5px 0}.cart__item-info{flex:1 1 auto;display:flex;flex-direction:column;justify-content:center;align-self:flex-start}.cart__item-note{font-size:13px;font-style:italic}.cart__item-controls{flex:0 0 auto;width:max-content;margin-bottom:22px}.cart__item-numbers{flex:1 0 auto;display:flex;align-items:center;flex-wrap:nowrap}.cart__item-numbers--discount{color:#070;font-size:90%}.cart__item-numbers--final{justify-content:flex-end}.cart__item-price{flex:0 0 auto;line-height:1.05em;margin:2px 0;text-align:right;min-width:80px;margin-right:.4em}.cart__item-quantity{flex:0 0 auto;display:flex;align-items:center;border:1px solid gray}.cart__item-quantity input{width:30px;text-align:center;border:none;font-size:initial}.cart__item-quantity button{font-size:initial;border:none}.cart__item-remove{position:absolute;bottom:8px;right:-8px;cursor:pointer;padding:8px}.cart__item-remove svg{width:16px;height:16px;opacity:.5}.cart__item-error{color:maroon;font-weight:bold;margin:8px 0}.cart__item:last-child{border-bottom:none}.cart__note{font-size:smaller;color:#424242;padding-top:1em}.cart__store-aside{border:1px solid #000;width:100%;display:block;text-align:center;text-decoration:none;padding:4px 8px}.cart__store-aside-items{margin:.5em 0 2em}.cart__coupon{margin:1em 0 0}.cart__coupon-fields{margin-bottom:1em;display:flex}.cart__coupon-fields input{width:max-content;flex:2 2 auto}.cart__coupon-fields button{flex:auto;font-size:inherit;line-height:inherit}.cart__actions{padding:24px 0;display:flex;justify-content:flex-end}.cart__actions a{display:block;text-decoration:none;padding:5px 8px;color:#fff;background:#000;width:100%;text-align:center}@media(max-width: 896px){.cart__main{flex-direction:column}.cart__positions{margin-right:0}.cart__item{margin-bottom:1em}.cart__item-details{flex-direction:column}.cart__item-controls{margin-left:auto}.cart__item-remove{bottom:auto;top:-8px}.cart__item-info strong{display:block;padding-right:12px}.cart__sidebar{border-top:1px solid #999}}@media(max-width: 350px){.cart__item-image{width:80px;flex:0 0 80px}.cart__item-image img{max-width:80px}}.checkout{margin:0 auto;max-width:1300px;padding:32px;display:flex;flex-direction:row}@media(max-width: 896px){.checkout{padding:32px;padding-left:max( 32px , env(safe-area-inset-left,  32px ));padding-right:max( 32px , env(safe-area-inset-right,  32px ))}}@media(max-width: 500px){.checkout{padding:16px}}.checkout__wrapper{flex:1 1 75%;padding-right:32px;max-width:calc(100% - 250px)}.checkout__address-form{width:100%;margin-bottom:2em}.checkout__address-form-wrapper{display:grid;grid-template-columns:[left] 50% [center] 50% [right];grid-template-rows:repeat(5, auto [row-start]);border-top:1px solid #000;border-left:1px solid #000}.checkout__address-form-field{border-right:1px solid #000;border-bottom:1px solid #000;display:flex;flex-direction:column;padding:.4em;position:relative}.checkout__address-form-field-note{display:flex;justify-content:flex-end;margin-left:8px;flex:0 1 auto !important;visibility:hidden}.checkout__address-form-field-note svg{width:15px;margin:0 6px 6px 0;color:#fa0}.checkout__address-form-field-note-text{display:flex;flex:0 1 auto;flex-wrap:wrap;line-height:1em;justify-content:flex-start}.checkout__address-form-field-note span{white-space:pre-wrap}.checkout__address-form-field label{display:flex;font-size:smaller;color:#333;justify-content:space-between}.checkout__address-form-field label>*{flex:0 0 auto}.checkout__address-form-field input,.checkout__address-form-field textarea,.checkout__address-form-field select{border:none;font-size:larger;outline:none;background:rgba(0,0,0,0)}.checkout__address-form-field:focus-within .checkout__address-form-field-note{visibility:visible}.checkout__address-form-field--error input,.checkout__address-form-field--error textarea,.checkout__address-form-field--error select{border-bottom:2px solid #ff2600}.checkout__address-form-field--error label{color:#ff2600}.checkout__address-form-field--address,.checkout__address-form-field--phone{grid-column:1/3}.checkout__address-form--shipping .checkout__address-form-field--company_name{grid-column:1/3}.checkout__address-form-buttons{grid-column:2/3;padding-bottom:4em}.checkout__address-form-buttons button{background:#000;color:#fff;padding:.6em 1.5em;margin:.3em 0;float:right;font-size:inherit}.checkout__address-form-result{padding:.4em}.checkout__address-form-result--pending{color:gray}.checkout__address-form-result--success{color:#2e8b57}.checkout__address-form-result--error{color:#ff2600}.checkout__addresses{border:1px solid #000;padding:.5em;width:100%;background:#fff;display:flex;flex-direction:column;margin-bottom:1em}.checkout__addresses-item{display:flex;justify-content:stretch;align-items:center;border-bottom:1px solid #000;margin:.5em;padding-bottom:.5em}.checkout__addresses-item input{margin-right:8px;cursor:pointer}.checkout__addresses-item label{flex:1 1 auto;cursor:pointer}.checkout__addresses-item-delete svg{width:16px;height:16px;opacity:.5;cursor:pointer}.checkout__addresses-item-delete svg:hover{opacity:1;fill:maroon}.checkout__addresses-item:last-child{border-bottom:none;padding-bottom:0}.checkout__billing-same{display:flex;justify-content:stretch;align-items:center;margin:.5em;padding-bottom:.5em}.checkout__billing-same input{margin-right:8px;cursor:pointer}.checkout__billing-same label{flex:1 1 auto;cursor:pointer}.checkout__options{border:1px solid #000;padding:.5em}.checkout__options-item{margin:.5em;padding-bottom:.5em}.checkout__options-item label span{float:right;font-size:110%}.checkout__options-item span{display:block;font-size:80%}.checkout__options-item-disabled{color:gray}.checkout__options-until-free{margin:.5em}.checkout__options-until-free-main{border-bottom:2px solid #32cd32;white-space:nowrap}.checkout__no-shipping-yet{border:1px solid #000;padding:.5em;font-weight:bold}.checkout__store-aside-info{border:1px solid #000;padding:.5em}.checkout-store-aside-confirm{display:flex;align-items:center}.checkout-store-aside-confirm input{margin-right:8px}.checkout__payment{border:1px solid #000;padding:.5em}.checkout__payment-item{border-bottom:1px solid #000;margin:.5em;padding-bottom:.5em;display:flex;align-items:center}.checkout__payment-item input{margin-right:.5em}.checkout__payment-item:last-child{border-bottom:none;padding-bottom:0}.checkout__payment-paypal{height:30px}.checkout__payment-new-card-title{display:flex;align-items:center}.checkout__payment-new-card-title img{height:40px}@media(max-width: 500px){.checkout__payment-new-card-title img{height:20px}}.checkout__payment-new-card-form{display:none}.checkout__payment-new-card-form--visible{display:block}.checkout__payment-new-card-number{margin:8px 0}.checkout__payment-new-card-error{color:#ff2600}.checkout__payment-new-card-save{display:flex;align-items:center}.checkout__payment-new-card-save input{margin-right:8px}.checkout__payment-saved-card{display:flex;align-items:center}.checkout__payment-saved-card img{height:40px;margin-right:8px}.checkout__comment{border:1px solid #000;padding:.5em;width:100%;min-height:100px}.checkout__summary{margin:20px 0;font-size:26px;text-align:center}.checkout__submit{width:100%;text-align:center;display:none}.checkout__submit button{padding:.5em 2em;background:#000;color:#fff;font-size:130%;cursor:pointer}.checkout__submit--visible{display:block}.checkout__submit--inactive{opacity:.5;pointer-events:none}.checkout__paypal{width:400px;margin:0 auto;display:none}.checkout__paypal--visible{display:block}.checkout__paypal--inactive{opacity:.5;pointer-events:none}@media(max-width: 500px){.checkout__paypal{width:250px}}.checkout__sidecart{flex:1 1 25%;min-width:250px}.checkout__sidecart-edit{display:block;text-align:right;margin-bottom:2em}.checkout__sidecart-item{display:block;text-align:right;padding-bottom:2em;text-decoration:none;overflow:hidden}.checkout__sidecart-item-image{width:70px;height:70px;margin:0 1em 0 0;float:left}.checkout__sidecart-item-image img{width:70px}.checkout__sidecart-item-details{font-size:80%}.checkout__sidecart-item-details strong{text-decoration:none !important}.checkout__sidecart-item-price{font-size:80%;text-decoration:none !important}.checkout__sidecart-until-free{margin:16px 0;font-size:92%}.checkout__sidecart-until-free-main{border-bottom:2px solid #32cd32;white-space:nowrap}.checkout__sidecart-info{overflow:hidden}.checkout__sidecart-info strong{float:right}.checkout__sidecart-total{font-size:120%}.checkout__sidecart-total strong{float:right}.checkout__error{margin:16px 0;text-align:center;color:#ff2600}@media(max-width: 896px){.checkout{flex-direction:column}.checkout__wrapper{padding:0;font-size:90%;max-width:100%}.checkout__address-form-field{grid-column:1/3}}.shipping-editor__part{margin:16px 0}.shipping-editor__row{display:flex;margin:8px 0}.shipping-editor__row-label{width:150px;margin-right:10px}.shipping-editor__row-required{color:red}.shipping-editor__row input,.shipping-editor__row select{width:200px;padding:4px}.shipping-editor__actions button[type=button]{opacity:.6}.order-confirm{margin:0 auto;max-width:1300px;padding:32px}@media(max-width: 896px){.order-confirm{padding:32px;padding-left:max( 32px , env(safe-area-inset-left,  32px ));padding-right:max( 32px , env(safe-area-inset-right,  32px ))}}@media(max-width: 500px){.order-confirm{padding:16px}}.order-confirm__options{display:flex;flex-wrap:wrap;justify-content:flex-start}.order-confirm__options-column{flex:1 1 400px}.order-confirm__options-column p{margin:4px 0}.order-confirm__cart{margin:24px 0}.order-confirm__cart-item{display:flex;justify-content:stretch;flex-wrap:wrap}.order-confirm__cart-item-image{width:120px;margin:10px 10px 10px 0;flex:0 0 120px}.order-confirm__cart-item-image img{max-width:120px}.order-confirm__cart-item-details{display:flex;justify-content:stretch;flex:1 1 auto;flex-wrap:wrap}.order-confirm__cart-item-info{display:flex;flex:1 1 auto;flex-direction:column;justify-content:center;margin:10px}.order-confirm__cart-item-controls{flex:0 1 360px;display:flex;align-items:center}.order-confirm__cart-item-price{margin:10px;flex:0 0 80px;display:flex;align-items:center}.order-confirm__cart-item-quantity{margin:10px;flex:0 0 80px;display:flex;align-items:center}.order-confirm__cart-item-quantity input{width:30px}.order-confirm__bottom{display:flex;flex-wrap:wrap;justify-content:space-between}.order-confirm__comment{flex:0 1 400px;display:flex;flex-direction:column;align-items:stretch}.order-confirm__comment h3{margin:0}.order-confirm__comment textarea{height:100px;resize:both}.order-confirm__summary{text-align:right}.order-confirm__actions{margin-top:32px;display:flex;justify-content:space-between}.order-confirm__actions a,.order-confirm__actions button{display:block;border:1px solid #000;background:rgba(0,0,0,0);text-decoration:none;padding:4px 8px;font:inherit}.order-confirm__actions .order-confirm__confirm{font-weight:bold}.order-confirm__paypal{max-width:300px;margin:32px auto}@media(max-width: 500px){.order-confirm__cart-item-info,.order-confirm__cart-item-price,.order-confirm__cart-item-quantity{margin:0 0 0 8px}}.order{margin:0 auto;max-width:1300px;padding:32px;display:grid;grid-template-columns:1fr 1fr;gap:10px}@media(max-width: 896px){.order{padding:32px;padding-left:max( 32px , env(safe-area-inset-left,  32px ));padding-right:max( 32px , env(safe-area-inset-right,  32px ))}}@media(max-width: 500px){.order{padding:16px}}.order__heading,.order__items,.order__bottom{grid-column:1/span 2}.order table{border-collapse:separate;border-spacing:8px;margin:0 -10px}.order td{padding:0}.order__history-message{white-space:pre-wrap}.order__history-send{display:flex;flex-wrap:wrap;align-items:center}.order__history-send textarea{width:300px;height:100px;resize:both}.order__history-send button{margin:8px}.order__address--billing{grid-column:1}.order__address--shipping{grid-column:2}.order__address p{margin:4px 0}.order__address-bank{margin-top:16px}.order__items{margin:10px 0}.order__items-row{display:flex;justify-content:stretch}.order__items-row-image{width:120px;margin:10px 10px 10px 0;flex:0 0 120px}.order__items-row-image img{max-width:120px}.order__items-row-details{display:flex;justify-content:stretch;flex:1 1 auto}.order__items-row-info{display:flex;flex:1 1 auto;flex-direction:column;justify-content:center;margin:10px}.order__items-row-status{flex:0 0 100px;display:flex;align-items:center;padding:10px}.order__items-row-controls{flex:0 0 360px;display:flex;align-items:center}.order__items-row-price{margin:10px;flex:0 0 80px;display:flex;align-items:center}.order__items-row-quantity{margin:10px;flex:0 0 80px;display:flex;align-items:center}.order__items-row-quantity input{width:30px}@media(max-width: 800px){.order__items-row-details{flex-direction:column}.order__items-row-controls,.order__items-row-status{flex:0 0 auto}}@media(max-width: 800px){.order__items-row{flex-direction:column}}.order__bottom{display:flex;flex-wrap:wrap;justify-content:space-between}.order__comment{flex:0 1 400px}.order__comment h3{margin:0}.order__comment-text{white-space:pre-wrap}.order__summary{text-align:right}@media(max-width: 500px){.order{grid-template-columns:1fr}.order>*{grid-column:1 !important}}.profile-editor{margin:0 auto;max-width:1300px;padding:32px}@media(max-width: 896px){.profile-editor{padding:32px;padding-left:max( 32px , env(safe-area-inset-left,  32px ));padding-right:max( 32px , env(safe-area-inset-right,  32px ))}}@media(max-width: 500px){.profile-editor{padding:16px}}.profile-editor__header{display:flex;align-items:center;justify-content:space-between}.profile-editor__columns{display:flex;flex-wrap:wrap}.profile-editor__column{flex:1 0 300px;margin:8px}.profile-editor__block{margin-bottom:16px}.profile-editor__row{display:flex;margin:8px 0}.profile-editor__row-label{width:150px}.profile-editor__row-label--required::after{content:" *";color:red}.profile-editor__row input,.profile-editor__row select{width:200px;padding:4px}.profile-editor__save{border:1px solid #000;font-size:18px;color:#000;background:rgba(0,0,0,0);padding:8px 16px}.profile-editor__save--disabled{color:gray;border-color:gray}.order-history{margin:0 auto;max-width:1300px;padding:32px}@media(max-width: 896px){.order-history{padding:32px;padding-left:max( 32px , env(safe-area-inset-left,  32px ));padding-right:max( 32px , env(safe-area-inset-right,  32px ))}}@media(max-width: 500px){.order-history{padding:16px}}.order-history__header{display:flex;align-items:center;justify-content:space-between}.order-history__orders td{padding:8px}.order-history__orders tbody tr:nth-child(2n+1){background:#f8f8f8}.wishlist{margin:0 auto;max-width:1300px;padding:32px}@media(max-width: 896px){.wishlist{padding:32px;padding-left:max( 32px , env(safe-area-inset-left,  32px ));padding-right:max( 32px , env(safe-area-inset-right,  32px ))}}@media(max-width: 500px){.wishlist{padding:16px}}.wishlist__list{display:flex;flex-wrap:wrap;justify-content:space-between}.wishlist__product{position:relative;flex:0 0 calc(25vw - 32px);max-width:293px;margin-bottom:32px;overflow:hidden}.wishlist__product .product__cover img{height:calc(25vw - 32px);max-height:293px}.wishlist__product--filler{margin-bottom:0}@media(min-width: 501px)and (max-width: 800px){.wishlist__product{flex:0 0 calc(50vw - 48px);max-width:602px;margin-bottom:32px;overflow:hidden}.wishlist__product .product__cover img{height:calc(50vw - 48px);max-height:602px}.wishlist__product--filler{margin-bottom:0}}@media(max-width: 500px){.wishlist__product{flex:0 0 calc(50vw - 24px);max-width:626px;margin-bottom:16px;overflow:hidden}.wishlist__product .product__cover img{height:calc(50vw - 24px);max-height:626px}.wishlist__product--filler{margin-bottom:0}}.wishlist__product .add-to-wishlist{position:absolute;bottom:8px;right:8px}.wishlist__product .add-to-wishlist svg{width:20px;height:20px}.wishlist__product .product__info{padding-right:34px}.membership{margin:0 auto;max-width:1300px;padding:32px;padding:16px}@media(max-width: 896px){.membership{padding:32px;padding-left:max( 32px , env(safe-area-inset-left,  32px ));padding-right:max( 32px , env(safe-area-inset-right,  32px ))}}@media(max-width: 500px){.membership{padding:16px}}.membership__header{padding:0 16px}.membership__buy{font-size:24px;padding:8px 10px;border:1px solid #000;border-radius:4px;margin:16px 0;background:#fff}.content-page{margin:0 auto;max-width:1300px;padding:32px}@media(max-width: 896px){.content-page{padding:32px;padding-left:max( 32px , env(safe-area-inset-left,  32px ));padding-right:max( 32px , env(safe-area-inset-right,  32px ))}}@media(max-width: 500px){.content-page{padding:16px}}.content-page__basic{margin:0 auto;max-width:1300px;padding:32px}@media(max-width: 896px){.content-page__basic{padding:32px;padding-left:max( 32px , env(safe-area-inset-left,  32px ));padding-right:max( 32px , env(safe-area-inset-right,  32px ))}}@media(max-width: 500px){.content-page__basic{padding:16px}}.content-page__with-header{position:relative;max-width:100%}.content-page__with-header__head-background{position:absolute;z-index:-1;top:0;left:0;right:0;height:600px;background-size:cover;background-repeat:no-repeat}.content-page__with-header__head-image{display:flex;justify-content:center;align-items:flex-end;height:500px}.content-page__with-header__head-image img{display:block;margin:0;max-width:100%;max-height:500px}.content-page__with-header__body{max-width:1300px;margin:0 auto;background:#fff;padding:16px;font-family:"Tiempos Text",serif;border-top:2px solid #000;font-size:18px}.supplier-index{margin:0 auto;max-width:1300px;padding:32px}@media(max-width: 896px){.supplier-index{padding:32px;padding-left:max( 32px , env(safe-area-inset-left,  32px ));padding-right:max( 32px , env(safe-area-inset-right,  32px ))}}@media(max-width: 500px){.supplier-index{padding:16px}}.supplier-stats{margin:0 auto;max-width:1300px;padding:32px;overflow:auto}@media(max-width: 896px){.supplier-stats{padding:32px;padding-left:max( 32px , env(safe-area-inset-left,  32px ));padding-right:max( 32px , env(safe-area-inset-right,  32px ))}}@media(max-width: 500px){.supplier-stats{padding:16px}}.supplier-stats h2{font-family:Karla,sans-serif}.supplier-stats__table{border-collapse:collapse;width:100%;min-width:1200px}.supplier-stats__table td{border-bottom:1px solid #999;border-top:1px solid #999;padding:5px}.supplier-stats__table th{text-align:left}.supplier-stats__table a{text-decoration:none}.supplier-stats__table a:hover{text-decoration:underline}.supplier-stats__table tfoot th{padding:5px 0}.supplier-stats__table-image{width:100px}.supplier-stats__table-image img,.supplier-stats__table-image svg{max-width:100px;max-height:100px}.supplier-stats__table-artist{font-weight:bold;width:150px}.supplier-stats__table-label{width:150px}.supplier-stats__table-catnum{width:120px}.supplier-stats__table-format,.supplier-stats__table-number{width:80px}.supplier-stats__table-number,.supplier-stats__table-number-th{text-align:right !important}.supplier-stats__table-price{text-align:right !important;width:100px}.supplier-stats__table-total{text-align:right !important}.supplier-stats__table-sold{color:green;font-weight:bold;width:60px;text-align:right !important}.editorial{margin:0}.editorial__head{position:relative;background-size:cover;background-repeat:no-repeat}.editorial__head-image{position:absolute;z-index:1;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:flex-end}.editorial__head-image img{display:block;margin:0;max-width:100%;max-height:500px;pointer-events:none}.editorial__head-content{position:relative;z-index:2;max-width:1300px;margin:0 auto;min-height:500px;display:flex;flex-direction:column;color:#fff;padding:64px 32px}.editorial__head-content a{color:#fff;text-decoration:none}.editorial__head-content h1{font-family:"Public Sans",sans-serif;text-rendering:optimizeLegibility}.editorial__head-content h1 a{padding:4px}.editorial__head--shadow .editorial__head-content{text-shadow:0 0 2px #000}.editorial__head--h-left .editorial__head-content{text-align:left}.editorial__head--h-center .editorial__head-content{text-align:center}.editorial__head--h-right .editorial__head-content{text-align:right}.editorial__head--v-top .editorial__head-content{justify-content:flex-start}.editorial__head--v-center .editorial__head-content{justify-content:center}.editorial__head--v-bottom .editorial__head-content{justify-content:flex-end}.editorial__head-by{font-family:"Karla",sans-serif;font-size:14px}.editorial__head-by a{padding:4px}.editorial__head-by a:first-child{margin-right:16px}@media(max-width: 500px){.editorial__head-image img{max-height:300px}.editorial__head-content{min-height:300px}.editorial__head-content h1{font-size:18px;font-weight:400;line-height:27px}.editorial__head-by{display:flex;flex-direction:column;align-items:center;justify-content:center;font-size:14px}.editorial__head-by a:first-child{margin:0}}.article{margin:0 auto;position:relative}.article__head-background{position:absolute;z-index:-1;top:0;left:0;right:0;height:600px;background-size:cover;background-repeat:no-repeat}.article__head-image{display:flex;justify-content:center;align-items:flex-end;height:500px}.article__head-image img{display:block;margin:0;max-width:100%;max-height:500px}.article__body{margin:0 auto;background:#fff;padding:16px 0;font-family:"Tiempos Text",serif;border-top:2px solid #000;font-size:18px}.article__header{margin:0 auto 32px;max-width:1300px;padding:0 16px}.article__header h1{margin:0;font-family:"Public Sans",sans-serif;font-size:38px}.article__abstract{font-size:24px;font-family:Karla,sans-serif;margin:16px 0}.article__published{text-align:right;margin:8px 0;font-family:"Public Sans",sans-serif}.article__extra{max-width:1300px;margin:0 auto;background:#fff;padding:16px;border-top:1px solid #ccc}.article__extra h2{text-align:center;font-weight:normal}.article__extra-products--mentioned{display:flex;flex-wrap:wrap;justify-content:space-between;justify-content:center}.article__extra-products--mentioned-product{flex:0 0 calc(25vw - 32px);max-width:293px;margin-bottom:32px;overflow:hidden}.article__extra-products--mentioned-product .product__cover img{height:calc(25vw - 32px);max-height:293px}.article__extra-products--mentioned-product--filler{margin-bottom:0}@media(min-width: 501px)and (max-width: 800px){.article__extra-products--mentioned-product{flex:0 0 calc(50vw - 48px);max-width:602px;margin-bottom:32px;overflow:hidden}.article__extra-products--mentioned-product .product__cover img{height:calc(50vw - 48px);max-height:602px}.article__extra-products--mentioned-product--filler{margin-bottom:0}}@media(max-width: 500px){.article__extra-products--mentioned-product{flex:0 0 calc(100vw - 40px);max-width:1260px;margin-bottom:16px;overflow:hidden}.article__extra-products--mentioned-product .product__cover img{height:calc(100vw - 40px);max-height:1260px}.article__extra-products--mentioned-product--filler{margin-bottom:0}}.article__extra-products--featured{display:flex;flex-wrap:wrap;justify-content:space-between}.article__extra-products--featured-product{flex:0 0 calc(16.6666666667vw - 27px);max-width:190px;margin-bottom:32px;overflow:hidden}.article__extra-products--featured-product .product__cover img{height:calc(16.6666666667vw - 27px);max-height:190px}.article__extra-products--featured-product--filler{margin-bottom:0}@media(min-width: 501px)and (max-width: 800px){.article__extra-products--featured-product{flex:0 0 calc(25vw - 32px);max-width:293px;margin-bottom:32px;overflow:hidden}.article__extra-products--featured-product .product__cover img{height:calc(25vw - 32px);max-height:293px}.article__extra-products--featured-product--filler{margin-bottom:0}}@media(max-width: 500px){.article__extra-products--featured-product{flex:0 0 calc(50vw - 24px);max-width:626px;margin-bottom:16px;overflow:hidden}.article__extra-products--featured-product .product__cover img{height:calc(50vw - 24px);max-height:626px}.article__extra-products--featured-product--filler{margin-bottom:0}}.article img{max-width:100%}@media(max-width: 500px){.article__product{padding:0}.article__head-image{height:auto}.article__header h1{font-size:24px}.article__abstract{font-size:18px}.article__body{padding:0}}@media(min-width: 1300px){.article__header{padding:0 max(( 100% - 1300px + 32px )/2,0)}}

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