/** Shopify CDN: Minification failed

Line 1610:0 Unexpected "}"

**/
/* define globals */

html {
  /* colours */
  --g-col-sand: #f1f1ee;
  --g-col-black: #1b1818;
  --g-col-red: #d40025;
  --g-col-dark-grey: #687379;
  --g-col-border-grey: #dfe3e4;
  --g-col-product-title-black: #222a37;

  /* fonts */
  --g-font-henrik: "Henrik";
  --g-font-ptsans: "PT Sans", sans-serif;
  --g-font-lato: Lato, sans-serif;
}

/* fonts */

.heading {
  /* font-family: unset;
  font-weight: unset;
  font-style: unset; */
}

@font-face {
  font-family: "Henrik";
  src: url("Henrik-Regular.woff2") format("woff2"),
    url("Henrik-Regular.woff") format("woff");
}

h1 {
  font-size: 80px;
  font-weight: normal;
  font-family: "Henrik";
}

h2 {
  font-size: 40px;
  font-weight: bold;
  font-family: "PT Sans", sans-serif;
}

h3 {
  font-size: 30px;
  font-weight: bold;
  font-family: "PT Sans", sans-serif;
}

h4,
h5,
h6 {
  font-size: 14px;
  font-weight: bold;
  font-family: "PT Sans", sans-serif;
}

/* global headings and buttons */

h2.heading.h3 {
  font-family: var(--g-font-ptsans);
  font-size: 36px;
  font-weight: bold;
  text-transform: uppercase;
}

.section__action-link.link {
  background: var(--g-col-red);
  color: #fff;
  border-radius: 8px;
  padding: 5px 10px 5px 30px;
  font-family: var(--g-font-ptsans);
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

h3.article-item__title {
  font-family: var(--g-font-ptsans);
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase;
}

/* button shine on hover */

.button-shine {
  background-repeat: no-repeat;
  background-position: -120px -120px, 0 0;

  background-image: -webkit-linear-gradient(
    top left,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.15) 37%,
    rgba(255, 255, 255, 0.3) 45%,
    rgba(255, 255, 255, 0) 50%
  );
  background-image: -moz-linear-gradient(
    0 0,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.15) 37%,
    rgba(255, 255, 255, 0.3) 45%,
    rgba(255, 255, 255, 0) 50%
  );
  background-image: -o-linear-gradient(
    0 0,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.15) 37%,
    rgba(255, 255, 255, 0.3) 45%,
    rgba(255, 255, 255, 0) 50%
  );
  background-image: linear-gradient(
    0 0,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.15) 37%,
    rgba(255, 255, 255, 0.3) 45%,
    rgba(255, 255, 255, 0) 50%
  );

  -moz-background-size: 250% 250%, 100% 100%;
  background-size: 250% 250%, 100% 100%;

  -webkit-transition: background-position 0s ease;
  -moz-transition: background-position 0s ease;
  -o-transition: background-position 0s ease;
  transition: background-position 0s ease;
}

.button-shine:hover {
  background-position: 0 0, 0 0;

  -webkit-transition-duration: 0.5s;
  -moz-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

/* header styling */

.announcement-bar {
  border: 1px solid #fff;
}

.announcement-bar a {
  margin-right: 10px;
  padding-right: 10px;
  text-transform: uppercase;
  border-right: solid 1px #fff;
  font-size: 14px;
  font-weight: bold;
}

.announcement-bar a:last-child {
  border-right: 0;
  margin-right: 0;
  padding-right: 0;
}

.announcement-bar__content {
  display: inline-block;
}

.mobile-only .announcement-bar__content {
  margin: 0 auto;
  color: #fff;
}
.mobile-only .announcement-bar__content a {
  font-size: 12px;
  font-weight: bold;
  text-transform: normal;
}

#shopify-section-announcement-bar .container.mobile-only {
  background-color: var(--g-col-red);
}

.announcement-bar .announcement-bar__button {
  margin-left: 20px;
}

.nav-bar {
  background-color: var(--g-col-red);
  color: #fff;
  box-shadow: inset 0 8px 20px -16px black;
  border-bottom: unset;
}

