@charset "UTF-8";
* {
  box-sizing: border-box;
}
html {
  font-size: 18px;
}
body {
  margin: 0;
  font-family: "jost";
  font-size: 1em;
  line-height: 1.6em;
  color: #131313;
}
@media screen and (max-width: 800px) {
  body {
    font-size: 0.85em;
  }
}
body, html {
  height: 100%;
}
.site-wrapper {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100%;
}
.content {
  width: 100%;
  overflow-x: hidden;
}
a {
  text-decoration: none;
}
hr {
  border-top: 5px solid #d9ecef;
  margin-top: 3em;
  margin-bottom: 3em;
  width: 100%;
  max-width: 1600px;
}
h1, h2, h3, h4, h5, h6 {
  color: #3c98ad;
  font-weight: 600;
  line-height: 1.1em;
}
h1, h2 {
  text-transform: uppercase;
}
h1 {
  font-size: 3em;
}
h2 {
  font-size: 2.25em;
}
h3 {
  font-size: 2em;
}
h4 {
  font-size: 1.5em;
}
h5 {
  font-size: 1.25em;
}
h6 {
  font-size: 1.1em;
}
.page-content a {
  color: #3c98ad;
}
b, strong {
  font-weight: 600;
}
.more {
  margin: 0 auto;
  display: table;
  font-size: 1.2em;
  border-bottom: 2px solid #3c98ad;
  font-weight: 600;
  color: #3c98ad;
}
/*--- FOOTER ---*/
#footer {
  padding-top: 0em;
  padding-bottom: 5em;
  background: url(../../assets/img/footer-bg.webp) #131313;
  background-size: cover;
  width: 100%;
  color: #d9ecef;
}
#footer h3 {
  font-size: 1.25em;
  text-transform: uppercase;
}
#footer a {
  color: #d9ecef;
}
#footer a:hover {
  color: #ebede6;
}
#footer .footer-grid {
  width: 80%;
  max-width: 1600px;
  margin: 2em auto 0;
  display: grid;
  text-align: center;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2em;
}
@media screen and (max-width: 800px) {
  #footer .footer-grid {
    grid-template-columns: repeat(1, 1fr);
    text-align: center;
  }
}
#footer hr {
  opacity: 0.1;
  width: 80%;
}
#footer .footer-credits {
  text-align: center;
}
#footer .footer-col i {
  margin-right: 0.5em;
}
/*--- MENU ---*/
#header {
  background: url(../../assets/img/header-bg.webp) #3c98ad;
  background-size: cover;
  padding: 0.5em;
  padding-top: 0.75em;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999 !important;
}
.header-inner {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}
.header-logo {
  max-width: 100px;
  height: auto;
}
.header-logo img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1024.1px) {
  .menu-mobile, .menu-mob-trig, #menu-icon {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .menu-desk {
    display: none !important;
  }
}
.links-menu-mobile, .links-menu-desk {
  text-transform: uppercase;
  font-family: "jost";
  font-weight: 700;
  font-size: 1em;
}
.menu-desk {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.menu-desk input, .menu-desk .sub-menu-arrow {
  display: none;
}
.menu-desk .links-menu-desk {
  padding-top: 0px;
}
.menu-desk .links-menu-desk a {
  color: #fff;
}
.menu-desk .links-menu-desk a:hover, .menu-desk .links-menu-desk li:hover {
  color: #d9ecef;
}
.menu-desk .links-menu-desk ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-desk .links-menu-desk ul.nav-drop {
  left: 0;
  opacity: 0;
  position: absolute;
  overflow: hidden;
  white-space: nowrap;
  top: 100%;
  padding-top: 0.2em;
  background: url(../../assets/img/header-bg.webp) #3c98ad;
  background-size: cover;
  text-align: left;
}
.menu-desk .links-menu-desk ul.nav-drop > li {
  display: block;
  padding-top: 0.2em;
  padding-bottom: 0.2em;
}
.menu-desk .links-menu-desk ul.nav-drop:not(.menu-level-1):not(.menu-level-0) {
  left: 100%;
  top: 0;
}
.menu-desk .links-menu-desk ul li {
  display: inline-block;
  position: relative;
  padding-left: 0.5em;
  padding-right: 0.5em;
  color: #fff;
}
.menu-desk .links-menu-desk ul li:hover {
  transition: background-color 0.6s linear;
}
.menu-desk .links-menu-desk ul li:hover > ul.nav-drop {
  transition: opacity 0.6s linear;
  opacity: 1 !important;
  overflow: visible;
}
.menu-desk .links-menu-desk ul li:not(:hover) {
  transition: background-color 0.6s linear;
  /* transition-delay: -0.3s; */
}
.menu-desk .links-menu-desk ul li:not(:hover) > ul.nav-drop {
  transition: opacity 0.6s linear;
  /* transition-delay: -0.3s; */
  pointer-events: none;
}
.menu-mobile {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1000;
  /* background: url(../img/circle-4.png) no-repeat;
    background-position: 70%;
    background-size: 100vh;
    background-color: #000; */
  background: #3c98ad;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  translate: 0% -100%;
  opacity: 0;
}
.menu-mobile .mm-wrap {
  width: 90%;
}
.menu-mobile .links-menu-mobile label {
  position: relative;
}
.menu-mobile .links-menu-mobile label span.sub-menu-arrow {
  position: absolute;
  right: 0em;
  text-align: right;
}
.menu-mobile .links-menu-mobile .hidden-checkbox {
  display: none;
}
.menu-mobile .links-menu-mobile ul {
  list-style: none;
  padding: 0;
}
.menu-mobile .links-menu-mobile ul li {
  margin: 1.5em 0;
}
.menu-mobile .links-menu-mobile ul li a, .menu-mobile .links-menu-mobile ul li label {
  text-align: center;
  display: block;
  text-transform: uppercase;
  font-family: "jost";
  color: #fff;
  font-weight: 700;
  text-align: left;
  font-size: 1.6em;
}
.menu-mobile .links-menu-mobile label:hover, .menu-mobile .links-menu-mobile a:hover, .menu-mobile .links-menu-mobile li:hover {
  color: #d9ecef !important;
}
.menu-mobile .links-menu-mobile ul.nav-drop {
  display: grid;
  font-size: 0.8em;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s ease-out;
  transition: grid-template-rows 0.5s ease-out, -ms-grid-rows 0.5s ease-out;
  padding-left: 2em;
}
.menu-mobile .links-menu-mobile ul.nav-drop > div {
  overflow: hidden;
}
.menu-mobile .links-menu-mobile .submenu-trig:not(:checked) + label > span.sub-menu-arrow:after {
  font-family: "Font Awesome 6 Pro";
  font-size: 0.6em;
  content: "";
}
.menu-mobile .links-menu-mobile .submenu-trig:checked + label > span.sub-menu-arrow:after {
  font-family: "Font Awesome 6 Pro";
  font-size: 0.6em;
  content: "";
}
.menu-mobile .links-menu-mobile .submenu-trig:checked + label + ul {
  grid-template-rows: 1fr;
}
#menu-mob-trig {
  display: none;
}
#menu-icon {
  position: relative;
  z-index: 1010;
  margin-top: 40px;
}
#menu-icon .hamburger-menu {
  width: 30px;
  height: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
