/* Global Elements */
h1,
.h1 {
    font-size: 2rem;
}

h2,
.h2 {
    font-size: 1.75rem;
}

h3,
.h3 {
    font-size: 1.5rem;
}

h4,
.h4 {
    font-size: 1.2rem;
}

h5,
.h5 {
    font-size: 0.9rem;
}

h6,
.h6 {
    font-size: 0.75rem;
}

a {
    text-decoration: none;
}

img {
    height: auto;
}

details > summary::-webkit-details-marker {
  display: none;
}

header {
    background: #FFFFFF;
    padding: 0;
}

header.no-links {
    border-bottom: 1px solid #DDDDDD;
}

header > .container {
    padding: 0;
}

.logo a {
    display: block;
}

.secondaryNav__listItem {
    font-size: 14px;
}

.error-msg {
    color: #A94442;
}

.page-checkout .form-group.has-error .error-msg,
.page-paypalreview .form-group.has-error .error-msg {
    font-size: 12px;
    padding: 0 0 5px 10px;
}

/* Cookie Consent Banner */
#cc-banner {
    background: #FFFFFF;
    bottom: 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    left: 0;
    opacity: 0;
    overflow: hidden;
    padding: 15px;
    position: fixed;
    right: 0;
    transition: opacity 0.3s linear, visibility 0s;
    z-index: 9999999;
    visibility: hidden;
}

#cc-banner.show {
    opacity: 1;
    visibility: visible;
}

#cc-banner-inner {
    margin: 0 auto;
    max-width: 1920px;
}

@media (max-width: 992px) {
    .secondaryNav__listItem {
        border: 1px solid rgba(255, 255, 255, 0.4);
        background: rgba(255, 255, 255, .1);
    }
}

.scroll-x::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, .2);
  border-radius: 0 4px 4px 0;
}

.scroll-x::-webkit-scrollbar {
  -webkit-appearance: none;
  height: 8px;
}

.scroll-x::-webkit-scrollbar-thumb {
  border-radius: 7px;
  background: rgba(0, 0, 0, .4);
}

.site-tools-mobile [class^=col] {
    border-left: 1px solid #EEEEEE;
}

.dialog .main {
    min-height: auto;
    padding: 0;
}

.ratings .far.fa-star,
.ratings.no-ratings .fa,
.ratings.no-ratings .far,
.ratings.no-ratings .fas {
    color: #DDDDDD;
}

/* Text Utilities */

.letter-spacing-1 {
    letter-spacing: 0.05em;
}

.letter-spacing-2 {
    letter-spacing: 0.1em;
}

.letter-spacing-3 {
    letter-spacing: 0.2em;
}

.letter-spacing-4 {
    letter-spacing: 0.4em;
}

.letter-spacing-5 {
    letter-spacing: 0.8em;
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.text-truncate.expand {
    white-space: normal;
}

.text-decoration-underline {
    text-decoration: underline !important;
}

/* Base font sizes */
.fs-1 { font-size: 2.5rem !important; }
.fs-2 { font-size: 2rem !important; }
.fs-3 { font-size: 1.75rem !important; }
.fs-4 { font-size: 1.5rem !important; }
.fs-5 { font-size: 1.25rem !important; }
.fs-6 { font-size: 1rem !important; }

/* Responsive font sizes */
@media (min-width: 576px) {
  .fs-sm-1 { font-size: 2.5rem !important; }
  .fs-sm-2 { font-size: 2rem !important; }
  .fs-sm-3 { font-size: 1.75rem !important; }
  .fs-sm-4 { font-size: 1.5rem !important; }
  .fs-sm-5 { font-size: 1.25rem !important; }
  .fs-sm-6 { font-size: 1rem !important; }
}

@media (min-width: 768px) {
  .fs-md-1 { font-size: 2.5rem !important; }
  .fs-md-2 { font-size: 2rem !important; }
  .fs-md-3 { font-size: 1.75rem !important; }
  .fs-md-4 { font-size: 1.5rem !important; }
  .fs-md-5 { font-size: 1.25rem !important; }
  .fs-md-6 { font-size: 1rem !important; }
}

@media (min-width: 992px) {
  .fs-lg-1 { font-size: 2.5rem !important; }
  .fs-lg-2 { font-size: 2rem !important; }
  .fs-lg-3 { font-size: 1.75rem !important; }
  .fs-lg-4 { font-size: 1.5rem !important; }
  .fs-lg-5 { font-size: 1.25rem !important; }
  .fs-lg-6 { font-size: 1rem !important; }
}

@media (min-width: 1200px) {
  .fs-xl-1 { font-size: 2.5rem !important; }
  .fs-xl-2 { font-size: 2rem !important; }
  .fs-xl-3 { font-size: 1.75rem !important; }
  .fs-xl-4 { font-size: 1.5rem !important; }
  .fs-xl-5 { font-size: 1.25rem !important; }
  .fs-xl-6 { font-size: 1rem !important; }
}

@media (min-width: 1400px) {
  .fs-xxl-1 { font-size: 2.5rem !important; }
  .fs-xxl-2 { font-size: 2rem !important; }
  .fs-xxl-3 { font-size: 1.75rem !important; }
  .fs-xxl-4 { font-size: 1.5rem !important; }
  .fs-xxl-5 { font-size: 1.25rem !important; }
  .fs-xxl-6 { font-size: 1rem !important; }
}


/* Positioning Utilities  */

.top-0 {
    top: 0;
}

.right-0 {
    right: 0;
}

.bottom-0 {
    bottom: 0;
}

.left-0 {
    left: 0;
}

.gap-1 {
    gap: 0.25rem;
}
.gap-2 {
    gap: 0.50rem;
}
.gap-3 {
    gap: 1.00rem;
}
.gap-4 {
    gap: 1.50rem;
}

/* Buttons */

.btn {
    border-radius: 3px;
}

.btn.disabled,
.btn:disabled {
    cursor: not-allowed;
    opacity: 0.35;
}

.overflow-x-auto {
    overflow-x: auto;
}

/* Bursts */

.product-burst {
    background-color: #000000;
    color: #FFFFFF;
    display: inline-block;
    font-size: 13px;
    font-weight: bold;
    line-height: 1;
    padding: 10px;
    position: absolute;
    z-index: 1;
}

.product-info .product-burst {
    position: unset;
}

@media (max-width: 359px) {
    .productsingle .product-burst {
        font-size: 10px;
        padding: 10px 5px;
    }
}

.alertBannerPlaceholder {
    height: 90px;
}
@media (min-width: 575px) {
  .alertBannerPlaceholder {
        height: 58px;
    }
}

@media (min-width: 767px) {
    .alertBannerPlaceholder {
        height: 58px;
    }
}

@media (min-width: 991px) {
    .alertBannerPlaceholder {
        height: 42px;
    }
}

@media (min-width: 1199px) {
    .alertBannerPlaceholder {
        height: 42px;
    }
}

@media (min-width: 1399px) {
    .alertBannerPlaceholder {
        height: 42px;
    }
}

/* Misc */

.pac-container {
    z-index: 99999;
}

.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

a.skip-main {
    background-color: #000000;
    left: -999px;
    position: absolute;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: -999;
    color: #FFFFFF !important;
}

a.skip-main:focus,
a.skip-main:active {
    left: auto;
    top: auto;
    width: 30%;
    height: auto;
    overflow: auto;
    margin: 10px 35%;
    padding: 5px;
    border-radius: 15px;
    text-align: center;
    font-size: 1.2em;
    z-index: 999;
}

span.sup {
    vertical-align: super;
    font-size: small;
}

.main {
    margin-top: 20px;
}

/* Cards */

.card,
.card-header,
.card-header:first-child,
.card-body {
    border-radius: 0;
}

.card-header h5,
.card-header .h5 {
    display: inline;
    font-size: 1rem;
    line-height: 1;
    margin: 0;
}

/* List Groups */

a.list-group-item,
.list-group-item {
    color: #333333;
}

.list-group-horizontal {
    -ms-flex-direction: row;
    flex-direction: row;
}

.list-group-horizontal > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0;
}