.nav-bar::after {
  content: unset;
}

.header__search-bar-wrapper .search-bar__top {
  border-radius: 8px;
  margin-right: 35px;
}
.header__search-bar-wrapper .search-bar__top .search-bar__submit {
  border-radius: 0 8px 8px 0;
}

.header__search-bar-wrapper
  .search-bar__top
  .search-bar__input-wrapper
  ::placeholder {
  text-transform: uppercase;
  color: #707070;
}

.header {
  padding: 21px 0 26px;
}

.header__logo {
  margin-right: 80px;
}

.header__action-item.header__action-item--account span:first-child {
  font-size: 12px;
}

.header__action-item.header__action-item--account
  .header__action-item-content
  .header__action-item-link.hidden-pocket {
  font-size: 16px;
}

.header__action-item:not(:last-child):before {
  position: absolute;
  content: "";
  left: 0;
  top: calc(50% - 17px);
  background: var(--header-border-color);
  height: 34px;
  width: 1px;
}

/* menu nav */

.mega-menu {
  background: var(--g-col-sand);
}

.nav-bar__link.link {
  font-family: var(--g-font-ptsans);
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
}

/* mega menu items */

.mega-menu__image-heading.heading.h4 {
  font-family: var(--g-font-ptsans);
  font-size: 16px;
  font-weight: bold;
  color: #4d4d4d;
}

.mega-menu__image-text {
  font-family: var(--g-font-ptsans);
  color: #4d4d4d;
}

.mega-menu__promo {
  flex-basis: 400px;
}

.mega-menu__item {
  color: #6a6a6a;
}

/* header socials */

.nav-bar__inner > .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.nav-bar__linklist {
  width: fit-content;
  display: inline-block;
}

.header-socials {
  display: inline-block;
  width: fit-content;
}

.header-socials .social-media__item svg {
  opacity: 1;
}

/* footer styling */

.footer__wrapper {
  padding-bottom: 0;
}

.footer-dark {
  width: 100vw;
  display: flex;
  background: black;
  justify-content: center;
  align-content: center;
  align-items: center;
  text-align: center;
  padding: 8px;
}

.footer__linklist {
  font-size: 12px;
  font-weight: bold;
}

.footer__aside-item .footer__aside-title {
  font-size: 12px;
  font-weight: bold;
}

.footer__aside-item .social-media__item svg {
  opacity: 1;
}

footer {
  font-size: 12px;
  text-transform: uppercase;
}

footer .footer__block-list {
  padding: 90px 0;
}

.footer-socials {
  display: flex;
  flex-direction: column;
}

footer .footer__block-item--text {
  flex-basis: 200px;
}

footer a {
  color: #fff !important;
  text-decoration: none !important;
}

.ama-member-logo {
  width: 136px;
  height: auto;
}

.footer-subscribe {
  background-color: var(--g-col-black);
  padding-top: 60px;
  padding-bottom: 50px;
}

.footer-subscribe .join-the-band {
  text-align: right;
  color: rgb(255, 255, 255, 0.87);
  width: fit-content;
  display: inline-block;
  min-width: 350px;
}
.footer-subscribe .join-the-band h3 {
  font-family: var(--g-font-henrik);
  font-size: 50px;
  font-weight: normal;
  text-transform: uppercase;
  line-height: 1em;
  margin-bottom: 0;
}
.footer-subscribe .join-the-band h4 {
  font-size: 18px;
  font-weight: bold;
}

span.abn {
  margin-left: 5px;
}

/* homepage / index /*

/*Small devices (landscape phones, less than 768px)*/
@media only screen and (max-width: 768px) {
  
#shopify-section-header:after {
    content: "";
    display: table;
    clear: both;
    margin-bottom: 59px;
}
}


.slideshow--large {
  height: 70vh;
}

.slideshow__title {
  font-family: var(--g-font-henrik);
  font-size: 120px;
  max-width: 663px;
  line-height: 0.8em;
}

.flickity-page-dots .dot {
  width: 50px !important;
  height: 5px !important;
  border-radius: 5px;
  border: none !important;
}

.flickity-page-dots .dot.is-selected {
  background-color: var(--g-col-red) !important;
}