#menu-icon .hamburger-menu .line {
  width: 100%;
  height: 3px;
  background-color: #fff;
  /* You can adjust the color */
}
#menu-icon .close-menu {
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
}
#menu-icon .close-menu .line {
  width: 100%;
  height: 3px;
  background-color: #fff;
  /* You can adjust the color */
  transform-origin: center;
  position: absolute;
  top: 50%;
  translate: 0% -50%;
}
#menu-icon .close-menu .line:first-child {
  transform: rotate(45deg);
}
#menu-icon .close-menu .line:last-child {
  transform: rotate(-45deg);
}
#menu-mob-trig:not(:checked) + #menu-icon .close-menu {
  display: none;
}
#menu-mob-trig:checked + #menu-icon .hamburger-menu {
  display: none;
}
#menu-mob-trig:checked + #menu-icon + .menu-mobile {
  translate: 0% 0%;
  opacity: 1;
}
/*--- TOUR ---*/
.artist-filter {
  padding-top: 2em;
  padding-bottom: 2em;
  width: 90%;
  max-width: 800px;
  margin: 0 auto 1em;
  display: flex;
  flex-direction: column;
  grid-gap: 0.5rem;
  justify-content: space-between;
}
@media screen and (min-width: 800px) {
  .artist-filter {
    flex-direction: row;
  }
}
.artist-filter > * {
  width: 100%;
}
@media screen and (min-width: 800px) {
  .artist-filter > * {
    flex: 33.33% 0 1;
  }
}
.artist-filter select, .artist-filter input {
  height: 50px;
  padding: 0.5em;
  border: 1px solid #000;
}
.artist-shows-details {
  margin-bottom: 3em;
  padding-bottom: 2em;
  /*border-bottom: 1px solid #000;*/
}
.artist-shows-details:last-child {
  margin-bottom: 0;
  padding-bottom: 1em;
}
.artist-shows-details h2 {
  text-transform: uppercase;
  text-align: center;
}
#all-shows {
  padding: 0.5em;
  text-transform: uppercase;
  color: #fff;
  background: #3c98ad;
  border: 1px solid #3c98ad;
  font-weight: 700;
}
#all-shows:hover {
  background: #d9ecef;
  color: #3c98ad;
  border: 1px solid #d9ecef;
  cursor: pointer;
}
#shows-info {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}
#shows-info .shows {
  list-style: none;
  padding-inline-start: 0;
  font-size: 1em;
}
#shows-info .shows .show {
  display: flex;
  border-top: 1px dashed #ccc;
  flex-direction: row;
  justify-content: space-between;
  text-transform: uppercase;
  padding-top: 2em;
  margin-top: 1em;
  margin-bottom: 1em;
  padding-bottom: 1em;
}
#shows-info .shows .show:last-child {
  border-bottom: 1px dashed #ccc;
}
#shows-info .shows .show .show-meta .venue-time {
  font-size: 1.25em;
  font-weight: 700;
}
#shows-info .shows .show .show-meta .venue-name {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
#shows-info .shows .show .show-meta .venue-location {
  font-weight: 700;
}
#shows-info .shows .show .show-tickets {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  grid-gap: 0.3em;
}
#shows-info .shows .show .show-tickets .ticket-link {
  color: #fff;
  background: #3c98ad;
  padding: 0.5em;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
}
#shows-info .shows .show .show-tickets .ticket-link:hover {
  background: #d9ecef;
  color: #3c98ad;
}
/*--- INDIVIDUAL ARTIST STYLES ---*/
@media screen and (min-width: 0px) and (max-width: 899px) {
  .collection-grid__grid.max-products-per-row-4 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
.event-header-img {
  width: 80%;
  max-width: 1600px;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .event-header-img {
    width: 90%;
  }
}
.event-header-img img {
  width: 100%;
  height: auto;
}
.artist-content-grid {
  width: 80%;
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 65% 35%;
  align-content: top;
  align-items: top;
}
@media screen and (max-width: 1024px) {
  .artist-content-grid {
    grid-template-columns: repeat(1, 1fr);
    width: 90%;
  }
}
.artist-content-grid #shows-info {
  width: 100%;
  max-width: 1200px;
}
.artist-content-grid .contact-info {
  margin-bottom: 1.5em;
}
.artist-content-grid .artist-content-info {
  padding: 2em;
  padding-top: 1em;
  padding-left: 0;
}
@media screen and (max-width: 1024px) {
  .artist-content-grid .artist-content-info {
    padding-bottom: 0;
  }
}
.artist-content-grid .artist-content-sidebar {
  padding: 2em;
  padding-top: 1em;
}
.artist-content-grid .artist-content-sidebar div {
  margin-bottom: 2em;
}
.artist-content-grid .artist-content-sidebar iframe {
  max-width: 100%;
}
@media screen and (max-width: 1024px) {
  .artist-content-grid .artist-content-sidebar {
    padding: 0;
  }
}
.artist-socials {
  font-size: 1.5em;
  text-align: center;
  padding: 2em;
  padding-left: 1em;
  padding-right: 1em;
  padding-bottom: 1.5em;
  margin-top: 1em;
  border-top: 5px solid #d9ecef;
  border-bottom: 5px solid #d9ecef;
  width: 100%;
}
.artist-socials a {
  color: #3c98ad;
  margin-left: 1em;
  margin-right: 1em;
}
.artist-socials a:hover {
  color: #131313;
}
@media screen and (max-width: 980px) {
  .artist-socials a {
    font-size: 0.95em;
  }
}
@media screen and (max-width: 980px) {
  .artist-socials a {
    margin-left: 0.6em;
    margin-right: 0.6em;
  }
}
.artist-merch {
  background: url(../../assets/img/grey-bg.webp) #f0f0f0;
  background-size: cover;
  padding-top: 5em;
  padding-bottom: 5em;
}
.artist-merch .artist-merch-content {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
}
.artist-merch .artist-merch-content .more {
  margin: 0 auto;
  display: table;
  font-size: 1.2em;
  border-bottom: 2px solid #3c98ad;
  font-weight: 600;
}
.artist-merch .collection-pagination {
  display: none !important;
}
.artist-merch .product-card {
  background: none;
  box-shadow: none;
  border: none !important;
  border-radius: 0;
}
.embla__controls button {
  border: 0;
  background: transparent;
  margin: 0 0.5em;
  color: #3c98ad;
  cursor: pointer;
}
.home-slider .embla__controls__wrap {
  text-align: center;
}
.home-slider .embla__controls {
  display: inline-flex;
  font-size: 1.5em;
}
.home-slider .embla {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: auto;
}
.home-slider .embla .embla__container {
  display: flex;
}
.home-slider .embla .embla__container .embla__slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  background-color: #ddd;
}
.artist-releases {
  background: url(../../assets/img/blue-bg.webp) #d9ecef;
  background-size: cover;
  padding-top: 5em;
  padding-bottom: 5em;
}
.artist-releases .embla {
  position: relative;
  width: 80%;
  max-width: 1600px;
  margin: 0 auto;
}
.artist-releases .embla div.atop {
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .artist-releases .embla div.atop {
    position: absolute;
    left: 50%;
    top: 5%;
    text-align: left;
  }
}
.artist-releases .embla .embla__viewport {
  overflow: hidden;
}
.artist-releases .embla .embla__viewport .embla__container {
  display: grid;
  /* stack slides on top of each other */
  grid-template-areas: "slide";
  /* all slides share same cell */
  position: relative;
  align-items: center;
}
.artist-releases .embla .embla__viewport .embla__container .embla__slide {
  grid-area: slide;
  /* occupy the same grid area */
  z-index: 1;
  transition: none;
}
.artist-releases .embla .embla__viewport .embla__container .embla__slide img {
  width: 100%;
  scale: 0.85;
  rotate: 5deg;
}
.artist-releases .embla .embla__viewport .embla__container .embla__slide:nth-child(2n) img {
  rotate: -5deg;
}
.artist-releases .embla .embla__viewport .embla__container .embla__slide .embla__slide__inner {
  position: relative;
  height: 100%;
  width: 100%;
  background: transparent;
}
.artist-releases .embla .embla__viewport .embla__container .embla__slide .embla__slide__inner > div {
  display: block;
  position: relative;
  width: 100%;
  margin: 0 auto;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .artist-releases .embla .embla__viewport .embla__container .embla__slide .embla__slide__inner > div {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-gap: 2em;
  }
}
.artist-releases .embla .embla__viewport .embla__container .embla__slide .content div {
  opacity: 0;
  transition: opacity 0.5s;
  font-size: inherit;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .artist-releases .embla .embla__viewport .embla__container .embla__slide .content div {
    text-align: left;
  }
}
.artist-releases .embla .embla__viewport .embla__container .embla__slide .content .release-links {
  margin-top: 2em;
}
.artist-releases .embla .embla__viewport .embla__container .embla__slide .content a {
  background: #3c98ad;
  color: #fff;
  font-weight: 700;
  font-size: 0.8em;
  padding: 0.25em;
  padding-left: 0.5em;
  padding-right: 0.5em;
  margin-right: 0.25em;
  margin-top: 0.25em;
  text-transform: uppercase;
  display: inline-block;
}
.artist-releases .embla .embla__viewport .embla__container .embla__slide .content a:hover {
  background: #131313;
  color: #3c98ad;
  cursor: pointer;
}
.artist-releases .embla .embla__viewport .embla__container .embla__slide.is-active {
  z-index: 2;
}
.artist-releases .embla .embla__viewport .embla__container .embla__slide.is-active .content div {
  opacity: 1;
}
.artist-releases .embla__controls__wrap {
  text-align: center;
}
.artist-releases .embla__controls {
  display: inline-flex;
  font-size: 1.5em;
}
.artist-news {
  padding-top: 5em;
  padding-bottom: 5em;
  background: #fefefe;
}
.artist-news .artist-news-content {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
}
.artist-news .embla {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}
.artist-news .embla__viewport {
  overflow: hidden;
}
.artist-news .embla__container {
  display: flex;
}
.artist-news .embla__slide {
  flex: 0 0 70%;
  padding: 1em;
  box-sizing: border-box;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .artist-news .embla__slide {
    flex: 0 0 25%;
  }
}
.artist-news .embla__slide__inner {
  position: relative;
  height: 100%;
  width: 100%;
}
.artist-news .embla__slide__inner img {
  width: 100%;
}
.artist-news .embla__slide__inner h5 {
  margin-top: 0;
  padding-top: 0em;
}
.artist-news .embla__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.artist-news .embla__controls__wrap {
  text-align: center;
}
.artist-news .embla__controls {
  display: inline-flex;
  font-size: 1.5em;
}
/*--- RELEASES ---*/
.filters {
  font-weight: 700;
  text-transform: uppercase;
}
.wpc-filter-release_type ul {
  margin-top: -1em !important;
}
.wpc-filters-checkboxes {
  display: inline-flex;
  flex-direction: row;
  gap: 2em;
  max-width: 1400px;
}
@media screen and (max-width: 1600px) {
  .wpc-filters-checkboxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 0.5em;
    font-size: 0.8em;
  }
}
.wpc-filters-main-wrap li.wpc-term-item {
  border: none;
  padding: 0;
  margin-left: 0;
  text-transform: uppercase;
}
.wpc-filters-main-wrap li.wpc-term-item a {
  font-weight: 700 !important;
}
.sap-wrapper {
  width: 80%;
  margin: 0 auto 3em;
}
@media screen and (max-width: 980px) {
  .sap-wrapper {
    width: 90%;
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
.release-grid {
  display: grid;
  grid-template-columns: repeat(2, calc(50% - 2em));
  grid-gap: 2em;
  justify-content: center;
}
@media screen and (min-width: 1200px) {
  .release-grid {
    grid-template-columns: repeat(3, calc(33.33% - 3em));
    grid-gap: 3em;
  }
}
@media screen and (min-width: 1600px) {
  .release-grid {
    grid-template-columns: repeat(4, calc(25% - 4em));
    grid-gap: 4em;
  }
}
.release-grid .client {
  text-transform: uppercase;
}
@media screen and (max-width: 980px) {
  .release-grid .client {
    line-height: 1.2em;
  }
}
.release-grid .client .title {
  font-weight: 700;
  color: #3c98ad;
  display: grid;
}
.release-grid .client .release-type {
  font-weight: 400;
  font-size: 0.75em;
  margin-bottom: 0.25em;
  color: #3c98ad;
}
.release-grid .client .date {
  color: #131313;
}
.release-grid .client .title {
  padding-bottom: 0.2em;
}
.release-grid .client .artist {
  padding-bottom: 0.1em;
}
.release-grid .client img {
  margin-bottom: 0.25em;
  object-fit: cover;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
.release-grid .client a {
  background: #3c98ad;
  color: #fff;
  font-weight: 700;
  font-size: 0.8em;
  padding: 0.25em;
  padding-left: 0.5em;
  padding-right: 0.5em;
  margin-right: 0.25em;
  margin-top: 0.25em;
  display: inline-block;
}
.release-grid .client a:hover {
  background: #d9ecef;
  color: #3c98ad;
  cursor: pointer;
}
.release-grid .client .release-info {
  line-height: 1.2em;
}
.release-grid .client .release-info .release-meta {
  text-align: center;
}
@media screen and (min-width: 801px) {
  .release-grid .client .release-info .release-meta {
    display: grid;
    grid-gap: 3%;
    grid-template-columns: 60% 37%;
    grid-template-areas: "title type" "artist type" "links type";
    text-align: left;
  }
  .release-grid .client .release-info .release-meta .title {
    grid-area: title;
  }
  .release-grid .client .release-info .release-meta .artist {
    grid-area: artist;
  }
  .release-grid .client .release-info .release-meta .release-type {
    grid-area: type;
    text-align: right;
  }
  .release-grid .client .release-info .release-meta .release-links {
    grid-area: links;
  }
}
@media screen and (min-width: 1401px) {
  .release-grid .client .release-info .release-meta {
    grid-template-columns: 68% 29%;
  }
}
/*--- ARTISTS ---*/
.artists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2em;
}
@media screen and (max-width: 1400px) {
  .artists-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 800px) {
  .artists-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.artists-grid .client {
  font-weight: 700;
  text-transform: uppercase;
}
.artists-grid .client .title, .artists-grid .client a {
  font-weight: 700;
}
.artists-grid .client .title, .artists-grid .client .artist {
  padding-bottom: 0.25em;
}
.artists-grid .client img {
  margin-bottom: 0.25em;
}
.artists-grid .client a {
  background: #000;
  color: #fff;
  padding: 0.25em;
  padding-left: 0.5em;
  padding-right: 0.5em;
  margin-right: 0.25em;
  display: inline-block;
}
/*--- HOME ---*/
.home-releases {
  background: #fefefe;
  padding-top: 2em;
  padding-bottom: 3em;
}
.home-releases .home-releases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
}
.home-merch {
  background: url(../../assets/img/grey-bg.webp) #f0f0f0;
  background-size: cover;
  padding-top: 5em;
  padding-bottom: 5em;
}
.home-merch .home-merch-content {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
}
.home-merch .collection-pagination {
  display: none !important;
}
.home-merch .product-card {
  background: none;
  box-shadow: none;
  border: none !important;
  border-radius: 0;
}
.home-releases {
  background: #fff;
  padding-top: 2em;
  padding-bottom: 3em;
}
.home-releases .home-release-content {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
}
.home-releases .collection-pagination {
  display: none !important;
}
.home-releases .product-card {
  background: none;
  box-shadow: none;
  border: none !important;
  border-radius: 0;
}
.home-videos {
  padding-top: 5em;
  padding-bottom: 5em;
}
.home-videos .home-videos-content {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
}
.home-videos .home-videos-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2em;
  grid-row-gap: 0;
}
.home-videos .home-videos-grid div.arve {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .home-videos .home-videos-grid {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 1em !important;
  }
  .home-videos .home-videos-grid div.arve {
    margin-bottom: 0.5em;
  }
}
.home-playlist {
  background: url(../../assets/img/blue-bg.webp) #d9ecef;
  background-size: cover;
  padding-top: 5em;
  padding-bottom: 7em;
}
.home-playlist .home-playlist-content {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
}
.home-news {
  background: url(../../assets/img/green-bg.webp) #ebede6;
  background-size: cover;
}
/*--- VIDEOS ---*/
.pslug_videos .page-content {
  margin: 3em auto 3em;
  width: 80%;
  max-width: 1600px;
}
@media screen and (max-width: 1024px) {
  .pslug_videos .page-content {
    width: 90%;
  }
}
.pslug_videos .videos-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2em;
}
.pslug_videos .videos-grid div {
  margin-bottom: -1em;
}
@media screen and (max-width: 1024px) {
  .pslug_videos .videos-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
/*--- NEWS ---*/
.pslug_news .page-content {
  margin: 3em auto 3em;
  width: 80%;
  max-width: 1600px;
}
@media screen and (max-width: 1024px) {
  .pslug_news .page-content {
    width: 90%;
  }
}
.pslug_news .news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2em;
}
@media screen and (max-width: 1400px) {
  .pslug_news .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 1200px) {
  .pslug_news .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 800px) {
  .pslug_news .news-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.pslug_news .news-grid h5 {
  margin-top: -0.5em;
}
/*--- CONTACT ---*/
.pslug_contact strong {
  text-transform: uppercase;
}
.pslug_contact .page-content {
  margin: 3em auto 3em;
  width: 80%;
  max-width: 1600px;
}
@media screen and (max-width: 1024px) {
  .pslug_contact .page-content {
    width: 90%;
  }
}
/*--- INDIVIDUAL POST ---*/
.body-ptp-post .page-content, .body-ptp-release .page-content {
  margin: 3em auto 3em;
  width: 80%;
  width: 100%;
  max-width: 800px;
}
@media screen and (max-width: 1024px) {
  .body-ptp-post .page-content, .body-ptp-release .page-content {
    width: 90%;
  }
}
.body-ptp-post h1, .body-ptp-release h1 {
  font-size: 2em;
}
.body-ptp-post h1, .body-ptp-post h5, .body-ptp-release h1, .body-ptp-release h5 {
  text-align: center;
}
.body-ptp-post h5, .body-ptp-release h5 {
  margin-top: -0.5em;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1em;
  color: #131313;
}
.body-ptp-post .individual-post-grid, .body-ptp-release .individual-post-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  width: 100%;
  margin: 0 auto;
  grid-gap: 1em;
  align-content: center;
  align-items: center;
}
.body-ptp-post .individual-post-grid img, .body-ptp-release .individual-post-grid img {
  margin-top: 1em;
  margin-bottom: 1em;
}
.body-ptp-post .individual-post-grid .arve, .body-ptp-release .individual-post-grid .arve {
  margin-top: 2em;
}
@media screen and (max-width: 980px) {
  .body-ptp-post .individual-post-grid, .body-ptp-release .individual-post-grid {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1em;
    max-width: 600px;
    margin: 0 auto;
  }
}
.body-ptp-post .release-links, .body-ptp-release .release-links {
  margin-top: 1em;
  text-align: center;
}
.body-ptp-post .release-links a, .body-ptp-release .release-links a {
  background: #3c98ad;
  color: #fff;
  font-weight: 700;
  font-size: 0.8em;
  padding: 0.25em;
  padding-left: 0.5em;
  padding-right: 0.5em;
  margin-right: 0.25em;
  margin-top: 0.25em;
  text-transform: uppercase;
  display: inline-block;
}
.body-ptp-post .release-links a:hover, .body-ptp-release .release-links a:hover {
  background: #131313;
  color: #3c98ad;
  cursor: pointer;
}
/*--- ABOUT PAGE ---*/
.pslug_about h5 {
  color: #131313;
}
.pslug_about .page-content {
  margin: 3em auto 3em;
  width: 80%;
  max-width: 1600px;
}
@media screen and (max-width: 1024px) {
  .pslug_about .page-content {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
  }
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2em;
  align-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(1, 1fr);
    max-width: 600px;
    margin: 0 auto;
  }
}
.press-item {
  display: block;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2em;
  align-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 3em;
    grid-gap: 0;
  }
}
.team-grid .team-img img {
  width: 100%;
  height: auto;
}
/*--- CONTACT ---*/
@media screen and (max-width: 980px) {
  .pslug_contact .about-grid .about-info {
    order: 1;
  }
  .pslug_contact .about-grid .about-img {
    order: 2;
  }
}
/*--- ALUMNI ---*/
.pslug_artists #alumgrid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.2em 0.9em;
  padding: 2em 0;
  line-height: 1.2em;
  max-width: 90%;
  margin: 0 auto -1.5em;
}
.pslug_artists #alumgrid .alumni-artist {
  white-space: nowrap;
  padding-bottom: 0.5em;
  text-transform: uppercase;
  color: #3c98ad;
}
.pslug_artists #alumgrid .alumni-artist:not(:last-of-type)::after {
  content: " • ";
  font-size: 2em;
  position: relative;
  top: 0.25em;
  padding-left: 0.35em;
  color: #3c98ad;
}
.pslug_artists #alumgrid .alumni-artist:last-of-type {
  position: relative !important;
  top: 0.32em !important;
}
.pslug_artists #alumgrid .alumni-artist:last-of-type::after {
  content: "" !important;
  top: 0 !important;
}
.pslug_artists h2 {
  text-align: center;
}
.pslug_artists .cast-sep {
  color: #3c98ad;
}
.pslug_artists .alumni-grid a {
  color: #3c98ad;
  text-transform: uppercase;
}
@media screen and (max-width: 1400px) {
  .pslug_artists .alumni-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 1200px) {
  .pslug_artists .alumni-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 1000px) {
  .pslug_artists .alumni-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 980px) {
  .pslug_artists .alumni-grid {
    width: 90%;
  }
}
/*--- SHOPIFY ADJUSTMENTS ---*/
.product-modal__description-text a {
  color: #3c98ad;
}
.product-modal__media {
  justify-content: flex-start !important;
}
/*--- SUBSCRIBE ---*/
/*
.kl-teaser-XMYBxz {
    display: none !important;
}
    */