.list-group-horizontal > .list-group-item {
    height: 100%;
}

.list-group-horizontal > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
}

.list-group-horizontal > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0;
}

/* Forms */

.form-control {
    border-color: #CCCCCC;
}

.input-group-prepend .input-group-text,
.input-group-append .input-group-text {
    font-size: 0.85rem;
}

.input-group-prepend .input-group-text label,
.input-group-append .input-group-text label {
    margin: 0;
}

.input-group-prepend .input-group-text input + label,
.input-group-append .input-group-text input + label {
    padding-left: 3px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

/* Tables */

caption {
    caption-side: unset;
    color: inherit;
}

.table th {
    font-size: 16px;
}

.table thead th {
    background-color: inherit;
}

.table td {
    font-size: 14px;
    color: #333333;
}

.table-bordered > tbody > tr > td {
    border-color: #E0DED9;
}

.table-bordered > tbody > tr > th,
.table-bordered > thead > tr > th {
    border-right: 1px solid #FFFFFF;
    border-color: #E0DED9;
}

.table-bordered > thead > tr > th:last-child {
    border-color: #E0DED9;
}

.table th:first-child,
.table td:first-child {
    padding-left: 10px;
}

.table th:last-child,
.table td:last-child {
    padding-right: 10px;
}

/* Slick Slider */

.slick-prev,
.slick-next {
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    z-index: 1;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    color: inherit;
}

.slick-prev:before,
.slick-next:before {
    color: #FFFFFF;
    opacity: 1;
}

.slick-prev {
    left: 0;
}

.slick-next {
    right: 0;
}

.slick-disabled {
    cursor: not-allowed;
}

/* Header */

.site-search {
    background: none;
    position: relative;
}

.site-search .form-group {
    margin-bottom: 0;
}

/* Kalio Search Autocomplete */
.search-suggestions {
    background-color: #FFFFFF;
    display: block;
    left: 0;
    max-height: 460px;
    overflow: auto;
    position: absolute;
    width: 100%;
    z-index: 2000;
}

.search-suggestions-product-inner {
    border: 1px solid #EEEEEE;
    transition: all 0.25s;
}

.search-suggestions-product-inner:hover {
    box-shadow: rgba(0, 0, 0, 0.15) 0 0 8px 0;
    text-decoration: none;
    transform: scale(1.03);
}

.search-suggestions-product-name {
    height: 68px;
    overflow: hidden;
}

.has-menu:hover {
    background: transparent;
}

#floating-cart {
    right: 0;
}

.cart-total-items {
    background: #333333;
    border-radius: 50%;
    font-size: 9px;
    line-height: 16px;
    height: 16px;
    right: -6px;
    top: -4px;
    width: 16px;
}

.btn-image-search {
    align-items: center;
    display: flex;
    padding: 10px;
}

/* Main Navigation */

.main-header.nav-is-visible,
.main.nav-is-visible,
.mega-overlay.is-visible {
    -webkit-transform: translateX(-80%);
    -ms-transform: translateX(-80%);
    transform: translateX(-80%);
}

.primary-nav ul .go-back {
    background: #CCCCCC;
}

.primary-nav ul .go-back > button {
    font-weight: bold;
    text-align: center;
}

ul.primary-nav {
    background: #EEEEEE;
    width: 80%;
}

ul.primary-nav ul {
    background: #EEEEEE;
    width: 100%;
}

.primary-nav .primary-nav-item a,
.primary-nav .primary-nav-item button {
    border-radius: 0;
    color: #333333;
}

.primary-nav .primary-nav-item .secondary-nav {
    border: none;
}

.primary-nav-btns {
    border-bottom: 1px solid #3A3F40;
}

.primary-nav-btns a.primary-nav-btn {
    font-size: 0.875rem;
    height: auto;
    line-height: 1.8;
    padding: 0.25rem 0.5rem;
    text-align: center;
}

/* Breadcrumb */

.breadcrumb {
    background: none;
    margin-bottom: 20px;
}

/* Footer */
.footer-static .social-icons {
    font-size: 22px;
}

.footer-static .social-icons .fab {
    color: inherit;
}

.footer-static .social-icons a {
    color: #707070;
}

.footer-links {
    margin: 0;
}

.footer-links ul {
    background: transparent;
    display: block;
}