/* collection / category river page */

.crumb-spacer {
  margin: 0 3px;
}

.breadcrumb__item {
  text-transform: uppercase;
  color: #aeaeae;
}

form.filters .card__title--small {
  color: var(--g-col-red);
}

form.filters .collection__filter-group-name {
  color: var(--g-col-black);
  font-weight: bold;
}

form.filters .range-group {
  background: linear-gradient(
    to right,
    var(--border-color) var(--range-min),
    var(--g-col-red) var(--range-min),
    var(--g-col-red) var(--range-max),
    var(--border-color) var(--range-max)
  );
}

form.filters .range-group input[type="range"]::-webkit-slider-thumb {
  background: var(--g-col-red);
}
form.filters .range-group input[type="range"]::-moz-range-thumb {
  background: var(--g-col-red);
}
form.filters .range-group input[type="range"]::-ms-thumb {
  background: var(--g-col-red);
}

.collection-custom-container {
  margin-top: 30px;
}

.collection-custom-container .collection__title {
  color: var(--g-col-red);
}

.collection-custom-container .collection__toolbar--bordered {
  margin-top: 0;
  box-shadow: 0 1px var(--border-color), 0 0px var(--border-color) !important;
}

.collection-custom-container
  .collection__toolbar-item--layout
  button.is-selected {
  color: var(--g-col-red);
}

.collection-custom-container .product-item__vendor.link {
  color: var(--g-col-dark-grey);
}
.collection-custom-container .product-item__title {
  color: var(--g-col-black);
  font-weight: bold;
}

.collection__description {
  margin-top: 90px;
  margin-bottom: 90px;
}

.collection__description h2 {
  font-size: 30px;
  font-family: var(--g-font-ptsans);
  font-weight: bold;
}

.collection__description .expandable-content__toggle-text,
.collection__description .expandable-content__toggle-icon {
  color: var(--g-col-red);
}

.collection__description .expandable-content__toggle-icon {
  margin-right: 5px;
}

.collection__description hr {
  display: none;
}

.collection__description img {
  float: left;
  margin-right: 30px;
  margin-bottom: 30px;
}

/* .pagination__nav .pagination__nav-item {
  color: var(--g-col-red);
}  */
.pagination {
  color: var(--g-col-red);
}

.pagination__nav .pagination__nav-item.is-active {
  color: #fff;
  background: #000;
}

/* collection facq accordion */

.accordion {
  margin: 0;
  padding: 40px;
  border: var(--g-col-border-grey) 1px solid;
  border-radius: 4px;
  /* background: #cccccc; */
  text-decoration: none;
  color: var(--g-col-black);
  font-size: 26px;
  font-weight: bold;
  position: relative;
}
.accordion-open {
  /* background: #50b3da; */
  /* color: #fff; */
  /* border-bottom: none; */
}
.accordion-open span {
  display: block;
  float: right;
  transform: translateY(50%);
  padding: 12px;
}

.accordion-close span {
  display: block;
  float: right;
  transform: translateY(50%);
  padding: 12px;
}
.collection-faq div.container {
  padding: 0;
  margin: 0;
}
.collection-faq div.container {
  max-width: 100%;
  padding: 5px 0;
}
.collection-faq div.content {
  margin: 0;
  padding-top: 10px;
  font-size: 22px;
  line-height: 1.5em;
  color: #697278;
}
.collection-faq div.content ul {
  padding: 0;
  margin: 0;
  padding: 3px;
}
.collection-faq div.content p {
  padding: 0;
  margin: 3px 0 10px;
  padding: 3px;
}
.collection-faq div.content ul li {
  list-style-position: inside;
  line-height: 25px;
}

.collection-faq-title {
  font-size: 30px;
  font-family: var(--g-font-ptsans);
  font-weight: bold;
}

/* our locations section */

.our-locations {
  background: var(--g-col-sand);
  padding-top: 30px;
  padding-bottom: 45px;
}

.is-homepage .our-locations {
  background: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
}

.our-locations .card {
  max-width: calc(50% - 11px);
  display: inline-block;
  padding: 0;
  border: none;
  background: unset;
}