span.Teaser-pointer-Hn1zd {
  display: none !important;
}
#subscribe {
  padding: 0em;
  padding-top: 3em;
  background-size: cover;
}
#subscribe .subscribe-content {
  width: 80%;
  max-width: 1600px;
  border-bottom: 5px solid rgba(255, 255, 255, 0.1) !important;
  margin: 0 auto;
  padding-bottom: 1em;
}
#subscribe img {
  display: none !important;
}
#subscribe form {
  padding-left: 5em;
  padding-right: 5em;
  width: 100%;
  max-width: 600px;
  background: url(../../assets/img/footer-bg.webp) !important;
  background-color: none !important;
  margin: 0 auto;
  border: 0 !important;
}
#subscribe form input[type="text"] {
  background: none !important;
}
#subscribe form button {
  border-radius: 0.5em !important;
  margin-top: -0.75em;
  padding-top: 0.25em;
  padding-bottom: 0.25em;
}
#subscribe form h1, #subscribe form h2, #subscribe form h3, #subscribe form h4, #subscribe form h5, #subscribe form h6, #subscribe form span {
  line-height: 40px !important;
}
.klaviyo-form input {
  color: #fefefe !important;
}
/*--- HOME RELEASES ---*/
.home-rel-slider .embla__controls__wrap {
  padding-top: 1em;
}
.home-rel-slider .embla {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}
.home-rel-slider .embla__viewport {
  overflow: hidden;
}
.home-rel-slider .embla__container {
  display: flex;
}
.home-rel-slider .embla__slide {
  flex: 0 0 50%;
  padding: 0.5em;
  box-sizing: border-box;
  position: relative;
}
@media screen and (min-width: 768px) {
  .home-rel-slider .embla__slide {
    flex: 0 0 50%;
    padding: 0.75em;
  }
}
@media screen and (min-width: 1024px) {
  .home-rel-slider .embla__slide {
    flex: 0 0 33.3333%;
    padding: 1em;
  }
}
@media screen and (min-width: 1200px) {
  .home-rel-slider .embla__slide {
    flex: 0 0 25%;
    padding: 1em;
  }
}
.home-rel-slider .embla__slide__inner {
  position: relative;
  height: 100%;
  width: 100%;
}
.home-rel-slider .embla__slide__inner img {
  width: 100%;
}
.home-rel-slider .embla__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.home-rel-slider .embla__controls__wrap {
  text-align: center;
}
.home-rel-slider .embla__controls {
  display: inline-flex;
  font-size: 1.5em;
}
.home-rel-slider .client {
  text-transform: uppercase;
}
@media screen and (max-width: 980px) {
  .home-rel-slider .client {
    line-height: 1.2em;
  }
}
.home-rel-slider .client .title {
  font-weight: 700;
  color: #3c98ad;
  display: grid;
}
.home-rel-slider .client .release-type {
  font-weight: 400;
  font-size: 0.75em;
  margin-bottom: 0.25em;
  color: #3c98ad;
}
.home-rel-slider .client .date {
  color: #131313;
}
.home-rel-slider .client .title {
  padding-bottom: 0.2em;
}
.home-rel-slider .client .artist {
  padding-bottom: 0.1em;
}
.home-rel-slider .client img {
  margin-bottom: 0.25em;
}
.home-rel-slider .client a {
  background: #3c98ad;
  color: #fff;
  font-weight: 700;
  font-size: 0.8em;
  padding: 0.25em;
  padding-left: 0.5em;
  padding-right: 0.5em;
  margin-right: 0.25em;
  margin-top: 0.25em;
  display: inline-block;
}
.home-rel-slider .client a:hover {
  background: #d9ecef;
  color: #3c98ad;
  cursor: pointer;
}
.home-rel-slider .client .release-info {
  line-height: 1.2em;
}
.home-rel-slider .client .release-info .release-meta {
  text-align: center;
}
@media screen and (min-width: 801px) {
  .home-rel-slider .client .release-info .release-meta {
    display: grid;
    grid-gap: 3%;
    grid-template-columns: 60% 37%;
    grid-template-areas: "title type" "artist type" "links type";
    text-align: left;
  }
  .home-rel-slider .client .release-info .release-meta .title {
    grid-area: title;
  }
  .home-rel-slider .client .release-info .release-meta .artist {
    grid-area: artist;
  }
  .home-rel-slider .client .release-info .release-meta .release-type {
    grid-area: type;
    text-align: right;
  }
  .home-rel-slider .client .release-info .release-meta .release-links {
    grid-area: links;
  }
}
@media screen and (min-width: 1401px) {
  .home-rel-slider .client .release-info .release-meta {
    grid-template-columns: 68% 29%;
  }
}
shopify-media img.image {
  background: none !important;
}
#labelFilterForm select {
  width: 100%;
}
/*# sourceMappingURL=https://takethistoheartrecords.com/wp-content/themes/bb-theme-master/assets/css/cs.map */