.footer-links a,
.footer-links button {
    border: none;
    color: #666666;
    padding: 3px 0;
}

.footer-legal {
    border-top: 1px solid #DDDDDD;
}

.brandbar {
    gap: 3rem;
    overflow-x: auto;
}
.brandbar > div {
    flex-shrink: 0;
}

/* Category page */

.page-category .main {
    margin-top: 0;
    padding: 0;
}

.category-bg-image {
    background-repeat: no-repeat;
    background-size: cover;
    height: 175px;
    margin: 0 auto;
    max-width: 1400px;
    position: relative;
}

.page-category .breadcrumb {
    margin-top: 10px;
}

.page-category .breadcrumb-overlay {
    bottom: 20px;
    color: #FFFFFF;
    position: absolute;
}

.page-category .breadcrumb {
    font-size: 14px;
    margin-bottom: 0;
}

.page-category .breadcrumb-overlay a {
    color: #FFFFFF;
}

.page-category .breadcrumb-item + .breadcrumb-item:before {
    display: none;
}

.page-category .breadcrumb-item:after {
    color: #999999;
    content: "\00BB";
    padding-left: 0.5rem;
}

.page-category .breadcrumb-overlay .breadcrumb-item:after {
    color: #FFFFFF;
}

.page-category h1 {
    font-size: 28px;
    font-weight: bold;
}

.featured-subcategories {
    font-size: 14px;
}

.featured-subcategories .list-inline-item:not(:last-child) {
    margin-right: 25px;
}

.shop-by-subcat-grid-item {
    background-color: #FFFFFF;
    border: 1px solid #DDDDDD;
    color: #333333;
    display: block;
    text-align: center;
}

.shop-by-subcat-grid-item:hover {
    text-decoration: none;
}

.shop-by-subcat-grid-item .category-name {
    display: block;
    font-size: 16px;
    height: 40px;
    line-height: 20px;
    margin-top: 15px;
    overflow: hidden;
}

.card-browse .card-header {
    font-size: 14px;
    font-weight: bold;
}

#children-nav > ul,
#children-nav-mobile > ul {
    max-height: 125px;
    overflow: auto;
}

#children-nav > ul > li,
#children-nav-mobile > ul > li {
    padding: 0.25rem 1.25rem;
}

.card-facet-title {
    border: none;
    font-weight: bold;
}

#AJAXFacetPanel .list-group {
    border-top: 1px solid rgba(0, 0, 0, 0.125);
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    max-height: 230px;
    overflow: auto;
}

#AJAXFacetPanel .list-group-item {
    cursor: pointer;
}

#AJAXSelectedFacets .clear-all, 
#AJAXSelectedFacets_Mobile .clear-all,
#AJAXFacetPanel .clear-all{
    font-size: 12px;
    padding: 1px 10px;
}

.product-grid-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #FFFFFF;
    overflow: hidden;
    text-align: left;
    width: 100%;
}

.product-grid-item a {
    color: #333333;
}

.product-grid-item .product-name {
    display: block;
    font-size: 14px;
    font-weight: bold;
    line-height: 18px;
    height: 54px;
    margin-top: 25px;
    overflow: hidden;
}

.product-grid-item .ratings {
    margin: 20px 0;
}

.product-grid-item .price {
    font-size: 18px;
    font-weight: bold;
    height: auto;
    min-height: 25px;
    line-height: 20px;
    margin: 0;
}

.product-grid-item .price-uom {
    display: none;
}

.product-grid-item .in-stores-only {
    height: 31px;
}

.product-grid-item .product-burst {
    display: block;
    left: -10px;
    padding: 5px 20px;
    position: absolute;
    top: 16px;
    transform: rotate(-7deg);
    width: 110%;
}

.productsingle {
    display: flex;
}

/* Paging Controls */

.product-grid-sorting .btn {
    font-size: 12px;
}

/* Nav Tabs */

.nav-item + .nav-item {
    margin-left: 4px;
}

/* Trait Selector Buttons */

.attribute-color .btn {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    position: relative;
    margin-bottom: 5px;
    border: 2px solid rgba(221, 221, 221, 0.5);
}

.attribute-color .btn-secondary.active:after,
.attribute-color .btn-secondary.active:hover:after {
    content: "\f00c";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 1px;
    left: 5px;
}

.attribute-group input[type=radio] {
    display: none;
}

/* Home page */

.page-default .main {
    margin-top: 0;
    padding: 0;
}

#home-brands {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.hero-container {
    margin: 0 auto;
    max-width: 1920px;
}

#hero-slider .hero-slide:not(:first-child),
#hero-mobile-slider .hero-mobile-slide:not(:first-child) {
    visibility: hidden;
}

#hero-slider.slick-initialized .hero-slide:not(:first-child),
#hero-mobile-slider.slick-initialized .hero-mobile-slide:not(:first-child) {
    visibility: visible;
}

#hero-mobile-slider .slick-prev,
#hero-mobile-slider .slick-next {
    top: 35%;
    transform: translateY(-35%);
    width: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}

#hero-mobile-slider img,
#hero-slider img {
    height: auto;
    width: 100%;
}

.hero-caption {
    bottom: 50px;
    color: #FFFFFF;
    text-align: center;
    text-shadow: 0 0 6px #666666;
    width: 100%;
}

.home-featured-category-caption {
    background-color: rgb(0, 0, 0);
    border-radius: 0 0 10px 10px;
    bottom: 0;
    color: #FFFFFF;
    left: 0;
    padding: 10px 20px;
    transition: all 0.3s;
    width: 100%;
    z-index: 1;
}

.home-featured-category .fa {
    opacity: 0;
    transition: opacity 0.3s;
}

.home-featured-category img {
    border-radius: 10px 10px 0 0;
    transition: 0.3s opacity;
}

.home-featured-category:hover .fa {
    opacity: 1;
}

.home-featured-category:hover img {
    opacity: 0.8;
}

#home-brands-container {
    background-color: #FBFBFB;
    padding-bottom: 70px;
}

.home-brand-slider-overlay {
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 1;
}

.home-brand-slider-overlay-left {
    left: -1px;
}

.home-brand-slider-overlay-right {
    right: -1px;
}

#home-brands-slider .slick-track {
    display: flex;
}