.our-locations header h2 {
  font-family: var(--g-font-henrik);
  font-size: 60px;
  max-width: 300px;
  line-height: 1em;
  font-weight: normal;
  display: inline-block;
}

.our-locations .card:nth-child(even) {
  margin-right: 8px;
}

.our-locations .card:nth-child(odd) {
  margin-left: 8px;
}

.our-locations .card h3 {
  color: var(--g-col-red);
  text-transform: uppercase;
  line-height: 1em;
}
.our-locations .card h3 span {
  font-size: 16px;
  font-weight: normal;
}
.our-locations .card p {
  font-family: var(--g-font-ptsans);
  font-size: 20px;
  font-weight: bold;
  max-width: 395px;
  min-height: 75px;
  line-height: 1.1em;
}

.our-locations .card .button {
  color: #fff;
  text-transform: uppercase;
  font-family: var(--g-font-lato);
  font-size: 14px;
  font-weight: bold;
  border-radius: 4px;
}

.our-locations .card .button:first-of-type {
  background-color: var(--g-col-black);
  margin-right: 10px;
}

.our-locations .card .button:last-of-type {
  background-color: var(--g-col-red);
}

.our-locations .mini-logo-pic {
  display: inline-block;
  vertical-align: baseline;
  margin-bottom: -10px;
}

.our-locations a.button:hover {
  opacity: 0.9;
  transition: 0.3s;
}

/* brand partners */

.brand-partners {
  background: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
}

.is-homepage .brand-partners {
  background: var(--g-col-sand);
}

.brand-partners header > h3 {
  float: left;
  font-family: var(--g-font-ptsans);
  font-size: 18px;
  font-weight: normal;
}

.brand-partners .view-all-btn {
  float: right;
  font-family: var(--g-font-ptsans);
  font-size: 20px;
  font-weight: bold;
  color: var(--g-col-red);
}

.brand-partners .brand-slider {
  clear: both;
  padding-top: 20px;
}

.slick-slide {
  margin: 0 6px;
}

.slick-list {
  margin: 0 -6px;
}

.mobile-only {
  display: none;
}

.flickity-prev-next-button {
  background: var(--g-col-red) !important;
}

/* .slideshow .slideshow__content-wrapper .custom-brand-logo {
  margin-bottom: -25px;
} */

.slideshow .slideshow__button {
  font-family: var(--g-font-ptsans);
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 8px;
  min-width: 225px;
  margin-top: 25px;
}

#shopify-section-template--14555134099508__collection-list {
  padding-bottom: 20px;
}

#shopify-section-template--14555134099508__164755070868e36375 {
  background: var(--g-col-sand);
  padding-top: 20px;
}

#shopify-section-template--14555134099508__164755070868e36375 > section {
  margin-bottom: unset;
}

/* #shopify-section-template--14555134099508__164755070868e36375 .product-list { */
#shopify-section-template--14555134099508__164755070868e36375
  .container:nth-child(2) {
  margin-bottom: -40px;
}

#shopify-section-template--14555134099508__blog-posts h2.h3 {
  font-family: var(--g-font-henrik);
  font-size: 60px;
  font-weight: normal;
  line-height: 1em;
  max-width: 285px;
  color: var(--g-col-black);
}

#shopify-section-template--14555134099508__blog-posts h2.h3:after {
  display: block;
  content: "";
  width: 53px;
  height: 54px;
  background: url(/cdn/shop/files/pic-logo.png?v=1647551950);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  top: -157px;
}

#shopify-section-template--14555134099508__blog-posts > section {
  background: var(--g-col-sand);
  margin-top: 0;
  padding-top: 115px;
}

#shopify-section-template--14555134099508__blog-posts .article-item {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
}

#shopify-section-template--14555134099508__blog-posts .article-item .read-more {
  display: block;
  color: var(--g-col-red);
  text-decoration: none;
}

#shopify-section-template--14555134099508__blog-posts
  .article-item__image-container {
  margin: -20px -20px 0 -20px;
  border-radius: 8px 8px 0 0;
}

#shopify-section-template--14555134099508__blog-posts h3.h4 {
  margin-top: 15px;
}

