@charset "utf-8";
/*
    -------------------------------------------------------------------
        Theme Name: Holland Mulch Inc.
        Theme URI: https://hollandmulch.com
        Author: Garden Center Solutions
        Author URI: https://gardencentersolutions.com
        Description: Custom woocommerce theme for Holland Mulch, based off of GCS Rose
        Tags: custom
        Version: 1.5
        Requires at least: 6.2
        Tested up to: 6.5
        Requires PHP: 7.4
    -------------------------------------------------------------------
*/

/* General Imports
-------------------------------------------------------------------*/
@import url('css/bootstrap.css');
@import url('css/aos.css');
@import url('wp-paginate.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap');


/* Root
-------------------------------------------------------------------*/
:root {
    --brand-deep: #4d281d;
    --brand-dark: #4d281d;
    --brand-medium: #86a308;
    --brand-light: #eaeaea;
    --brand-accent: #B25110;
    --brand-accent-alt: #ffca01;
    --white: #FFF;
    --black: #222;
    --brand-black: #222;
    --light-grey: #eaeaea;
    --pale-grey: #aaa;
    --med-grey: #888888;
    --dark-grey: #222;
    --ff-accent: "Tinos", serif;
    --ff-cursive: "Great Vibes", cursive;
    --ff-default: "Roboto", sans-serif;
    --woocommerce-page-link-color: #333;
    --woocommerce-primary-color: #763832;
    --woocommerce-secondary-color: #6c757d;
    --woocommerce-heading-color: #333;
    --woocommerce-body-color: #666;
    --woocommerce-button-color: #763832;
    --woocommerce-button-hover-color: #dbbea3;
    --woocommerce-button-text-color: #fff;
    --woocommerce-button-hover-text-color: #fff;
    --woocommerce-input-background: #fff;
    --woocommerce-input-border-color: #ced4da;
    --woocommerce-input-focus-border-color: #80bdff;
    --woocommerce-input-text-color: #495057;
    --woocommerce-input-placeholder-color: #6c757d;
    --woocommerce-border-color: #ced4da;
    --woocommerce-error-color: #dc3545;
}

/* HTML 
-------------------------------------------------------------------*/
html {
    font-size: 62.5%;
}

/* Body
-------------------------------------------------------------------*/
body {
    background: var(--white);
    color: var(--black);
    font-family: var(--ff-default);
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.5;
}

body.fixed-top-padding {
    padding-top: 100px;
}

/* Headings
-------------------------------------------------------------------*/
h1, h2, h3, h4 {
    font-family: var(--ff-accent);
    font-weight: 700;
    margin: 0;
    padding: 0;
    line-height: 1.25;
}

h1 {
    font-size: 5rem;
}

h2 {
    font-size: 4rem;
    margin: 0 0 .5em 0;
}

.bg-brand-image h2.no-accent {
    font-size: 4rem;
    margin: 0;
    font-weight: 600;
    font-style: italic;
    text-shadow: 4px 5px 9px rgba(0, 0, 0, 0.6);
}

h2.no-accent:after {
    display: none;
}


    @media screen and (max-width: 1199px) {
        h2 {
            font-size: 3.5rem;
        }

        h1 {
            font-size: 4.5rem;
        }
    }

    @media screen and (max-width: 991px) {
        h2 {
            font-size: 2.6rem;
        }
        h1 {
            font-size: 3.5rem;
        }
    }

h3 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.5;
}

h3 span {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.8rem;
    line-height: 1.5;
}

/* Forms & Buttons
-------------------------------------------------------------------*/
.form-control {
    border: 1px solid var(--med-grey);
    font-weight: 400;
    background-color: var(--white);
    color: var(--black);
    font-size: 1.6rem;
    border-radius: 1px;
    padding: 1em;
}

.form-control:focus, .form-select:focus, 
.form-control:active, .form-select:active,
input[type=checkbox]:focus {
    background-color: var(--light-grey);
    border-color: var(--brand-accent);
    outline: 2px solid var(--brand-accent);
    outline-offset: 2px;
    box-shadow: 0 0 0 0.25rem var(--brand-accent);
}