#home-brands-slider .slick-slide {
    align-items: center;
    display: flex;
    height: auto;
    padding: 0 15px;
}

#home-brands-slider .slick-slide > a {
    margin: 0 auto;
}

#home-brands-slider .slick-slide > a img {
    transition: all 0.2s;
}

#home-brands-slider .slick-slide > a:hover img {
    opacity: 0.7;
}

#home-brands-slider .slick-prev {
    left: 32%;
}

#home-brands-slider .slick-next {
    right: 32%;
}

#home-brands-slider .slick-prev,
#home-brands-slider .slick-next {
    background: transparent;
    bottom: -50px;
    height: auto;
    top: auto;
    transform: translateY(0);
    width: auto;
}

#home-brands-slider .slick-prev:before,
#home-brands-slider .slick-next:before {
    font-size: 40px;
}

#home-whats-new a img {
    transition: all 0.4s;
}

#home-whats-new a:hover img {
    transform: scale(1.05);
}

/* Cart Page */

.cart-group-header {
    background-color: #FFFFFF;
    color: #666666;
    font-weight: bold;
}

.cart-group-item input[type=number] {
    margin: 0 auto;
    max-width: 50px;
}

.page-cart .main {
    margin-top: 0;
}

.page-cart .small a {text-decoration: underline;}

/* Checkout Page */

#checkout .form-group {
    background: #FFFFFF;
    border: 1px solid #CCCCCC;
    position: relative;
}

#checkout .form-group label:not(.exclude) {
    color: #666666;
    display: block;
    font-size: 11px;
    font-weight: bold;
    left: 0;
    line-height: 1;
    margin: 6px 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 10px;
    position: absolute;
    text-overflow: ellipsis;
    top: -7px;
    transition: all 0.2s ease-out;
    white-space: nowrap;
    width: 100%;
}

#checkout .form-group .form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    border-radius: 0;
    border: 0;
    box-shadow: none;
    font-size: 16px;
    height: 48px;
    line-height: 17px;
    padding: 16px 10px;
    transition: all 0.2s ease-out;
}
    
#checkout .show-label label:not(.exclude) {
    opacity: 1;
    top: 0;
    z-index: 5;
}

#checkout .show-label .form-control {
    padding: 22px 10px 8px;
}

.page-checkout .main,
.page-csrorderentry .main {
    background: #FBFBFB;
    margin-top: 0;
    padding-top: 20px;
}

.page-checkout .small a {text-decoration: underline;} /* ADA */

.page-summary .main a {text-decoration: underline;} /* ADA */

#cart-summary-card {
    display: none;
}

#cart-summary-toggle {
    font-size: 16px;
    padding: 12px;
    text-align: left;
}

.payment-methods-group .radio {
    margin-top: 10px;
}

.payment-methods-group h3,
.payment-methods-group .h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.payment-methods-item {
    border-bottom: 1px solid #DDDDDD;
    padding: 15px 20px 15px;
}

.payment-methods-group .fa-amazon,
.payment-methods-amazon h3 {
    color: #FF9900;
}

.payment-methods-group .fa-paypal,
.payment-methods-paypal label {
    color: #012169;
}

.form-group-cc {
    position: relative;
}

.cc-display {
}

.cc-display .fab {
    color: #ADADAD;
    margin-left: 3px;
}

.cc-display .fa-cc-visa.fa-cc-selected {
    color: #1A1F71;
}

.cc-display .fa-cc-mastercard.fa-cc-selected {
    color: #CC0000;
}

.cc-display .fa-cc-amex.fa-cc-selected {
    color: #002663;
}

.cc-display .fa-cc-discover.fa-cc-selected {
    color: #FF6000;
}

.page-checkout #payment-information,
.page-csrorderentry #payment-information {
    padding: 0;
}

.checkout-step-complete {
    margin: 0 20px 20px;
    position: relative;
}

.checkout-step-complete > .edit {
    position: absolute;
    right: 0;
    top: 0;
}

.checkout-step-complete > .edit:disabled {
    cursor: not-allowed;
    color: #666;
}

.card .step {
    font-weight: bold;
}

.card .step-complete {
    color: #666666;
    font-weight: normal;
}

.card .step-complete:after {
    content: "\f00c";
    float: right;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.total-line-order {
    font-size: 1.2rem;
}

.checkout-promocode {
    border-bottom:1px solid #DDDDDD;
    padding: 0 15px;
}

.page-article .main a {
    text-decoration: underline;
}

/* Shop Article Component */
.shopArticles {
    padding: 1rem 0;
}

.shopArticles__title {
    margin: 0 0 0.75rem;
    font-weight: 700;
    line-height: 1.2;
    font-size: clamp(1.125rem, 2.5vw, 2rem);
}

.shopArticles__productWrapper {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr))
}

.shopArticles .product-grid-item {
    min-width: 0;
}
.shopArticles .product-grid-item img {
    max-width: 100%;
    height: auto;
}

.shopArticles__productWrapper .ratings,
.shopArticles__productWrapper .product-cta .btn-secondary {
    display: none !important;
}

#shopArticles--side .shopArticles__title {
    font-size: clamp(1rem, 2vw, 1.25rem);
}

@media (min-width: 768px) {
    #shopArticles--bottom .shopArticles__productWrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (min-width: 1024px) {
    #shopArticles--bottom .shopArticles__productWrapper {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 480px) {
    .shopArticles__productWrapper {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
}

@media (min-width: 768px) {
    #shopArticles--top .shopArticles__productWrapper {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    #shopArticles--bottom .shopArticles__productWrapper {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    #shopArticles--side .shopArticles__productWrapper {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1024px) {
    #shopArticles--top .shopArticles__productWrapper {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
    #shopArticles--bottom .shopArticles__productWrapper {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 399px) {
    .shopArticles__productWrapper {
        overflow-x: auto;
        scroll-snap-type: x proximity;
        grid-auto-flow: column;
        grid-auto-columns: 80%;
    }
    .shopArticles__productWrapper > * {
        scroll-snap-align: start;
    }
}

/* Blog */

.page-blog .main {
    margin-top: 0;
}

.page-blog h1,
.page-blogcategory h1,
.page-blogpost h1 {
    background-color: #CC1226;
}

.blog-hero {
    display: block;
    height: 0;
    overflow: hidden;
    padding-bottom: 41.67%; /* 1200:500 aspect ratio */
    position: relative;
}

.blog-hero img {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.blog-hero h1 {
    color: #FFFFFF;
    font-size: 1.5rem;
    margin: 0;
    text-align: center;
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
    text-transform: none;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 1;
}

.blog-body h1 {
    color: #FFFFFF;
    margin: 0;
    text-align: center;
    text-transform: none;
    width: 100%;
}

.blog-body h2 {
    font-size: 2.1rem;
    line-height: 1.2;
}

.blog-body .social-sharing {
    justify-content: left;
    padding: 0;
}

.blog-category-single .img-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0.75) 100%);
    height: 100%;
    width: 100%;
}

