/* Homepage */

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 100% ;
    }
}

/*custom container*/
.custom-container {
    max-width: 960px;
}


@media (max-width: 992px) {
    .custom-container {
        max-width: 100%;
    }
}

/*custom container*/
.custom-container2 {
    max-width: 1140px;
}


@media (max-width: 992px) {
    .custom-container2 {
        max-width: 100%;
    }
}



/*menubar*/

.sub-cat-image {
    width: 64px;
    height: 64px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    background: #d9efff;
    box-shadow: 0 2px 6px rgba(0,0,0,.08);
}



.cu-breadcrumb {
    position: sticky;
    top: 110px;
    z-index: 0;
}


/* top filter */
.top-filter-wrapper {
    border-top: 0px solid #ddd;
}

/* Horizontal scroll ONLY */
.top-filter-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    padding: 10px 8px;
}

/* Hide scrollbar nicely */
.top-filter-scroll::-webkit-scrollbar {
    height: 4px;
}
.top-filter-scroll::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 4px;
}

/* Filter item */
.top-filter-item {
    flex: 0 0 auto;
    
}


.sort-filter-btn {
    background: #fff;
    border: 1px solid #ddd;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}


/* Button */
.top-filter-btn {
    border: 1px solid #000;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}


/* When any value is selected */
.top-filter-btn.active,
.top-filter-btn.is-selected {
    border: 1px solid var(--primary) !important;
}

.top-filter-btn-clear  {
    border: 0px solid #ddd;
    background: #fff;;
    padding: 5px 14px;
    border-radius: 15px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-filter-dropdown {
    display: none;
    position: fixed;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 8px;

    /* 🔹 DARKER, RICHER SHADOW */
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);

    z-index: 10;
    
    /* ✅ WIDER LIKE WALMART POPOVER */
    width: clamp(280px, 320px, 380px);  /* width */
    min-width: 280px;         
    max-width: 380px;         

    /* IMPORTANT: NO SCROLL HERE */
    padding: 0;
    overflow: visible;
}

/* The small centered arrow */
.top-filter-dropdown::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff; /* same as dropdown bg */

    /* 🔹 MATCHING DARKER ARROW SHADOW */
    filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.15));
}


/* OUTER WRAPPER — padding INCLUDING scrollbar */
.top-filter-dropdown-outer {
    padding: 20px;
}

/* INNER WRAPPER — ONLY ONE SCROLLBAR HERE */
.top-filter-dropdown-inner {
    max-height: 220px;
    overflow-y: auto;
    overflow-x: hidden;
}


/* Initial hidden state */
.top-filter-dropdown {
    transform: translateY(8px) scale(0.97);
    opacity: 0;
    transition: transform 0.18s ease-out, opacity 0.18s ease-out;
}

/* When opening */
.top-filter-dropdown.is-open {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Optional: slightly different closing feel */
.top-filter-dropdown.top-filter-animate-out {
    transform: translateY(6px) scale(0.97);
    opacity: 0;
}




.selected-filters-wrapper {
    
}

.selected-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px;
}

.filter-chip {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f7f7f7;
    border-radius: 16px;
    padding: 4px 10px;
    font-size: 14px;
    font-weight: 500;
}

.filter-chip button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
}


/*global styling */

.cu-border {
    border: 1px solid #dee2e6 !important;
}

/*seller shop icons*/
.svg-icon {
  width: 20px;
  height: 20px;
  fill: #6c757d;
  vertical-align: middle;
  margin-right: 6px;
}

#seller-info-sticky {
    position: sticky;
    top: 100px; /* adjust for your header height */
    z-index: 10;
}

/* breadcrumb */

.breadcrumb-strip {
    background-color: #f8f9fa;   /* light grey */
    padding: 10px 20px;          /* spacing */
    border-bottom: 1px solid #e0e0e0; /* subtle separator */
    margin-bottom: 15px;         /* spacing before product grid */
}