.shopify-payment-button__button--unbranded {
  background: var(--g-col-black) !important;
}

/* about us page */

.about-us .page__content img:first-of-type {
  max-width: 60%;
  margin-right: 10px;
}

.about-us .slideshow__title {
  max-width: 380px;
}

/* collections list page */

.categories-heading,
.brands .page__title.heading.h1 {
  font-family: var(--g-font-henrik);
  font-size: 80px;
  font-weight: normal;
  text-transform: uppercase;
}

.collection-block-item__title.heading.h2 {
  font-family: var(--g-font-ptsans);
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase;
}

.brands .quick-links {
  border: unset;
  gap: 13px;
}

.brands .quick-links__link {
  box-shadow: unset;
  border: 1px solid var(--border-color);
  width: calc(16.666666666666666666666666666667% - 12px);
}

/* blog */

#block-newsletter {
  background: var(--g-col-sand) !important;
  color: var(--g-col-product-title-black) !important;
}

#block-newsletter .button--primary {
  background: var(--g-col-product-title-black);
}
#block-newsletter h2.heading.h3 {
  text-transform: capitalize;
  font-size: 24px;
}

/* join the band form */
.footer-subscribe > .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.join-the-band-form {
  display: inline-block;
  vertical-align: bottom;
  width: 100%;
  margin-left: 30px;
}

.join-the-band-form input,
.join-the-band-form select {
  padding: 10px;
  border-radius: 10px;
  height: 58px;
  width: 100%;
  /* width: 180px; */
}
.join-the-band-form .form__input-row > div {
  flex-basis: 100%;
}

.join-the-band-form .form__submit {
  width: 109px;
  height: 58px;
  border-radius: 10px;
  background: var(--g-col-red);
  background-image: url("/cdn/shop/files/newsletter-button-icon.svg?v=1647908622");
  background-repeat: no-repeat;
  background-size: 55px 36px;
  background-position: center;
  transition: 0.3s;
}

.join-the-band-form .form__submit:hover {
  opacity: 0.9;
  transition: 0.3s;
}

/* stock count on product page */

div#inventoryLocationInformation {
  width: 200px;
}

ul#tomit_inventory_list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

li.tomitIsInStock {
  color: green;
}

/* google reviews on product page */

.product-block-list__item .reputon-google-reviews-widget > div {
  height: fit-content;
  background: unset;
  margin: unset;
  border: unset;
}
.product-block-list__item
  .reputon-google-reviews-widget
  [class*="reviews-head"] {
  /* display: none; */
  height: 100px;
}

/* padding between reviews */
.product-block-list__item
  .reputon-google-reviews-widget
  [class*="single-review"] {
  margin-bottom: 50px;
}

/* move text off same line as stars */
.product-block-list__item .reputon-google-reviews-widget [class*="text"] {
  display: block;
  order: 2;
  margin-bottom: 20px;
}

/* rearrange review */

.product-block-list__item
  .reputon-google-reviews-widget
  [class*="reviews-body"]
  [class*="single-review"]
  > div
  > div:nth-child(2) {
  display: inline-flex !important;
  flex-direction: column;
}

.product-block-list__item
  .reputon-google-reviews-widget
  [class*="reviews-body"]
  [class*="rating-stars"] {
  order: 1;
  margin-bottom: 20px;
}
.product-block-list__item
  .reputon-google-reviews-widget
  [class*="reviews-body"]
  [class*="name"] {
  order: 3;
  margin-bottom: 5px;
}
.product-block-list__item
  .reputon-google-reviews-widget
  [class*="reviews-body"]
  [class*="date"] {
  order: 4;
}

.product-block-list__item .reputon-google-reviews-widget svg {
  fill: #febd00 !important;
}

/* music stores melbourne page */

.music-stores-melbourne {
}
.music-stores-melbourne .content-left-half {
  float: left;
}

.music-stores-melbourne .content-left-half h1 {
  max-width: 200px;
}

.music-stores-melbourne .content-right-half {
  float: right;
  max-width: calc(100% - 200px);
}

.mega-menu__title {
  line-height: 1.2;
}

/* gift card buttons */