.blog-category-single-name {
    bottom: 0;
    color: #FFFFFF;
    font-size: 22px;
    font-weight: bold;
    left: 0;
    padding: 20px 20px 15px;
    transition: all 0.3s;
    width: 100%;
}

.blog-category-single-name .fa {
    opacity: 0;
    transition: opacity 0.3s;
}

.blog-category-single:hover .blog-category-single-name {
    padding-bottom: 20px;
}


.blog-category-single:hover .blog-category-single-name .fa {
    opacity: 1;
}

.blog-post-single {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

.blog-post-single a {
    color: #333333;
    text-decoration: none;
}

.blog-post-single .img-overlay {
    background-color: rgba(0, 0, 0, 0.75);
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s;
    width: 100%;
    z-index: 1;
}

.blog-post-single .read-more {
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    font-weight: 600;
    left: 50%;
    line-height: 1;
    opacity: 0;
    padding: 10px 20px;
    text-align: center;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    white-space: nowrap;
    z-index: 2;
}

.blog-post-single a:hover .img-overlay,
.blog-post-single a:hover .read-more {
    opacity: 1;
}

.blog-post-single .blog-post-category {
    color: #777777;
    font-size: 10px;
    font-weight: 600;
    display: inline-block;
    letter-spacing: 1px;
    margin-bottom: 10px;
    position: relative;
    text-transform: uppercase;
}

.blog-post-single .blog-post-category:after {
    position: absolute;
    left: 0;
    height: 1px;
    bottom: 0;
    transform: translateY(-50%);
    background-color: #AAAAAA;
    width: 100%;
    content: '';
}

.blog-post-single .blog-post-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 3px;
}

.blog-post-single .blog-post-date {
    color: #777777;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Callouts */

.callout {
    box-shadow: 0 4px 5px -3px rgba(0, 0, 0, 0.75);
    left: -20px;
    min-width: 175px;
    padding: 0 7px;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    z-index: 1000;
}

.page-product .callout,
.page-quickview .callout {
    font-size: 14px;
    line-height: 32px;
    padding: 0 10px;
    top: 50px;
}

.product-grid-item .callout {
    left: -17px;
    line-height: 24px;
    min-width: 0;
    top: 10px;
}

.product-grid-item .callout:after {
    border-width: 5px 8px;
}

.callout:before,
.callout:after {
    content: ' ';
    height: 0;
    position: absolute;
    width: 0;
}

.callout:after {
    border-color: #333333 #333333 transparent transparent;
    border-style: solid;
    border-width: 5px 10px;
    left: 0;
    top: 100%;
}

.callout-green {
    background-color: #2E7D32;
    color: #FFFFFF;
}

.callout-green:after {
    border-color: #19451C #19451C transparent transparent;
}

.callout-red {
    background-color: #B71C1C;
    border-color: #B71C1C;
    color: #FFFFFF;
}

.callout-red:after {
    border-color: #751212 #751212 transparent transparent;
}

.callout-blue {
    background-color: #1565C0;
    border-color: #1565C0;
    color: #FFFFFF;
}

.callout-blue:after {
    border-color: #0D417B #0D417B transparent transparent;
}

/* Component: BOPIS */
.btn.js-pickup-location-chosen.selected {
    color: #FFFFFF!important;
    background-color: #CC1226!important;
    border-color: #CC1226!important;
}

.btn.js-pickup-location-chosen.selected:after {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    padding-left: 5px;
}

.store-unavailable button {
    display: none!important;
}

.store-unavailable .store-qty-available {
    font-weight: bold;
}

.bh-sl-loc-record.disabled {
    pointer-events: none;
}

.bopisOptionContainer.disabled {
    pointer-events: none;
    opacity: .5;
}

/* Product page */

#breadcrumbWrapper {
    
}

#breadcrumbWrapper .breadcrumb {
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap; 
    overflow-x: auto;
    margin-bottom: 0;
}

#breadcrumbWrapper .breadcrumb-item {
    font-size: 0.9rem;
}

#breadcrumbWrapper.conditionalDisplay .breadcrumb >*:nth-last-child(n+5) {
    display: none;
}

#breadcrumbWrapper button {
    line-height: 1;
    font-size: 1.1rem;
}

@media (max-width: 767px) {
    
    #breadcrumbWrapper.conditionalDisplay .breadcrumb >*:nth-last-child(n+3) {
        display: none;
    }
}

.page-product h1 {
    font-weight: bold;
    text-align: left;
}

.product-image-alts {
    padding: 0 25px;
}

.product-image-alts .slide > .mz-thumb {
    display: block;
    padding: 0 5px;
}

.product-image-alts .slick-prev,
.product-image-alts .slick-next {
    height: 100%;
    width: 25px;
}

.product-image-alts .slick-prev:before,
.product-image-alts .slick-next:before {
    font-size: 24px;
}

.product-info .price,
.buy-now .price {
    font-weight: bold;
    font-size: 1.5rem;
}

.product-info .price-uom,
.buy-now .price-uom {
    font-weight: normal;
    font-size: 1rem;
    text-transform: lowercase;
}

.product-info .price-uom:after,
.buy-now .price-uom:after {
    content: ".";
}

.product-info .price-savings,
.buy-now .price-savings {
    font-weight: normal;
    font-size: 0.875rem;
}

.productInfo__name {
    font-size: 1.25rem;
}