.form-select {
    border: 1px solid var(--med-grey);
    font-weight: 400;
    font-size: 1.6rem;
    padding: 1em;
}

.btn-custom, a.btn-custom:link, a.btn-custom:active, a.btn-custom:visited, a.btn-custom:focus {
    background: var(--brand-accent);
    border-color: var(--brand-accent);
    color: var(--white);
    font-size: 1.8rem;
    padding: .5em 1em;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
}

.btn-custom:hover, a.btn-custom:hover {
    color: var(--white);
    background: var(--dark-grey);
    border-color: var(--dark-grey);
}


.btn-brand-black, a.btn-brand-black:link, a.btn-brand-black:active, a.btn-brand-black:visited, a.btn-brand-black:focus {
    background: var(--brand-black);
    border-color: var(--brand-black);
    color: var(--white);
    font-size: 1.8rem;
    padding: .5em 1em;
    border-radius: 0;
    text-decoration: none;
}

.btn-brand-black:hover, a.btn-brand-black:hover {
    color: var(--white);
    background: var(--brand-deep);
    border-color: var(--brand-deep);
}


.grecaptcha-badge {
    display: none !important;
}

.learn-more, a.learn-more:link, a.learn-more:visited, a.learn-more:active {
    font-family: var(--ff-default);
    background: var(--brand-accent);
    color: var(--white);
    cursor: pointer;
    font-size: 1.5rem;
    padding: .5em .5em .4em .5em;
    border: 0;
    transition: all 0.5s;
    border-radius: 0px;
    width: auto;
    position: relative;
    text-decoration: none;
}

.learn-more::after, .btn-clear::after {
    color: var(--white);
    font: var(--fa-font-solid);
    content: "\f105";
    font-weight: 900;
    position: absolute;
    left: auto;
    top: 31%;
    right: 5%;
    bottom: 0;
    opacity: 0;
}

.learn-more:hover, a.learn-more:hover {
    background: var(--brand-accent);
    color: var(--white);
    transition: all 0.5s;
    border-radius: 0px;
    padding: .5em 2em .4em .5em;
}

.learn-more:hover::after, .btn-clear:hover::after {
    opacity: 1;
    transition: all 0.5s;
}

.btn-clear, a.btn-clear:link, a.btn-clear:active, a.btn-clear:visited, a.btn-clear:focus {
    font-family: var(--ff-default);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    font-size: 1.5rem;
    padding: .75em 1em .65em 1em;
    border: 1px solid var(--white);
    transition: all 0.5s;
    border-radius: 0px;
    width: auto;
    position: relative;
    text-decoration: none;
}

.btn-clear:hover, a.btn-clear:hover {
    background: rgba(255, 255, 255, .35);
    color: var(--white);
    transition: all 0.5s;
    border-radius: 0px;
    padding: .75em 3em .65em 1em;
}

.btn-search, .btn-search:hover, a.btn-search:link, a.btn-search:visited, a.btn-search:active {
    padding: 1em;
    font-size: 2rem;
    background: var(--brand-deep);
    color: #FFF;
}

.navigation-search {
    display: inline-block;
}
.navigation-cart {
    display: inline-block;
}


.navigation-search .btn-search, .navigation-search .btn-search:hover, .navigation-search a.btn-search:link, 
.navigation-search a.btn-search:visited, .navigation-search a.btn-search:active {
    padding: .1em .5em .1em .6em;
    height: 30px;
    font-size: 1.4rem;
    background: var(--brand-accent);
    color: var(--white);
}

.navigation-search .form-control {
    padding: .1em .5em;
    font-size: 1.4rem;
    background: var(--brand-light);
    border-color: var(--brand-light);
    color: var(--brand-black);
}

.form-adjust {
    width: 100%;
    max-width: 500px;
}