.breadcrumb-strip .breadcrumb {
    margin-bottom: 0;
}

/* seller dashboard */




/*product listing 


@media (min-width: 768px) {
    .custom-col-2-5 {
        flex: 0 0 calc(20.8333% - 5px); 
        max-width: calc(20.8333% - 5px);
    }
    .custom-col-9-5 {
        flex: 0 0 calc(79.1667% - 5px); 
        max-width: calc(79.1667% - 5px);
    }
}

*/


.category-icon {
    width: 64px;
    height: 64px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.category-icon > .la,
.category-icon > .las {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    line-height: 1;
}

/* Product image background */
.s-image-elevated-grid-grey-overlay {
    background: #f7f7f7;
}

/* Inner padding */
.s-image-padding {
    padding: 0 8px;
}

/* Image micro-elevation */
.s-image-elevated-grid-grey-overlay .s-image {
    filter: opacity(.97) drop-shadow(0 0 .01px #000);
    -webkit-filter: opacity(.97) drop-shadow(0 0 .01px #000);
    clip-path: inset(2px);
    -webkit-clip-path: inset(2px);
}

/* Overlay container */
.s-image-overlay-grey {
    position: relative;
    overflow: hidden;
}

/* 🔑 Overlay MUST stay BEHIND image (not above) */
.s-image-overlay-grey::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #fff;
    opacity: .03;
    pointer-events: none;
    z-index: 0; /* ✅ FIXED */
}

/* Image ABOVE overlay */
.s-image-overlay-grey img,
.s-image-overlay-grey .s-image,
.s-image-overlay-grey picture {
    position: relative;
    z-index: 2; /* ✅ FIXED */
}

/* 🔑 Ensure hover-zoom layer always on top */
.img-zoom img {
    position: relative;
    z-index: 3 !important;
}



.status-icon {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 12px;
    line-height: 1;
}






/* Product details*/




#products-row .col {
    border: none !important;
    box-shadow: none !important;
}


/*seller info*/

/* seller info wrapper */
.seller-info-wrapper {
    padding: 16px;
}

/* grid layout */
.seller-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px 20px;
}

/* card */
.seller-info-item {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    padding: 10px 12px;
    border-radius: 4px;
    font-size: 14px;
}


/* force full width grid span */
.seller-info-full {
    grid-column: 1 / -1;   /* span all grid columns */
    width: 100%;           /* prevents flex shrink illusion */
    align-items: center;   /* center content vertically */
    justify-content: center;
}

/* label */
.seller-info-label {
    font-weight: 600;
    margin-bottom: 2px;
}

/* value */
.seller-info-value {
    color: #000;
}

/* tablet */
@media (max-width: 992px) {
    .seller-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* mobile */
@media (max-width: 576px) {
    .seller-info-grid {
        grid-template-columns: 1fr;
    }
}




/* wrapper */
.product-specifications-wrapper {
    padding: 16px 0;
}

/* GRID */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px 1px;
}

/* SPEC ITEM */
.spec-item {
    grid-column: span 2;              /* key+value take 2 columns */
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;   /* key | value */
    align-items: center;
    border-radius: 4px;
    font-size: 14px;
}

/* SPEC ITEM */


/* KEY */
.spec-key {
    font-weight: 600;
    padding: 10px 12px;
}

.highlight-key {
    font-weight: 600;
    padding: 5px 0px;
    text-align: center;
}

/* VALUE */
.spec-value {
    color: #000;
    background: #f7f7f7;
    padding: 10px 12px;
}

.highlight-value {
    color: #000;
    padding: 5px 0px;
    text-align: center;
}


/* how to */

.how-item {
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    background: #f7f7f7;
    border: 1px solid #000;
}

.how-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
}

.how-item img {
    width: 32px;
    max-height: 32px;
    object-fit: contain;
}




