/* add serif font to italic button */

@font-face {

font-family: 'miller-banner';

src: url('https://use.typekit.net/tgy2apf.css');

}

em {

font-family: 'miller-banner';

font-weight: 400;

font-style: italic;

line-height: 1rem;

@media screen and (max-width: 767px){

}

}

// change one heading style //

h1 {

font-family: 'miller-banner';

font-weight: 400;

font-style: italic;

font-size: 16rem;

}

/* video alignment */

[data-section-id="66c29788b96b1d55ae5fbf45"].section-background video {

object-position: 80% 0 !important;

}

// change h1 font size on mobile //

@media screen and (max-width: 767px) {

h1 {

font-size: 29vw;

}

}

// change list title font //

.user-items-list-item-container .list-item-content__title {

font-family: 'acumin-pro';

font-weight: 400;

}

/*CUSTOMIZE SQUARESPACE FORMS 7.1*/

//Styling the form fields

.sections .form-block .form-item input,

.sections .form-block .form-item textarea,

.sections .form-block .form-item select {

background: #fff !important;

border: none;

border-bottom: 2px solid black;

}

//Styling field titles

.sections .form-block .title {

font-size: 12px;

font-weight: bold;

color: #9CAF88;

letter-spacing: .05em;

text-transform: uppercase;

}

/*change logo on cart page*/

body#cart .header-title-logo img {

visibility: hidden;

}

body#cart .header-title-logo a {

background-image: url(https://images.squarespace-cdn.com/content/v1/66c2977f3688966081237b80/c1bd3eed-0308-4917-8466-99a7b15212ab/LOGO+TAGLINE_GREEN.png?format=1000w);

background-size: contain;

background-repeat: no-repeat;

}

/*change logo on shop page*/

body[class*="type-products"] header#header img {

content: url(https://images.squarespace-cdn.com/content/v1/66c2977f3688966081237b80/c1bd3eed-0308-4917-8466-99a7b15212ab/LOGO+TAGLINE_GREEN.png?format=1000w);

}

/*move product descriptor up on mobile view*/

/**

* Switch Order of Product

* Details using

* Simple Layout

**/

#page .ProductItem-details-checkout {

display: flex;

flex-direction: column;

/* Set Orders */

.ProductItem-details-excerpt-below-price, .ProductItem-details-excerpt-below-add-ons, .ProductItem-details-excerpt-below-add-to-cart {

order: 1;

}

.product-variants {

order: 2;

}

.ProductItem-product-price {

order: 1;

}

.ProductItem-quantity-add-to-cart {

order: 4;

}

.pdp-product-add-ons {

order: 5;

}

@media (max-width: 767px) {

.ProductItem-details-excerpt-below-price, .ProductItem-details-excerpt-below-add-ons, .ProductItem-details-excerpt-below-add-to-cart {

order: 1;

}

.product-variants {

order: 2;

}

.ProductItem-product-price {

order: 1;

}

.ProductItem-quantity-add-to-cart {

order: 2;

}

.pdp-product-add-ons {

order: 5;

}

}

}