.form-adjust-mobile .form-control {
    padding: .5em;
}

.form-adjust-mobile .btn-search,
.form-adjust-mobile .btn-search:hover {
    padding: 1em;
    font-size: 1.5rem;
    background: var(--brand-deep);
    color: #FFF;
}

/* Padding Adjustments
-------------------------------------------------------------------*/
.py-largest {
    padding-top: 5em;
    padding-bottom: 5em;
}

@media screen and (max-width: 767px) {
    .py-largest {
        padding-top: 4em;
        padding-bottom: 4em;
    }
}

.w-95 {
    width: 95%;
}

/* Text Options
-------------------------------------------------------------------*/
a:link, a:visited, a:active, a:hover {
    color: var(--brand-deep);
    background: none;
    text-decoration: underline;
}

.text-disabled {
    color: #555;
}

.text-red {
    color: #880000;
}

.accent {
    color: var(--brand-accent);
}

strong, b, .bold, .strong {
    font-weight: 700;
}

.text-sm {
    font-size: 1.2rem;
    overflow-wrap: break-word;
}

.text-accent {
    color: var(--brand-accent);
}

.text-black {
    color: var(--black);
}

.intro p {
    font-size: 2.8rem;
    line-height: 1.5;
    font-family: var(--ff-accent) !important;
    font-weight: 400;
    font-style: italic;
}

    @media screen and (max-width: 1199px) {
        .intro-copy p {
            font-size: 2.6rem;
        }
    }

    @media screen and (max-width: 991px) {
        .intro-copy p {
            font-size: 2.4rem;
        }
    }

/* Images
-------------------------------------------------------------------*/
img.alignright {
    float: right;
    margin-left: 1em;
    margin-bottom: 1em;
}

img.alignleft {
    float: left;
    margin-right: 1em;
    margin-bottom: 1em;
}

.img-greyscale {
    filter: grayscale(1);
    transform: .3s ease-in-out;
}

.img-greyscale:hover {
    filter: grayscale(0);
    transform: .3s ease-in-out;
}

.page-gallery {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 225px;
    min-height: 225px;
    object-fit: cover;
}

img.product-preview {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 400px;
    min-height: 400px;
    object-fit: cover;
}

img.product-preview-main {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 250px;
    min-height: 250px;
    object-fit: cover;
}

    @media screen and (max-width: 1399px) {
        img.product-preview {min-height: 300px; max-height: 300px;}
        img.product-preview-main {min-height: 250px; max-height: 250px;}
    }
    @media screen and (max-width: 1199px) {
        img.product-preview {min-height: 250px; max-height: 250px;}
        img.product-preview-main {min-height: 200px; max-height: 200px;}
    }
    @media screen and (max-width: 991px) {
        img.product-preview {min-height: 200px; max-height: 200px;}
        img.product-preview-main {min-height: 150px; max-height: 150px;}
    } 
    @media screen and (max-width: 768px) {
        img.product-preview {min-height: 300px; max-height: 300px;}
        img.product-preview-main {min-height: 250px; max-height: 250px;}
    } 

/* Backgrounds
-------------------------------------------------------------------*/
.bg-white {background: var(--white);}
.bg-dark, .bg-black {background-color: var(--brand-black);}
.bg-brand-deep {background: var(--brand-deep); color: var(--white);}
.bg-brand-medium {background: var(--brand-medium);}
.bg-brand-light {background: var(--brand-light);}
.bg-brand-accent {background: var(--brand-accent);}
.bg-light-grey {background-color: var(--light-grey);}
.bg-pale-grey {background-color: var(--pale-grey);}
.bg-med-grey {background-color: var(--med-grey);}
.bg-dark-grey {background-color: var(--dark-grey); color: var(--white);}
.bg-brand-image {background-repeat: no-repeat; background-color: var(--white); background-position: center center; background-size: cover;}