/* TABLET & MOBILE */
@media (max-width: 767px) {
    .spec-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .spec-item {
        grid-column: span 1;          /* one card per column */
        grid-template-columns: 1fr;   /* key above value */
    }
}



/* Full width on small screens */
.col-xl-2-5,
.col-xl-9-5 {
  flex: 0 0 auto;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

/* From medium screens and up, apply custom widths */
@media (min-width: 768px) {
  .col-xl-2-5 {
    width: 20.833333%;
    max-width: 20.833333%;
  }

  .col-xl-9-5 {
    width: 79.166667%;
    max-width: 79.166667%;
  }
}


/* section-color */
.section-color {
    background: #f5f5f7;
}


/* banners */
.scroll-wrapper {
    transition: padding-left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}



/* Product Image Hover */

.image-hover-effect {
    position: relative;
    overflow: hidden;
}
.product-hover-image {
    top: 0;
    left: 0;
    opacity: 0; 
    transition: opacity 0.6s ease-in-out;
}

.image-hover-effect:hover .product-hover-image {
    opacity: 1; 
}

.live-circle-icon {
    animation: blink-1p5 1.5s infinite;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@keyframes blink-1p5 {
    0%   { opacity: 1; }   
    50%  { opacity: 0.5; }   
    100% { opacity: 1; }  
}

  /* Respect reduced motion preferences */
  @media (prefers-reduced-motion: reduce) {
    .blink { animation: none; }
  }

.product-details-page .add-to-cart {
  transition: transform 0.3s ease-in-out;
}

.product-details-page .add-to-cart:hover {
  transform: scale(1.02, 1.1);
}

/* Image Gallery Viewer */


.img-zoom {
   cursor:grab;
}

.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left:0; top:0;
    width:100%; height:100%;
    background: rgba(0,0,0,0.9);
    text-align: center;
    overflow: auto;
}
.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    top: 50%;
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

.lightbox-toolbar button {
    font-size: 18px;
    padding: 5px 10px;
    cursor: pointer;
    background: rgba(0,0,0,0.5);
    border: none;
    color: white;
    border-radius: 5px;
}
.lightbox-close { font-size: 22px; background: rgba(0,0,0,0.7);}


.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 32px;
    background: rgb(0 0 0 / 25%);
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    z-index: 1100;
    transition: background 0.3s ease;
}
.lightbox-arrow:hover {
    background: rgba(0,0,0,0.8);
}
.lightbox-arrow.prev { left: 20px; }
.lightbox-arrow.next { right: 20px; }

.lightbox-toolbar {
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between; /* left + right */
    align-items: center;
    padding: 0 15px;
    z-index: 1100;
}

