﻿.h-root {
    padding: 0 1rem;
    border-bottom: 1px solid #d0d0d0;
}

    .h-root .h-container {
        background-color: white;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .h-root .h-logo-wrapper {
        order: 1;
        padding: 0.5rem 1rem 0.5rem 0;
        text-align: center;
    }

    .h-root .h-logo-link {
        color: #3a8700;
        font-family: Title;
        font-weight: 300;
        font-size: 1.75rem;
        line-height: 2rem;
        text-align: center;
        text-decoration: none;
    }

    .h-root .h-search-info-wrapper {
        order: 2;
        flex-grow: 1;
        flex-basis: auto;
    }

    .h-root .h-search-info-link {
        display: inline-block;
        padding: 0.5rem 1rem;
        color: #4a4a4a;
        text-decoration: none;
    }

        .h-root .h-search-info-link:hover {
            background-color: #FAFAFA;
        }

    .h-root .h-location-icon {
        font-size: 1rem;
        line-height: 1.25rem;
        vertical-align: middle;
        margin-right: 0.5rem;
    }

    .h-root .h-location-desc {
        font-size: 1rem;
        line-height: 1.5rem;
        vertical-align: middle;
    }

    .h-root .h-signin-account-wrapper {
        order: 3;
        text-align: right;
        position: relative;
    }

    .h-root .h-account-link {
        padding: 0.5rem 1rem;
        vertical-align: middle;
        color: #3a8700;
        font-size: 2rem;
        text-decoration: none;

        /* Fix CLS issue */
        display: inline-block;
        max-width: 3rem;
        overflow: hidden;
        white-space: nowrap;
    }

        .h-root .h-account-link:hover {
            background-color: #FAFAFA;
        }

    .h-root .h-account-dropdown {
        display: none;
        position: absolute;
        right: 0;
        width: 200px;
        background-color: white;
        box-shadow: 0 0 0.5rem rgba(0,0,0,0.2);
        z-index: 101;
    }

    .h-root .h-account-dropdown-canceller {
        display: none;
        position: fixed;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        z-index: 100;
        background-color: rgba(0,0,0,0.1);
    }

    .h-root .h-account-dropdown-link {
        display: block;
        font-size: 1rem;
        padding: 1rem;
        color: #4a4a4a;
        text-decoration: none;
        text-align: left;
    }

        .h-root .h-account-dropdown-link:hover {
            background-color: #FAFAFA;
        }

    .h-root .h-account-dropdown-link-separator {
        height: 0;
        border-bottom: 1px solid #d0d0d0;
    }

    .h-root .h-signin-link {
        padding: 0.5rem 0.5rem;
        margin: auto 0.5rem;
        color: #3a8700;
        border: 1.5px solid;
        border-radius: 0.25rem;
        font-size: 0.9rem;
        line-height: 1.25rem;
        text-decoration: none;
    }

        .h-root .h-signin-link:hover {
            background-color: #FAFAFA;
        }

    .h-root .h-cart-wrapper {
        order: 4;
        text-align: right;
    }

    .h-root .h-cart-link {
        position: relative;
        text-decoration: none;
        display: inline-block;
    }

        .h-root .h-cart-link:hover {
            background-color: #FAFAFA;
        }

        .h-root .h-cart-link[data-cart-icon-display-mode='hide'] {
            display: none;
        }

        .h-root .h-cart-link[data-cart-icon-display-mode='show-on-small-screen'] {
            display: none;
        }

        .h-root .h-cart-link[data-cart-icon-display-mode='show'] {
            display: inline-block;
        }

    .h-root .h-cart-icon {
        padding: 0.5rem 1rem;
        vertical-align: middle;
        color: #3a8700;
        font-size: 2rem;

        /* Fix CLS issue */
        max-width: 3rem;
        overflow: hidden;
        white-space: nowrap;
    }

    .h-root .h-cart-items {
        position: absolute;
        top: 0.25rem;
        right: 0.75rem;
        background-color: #EB0000;
        padding: 0.15rem 0.5rem;
        font-size: 0.75rem;
        font-weight: 500;
        border-radius: 100rem;
        color: white;
    }

    .h-root .h-search-ui-wrapper {
        order: 5;
        padding: 0.5rem 0;
        flex-grow: 1;
        flex-basis: 100%;
    }

@media (max-width: 768px) {
    .h-root {
        padding: 0;
    }

        .h-root .h-signin-account-wrapper {
            order: 1;
            text-align: left;
            flex-basis: 6rem;
        }

        .h-root .h-logo-wrapper {
            order: 2;
            flex-grow: 1;
            padding: 0.5rem 0;
        }

        .h-root .h-cart-wrapper {
            order: 3;
            flex-basis: 6rem;
        }

        .h-root .h-search-info-wrapper {
            order: 4;
            flex-basis: 100%;
            text-align: center;
        }

        .h-root .h-search-info-wrapper-2 {
            border-top: 1px solid #d0d0d0;
        }

        .h-root .h-account-dropdown {
            left: 0;
        }

        .h-root .h-cart-link[data-cart-icon-display-mode='show-on-small-screen'] {
            display: inline-block;
        }

        .h-root .h-search-ui-wrapper {
            padding: 0.5rem 1rem;
        }
}