/* Hire Us
-------------------------------------------------------------------*/
.bg-hireus {
    background-image: url('images/bg-hireus.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: var(--white);
    padding-top: 6em;
    padding-bottom: 6em;
}

.bg-hireus h3 {
    font-size: 3rem;
    margin: 0 0 .5em 0;
}

.bg-hireus p {
    margin: 0 0 1em 0;
    padding: 0 0 .5em 0;
    font-size: 1.8rem;
    line-height: 1.25;
}


/* Testimonials
-------------------------------------------------------------------*/
.testimonial {
    background:
        url('images/icon-quote.png') top right no-repeat,
        rgba(255, 255, 255, 0.85);    
}

/* Top Bar
-------------------------------------------------------------------*/
.top-bar {
    font-size: 1.6rem;
    color: var(--white);
}

.top-bar a:link, .top-bar a:visited, .top-bar a:active, .top-bar a:focus {
    color: var(--white);
    text-decoration: none;
    background: none;
}

.socials a {
    text-decoration: none;
    margin-left: 1em;
}

    @media screen and (max-width: 991px) {
        .socials-mobile {
            text-align: center;
            font-size: 2rem;
        }
        .socials-mobile a {
            color: var(--white);
            text-decoration: none;
        }
    }

/* Navigation
-------------------------------------------------------------------*/
.subnav-important {
    background: var(--brand-light);
    text-align: center;
    font-weight: bold;
    font-size: 1.4rem;
    padding: 1em;
}

.navbar {
    font-size: 1.4rem;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    padding: 1em 0;
}

.navbar-toggler {
    background-color: var(--brand-light);
}

.navbar-toggler-icon {
    width: 2em;
    height: 2em;
}

.navbar .nav-item a.nav-link {
    padding-left: 1em;
    padding-right: 1em;
    color: var(--black);
    text-decoration: none;
}

.navbar .nav-item a.nav-link:hover {
    color: var(--brand-accent);
}

.navbar-brand img {
    height: 100%;
    max-height: 90px;
    transition: .3s ease-in-out;
}

.navbar.shrink-it .navbar-brand img {
    max-height: 65px;
}

@media screen and (max-width: 1199px) {
    .navbar-brand img {
        max-height: 65px;
    }

    .navbar .nav-item a.nav-link {
        padding-left: .5em;
        padding-right: .5em;
    }
}

@media screen and (max-width: 991px) {
    .navbar-brand img {
        height: 100%;
        max-height: 92px;
    }

    .navbar-nav {
        padding: 1em 0;
    }

    .navbar .nav-item a.nav-link {
        padding-left: 0;
        padding-right: 0;
    }
}

@media screen and (max-width: 575px) {
    .navbar-brand img, .navbar.shrink-it .navbar-brand img {
        max-height: 50px;
    }
}

.navbar .dropdown-menu {
    font-size: 1.4rem;
    text-transform: none;
    font-weight: 600;
    line-height: 1.25;
}

.navbar .dropdown-menu .dropdown-item {
    padding: .75em;
    text-decoration: none;
}

.dropdown-item.active,
.dropdown-item:active {
    color: var(--black);
    text-decoration: none;
    background-color: var(--white);
}

.dropdown-item.active:hover,
.dropdown-item:active:hover,
.dropdown-item:hover {
    color: var(--brand-accent);
    text-decoration: none;
    background-color: var(--white);
}

/* Mobile Menu
-------------------------------------------------------------------*/
.offcanvas {
    position: fixed;
    bottom: 0;
    z-index: var(--bs-offcanvas-zindex);
    display: flex;
    flex-direction: column;
    max-width: 100%;
    color: var(--black);
    visibility: hidden;
    background-color: var(--white);
    background-clip: padding-box;
    outline: 0;
    transition: transform 0.3s ease-in-out;
}

.mobile-menu {
    list-style: none;
    padding: 0 1em;
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
}

.mobile-menu li {
    padding: .5em 0;
    border-bottom: 1px solid var(--brand-medium);
}

.mobile-menu li ul {
    padding: .5em 1em 0 1em;
    list-style: none;
}

.mobile-menu li ul li {
    border-bottom: 0;
}

.mobile-menu li a, .navbar-content a {
    color: var(--black);
    text-decoration: none;
}

.navbar-content {
    padding: 0 1em;
    font-size: 1.5rem;
}


/* Hero [Homepage]
-------------------------------------------------------------------*/
.hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 120px;
    height: 550px;
}