.toolbar-left {
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.toolbar-right button {
    margin-left: 4px;
    font-size: 18px;
    padding: 5px 10px;
    background: rgba(0,0,0,0.5);
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.toolbar-right button:hover {
    background: rgba(0,0,0,0.8);
}


.lightbox-modal img {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
   
    max-width: 90% !important;
    max-height: 80% !important;
    margin: 0 !important; 
    transition: transform 0.3s ease, opacity 0.3s ease !important;
}

/* Expand Icon */
.carousel-box {
    position: relative; 
    overflow: visible;  
}

.wd-show-product-gallery-wrap {
    position: absolute;
    bottom: 40px;
    left: 10px;
    z-index: 999; 
}

.wd-show-product-gallery-wrap a {
    display: flex;
    align-items: center;
    padding: 6px ;
    background: rgba(0,0,0,0);
    color: #666666;
    border-radius: 50px;
    text-decoration: none;
    overflow: hidden;
    width: 35px;
    transition: width 0.3s ease;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.wd-show-product-gallery-wrap a .text {
    margin-left: 8px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wd-show-product-gallery-wrap a:hover {
    width: 145px; 
    color: #000;
}

.wd-show-product-gallery-wrap a:hover .text {
    opacity: 1;
}

/* Custom hober effect on btn */
.custom-hov-btn:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}
.custom-hov-btn:active {
    transform: translateY(1px);
}

.pb-26px{
    padding-bottom: 1.625rem;
}
.pb-19px{
    padding-bottom: 1.1875rem;
}
.py-19px{
    padding-top: 1.1875rem;
    padding-bottom: 1.1875rem;
}
.py-32px{
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.pt-32px{
    padding-top: 2rem;
}
.pb-32px{
    padding-bottom: 2rem;
}
.mb-32px{
    margin-bottom: 2rem;
}
.mb-19px{
    margin-bottom: 1.1875rem;
}
.mb-26px{
    margin-bottom: 1.625rem;
}

.my-32px{
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.py-40px{
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}
.pt-40px{
    padding-top: 2.5rem;
}
.pb-40px{
    padding-bottom: 2.5rem;
}
.mb-40px{
    margin-bottom: 2.5rem;
}
.my-40px{
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.py-48px{
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.pt-48px{
    padding-top: 3rem;
}
.pb-48px{
    padding-bottom: 3rem;
}
.mb-48px{
    margin-bottom: 3rem;
}
.my-48px{
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.py-56px{
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}
.pt-56px{ padding-top: 3.5rem; }
.pb-56px{ padding-bottom: 3.5rem; }
.mb-56px{ margin-bottom: 3.5rem; }
.my-56px{
    margin-top: 3.5rem;
    margin-bottom: 3.5rem;
}

.py-64px{
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.pt-64px{ padding-top: 4rem; }
.pb-64px{ padding-bottom: 4rem; }
.mb-64px{ margin-bottom: 4rem; }
.my-64px{
    margin-top: 4rem;
    margin-bottom: 4rem;
}



/* Extra small devices (xs) <576px */
@media (max-width: 575.98px) {
    .pb-26px { padding-bottom: 1rem !important; }
    .pb-19px { padding-bottom: 0.75rem !important; }
    .py-19px { padding-top: 0.75rem !important; padding-bottom: 0.75rem !important; }
    .py-32px { padding-top: 1rem !important; padding-bottom: 1rem !important; }
    .pt-32px { padding-top: 1rem !important; }
    .pb-32px { padding-bottom: 1rem !important; }
    .mb-32px { margin-bottom: 1rem !important; }
    .mb-19px { margin-bottom: 0.75rem !important; }
    .mb-26px { margin-bottom: 1rem !important; }
    .my-32px { margin-top: 1rem !important; margin-bottom: 1rem !important; }

    .py-40px{ padding-top: 1.25rem !important; padding-bottom: 1.25rem !important; }
    .pt-40px{ padding-top: 1.25rem !important; }
    .pb-40px{ padding-bottom: 1.25rem !important; }
    .mb-40px{ margin-bottom: 1.25rem !important; }
    .my-40px{ margin-top: 1.25rem !important; margin-bottom: 1.25rem !important; }

    .py-48px{ padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
    .pt-48px{ padding-top: 1.5rem !important; }
    .pb-48px{ padding-bottom: 1.5rem !important; }
    .mb-48px{ margin-bottom: 1.5rem !important; }
    .my-48px{ margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; }

    .py-56px{ padding-top: 1.75rem !important; padding-bottom: 1.75rem !important; }
    .pt-56px{ padding-top: 1.75rem !important; }
    .pb-56px{ padding-bottom: 1.75rem !important; }
    .mb-56px{ margin-bottom: 1.75rem !important; }
    .my-56px{ margin-top: 1.75rem !important; margin-bottom: 1.75rem !important; }

    .py-64px{ padding-top: 2rem !important; padding-bottom: 2rem !important; }
    .pt-64px{ padding-top: 2rem !important; }
    .pb-64px{ padding-bottom: 2rem !important; }
    .mb-64px{ margin-bottom: 2rem !important; }
    .my-64px{ margin-top: 2rem !important; margin-bottom: 2rem !important; }
    
}

/* Small devices (sm) ≥576px */
@media (min-width: 576px) and (max-width: 767.98px) {
    .pb-26px { padding-bottom: 1.25rem !important; }
    .pb-19px { padding-bottom: 0.875rem !important; }
    .py-19px { padding-top: 0.875rem !important; padding-bottom: 0.875rem !important; }
    .py-32px { padding-top: 1.25rem !important; padding-bottom: 1.25rem !important; }
    .pt-32px { padding-top: 1.25rem !important; }
    .pb-32px { padding-bottom: 1.25rem !important; }
    .mb-32px { margin-bottom: 1.25rem !important; }
    .mb-19px { margin-bottom: 0.875rem !important; }
    .mb-26px { margin-bottom: 1.25rem !important; }
    .my-32px { margin-top: 1.25rem !important; margin-bottom: 1.25rem !important; }

    .py-40px{ padding-top: 1.75rem !important; padding-bottom: 1.75rem !important; }
    .pt-40px{ padding-top: 1.75rem !important; }
    .pb-40px{ padding-bottom: 1.75rem !important; }
    .mb-40px{ margin-bottom: 1.75rem !important; }
    .my-40px{ margin-top: 1.75rem !important; margin-bottom: 1.75rem !important; }

    .py-48px{ padding-top: 2rem !important; padding-bottom: 2rem !important; }
    .pt-48px{ padding-top: 2rem !important; }
    .pb-48px{ padding-bottom: 2rem !important; }
    .mb-48px{ margin-bottom: 2rem !important; }
    .my-48px{ margin-top: 2rem !important; margin-bottom: 2rem !important; }

    .py-56px{ padding-top: 2.25rem !important; padding-bottom: 2.25rem !important; }
    .pt-56px{ padding-top: 2.25rem !important; }
    .pb-56px{ padding-bottom: 2.25rem !important; }
    .mb-56px{ margin-bottom: 2.25rem !important; }
    .my-56px{ margin-top: 2.25rem !important; margin-bottom: 2.25rem !important; }

    .py-64px{ padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }
    .pt-64px{ padding-top: 2.5rem !important; }
    .pb-64px{ padding-bottom: 2.5rem !important; }
    .mb-64px{ margin-bottom: 2.5rem !important; }
    .my-64px{ margin-top: 2.5rem !important; margin-bottom: 2.5rem !important; }
}

/* Medium devices (md) ≥768px */
@media (min-width: 768px) and (max-width: 991.98px) {
    .pb-26px { padding-bottom: 1.5rem !important; }
    .pb-19px { padding-bottom: 1rem !important; }
    .py-19px { padding-top: 1rem !important; padding-bottom: 1rem !important; }
    .py-32px { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
    .pt-32px { padding-top: 1.5rem !important; }
    .pb-32px { padding-bottom: 1.5rem !important; }
    .mb-32px { margin-bottom: 1.5rem !important; }
    .mb-19px { margin-bottom: 1rem !important; }
    .mb-26px { margin-bottom: 1.5rem !important; }
    .my-32px { margin-top: 1.5rem !important; margin-bottom: 1.5rem !important; }

    .py-40px{ padding-top: 2rem !important; padding-bottom: 2rem !important; }
    .pt-40px{ padding-top: 2rem !important; }
    .pb-40px{ padding-bottom: 2rem !important; }
    .mb-40px{ margin-bottom: 2rem !important; }
    .my-40px{ margin-top: 2rem !important; margin-bottom: 2rem !important; }

    .py-48px{ padding-top: 2.25rem !important; padding-bottom: 2.25rem !important; }
    .pt-48px{ padding-top: 2.25rem !important; }
    .pb-48px{ padding-bottom: 2.25rem !important; }
    .mb-48px{ margin-bottom: 2.25rem !important; }
    .my-48px{ margin-top: 2.25rem !important; margin-bottom: 2.25rem !important; }

    .py-56px{ padding-top: 2.75rem !important; padding-bottom: 2.75rem !important; }
    .pt-56px{ padding-top: 2.75rem !important; }
    .pb-56px{ padding-bottom: 2.75rem !important; }
    .mb-56px{ margin-bottom: 2.75rem !important; }
    .my-56px{ margin-top: 2.75rem !important; margin-bottom: 2.75rem !important; }

    .py-64px{ padding-top: 3rem !important; padding-bottom: 3rem !important; }
    .pt-64px{ padding-top: 3rem !important; }
    .pb-64px{ padding-bottom: 3rem !important; }
    .mb-64px{ margin-bottom: 3rem !important; }
    .my-64px{ margin-top: 3rem !important; margin-bottom: 3rem !important; }
}

/* Large devices (lg) ≥992px */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .pb-26px { padding-bottom: 1.625rem !important; }
    .pb-19px { padding-bottom: 1.1875rem !important; }
    .py-19px { padding-top: 1.1875rem !important; padding-bottom: 1.1875rem !important; }
    .py-32px { padding-top: 1.75rem !important; padding-bottom: 1.75rem !important; }
    .pt-32px { padding-top: 1.75rem !important; }
    .pb-32px { padding-bottom: 1.75rem !important; }
    .mb-32px { margin-bottom: 1.75rem !important; }
    .mb-19px { margin-bottom: 1.1875rem !important; }
    .mb-26px { margin-bottom: 1.625rem !important; }
    .my-32px { margin-top: 1.75rem !important; margin-bottom: 1.75rem !important; }

    .py-40px{ padding-top: 2.25rem !important; padding-bottom: 2.25rem !important; }
    .pt-40px{ padding-top: 2.25rem !important; }
    .pb-40px{ padding-bottom: 2.25rem !important; }
    .mb-40px{ margin-bottom: 2.25rem !important; }
    .my-40px{ margin-top: 2.25rem !important; margin-bottom: 2.25rem !important; }

    .py-48px{ padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }
    .pt-48px{ padding-top: 2.5rem !important; }
    .pb-48px{ padding-bottom: 2.5rem !important; }
    .mb-48px{ margin-bottom: 2.5rem !important; }
    .my-48px{ margin-top: 2.5rem !important; margin-bottom: 2.5rem !important; }

    .py-56px{ padding-top: 3rem !important; padding-bottom: 3rem !important; }
    .pt-56px{ padding-top: 3rem !important; }
    .pb-56px{ padding-bottom: 3rem !important; }
    .mb-56px{ margin-bottom: 3rem !important; }
    .my-56px{ margin-top: 3rem !important; margin-bottom: 3rem !important; }

    .py-64px{ padding-top: 3.5rem !important; padding-bottom: 3.5rem !important; }
    .pt-64px{ padding-top: 3.5rem !important; }
    .pb-64px{ padding-bottom: 3.5rem !important; }
    .mb-64px{ margin-bottom: 3.5rem !important; }
    .my-64px{ margin-top: 3.5rem !important; margin-bottom: 3.5rem !important; }
}

/* Extra large devices (xl) ≥1200px */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .pb-26px { padding-bottom: 1.75rem !important; }
    .pb-19px { padding-bottom: 1.25rem !important; }
    .py-19px { padding-top: 1.25rem !important; padding-bottom: 1.25rem !important; }
    .py-32px { padding-top: 1.875rem !important; padding-bottom: 1.875rem !important; }
    .pt-32px { padding-top: 1.875rem !important; }
    .pb-32px { padding-bottom: 1.875rem !important; }
    .mb-32px { margin-bottom: 1.875rem !important; }
    .mb-19px { margin-bottom: 1.25rem !important; }
    .mb-26px { margin-bottom: 1.75rem !important; }
    .my-32px { margin-top: 1.875rem !important; margin-bottom: 1.875rem !important; }

    .py-40px{ padding-top: 2.5rem !important; padding-bottom: 2.5rem !important; }
    .pt-40px{ padding-top: 2.5rem !important; }
    .pb-40px{ padding-bottom: 2.5rem !important; }
    .mb-40px{ margin-bottom: 2.5rem !important; }
    .my-40px{ margin-top: 2.5rem !important; margin-bottom: 2.5rem !important; }

    .py-48px{ padding-top: 3rem !important; padding-bottom: 3rem !important; }
    .pt-48px{ padding-top: 3rem !important; }
    .pb-48px{ padding-bottom: 3rem !important; }
    .mb-48px{ margin-bottom: 3rem !important; }
    .my-48px{ margin-top: 3rem !important; margin-bottom: 3rem !important; }

    .py-56px{ padding-top: 3.25rem !important; padding-bottom: 3.25rem !important; }
    .pt-56px{ padding-top: 3.25rem !important; }
    .pb-56px{ padding-bottom: 3.25rem !important; }
    .mb-56px{ margin-bottom: 3.25rem !important; }
    .my-56px{ margin-top: 3.25rem !important; margin-bottom: 3.25rem !important; }

    .py-64px{ padding-top: 4rem !important; padding-bottom: 4rem !important; }
    .pt-64px{ padding-top: 4rem !important; }
    .pb-64px{ padding-bottom: 4rem !important; }
    .mb-64px{ margin-bottom: 4rem !important; }
    .my-64px{ margin-top: 4rem !important; margin-bottom: 4rem !important; }
}

/* Extra extra large devices (xxl) ≥1400px */
@media (min-width: 1400px) {
    .pb-26px { padding-bottom: 1.625rem !important; }
    .pb-19px { padding-bottom: 1.1875rem !important; }
    .py-19px { padding-top: 1.1875rem !important; padding-bottom: 1.1875rem !important; }
    .py-32px { padding-top: 2rem !important; padding-bottom: 2rem !important; } /* max 2rem */
    .pt-32px { padding-top: 2rem !important; }
    .pb-32px { padding-bottom: 2rem !important; }
    .mb-32px { margin-bottom: 2rem !important; }
    .mb-19px { margin-bottom: 1.1875rem !important; }
    .mb-26px { margin-bottom: 1.625rem !important; }
    .my-32px { margin-top: 2rem !important; margin-bottom: 2rem !important; }

    .py-40px{ padding-top: 2.75rem !important; padding-bottom: 2.75rem !important; }
    .pt-40px{ padding-top: 2.75rem !important; }
    .pb-40px{ padding-bottom: 2.75rem !important; }
    .mb-40px{ margin-bottom: 2.75rem !important; }
    .my-40px{ margin-top: 2.75rem !important; margin-bottom: 2.75rem !important; }

    .py-48px{ padding-top: 3.5rem !important; padding-bottom: 3.5rem !important; }
    .pt-48px{ padding-top: 3.5rem !important; }
    .pb-48px{ padding-bottom: 3.5rem !important; }
    .mb-48px{ margin-bottom: 3.5rem !important; }
    .my-48px{ margin-top: 3.5rem !important; margin-bottom: 3.5rem !important; }

    .py-56px{ padding-top: 3.75rem !important; padding-bottom: 3.75rem !important; }
    .pt-56px{ padding-top: 3.75rem !important; }
    .pb-56px{ padding-bottom: 3.75rem !important; }
    .mb-56px{ margin-bottom: 3.75rem !important; }
    .my-56px{ margin-top: 3.75rem !important; margin-bottom: 3.75rem !important; }

    .py-64px{ padding-top: 4.5rem !important; padding-bottom: 4.5rem !important; }
    .pt-64px{ padding-top: 4.5rem !important; }
    .pb-64px{ padding-bottom: 4.5rem !important; }
    .mb-64px{ margin-bottom: 4.5rem !important; }
    .my-64px{ margin-top: 4.5rem !important; margin-bottom: 4.5rem !important; }
}