.productInfo__promoMessage {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0.75rem 0.5rem 0.75rem;
    background: #333333;
    color: #FFFFFF;
    -webkit-box-shadow:0px 0px 32px 4px rgba(255,255,0,1);
    -moz-box-shadow: 0px 0px 32px 4px rgba(255,255,0,1);
    box-shadow: 0px 0px 32px 4px rgba(255,255,0,1);
}

.productGrid {
    display: grid;
    column-gap: 15px;
    grid-template-columns: 50% 50%;
    grid-template-rows: auto auto auto 1fr;
    grid-template-areas: 
        "productMedia productName"
        "productMedia productNumber"
        "productMedia productInfo"
        "productMedia productExtra";
}

.productGrid__name {grid-area: productName;}
.productGrid__number {grid-area: productNumber;}
.productGrid__media {grid-area: productMedia;}

.inventory-check {
    display: none;
}

#ProductStandardAJAX .inventory-check {
    display: inline;
}

.inventory-check a {
    text-decoration: underline;
}

.product-extended-info {
    border-top: 1px solid #DDDDDD;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
}

.buy-now {
    background: transparent;
    border-bottom: 1px solid #DDDDDD;
    border-top: 1px solid #DDDDDD;
    margin: 1rem 0;
    padding: 1rem 0;
}

.kit-product .price {
    display: inline;
    font-size: 16px;
}

.kit-product .price div {
    display: inline;
}

.kit-product .price .price-label {
    display: none;
}

.kit-child-product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.kit-child-product-selector-list {
    padding: 0 35px;
    visibility: hidden;
}

.kit-child-product-selector-list.slick-initialized {
    visibility: visible;
}

.kit-child-product-selector-list .slick-track {
    display: flex;
}

.kit-child-product-selector-list .slick-prev,
.kit-child-product-selector-list .slick-next {
    height: 50px;
    width: 30px;
}

.kit-child-product {
    display: flex;
    flex: 100%;
    font-size: 14px;
    height: auto;
    line-height: 1.2;
}

.kit-child-product span {
    color: inherit;
}

.kit-child-product-zoom-link {
    bottom: 1px;
    right: 1px;
    text-shadow: 0 0 4px #FFFFFF;
    transition: all 0.3s ease;
}

.kit-child-product-zoom-link:hover {
    color: #AC1020;
}

.kit-child-product-selector {
    border: 1px solid #DDDDDD;
    box-shadow: 0 3px 5px -2px rgba(50, 50, 50, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
}

.kit-child-product-selector:hover {
    box-shadow: 0 4px 5px -2px rgba(30, 30, 30, 0.5);
}

.kit-child-product-selector:has(input:checked) {
    box-shadow: inset 0 0 9px 1px rgba(100, 100, 100, 0.3);
}

.kit-child-product-selector input {
    font-size: 0;
    height: 0;
    line-height: 0;
    width: 0;
}

.page-product .product-cross-sells .product-grid-item {
    border: none;
}

.ratings-review-meta {
    color: inherit;
}

.review-image {
    max-width: 100px;
}

.product-frequently-bought-together .col-image + .col-image:before {
    content: "\f067";
    display: block;
    font: 700 22px 'Font Awesome 5 Free';
    position: absolute;
    left: -9px;
    top: 50%;
    transform: translateY(-50%);
}

.productExtendedInfo__downloads:first-child {
    border-top: 0!important;
    margin-top: 0!important;
    padding-top: 0!important;
}

.affirm-as-low-as {
    font-size: 20px!important
}
.__affirm-logo.__affirm-logo-primary, .__affirm-logo.__affirm-logo-blue {
    font-size: 30px!important;
}

.affirm-modal-trigger, #ProductStandardAJAX a:not(.btn):not(.h3) {text-decoration: underline;} /* ADA */

/* Cross Sells */

.product-cross-sells .product-grid {
    visibility: hidden;
}

.product-cross-sells .product-grid.slick-initialized {
    visibility: visible;
}

.product-cross-sells .product-grid-item {
    margin: 0 0.5rem;
}

.product-cross-sells .slick-slider {
    margin: 0 auto;
    width: 88%;
}

.product-cross-sells .slick-prev,
.product-cross-sells .slick-next {
    background: transparent;
    height: auto;
    padding: 2px;
    width: auto;
}

.product-cross-sells .slick-prev {
    left: -30px;
}

.product-cross-sells .slick-next {
    right: -30px;
}

.product-cross-sells .slick-prev.slick-disabled:hover,
.product-cross-sells .slick-prev.slick-disabled:focus,
.product-cross-sells .slick-next.slick-disabled:hover,
.product-cross-sells .slick-next.slick-disabled:focus {
    background: transparent;
}

.product-cross-sells .slick-prev.slick-disabled:hover:before,
.product-cross-sells .slick-prev.slick-disabled:focus:before,
.product-cross-sells .slick-next.slick-disabled:hover:before,
.product-cross-sells .slick-next.slick-disabled:focus:before {
    color: inherit;
}

.product-cross-sells .slick-prev:before,
.product-cross-sells .slick-next:before {
    font-size: 40px;
}

.social-sharing {
    border: 0;
    border-radius: 0;
    display: flex;
    position: static;
    justify-content: right;
}

.social-sharing > a + a {
    margin-left: 10px;
}

/* Fancybox */

.fancybox-slide--iframe {
    padding: 20px;
}

.fancybox-content {
    max-width: 800px;
}

.fancybox-inner {
    margin: 0 10px;
}

.fancybox-slide--html {
    padding: 15px;
}

.fancybox-slide--image .fancybox-close-small,
.fancybox-slide--video .fancybox-close-small,
.fancybox-slide--iframe .fancybox-close-small,
.fancybox-slide--html .fancybox-close-small {
    background: #333333;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    box-shadow: 0 0 8px 2px rgba(0,0,0,0.75);
    color: #FFFFFF;
    height: 30px;
    padding: 0;
    right: -14px;
    top: -14px;
    width: 30px;
}

.fancybox-is-open .fancybox-stage {
    overflow: visible;
}


/* iFrame Responsive */
.iframeWrapper {
    position: relative;
    height: 0;
}

.iframeWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
}