@media screen and (max-width: 1199px) {
    .hero-section {
        height: 500px;
    }
}

@media screen and (max-width: 767px) {
    .hero-section {
        height: 400px;
    }
}

@media screen and (max-width: 575px) {
    .hero-section {
        height: 350px;
    }
}

.hero-section .section-overlay {
    z-index: 2;
    opacity: 0.45;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    height: 100%;
    padding-bottom: 50px;
}

.hero-section .container .row {
    height: 100%;
}

.hero-section h2 {
    color: var(--white);
    font-size: 7.3rem;
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: .9;
    text-shadow: 4px 5px 9px rgba(0, 0, 0, 0.6);
}

.hero-section h2 span {
    font-family: var(--ff-accent);
    font-style: italic;
    font-size: 5.3rem;
}

.custom-carousel {
    position: relative;
}

.custom-carousel .tagline {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    z-index: 9;
    padding: 2em 0;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6194852941176471) 0%, rgba(255, 255, 255, 0) 100%);
}

.custom-carousel .tagline-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    color: var(--white);
}

#main-banner h2 {
    color: var(--white);
    font-size: 7.3rem;
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0.9;
    font-weight: 400;
    text-shadow: 4px 5px 9px rgba(0, 0, 0, 0.8);
}

#main-banner h2 span {
    font-family: var(--ff-cursive);
    font-style: italic;
}

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

    .hero-section h2,
    #main-banner h2 {
        font-size: 7.0rem;
    }
}

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

    .hero-section h2,
    #main-banner h2 {
        font-size: 6.8rem;
    }
}

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

    .hero-section h2,
    #main-banner h2 {
        font-size: 5.5rem;
    }
}

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

    .hero-section h2,
    #main-banner h2 {
        font-size: 5rem;
    }

    .custom-carousel .tagline-container {
        width: 95%;
    }
}

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

    .hero-section h2,
    #main-banner h2 {
        font-size: 3rem;
    }

    .custom-carousel .tagline {
        padding: 1em 0;
    }
}

/* Video
-------------------------------------------------------------------*/
.video-wrap {
    z-index: -100;
}

.custom-video {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* Homepage
-------------------------------------------------------------------*/
.hem-box h3 {
    font-size: 3rem;
    padding: 0;
    line-height: 1;
    margin: .75em 0;
}

.hem-box p {
    margin: 0 0 1em 0;
    padding: 0;
}

@media screen and (max-width: 991px) {
    .hem-box h3 {
        font-size: 2rem;
    }
}

/* Default Pages
-------------------------------------------------------------------*/
.bg-page-banner {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    padding: 6em 0;
    z-index: 1;
}

.bg-page-banner .container {
    z-index: 15 !important;
}

.bg-page-banner h1 {
    z-index: 10;
    color: #FFF;
    font-size: 6rem;
    text-align: center;
}

.bg-page-no-banner h1 {
    z-index: 10;
    color: #000;
    font-size: 6rem;
    text-align: center;
}

.bg-page-banner h1.has-accent,
.bg-page-banner h1.page-title {
    color: var(--white);
    background-color: rgba(0, 0, 0, .5);
    margin: 0 auto;
    padding: .5em 1em;
    font-size: 6rem;
    display: inline-block;
    line-height: 1;
    text-shadow: 3px 3px 3px var(--black);
}

@media screen and (max-width: 991px) {
    .bg-page-banner h1, .bg-page-no-banner h1 {
        font-size: 4rem;
    }
}

/* Map Embed
-------------------------------------------------------------------*/
.map-embed p {
    padding: 0;
    margin: 0;
}

.map-embed iframe {
    width: 100%;
    height: 250px;
    margin: 0;
    padding: 0;
}

.map-embed-footer iframe {
    width: 100%;
    height: 200px;
    margin: 0;
    padding: 0;
}


/* Product Pages
-------------------------------------------------------------------*/
.wpc-filter-title {
    font-weight: bold;
    font-size: 2.5rem;
    font-family: var(--ff-accent);
    margin: 0 !important;
}

.wpc-filters-range-inputs .ui-slider-horizontal .ui-slider-range {
    background-color: var(--brand-medium) !important;
}


.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt {
    background-color: var(--brand-accent) !important;
}


.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price,
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price, span.price {
    color: var(--brand-medium) !important;
}

/* Ensure WooCommerce inputs match Bootstrap 5's .form-control */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    outline: 0;
    line-height: normal;
    padding: 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    font-size: 2rem;
    background-color: #fff;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

/* Focus state styling */
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.25);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    border: 1px solid var(--brand-medium);
    background-color: var(--brand-medium);
    color: var(--brand-black);
    display: inline-block;
    position: relative;
    z-index: 0;
    border-radius: 4px 4px 0 0;
    margin: 0 -5px;
    padding: 0 1em;
}

