/** Shopify CDN: Minification failed

Line 18:50 Unexpected "/"
Line 28:46 Unexpected "<"
Line 52:19 Unexpected "-"
Line 56:50 Unexpected "-->"

**/
.type-banner {
  flex: 1 0 100%;
}

.footer__title {
  font-weight: bold;
  font-size: var(--type-base-size);
}

Custom CSS in live Studios theme located in assets/theme.css.liquid

/* here- preorder button to black from white */
.btn--secondary, .block-buy-buttons[data-show-dynamic-checkout] .btn, .rte .btn--secondary {
    border: 1px solid;
    border-color: var(--color-text-body);
    color: #ffffff;
    /* background-color: var(--color-body); */
}

/* Here - added slide font color D100 page */ <--DO I NEED IN NEW THEME?
.slideshow__slide.slideshow__slide--template--14461502324791__4a7f49d9-afb3-4b36-a03d-84464227fa55-16739159737a193cf9-0.is-selected {
color: #000 !important;
}
.slideshow__slide.slideshow__slide--template--14461502324791__95253069-440a-4ae3-b1f9-756f06b27765-16739159737a193cf9-0.is-selected {
color: #000 !important;
}

/* here make color black on block home page D100 */

.slideshow__slide.slideshow__slide--template--14463797264439__999f1129-8a46-4567-bc7c-16924fc972cc-1675361054b495ff09-0.is-selected {
  color: #000 !important;
}

.slideshow__slide.slideshow__slide--template--14463797755959__b2cd0dc1-7430-437d-8e5c-70d0ba0cf337-1675021148354a9aec-0.is-selected {
  color: #000 !important;
}

/* here - removing max-width: 650px from images to be flush with text*/
.shopify-section-template--14463797755959__65cc9b8a-3c73-4e3d-a672-7d05e1bff900.grid__item.medium-up--one-half {
 max-width: none; 
}

/* here - added code to hide the word 'price' on product pages */
<!-- original code - 
.label, label:not(.variant__button-label):not(.text-label) {
display: block !important;
}-->
<!-- this shows the text in Create Account fields -->
<!--.label, label:not(.text-label) {
display: block !important;
}-->

/* this hides the word 'Price' above product price  */
.label, label:not(.variant__button-label) {
display: none !important;
}
/* here - this is for the contact form fields to show up */
.contact-form label:not(.variant__button-label):not(.text-label), .template-customers-register label:not(.variant__button-label):not(.text-label) {
    display: block !important;
}

/* here - retailer button */
.btn-retailer {
  background-color: #000; 
  border: 1px;
  color: #ffffff;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
}

/* here retailer locator page css */
.titleColor {
  color: #000000;
  font-weight: bold;
}
.retText {
  color: #676767;  
  font-weight:normal;
}
