/** Shopify CDN: Minification failed

Line 318:76 Expected "*/" to terminate multi-line comment

**/
/*Cart and search icon sizes in custom css of header in theme customiser, cart bubble in base.css edited*/


/* Search icon & Page titles removed, and opacity fixed in base.css */


/* Custom fonts to be added in base.css */



/*HEADER ICONS CUSTOMISATIONS*/


.header__icon .icon {
  height: 3rem;
}

.header__icon--cart {
  height: 2.5em;
  width: 2.1em;
}
.cart-count-bubble {
  height: 1.2rem;
}


@media screen and (max-width: 749px) {
  .footer .list-social__item {
    padding: 3vw;
  }
}


@media screen and (max-width: 989px) {
  .header .bsi-list-social {
    display: none;
  }
  .menu-drawer__localization {
    display: none;
  }
}


@media screen and (min-width: 750px) {
  .header__icon--cart {
    margin-left: 10px !important;
    padding-top: 1px;
    margin-right: 1rem;
  }
  .header__icon--account {
    height: 4rem;
  }
}


/*CENTRALISE LAST PRODUCT*/

.product-grid {
  display: flex;
  justify-content: space-between; 
}
 
.product-grid .grid__item:last-child {
  margin-left: auto;
  margin-right: auto;
}


.product-grid .grid__item:nth-last-child(2) {
margin-left: auto;
margin-right: auto;
}



/*REMOVE FOOTER LINES*/

.footer__content-bottom {
    border-top: solid 0 rgba(var(--color-foreground),.08)!important;
}

.footer__content-top {
    padding-bottom: 0!important;
}

.footer__content-bottom {
  border-top: unset !important;
}
.footer {
  border-top: unset !important;
}


/*CENTER POLICY MENU IN FOOTER*/

.footer__content-bottom-wrapper {
  justify-content: center;
}

.footer__copyright {
  text-align: center !important;
}

.footer__copyright {
  padding-top: 30px;
}

.footer-block__image-wrapper {
  margin-bottom: 0 !important;
}


/*RELATED TO CUSTOMISED SLIDESHOW SECTION WHICH HAS BEEN MODIFIED FROM LINE 290-312 AND CLASS ADEDD AT START OF LINE 29 - FIRST SLIDESHOW IN CUSTOMISER DESKTOP AND SECOND MOBILE ONLY*/

@media only screen and (max-width:749px){
  .mobile--device{
    display:block!important;
  }
  .desktop--device{
     display:none!important;
  }
}

@media only screen and (min-width:750px){
  .mobile--device{
    display:none!important;
  }
  .desktop--device{
    display:block!important;
  }
}


/*RELATED TO CUSTOM BSI BANNER SECTION*/

@media only screen and (max-width:749px){
  .bsi_mobile_banner {
    display:block!important;
    height: 45rem !important;
  }
  .bsi-desktop-banner {
     display:none!important;
  }
}

@media only screen and (min-width:750px){
  .bsi_mobile_banner {
    display:none!important;
  }
  .bsi-desktop-banner {
    display:block!important;
  }
}


/*RELATED TO MENU TO RIGHT OPTION IN DESKTOP LOGO POSITION DROPDOWN IN HEADER*/

/* Existing left-right split layout */
.header--left-right-split {
  display: grid;
  grid-template-areas: 
    "heading icons"
    "navigation navigation";
  grid-template-columns: auto 1fr;
  align-items: center;
}

.header--left-right-split .header__heading {
  grid-area: heading;
  justify-self: start;
}

.header--left-right-split .header__icons {
  grid-area: icons;
  justify-self: end;
}

.header--left-right-split nav.header__inline-menu {
  grid-area: navigation;
}

@media screen and (min-width: 990px) {
  .header--left-right-split {
    grid-template-areas: "heading navigation icons";
    grid-template-columns: auto 1fr auto;
  }
  
  .header--left-right-split nav.header__inline-menu {
    grid-area: navigation;
    justify-self: end;
    padding-right: 2rem;
  }
}

/* New layout: Logo left, menu center */
.header--logo-left-menu-center {
  display: grid;
  grid-template-areas: 
    "heading icons"
    "navigation navigation";
  grid-template-columns: auto 1fr;
  align-items: center;
}

.header--logo-left-menu-center .header__heading {
  grid-area: heading;
  justify-self: start;
}

.header--logo-left-menu-center .header__icons {
  grid-area: icons;
  justify-self: end;
}

.header--logo-left-menu-center nav.header__inline-menu {
  grid-area: navigation;
}

@media screen and (min-width: 990px) {
  .header--logo-left-menu-center {
    grid-template-areas: "heading navigation icons";
    grid-template-columns: auto 1fr auto;
  }
  
  .header--logo-left-menu-center nav.header__inline-menu {
    grid-area: navigation;
    justify-self: center;
  }
}

/* New layout: Logo right, menu left */
.header--logo-right-menu-left {
  display: grid;
  grid-template-areas: 
    "icons heading"
    "navigation navigation";
  grid-template-columns: 1fr auto;
  align-items: center;
}

.header--logo-right-menu-left .header__heading {
  grid-area: heading;
  justify-self: end;
}

.header--logo-right-menu-left .header__icons {
  grid-area: icons;
  justify-self: start;
}

.header--logo-right-menu-left nav.header__inline-menu {
  grid-area: navigation;
}

@media screen and (min-width: 990px) {
  .header--logo-right-menu-left {
    grid-template-areas: "navigation heading icons";
    grid-template-columns: 1fr auto auto;
  }
  
  .header--logo-right-menu-left nav.header__inline-menu {
    grid-area: navigation;
    justify-self: start;
  }
  
  .header--logo-right-menu-left .header__heading {
    margin-left: 2rem;
    margin-right: 2rem;
  }
}

/* Preserve original middle-left layout */
.header--middle-left:not(.header--left-right-split):not(.header--logo-left-menu-center):not(.header--logo-right-menu-left) {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.header--middle-left:not(.header--left-right-split):not(.header--logo-left-menu-center):not(.header--logo-right-menu-left) .header__heading {
  flex: 0 0 auto;
  margin-right: 2rem;
}

.header--middle-left:not(.header--left-right-split):not(.header--logo-left-menu-center):not(.header--logo-right-menu-left) .header__inline-menu {
  flex: 1 1 auto;
  margin-right: auto;
}

.header--middle-left:not(.header--left-right-split):not(.header--logo-left-menu-center):not(.header--logo-right-menu-left) .header__icons {
  flex: 0 0 auto;
}



/*Policy menu and copywrite info recreated in BSIMerch-Footer.liquid*/


/*Code added at the top of base.css to remove opacity from menus*/


/*Have commented out from line 348 in section-footer.css & 2839 in base.css to fix hover underlines in header and footer menus*/



/*Have added Apple Music and Spotify links in socials by changing Tumblr and Vimeo links in en.default.schema.json and updating images in icon-tumblr.liquid and icon-vimeo.liquid*/



/*Have commented out line 93 from assets/template.collection.css to fix Layout - Page width in theme customiser*/



*/STORE SPECIFIC UPDATES ARE IN CUSTOM CSS IN THEME SETTINGS ON CUSTOMISER/*