.skt_buttons {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: -9px;
  column-gap: 18px;
  margin-bottom: 18px;
}

.skt_gc_button_container,
.skt_gc_preview_button_container {
  /* display: inline-block; */
  /* margin-right: 9px; */
  /* width: calc(50% - 18px); */
  flex-basis: calc(50% - 18px);
}

.skt_gc_button_container {
  /* margin-left: -9px; */
}

.skt_gc_preview_button_container {
  /* margin-left: 18px; */
}

.skt_gc_customize_button,
.skt_gc_preview_button {
  position: relative;
  display: inline-block;
  padding: 0 30px;
  line-height: 48px;
  border-radius: 2px;
  text-align: center;
  font-weight: var(--text-font-bolder-weight);
  font-size: var(--base-text-font-size);
  cursor: pointer;
  transition: background 0.25s ease-in-out, color 0.25s ease-in-out,
    box-shadow 0.25s ease-in-out;
  width: 100%;
  margin: 9px;
}

.skt_gc_customize_button:hover,
.skt_gc_preview_button:hover {
  transition: 0.3s;
  opacity: 0.9;
}

.skt_gc_preview_button:hover {
  background: rgba(212, 0, 37, 0.1);
}

.skt_gc_customize_button {
  background: var(--g-col-red);
  color: #fff;
}

.skt_gc_preview_button {
  background: #fff;
  color: var(--g-col-red);
  border: 1px solid var(--g-col-red);
}

@media screen and (max-width: 1400px) {
  #shopify-section-template--14555134099508__1647551761ba1427bd
    .slideshow--large {
    height: 100vh;
  }
}