.product-main-id .product_meta {
    font-size: 1.3rem;
}

.product-main-id .product_meta .sku_wrapper, .product-main-id .product_meta .posted_in {display: block;}

.sku_wrapper, .posted_in {font-weight: bold;}
.sku_wrapper .sku, .posted_in a {font-weight: normal;}


.breadcrumb-trail  {
    font-size: 1rem;
    margin-bottom: 1em;
    vertical-align: middle;
}

.breadcrumbs a, .breadcrumb-trail .current-item {
    text-decoration: none;
    color: var(--brand-black);
    font-size: 1.4rem;
}

.breadcrumbs .separator {
    margin: 0 5px;
}

/* WooCommerce Storefront Notice to Bottom */
.woocommerce-store-notice {
    position: fixed !important;
    bottom: 0 !important;
    left: 0;
    right: 0;
    top: auto !important;
    width: 100%;
    height: 60px;
    z-index: 9999;
    padding: 1em !important;
    /* Ensure it's above other elements */
    margin: 0;
    background: var(--brand-accent) !important;
}

/* Soil Mulch Calc
-------------------------------------------------------------------*/
label.clabel, span.label {font-weight: bold; line-height: 1.5;}
.calculator-wrap {width: 100%; max-width: 100%; margin: 0 auto;}
.bg-calc-accent {background: var(--white); border: 1px solid var(--med-grey);}
.bg-calc-accent-two {background: var(--white); border: 1px solid var(--med-grey);}
.calcvalue {font-size: 28px; vertical-align: middle;}
.btn-calculator, .btn-calculator:hover {color: #FFF; background-color: var(--brand-accent); border-color: var(--brand-accent); font-size: 1.8rem; height: 57px;}

/* Articles
-------------------------------------------------------------------*/
.landing-article .article-image {
    width: 100%;
    height: 250px;
}

.landing-article .article-title {
    width: 100%;
    padding-top: 1em;
}

.landing-article .article-readmore {
    width: 100%;
    text-align: left;
    padding-top: 1em;
}

.blog-thumbnail {
    width: 100%;
    height: 100%;
    max-height: 250px;
    object-fit: cover;
}

.btn-category, .btn-category:hover,
a.btn-category:link, a.btn-category:active, a.btn-category:focus, a.btn-category:hover, a.btn-category:visited {
    font-size: 1.2rem;
    font-weight: 400;
    border-color: var(--brand-light);
    background-color: var(--brand-light);
    color: var(--black);
    border-radius: 5px;
    text-decoration: none;
}

.article-meta {
    font-size: 1.3rem;
}

.article-title h3 {
    font-size: 3rem;
    text-decoration: none;
}

.article-title a {
    color: var(--black);
    text-decoration: none;
}

.sub_content {
    float: left;
    width: 70%;
}

.img_content {
    float: right;
    width: 25%;
}

.img_content img {
    width: 100%;
    height: 100%;
    max-height: 300px;
    object-fit: cover;
    background-color: #EEE;
}

    @media screen and (max-width: 991px) {
        .sub_content, .img_content {
            float: none;
            width: 100%;
        }

        .img_content img {
            float: left;
            width: 32%;
            height: 100%;
            max-height: 200px;
            margin-right: 1%;
        }
    }

/* Footer
-------------------------------------------------------------------*/
footer {
    color: var(--white);
    font-size: 1.3rem;
}

footer img {
    max-height: 40px;
}

.footer p {
    padding: 0;
    margin: 0;
}

footer a, footer a:link, footer a:active, footer a:visited {
    color: var(--white);
    text-decoration: none;
}

/* Modal
-------------------------------------------------------------------*/
.modal-header {
    background: var(--brand-medium);
    color: var(--white);
    border-radius: 0;
    border-bottom: 0;
}

.modal-header h5 {
    font-size: 2rem;
    font-weight: bold;
    font-family: var(--ff-accent);
}

.modal-content {
    border-radius: 0;
    padding-bottom: 1em;
}

.modal-body {
    font-size: 1.8rem;
}


/* WooCommerce Overrides
-------------------------------------------------------------------*/
.woocommerce-account .addresses .title .edit {
    float: right;
    font-size: 13px;
    display: block;
    padding: .5em .75em;
    background: var(--brand-accent);
    color: var(--white);
    border-radius: .25em;
    text-decoration: none;
}

.woocommerce-account .addresses .title .edit:hover {
    background: var(--brand-black);
}

.woocommerce-Address-title,
.woocommerce-MyAccount-navigation-link {
    text-transform: capitalize;
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

li.woocommerce-MyAccount-navigation-link {
    padding-bottom: .25em;
}

li.woocommerce-MyAccount-navigation-link a {
    display: block;
    padding: 1em;
    border: 1px solid var(--med-grey);
    background-color: var(--light-grey);
    color: var(--brand-black);
    text-decoration: none;
    font-weight: 600;
}

li.woocommerce-MyAccount-navigation-link.is-active a {
    display: block;
    padding: 1em;
    border: 1px solid var(--med-grey);
    background-color: var(--brand-accent);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
    background-color: var(--light-grey) !important;
}

.woocommerce-info {
    border-top-color: var(--brand-accent) !important;
}

.woocommerce-info::before {
    color: var(--brand-accent) !important;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button {
    font-size: 1.8rem;
    color: var(--white) !important;
    background-color: var(--brand-accent) !important;
}


/* ADA Compliance
-------------------------------------------------------------------*/
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background-color: #000;
    color: #fff;
    padding: 8px 16px;
    z-index: 100;
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
    transition: top 0.3s ease;
}

.skip-to-content:focus {
    top: 10px;
}

/* Back to Top
-------------------------------------------------------------------*/
.scrolltop {
    display: none;
    width: 100%;
    margin: 0 auto;
    position: fixed;
    right: 1%;
    bottom: 0%;
    z-index: 1070;
}

@media screen and (max-width: 768px) {
    .scrolltop {
        right: 0%;
    }
}

@media screen and (max-width: 575px) {
    .scrolltop {
        display: none !important;
    }
}

.scroll {
    position: absolute;
    right: 0;
    bottom: 70px;
    background: var(--black);
    border-radius: 50%;
    text-align: center;
    margin: 0 0 0 0;
    cursor: pointer;
    transition: 0.5s;
    -moz-transition: 0.5s;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    width: 40px;
    height: 40px;
    color: #FFF;
    padding-top: 8px;
}

.scroll:hover {
    background: var(--brand-medium);
}

.scroll .fas {
    font-size: 20px;
    transition: 0.5s;
    -moz-transition: 0.5s;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
}