/* XS and SM only */
@media (max-width: 767px) {
    .page-default .h1 {font-size: 1.7rem;}
    
    .breadcrumb {
        font-size: 12px;
    }
    
    .iframeInstagramWrapper iframe {
        min-width: 260px !important;
    }
    
    .home-featured-category-caption {
        font-size: 1rem;
        padding: 10px;
        height: 100%;
    }
    
    .home-featured-category img {
        border-radius: 10px 10px 0 0;
    }
    
    .home-featured-category-grid {
        display: grid;
    }
    
    .hfcg--1 {
        grid-template-areas: 
            "grid1 grid1";
            "recipe recipe";
    }
    .hfcg--2 {
        grid-template-areas:
            "grid1 grid1"
            "grid2 grid2"
            "recipe recipe";
    }
    .hfcg--3 {
        grid-template-areas:
            "grid1 grid1"
            "grid2 grid3"
            "recipe recipe";
    }
    .hfcg--4 {
        grid-template-areas:
            "grid1 grid1"
            "grid2 grid3"
            "grid4 grid4"
            "recipe recipe";
    }
    .hfcg--5 {
        grid-template-areas:
            "grid1 grid1"
            "grid2 grid3"
            "grid4 grid5"
            "recipe recipe";
    }
    .hfcg--6 {
        grid-template-areas:
            "grid1 grid1"
            "grid2 grid3"
            "grid4 grid5"
            "grid6 grid6"
            "recipe recipe";
    }
    .hfcg--7 {
        grid-template-areas:
            "grid1 grid2"
            "grid3 grid3"
            "grid4 grid5"
            "grid6 grid7"
            "recipe recipe";
    }
    .hfcg--8 {
        grid-template-areas:
            "grid1 grid2"
            "grid3 grid3"
            "grid4 grid5"
            "grid6 grid7"
            "grid8 grid8"
            "recipe recipe";
    }
    .hfcg--9 {
        grid-template-areas:
            "grid1 grid2"
            "grid3 grid3"
            "grid4 grid5"
            "grid6 grid6"
            "grid7 grid8"
            "grid9 grid9"
            "recipe recipe";
    }
    .hfcg--10 {
        grid-template-areas:
            "grid1 grid2"
            "grid3 grid3"
            "grid4 grid5"
            "grid6 grid6"
            "grid7 grid8"
            "grid9 grid10"
            "recipe recipe";
    }
    .hfcg--11 {
        grid-template-areas:
            "grid1 grid1"
            "grid2 grid3"
            "grid4 grid5"
            "grid6 grid6"
            "grid7 grid8"
            "grid9 grid10"
            "grid11 grid11"
            "recipe recipe";
    }
    
    .product-grid-item .ratings {
        margin: 10px 0;
    }
    
    .product-grid-item .product-name {
        height: auto;
        min-height: 40px;
        margin-top: 10px;
    }
    
    .productGrid {
        display: grid;
        column-gap: 15px;
        grid-template-columns: 100%;
        grid-template-rows: auto auto auto auto 1fr;
        grid-template-areas: 
            "productName"
            "productNumber"
            "productMedia"
            "productInfo"
            "productExtra";
    }

    .productGrid__name {grid-area: productName;}
    .productGrid__number {grid-area: productNumber;}
    .productGrid__media {grid-area: productMedia;}
    
    #home-brands {
        display: grid;
        grid-template-columns: auto auto auto;
        grid-template-rows: 1fr 1fr 1fr;
        gap: 1rem;
        align-items: center;
        justify-content: center;
        padding: 1rem;
    }
    
    .footer-links {
        padding: 10px 0;
    }
    
    .footer-links summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        list-style: none;
    }
    .footer-links .fa-minus {display: none;}
    .footer-links[open] .fa-plus { display: none;}
    .footer-links[open] .fa-minus { display: block;}
}

/* XS, SM and MD only */
@media (max-width: 991px) {
    .container {
        max-width: none;
    }

    .site-search input {
        border-color: #EEEEEE;
    }

    .site-search button {
        border-radius: 0;
    }
}

/* SMALL (sm) */
@media (min-width: 576px) {
    .blog-body .breadcrumb {
        margin: 0;
    }

    .blog-body .social-sharing {
        justify-content: right;
    }
}

/* MEDIUM (md) */
@media (min-width: 768px) {
    /* Home page */

    #home-brands-container {
        padding-bottom: 1.5rem;
    }

    #home-brands-slider .slick-prev {
        left: -20px;
    }

    #home-brands-slider .slick-next {
        right: -20px;
    }

    #home-brands-slider .slick-prev,
    #home-brands-slider .slick-next {
        bottom: auto;
        top: 50%;
        transform: translateY(-50%);

    }

    /* Product page */

    .product-extended-info {
        border-left: 1px solid #DDDDDD;
        border-top: none;
        padding: 0 0 0 30px;
        margin: 0;
    }

    /* Checkout page */

    #accordion-checkout .card {
        margin-bottom: 10px;
    }

    .payment-methods-group {
        margin: 0;
        border-top: 0;
    }

    #payment-information h3,
    #payment-information .h3 {
        margin-top: 0;
        text-align: left;
    }
    
    /* Footer */
    .footer-links {
        border-top: 0!important;
    }
    .footer-links summary {
        list-style: none;
        pointer-events: none;
    }
    .footer-links .fa-minus, .footer-links .fa-plus {display: none;}
}