@media screen and (min-width: 1025px) {
  .nav-bar__linklist > li:nth-last-child(1),
  .nav-bar__linklist > li:nth-last-child(2),
  .nav-bar__linklist > li:nth-last-child(3),
  .nav-bar__linklist > li:nth-last-child(4) {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  #block-dda75a64-e7af-4a08-b901-c5a65a6f0fbd {
    /* width: 100vw; */
    text-align: center;
  }

  .footer__block-item .rte img.mobile-only {
    margin: 1em auto;
  }

  .footer__block-item:first-of-type {
    flex: 0 0 100%;
  }
  .footer__block-item {
    flex: 0 0 25%;
    border-bottom: none;
  }

  .footer-dark .hidden-pocket {
    display: block !important;
  }

  .slideshow--large {
    height: 50vh;
  }

  #shopify-section-template--14555134099508__1647551761ba1427bd
    .slideshow--large {
    height: 75vh;
  }

  .header,
  .header__search-bar-wrapper {
    background: var(--g-col-red);
  }

  .search-bar__submit,
  #shopify-section-announcement-bar .container.mobile-only {
    background: #000;
  }

  .announcement-bar {
    border-bottom: unset;
  }

  .header__cart-icon path {
    fill: #fff;
  }

  .header__cart-count {
    border: 1px solid #fff;
  }

  .icon-state__secondary path {
    fill: #fff;
  }

  .header__inner {
    flex-wrap: wrap;
  }

  .section__action-link.link {
    padding: 5px 10px;
    font-size: 14px;
    min-width: 97px;
    text-align: center;
  }

  .icon-state__secondary svg {
    width: 31px !important;
    height: 26px !important;
  }

  .header__logo,
  .header__mobile-nav,
  .header__action-list {
    margin-right: unset;
    margin-left: unset;
    width: 33%;
  }

  .header__action-list {
    justify-content: flex-end;
  }

  .header__search-bar-wrapper .search-bar__top {
    margin-right: unset;
  }

  .header__action-item--account {
    display: none;
  }

  .header__action-list {
    order: 1;
  }

  .header__search-bar-wrapper {
    order: 2;
    padding-top: 14px;
  }

  .header__logo-image {
    margin: 0 auto;
  }

  .mobile-menu__panel {
    background: var(--g-col-sand);
  }

  /* .mobile-menu__nav-item { */
  button.mobile-menu__nav-link,
  button.mobile-menu__nav-list-toggle {
    border-bottom: 1px solid #fff;
    font-family: var(--g-font-ptsans);
    font-size: 16px;
    font-weight: bold;
    color: #4d4d4d;
  }

  .mobile-menu__nav-item {
    font-family: var(--g-font-ptsans);
    font-size: 16px;
    font-weight: normal;
  }

  .mobile-menu__nav-link {
    padding: 5px;
    text-transform: uppercase;
  }

  .mobile-menu__section.is-sticky {
    background: var(--g-col-sand);
    border-bottom: 1px solid #4d4d4d !important;
  }

  /* mobile menu contact */

  .mobile-html-container {
    display: flex;
  }

  .mobile-html-container > div {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .mobile-html-container > div:first-child {
    border-right: 1px solid #fff;
  }

  .mobile-html-container > div > span {
    font-family: var(--g-font-ptsans);
    font-size: 14px;
    font-weight: bold;
    color: var(--g-col-red);
    text-transform: uppercase;
  }

  .mobile-html-container > div > p {
    font-family: var(--g-font-ptsans);
    font-size: 14px;
    font-weight: normal;
    color: var(--g-col-black);
  }

  .mobile-html-container > div > p > a {
    display: block;
    font-size: 14px;
    font-weight: bold;
  }
  .mobile-html-container > div > p > a > img {
    vertical-align: middle;
    margin-right: 5px;
  }

  .mobile-menu__section .social-media__item-list .social-media__item svg {
    opacity: 1;
    color: var(--g-col-red);
  }

  .mobile-menu__section:not(:last-child) {
    border-bottom: unset;
  }

  .icon.icon--nav-triangle-borderless path {
    /* fill: var(--g-col-sand); */
  }

  #mobile-menu {
    border-top: 1px solid #fff;
  }

  .our-locations .card {
    max-width: 100%;
    margin-left: unset;
    margin-right: unset;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }
  .announcement-bar {
    border-top: none;
    border-left: none;
    border-right: none;
  }

  .blog-view-all-mobile {
    text-align: center;
    margin: 32px auto;
    min-width: 225px;
    width: fit-content;
    font-size: 20px !important;
  }

  #shopify-section-template--14555134099508__blog-posts .container {
    padding-bottom: 10px;
  }

  /* about us page */

  .about-us .page__content img:first-of-type {
    max-width: unset;
    margin-right: unset;
  }

  .about-us .page__content img {
    width: 100%;
  }

  .brands .quick-links__link {
    width: calc(25% - 10px);
  }

  .footer-subscribe .container {
    align-items: flex-start;
  }

  .join-the-band-form .form__input-row {
    flex-direction: column;
  }
  .join-the-band-form .form__input-row > div,
  .join-the-band-form .form__input-row > button {
    width: 100%;
    margin-bottom: 5px;
  }

  .mobile-menu__nav > li:nth-last-child(1),
  .mobile-menu__nav > li:nth-last-child(2),
  .mobile-menu__nav > li:nth-last-child(3),
  .mobile-menu__nav > li:nth-last-child(4) {
    border-bottom: 1px solid #fff;
    font-family: var(--g-font-ptsans);
    font-size: 16px;
    font-weight: 700;
    color: #4d4d4d;
  }

  .video-bg-slide {
    object-fit: cover;
  }
}