/* LARGE (lg) */
@media (min-width: 992px) {
    .text-no-truncate-lg {
        overflow: visible;
        text-overflow: clip;
        white-space: normal;
    }
    
    .slick-prev,
    .slick-next {
        height: 80px;
        width: 50px;
    }

    .slick-prev:before,
    .slick-next:before {
        font-size: 32px;
    }

    .form-group.row .col-form-label {
        line-height: 1.8;
        text-align: right;
    }

    header > .container {
        padding: 0 15px;
    }

    .logo {
        max-height: 80px;
        max-width: 80px;
    }

    /* Kalio Search Autocomplete */
    .search-suggestions {
        display: table;
        max-height: none;
        width: 700px;
    }

    .search-suggestions-products {
        display: table-cell;
        width: 500px;
    }

    .search-suggestions-sidebar {
        display: table-cell;
        width: 200px;
    }

    .site-tools > ul > li > a,
    .site-tools > ul > li > button {
        font-size: 1rem;
        font-weight: bold;
        padding: 0;
    }

    .site-tools > ul > li.header-phone > a {
        font-size: 1.25rem;
    }

    .site-tools .menu-group > ul > li > a {
        color: #333333;
    }

    .site-tools .menu-group > ul > li > a:hover {
        background-color: #F8F9FA;
    }

    .cart-total-items {
        background: none;
        border-radius: 0;
        color: inherit;
        display: inline;
        font-size: inherit;
        line-height: 1;
        height: auto;
        position: static;
        width: auto;
    }

    .featured-nav > li {
        display: block;
        float: left;
        margin: 0;
    }

    .featured-nav > li > a,
    .featured-nav > li > button {
        border: none;
        border-radius: 0;
        color: #FFFFFF;
        display: block;
        font-size: 13px;
        font-weight: bold;
        height: 50px;
        line-height: 50px;
        padding: 0 8px;
        transition: all 0.3s;
    }

    .featured-nav .js-nav-all-dept button:hover {
        transform: none;
    }

    ul.primary-nav {
        box-shadow: 0 3px 5px 3px rgba(0, 0, 0, 0.3);
        display: none;
        left: 15px;
        position: absolute;
        right: auto;
        top: 50px;
        width: 100%;
    }

    ul.primary-nav > li.primary-nav-item {
        border-right: 1px solid #DDDDDD;
        float: none;
        margin: 0;
        position: static;
        width: 25%;
    }

    ul.primary-nav > li.has-children > a,
    ul.primary-nav > li.has-children > button {
        background: inherit;
        border: none;
        overflow: hidden;
        width: 100%;
    }

    .primary-nav .primary-nav-item a:active,
    .primary-nav .primary-nav-item button:active,
    .primary-nav .primary-nav-item a:focus,
    .primary-nav .primary-nav-item button:focus {
        background: inherit;
        color: inherit;
    }

    ul.primary-nav > li.has-children > a:before,
    ul.primary-nav > li.has-children > button:before,
    ul.primary-nav > li.has-children > a:after,
    ul.primary-nav > li.has-children > button:after {
        content: ' ';
        display: block;
        right: 7px;
    }

    ul.primary-nav > li.has-children > a.selected,
    ul.primary-nav > li.has-children > button.selected {
        background: #555555;
        border: none;
        color: #FFFFFF;
    }

    ul.primary-nav > .has-children > a.selected:before,
    ul.primary-nav > .has-children > button.selected:before {
        background: #FFFFFF;
        transform: translateX(0) rotate(45deg);
        width: 10px;
    }

    ul.primary-nav > .has-children > a.selected:after,
    ul.primary-nav > .has-children > button.selected:after {
        background: #FFFFFF;
        transform: translateX(0) rotate(-45deg);
        width: 10px;
    }

    ul.primary-nav .primary-nav-item .secondary-nav {
        background: #FFFFFF;
        box-shadow: none;
        height: 100%;
        left: auto;
        right: 0;
        top: 0;
        width: 75%;
    }

    ul.primary-nav .primary-nav-item .secondary-nav > li.secondary-nav-featured {
        border-radius: 2px;
        float: left;
        margin: 14px 1.5%;
        text-align: center;
        width: 17%;
    }

    ul.primary-nav .primary-nav-item .secondary-nav > li > a {
        color: inherit;
        height: auto;
        padding: 5px;
        white-space: normal;
    }

    ul.primary-nav .primary-nav-item .secondary-nav > li > a > img {
        max-height: 135px;
        max-width: 135px;
        transition: all 0.3s;
    }

    ul.primary-nav .primary-nav-item .secondary-nav > li > a:hover img,
    ul.primary-nav .primary-nav-item .secondary-nav > li > a:focus img {
        transform: scale(1.1);
    }

    ul.primary-nav .primary-nav-item .secondary-nav > li > a > span {
        display: block;
        line-height: 20px;
        height: 40px;
        margin-top: 15px;
        overflow: hidden;
        text-align: center;
    }

    ul.primary-nav .primary-nav-item .secondary-nav li.see-all {
        bottom: 0;
        position: absolute;
    }

    ul.primary-nav .primary-nav-item .secondary-nav li.see-all a {
        display: block;
        padding: 10px 20px 10px 0;
        text-align: right;
    }

    ul.primary-nav .primary-nav-item .secondary-nav li.see-all a:hover,
    ul.primary-nav .primary-nav-item .secondary-nav li.see-all a:focus {
        color: inherit;
    }

    .page-checkout .header-phone,
    .page-csrorderentry .header-phone {
        padding-top: 34px;
    }

    #products-dropdown + .dropdown-menu {
        min-width: 310px;
    }

    #products-dropdown + .dropdown-menu > .dropdown-item > ul {
        display: none;
    }

    #products-dropdown + .dropdown-menu > .dropdown-item:hover > ul {
        display: block;
    }

    #products-dropdown + .dropdown-menu > .dropdown-item > a > [class^=fa] {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    #products-dropdown + .dropdown-menu > .dropdown-item > a + ul {
        left: 100%;
        top: -3px;
    }

    #products-dropdown + .dropdown-menu > .dropdown-item > a + ul > li > a:hover {
        background-color: #F8F9FA;
    }

    /* Category page */

    .category-bg-image {
        height: 350px;
    }

    .page-category .breadcrumb-overlay .breadcrumb {
        font-size: 18px;
    }

    .page-category h1 {
        font-size: 36px;
    }

    /* Product page */

    .product-cross-sells .slick-slider {
        width: 100%;
    }

    .kit-child-product {
        flex: calc(50% - 5px);
    }

    /* Checkout page */

    #cart-summary-card {
        display: block !important;
    }

    /* Blog page */

    .blog-body h1 {
        font-size: 3.5rem;
    }
}

/* EXTRA LARGE (xl) */
@media (min-width: 1200px) {
    .featured-nav > li > a,
    .featured-nav > li > button {
        font-size: 16px;
        padding: 0 10px;
    }
}

@media print {
    .site-tools-mobile,
    .mega-nav,
    .page-blogpost .blog-body a img {
        display: none !important;
    }

    .main {
        min-height: 0;
    }
}