@media screen and (max-width: 767px) {
  .footer-subscribe .container {
    flex-direction: column;
  }

  .join-the-band-form .form__input-row {
    flex-direction: row;
    flex-wrap: wrap;
    --m-gap: 10px;
    --m-gap-half: calc(var(--m-gap) / 2);
    gap: var(--m-gap);
  }

  .join-the-band-form {
    margin-left: unset;
  }

  .footer-subscribe .join-the-band {
    min-width: unset;
    text-align: left;
  }

  .join-the-band-form .form__input-row > div,
  .join-the-band-form .form__input-row > button {
    margin-bottom: unset;
  }

  .join-the-band-form .form__input-row > div:nth-child(1),
  .join-the-band-form .form__input-row > div:nth-child(2) {
    width: calc(50% - var(--m-gap-half));
    flex-basis: calc(50% - var(--m-gap-half));
  }

  .join-the-band-form .form__input-row > div:nth-child(4) {
    --m-gap-cal: calc(60px + var(--m-gap));
    width: calc(100% - var(--m-gap-cal));
    flex-basis: calc(100% - var(--m-gap-cal));
  }

  .join-the-band-form .form__input-row > button {
    width: fit-content;
  }

  .join-the-band-form .form__submit {
    background-size: 44px 30px;
  }

  .footer {
    padding: unset;
  }
  .footer__block-list {
    flex-direction: row;
  }

  .footer__block-item {
    flex: 0 0 50%;
    flex-basis: 50% !important;
    margin-bottom: 70px;
    padding-right: unset;
    margin-right: unset;
  }

  .footer__block-item:first-of-type,
  .footer__block-item:last-of-type {
    flex: 0 0 100% !important;
  }

  .ama-member-logo {
    margin-right: 30px !important;
  }

  .footer__collapsible-content {
    padding: unset;
  }

  .footer-socials {
    flex-direction: row;
  }

  h2.heading.h3 {
    font-size: 19px;
  }

  .slideshow .slideshow__button {
    min-width: 105px;
    width: unset;
    text-align: center;
    font-size: 16px;
  }

  .slideshow--large {
    height: 70vh;
  }

  .slideshow__title {
    font-size: 60px;
    margin-top: 10px;
  }

  .slideshow .container {
    text-align: left;
  }
  .slideshow .container img {
    max-width: 40vw;
  }

  .header__action-item.hidden-tablet-and-up {
    display: none;
  }

  .header__action-list {
    padding-right: 8px;
  }

  .header__search-bar-wrapper {
    visibility: visible;
    margin-bottom: -59px;
  }

  .header__search-bar-wrapper .search-bar {
    opacity: 1;
  }

  .our-locations,
  .brand-partners {
    padding-left: 20px;
    padding-right: 20px;
  }

  .our-locations header {
    display: flex;
    flex-direction: column-reverse;
  }

  .our-locations .mini-logo-pic {
    max-width: 40px;
  }

  .our-locations .card .card__section {
    padding-left: 0;
    padding-right: 0;
  }

  .our-locations .card p {
    min-height: unset;
  }

  .our-locations .card .button {
    width: fit-content;
    display: inline-block;
    padding: 0 10px;
  }

  .brand-partners .view-all-btn {
    float: unset;
    padding-top: 25px;
  }

  #shopify-section-template--14555134099508__blog-posts h2.h3 {
    padding-top: 50px;
  }

  #shopify-section-template--14555134099508__blog-posts h2.h3:after {
    width: 53px;
    height: 54px;
    top: -157px;
  }

  #shopify-section-template--14555134099508__164755070868e36375
    .container:nth-child(2) {
    margin-bottom: unset;
    padding-bottom: 60px;
  }

  /* about us page */

  .about-us .slideshow__title {
    max-width: 200px;
  }

  .about-us .custom-brand-logo {
    width: 38px;
    height: 39px;
  }

  /* collections list page */

  .categories-heading {
    font-family: var(--g-font-henrik);
    font-size: 60px;
    font-weight: normal;
    text-transform: uppercase;
  }

  .brands .quick-links__link {
    width: calc(50% - 7px);
  }

  .video-bg-slide-ar {
    padding-bottom: 200% !important;
  }

  /* collection description */

  .custom-collection-description {
    padding-left: 20px;
    padding-right: 20px;
  }
  .custom-collection-description img {
    width: 100%;
  }
}

@media screen and (max-width: 640px) {
.mini-cart__inner {
display: flex;
flex-direction: column;
justify-content: space-between;
height: 100%;
}
.podium-widget-container {
display: none !important;
}
}


.mini-cart[aria-hidden=false] {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
    transition: opacity .4s cubic-bezier(0,1,.4,1),transform .4s cubic-bezier(.18,1.25,.4,1),visibility .4s linear;
}
.podium-widget-container {
display: none !important;
}
.ContactBubble {
  display: none !important;
}
}



.podium-widget-container {
  padding-bottom: 100px !important;
}

.button-group--loose {
    margin: -10px;
    padding-bottom: 80px;
}

.mobile-html-container > div:first-child {
  display: none;
}