/*
|--------------------------------------------------------------------------
| Variables
|--------------------------------------------------------------------------
*/

:root {
    --card-background-color: #ffffff;
    --card-border-color: #dedede;
    --card-border-radius: 6px;

    --product-card-discount-font-weight: 600;
    --product-card-hover-footer-opacity: 1;
    --product-card-price-font-weight: 600;
    --product-card-title-font-weight: 600;
    --product-card-description-font-weight: 400;

    --overlay-z-index: 20;

    --transition-speed: 200ms;

    --reveal-on-scroll-animation-name: reveal-image;
}

/* MEDIA QUERIES */

@media (min-width: 0px) and (max-width: 575px) {
    :root {
        --category-card-width: 115px;
        --category-card-header-height: 115px;
        --category-card-title-font-size: 12px;

        --product-card-header-height: 140px;

        --product-card-height: 355px;
        --product-card-width: 158px;
        --product-card-discount-font-size: 10px;
        --product-card-old-price-font-size: 9px;
        --product-card-price-font-size: 15px;
        --product-card-title-font-size: 13px;
        --product-card-description-font-size: 10px;
        --product-card-label-font-size: 9px;
    }

    #minimum-order-amount-alert,
    #free-shipping-order-amount-alert {
        position: relative !important;
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    :root {
        --category-card-width: 125px;
        --category-card-header-height: 117px;
        --category-card-title-font-size: 13px;

        --product-card-header-height: 149px;

        --product-card-height: 375px;
        --product-card-width: 167px;
        --product-card-discount-font-size: 11px;
        --product-card-old-price-font-size: 10px;
        --product-card-price-font-size: 16px;
        --product-card-title-font-size: 14px;
        --product-card-description-font-size: 11px;
        --product-card-label-font-size: 10px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    :root {
        --category-card-width: 145px;
        --category-card-header-height: 137px;
        --category-card-title-font-size: 14px;

        --product-card-header-height: 164px;

        --product-card-height: 395px;
        --product-card-width: 182px;
        --product-card-discount-font-size: 12px;
        --product-card-old-price-font-size: 10px;
        --product-card-price-font-size: 17px;
        --product-card-title-font-size: 15px;
        --product-card-description-font-size: 12px;
        --product-card-label-font-size: 11px;
    }
}

@media (min-width: 1200px) {
    :root {
        --category-card-width: 158px;
        --category-card-header-height: 150px;
        --category-card-title-font-size: 16px;

        --product-card-header-height: 200px;

        --product-card-height: 405px;
        --product-card-width: 218px;
        --product-card-discount-font-size: 13px;
        --product-card-old-price-font-size: 11px;
        --product-card-price-font-size: 18px;
        --product-card-title-font-size: 16px;
        --product-card-description-font-size: 13px;
        --product-card-label-font-size: 12px;
    }
}

/*
|--------------------------------------------------------------------------
| Background
|--------------------------------------------------------------------------
*/

#background {
    position: fixed;
    overflow: hidden;
    height: 100%;
    width: 100%;
    z-index: -1;
}

/*
|--------------------------------------------------------------------------
| Font-family
|--------------------------------------------------------------------------
*/

body {
    font-family: var(--font-family-sans-serif);
}

/*
|--------------------------------------------------------------------------
| Overlay
|--------------------------------------------------------------------------
*/

#overlay {
    background-color: rgba(0, 0, 0, 0.5);
    bottom: 0;
    display: none;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: var(--overlay-z-index);
}

/*
|--------------------------------------------------------------------------
| Blur
|--------------------------------------------------------------------------
*/

.blur:not(.loadingResults) {
    filter: blur(4px);
    pointer-events: none;
}

/*
|--------------------------------------------------------------------------
| Left banner
|--------------------------------------------------------------------------
*/

.left-banner {
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 16px;
    margin-top: 1.5rem;
}

/*
|--------------------------------------------------------------------------
| Secondary banner
|--------------------------------------------------------------------------
*/

#ClientsAreaSecondaryBanner {
    margin-top: 1.5rem;
}

/*
|--------------------------------------------------------------------------
| Categories navbar button
|--------------------------------------------------------------------------
*/

#btn-navbar-categories {
    z-index: calc(var(--overlay-z-index) + 1);
}

/*
|--------------------------------------------------------------------------
| HR
|--------------------------------------------------------------------------
*/

hr.gradient {
    border: 0;
    height: 1.2px;
    background-image: -webkit-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
    background-image: -moz-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
    background-image: -ms-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
    background-image: -o-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
}

/*
|--------------------------------------------------------------------------
| Fixed containers
|--------------------------------------------------------------------------
*/

.fixed-container {
    align-items: center;
    display: flex;
    flex-flow: column;
    gap: 8px;
    position: fixed;
    z-index: calc(var(--overlay-z-index) + 99);
}

#bottom-left-fixed-container {
    bottom: 15px;
    left: 15px;
}

#bottom-right-fixed-container {
    bottom: 15px;
    right: 15px;
}

/*
|--------------------------------------------------------------------------
| Slide to top button
|--------------------------------------------------------------------------
*/

#slideToTop {
    background-color: var(--primary);
    color: var(--white);
    width: 45px;
    height: 0;
    line-height: 45px;
    text-align: center;
    cursor: pointer;
    border-radius: 5px;
    z-index: 19;
    opacity: 0;
    -moz-transition: 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
    -o-transition: 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
    -webkit-transition: 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
    transform-origin: top;
    transform: scale(1, 0.1);
}

#slideToTop.visible {
    height: 45px;
    opacity: 0.7;
    transform: scale(1, 1);
}

#slideToTop:hover {
    opacity: 1;
}

/*
|--------------------------------------------------------------------------
| Scrollbar
|--------------------------------------------------------------------------
*/

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background-color: transparent;
    overflow: visible;
}
::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
    display: none;
}

::-webkit-scrollbar-track-piece {
    background-color: transparent;
    border-radius: 4px;
    -webkit-border-radius: 4px;
}
::-webkit-scrollbar-thumb:vertical {
    background-color: #9e9e9e;
    border-radius: 4px;
    -webkit-border-radius: 4px;
}

::-webkit-scrollbar:horizontal {
    background-color: #e3e3e3;
    border-radius: 4px;
    height: 7px !important;
}

::-webkit-scrollbar-thumb:horizontal {
    background-color: #9e9e9e;
    border-radius: 4px;
    -webkit-border-radius: 4px;
}

/*
|--------------------------------------------------------------------------
| Titles separator
|--------------------------------------------------------------------------
*/

.titles {
    background-color: var(--card-background-color);
    border-radius: var(--card-border-radius);
    margin-top: 0.75rem;
    padding: 0.25rem;
    font-size: 24px;
    line-height: 25px;
    font-weight: bold;
    color: #333333;
}

.titles:after {
    content: '';
    display: block;
    width: 2.75rem;
    height: 3px;
    background: var(--primary);
    margin: 0.75rem 0 0;
}

.titles .second-title {
    margin-top: 0.5rem;
    padding: 8px 0px;
    font-size: 22px;
    line-height: 25px;
    font-weight: 400;
    color: #666666;
}

/*
|--------------------------------------------------------------------------
| Product card
|--------------------------------------------------------------------------
*/

.product-card {
    background-color: var(--card-background-color);
    border: 1px solid transparent;
    border-radius: var(--card-border-radius);
    display: flex;
    flex-flow: column wrap;
    gap: 8px;
    margin-top: 0.5rem;
    max-width: var(--product-card-width);
    min-width: var(--product-card-width);
    padding: 4px;
    place-content: center center;
    -moz-transition: all var(--transition-speed) ease-in-out;
    -o-transition: all var(--transition-speed) ease-in-out;
    transition: all var(--transition-speed) ease-in-out;
    -webkit-transition: all var(--transition-speed) ease-in-out;
}

.product-card * {
    transition: all var(--transition-speed) ease-in-out;
}

/*
|--------------------------------------------------------------------------
| Product card anchor
|--------------------------------------------------------------------------
*/

.product-card > a {
    display: flex;
    flex: 1 0 auto;
    flex-flow: column wrap;
    place-content: center center;
    text-decoration: none;
}

/*
|--------------------------------------------------------------------------
| Product card header
|--------------------------------------------------------------------------
*/

.product-card .product-card-header {
    display: flex;
    flex-flow: column wrap;
    height: calc(var(--product-card-header-height) + 8px);
    place-content: baseline;
    position: relative;
}

/*
|--------------------------------------------------------------------------
| Product card header label
|--------------------------------------------------------------------------
*/

.product-card .product-card-header .product-card-labels-container {
    display: flex;
    flex-flow: row wrap;
    max-width: var(--product-card-width);
    place-content: baseline;
    position: absolute;
    z-index: 1;
    opacity: 0.9;
}

.product-card-labels-container .product-card-label-container {
    border-radius: 8px;
    margin-right: 4px;
    margin-bottom: 4px;
    padding: 0 4px;
}

.product-card-labels-container .product-card-label-container .badge {
    font-size: var(--product-card-label-font-size);
    color: var(--white);
}

/*
|--------------------------------------------------------------------------
| Product card header image
|--------------------------------------------------------------------------
*/

.product-card .product-card-header .product-card-img {
    height: auto;
    max-width: 100%;
    padding: 0.25rem;
    -moz-transition: all var(--transition-speed) ease-in-out;
    -o-transition: all var(--transition-speed) ease-in-out;
    transition: all var(--transition-speed) ease-in-out;
    -webkit-transition: all var(--transition-speed) ease-in-out;
}

/*
|--------------------------------------------------------------------------
| Product card body
|--------------------------------------------------------------------------
*/

.product-card .product-card-body {
    color: var(--dark);
    display: flex;
    flex: 1 0 auto;
    flex-flow: column wrap;
    gap: 6px;
    place-content: baseline;
    justify-content: start;
}

/*
|--------------------------------------------------------------------------
| Product card body title
|--------------------------------------------------------------------------
*/

.product-card .product-card-body .product-title {
    font-size: var(--product-card-title-font-size);
    font-weight: var(--product-card-title-font-weight);
    /* place-content: center center; */
    text-align: center;
    width: 100%;
    /* display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden; */
}

.product-card .product-card-body .product-title.product-title-truncate {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

/*
|--------------------------------------------------------------------------
| Product card body description
|--------------------------------------------------------------------------
*/

.product-card .product-card-body .product-description {
    font-size: var(--product-card-description-font-size);
    font-weight: var(--product-card-description-font-weight);
}

.product-card .product-card-body .product-description.product-description-hidden {
    display: none;
}

/*
|--------------------------------------------------------------------------
| Product card body prices
|--------------------------------------------------------------------------
*/

.product-card .product-card-body .product-prices {
    display: flex;
    flex-flow: row wrap;
    gap: 8px;
    flex: auto;
    justify-content: center;
    align-content: flex-end;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

/*
|--------------------------------------------------------------------------
| Product card body prices price
|--------------------------------------------------------------------------
*/

.product-card .product-card-body .product-prices .price {
    color: var(--primary);
    font-size: var(--product-card-price-font-size);
    font-weight: var(--product-card-price-font-weight);
}

/*
|--------------------------------------------------------------------------
| Product card body prices old price
|--------------------------------------------------------------------------
*/

.product-card .product-card-body .product-prices .old-price {
    color: var(--secondary);
    font-size: var(--product-card-old-price-font-size);
    font-weight: initial;
    display: flex;
    justify-content: center;
    text-decoration: line-through;
    align-items: center;
}

/*
|--------------------------------------------------------------------------
| Product card body prices discount
|--------------------------------------------------------------------------
*/

.product-card .product-card-body .product-prices .discount {
    font-size: var(--product-card-discount-font-size);
    font-weight: initial;
    font-weight: var(--product-card-discount-font-weight);
}

/*
|--------------------------------------------------------------------------
| Product card body rating
|--------------------------------------------------------------------------
*/

.product-card .product-card-body .product-rating {
    align-items: center;
    display: flex;
    flex-flow: column wrap;
    gap: 0rem;
    place-content: center center;
}

/*
|--------------------------------------------------------------------------
| Product card body rating stars
|--------------------------------------------------------------------------
*/

.product-card .product-card-body .product-rating .stars {
    color: var(--yellow);
}

.product-card .product-card-body .product-rating .opinions-count {
    display: none;
}

/*
|--------------------------------------------------------------------------
| Product card footer
|--------------------------------------------------------------------------
*/

.product-card .product-card-footer.hover-footer {
    border: 1px solid transparent;
    overflow: hidden;
    opacity: 0;
    transition: all var(--transition-speed) ease-in-out;
}

/*
|--------------------------------------------------------------------------
| Product card hover effects
|--------------------------------------------------------------------------
*/

.product-card:hover {
    transform: scale3d(1.03, 1.03, 1.03);
    -webkit-box-shadow: 1px 2px 8px rgb(0 0 0 / 16%);
    -moz-box-shadow: 1px 2px 8px rgb(0 0 0 / 16%);
    box-shadow: 1px 2px 8px rgb(0 0 0 / 16%);
}

.product-card:focus {
    transform: scale3d(1.03, 1.03, 1.03);
    -webkit-box-shadow: 1px 2px 8px rgb(0 0 0 / 16%);
    -moz-box-shadow: 1px 2px 8px rgb(0 0 0 / 16%);
    box-shadow: 1px 2px 8px rgb(0 0 0 / 16%);
}

.product-card:hover .product-card-footer.hover-footer {
    border-top-color: transparent;
    opacity: var(--product-card-hover-footer-opacity);
}

/*
|--------------------------------------------------------------------------
| Product card without stock
|--------------------------------------------------------------------------
*/

@keyframes reveal-without-stock-badge {
    from {
        opacity: 0;
        scale: 0;
    }

    to {
        opacity: 1;
        scale: 100%;
    }
}

/* .product-card-img.without-stock {
    --product-card-hover-footer-opacity: 0.5;
} */

.product-card.without-stock .no-stock-badge {
    --reveal-on-scroll-animation-name: reveal-without-stock-badge;

    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    right: 0;
    height: fit-content;
    width: 100%;

    padding-top: 0.5rem;
    padding-bottom: 0.35rem;
    font-size: 120%;
    pointer-events: none;
    text-transform: uppercase;
    z-index: 1;
    box-shadow: 1px 2px 6px rgb(0 0 0 / 55%);
}

.product-card.without-stock .product-card-footer.hover-footer {
    pointer-events: none;
}

.product-card.without-stock > a .product-card-labels-container,
.product-card.without-stock > a .product-card-img,
.product-card.without-stock > a .product-card-body {
    opacity: var(--product-card-hover-footer-opacity) !important;
}

@media (min-width: 0px) and (max-width: 991px) {
    .product-card.without-stock .no-stock-badge {
        padding-top: 0.25rem;
        font-size: 90%;
    }
}

/*
|--------------------------------------------------------------------------
| Category card
|--------------------------------------------------------------------------
*/

.category-body #card-page-title,
.category-body #card-search-count {
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.45);
    padding: 0.25rem 0.5rem;
    margin-left: -0.25rem;
}
h1#card-page-title {
    width: fit-content;
}

.category-card-home {
    background-color: var(--card-background-color);
    border-radius: var(--card-border-radius);
    max-width: 350px;
    min-width: 350px;
    display: flex;
    flex-flow: column;
    margin: 0.25rem;
    padding: 0.5rem;
    -moz-transition: all var(--transition-speed) ease-in-out;
    -o-transition: all var(--transition-speed) ease-in-out;
    transition: all var(--transition-speed) ease-in-out;
    -webkit-transition: all var(--transition-speed) ease-in-out;
}

.category-card {
    background-color: var(--card-background-color);
    border-radius: var(--card-border-radius);
    display: flex;
    align-items: center;
    flex: auto;
    flex-flow: column;
    margin: 0.25rem;
    -moz-transition: all var(--transition-speed) ease-in-out;
    -o-transition: all var(--transition-speed) ease-in-out;
    transition: all var(--transition-speed) ease-in-out;
    -webkit-transition: all var(--transition-speed) ease-in-out;
}

.category-card-header {
    display: flex;
    justify-content: center;
}

.category-card a {
    color: var(--dark);
    display: flex;
    flex: 1 0 auto;
    flex-flow: column wrap;
    text-decoration: none;
    place-content: center;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.category-card-home a {
    color: var(--dark);
    display: flex;
    flex: 1 0 auto;
    flex-flow: column wrap;
    text-decoration: none;
    place-content: center;
    justify-content: flex-start;
}

.category-card .category-card-img,
.category-card .category-card-img-in-one-row {
    --reveal-on-scroll-animation-name: reveal-category-image;
    -moz-transition: all var(--transition-speed) ease-in-out;
    -o-transition: all var(--transition-speed) ease-in-out;
    transition: all var(--transition-speed) ease-in-out;
    -webkit-transition: all var(--transition-speed) ease-in-out;
    width: 100%;
    height: var(--category-card-header-height);
    max-width: var(--category-card-width) !important;
    min-width: var(--category-card-width) !important;
    object-fit: contain;
    padding: 0.25rem;
    overflow: auto;
}

.category-card .category-card-footer {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
    text-align: center;
    max-width: calc(var(--category-card-width) + 16px);
}

.category-card > a > .category-card-footer,
.category-card > a > .category-card-footer > .category-card-title {
    font-size: var(--category-card-title-font-size);
}

.category-card-home .category-card-img {
    --reveal-on-scroll-animation-name: reveal-category-image;
    -moz-transition: all var(--transition-speed) ease-in-out;
    -o-transition: all var(--transition-speed) ease-in-out;
    transition: all var(--transition-speed) ease-in-out;
    -webkit-transition: all var(--transition-speed) ease-in-out;
    height: 175px;
    max-width: 350px !important;
    min-width: 334px !important;
    width: 100%;
    object-fit: cover;
    border-radius: 0.25rem;
}

.category-card-home > a > .category-card-footer > .category-card-title {
    margin-top: 0.25rem;
    text-align: left;
    vertical-align: top;
    color: #333333;
    font-size: 20px;
    line-height: 25px;
    font-weight: bold;
    /* font-family:
        Open Sans,
        arial,
        sans-serif; */
}

.category-card-home .category-card-footer-description {
    font-size: 16px;
}

/*
|--------------------------------------------------------------------------
| Category card hover effects
|--------------------------------------------------------------------------
*/

.category-card:hover {
    transform: scale3d(1.03, 1.03, 1.03);
    -webkit-box-shadow: 1px 2px 8px rgb(0 0 0 / 16%);
    -moz-box-shadow: 1px 2px 8px rgb(0 0 0 / 16%);
    box-shadow: 1px 2px 8px rgb(0 0 0 / 16%);
}

.category-card:focus {
    transform: scale3d(1.03, 1.03, 1.03);
    -webkit-box-shadow: 1px 2px 8px rgb(0 0 0 / 16%);
    -moz-box-shadow: 1px 2px 8px rgb(0 0 0 / 16%);
    box-shadow: 1px 2px 8px rgb(0 0 0 / 16%);
}

.category-card-home:hover {
    transform: scale3d(1.03, 1.03, 1.03);
    -webkit-box-shadow: 1px 2px 8px rgb(0 0 0 / 16%);
    -moz-box-shadow: 1px 2px 8px rgb(0 0 0 / 16%);
    box-shadow: 1px 2px 8px rgb(0 0 0 / 16%);
}

.category-card-home:focus {
    transform: scale3d(1.03, 1.03, 1.03);
    -webkit-box-shadow: 1px 2px 8px rgb(0 0 0 / 16%);
    -moz-box-shadow: 1px 2px 8px rgb(0 0 0 / 16%);
    box-shadow: 1px 2px 8px rgb(0 0 0 / 16%);
}

/*
|--------------------------------------------------------------------------
| Manufacturer card
|--------------------------------------------------------------------------
*/

.manufacturer-card {
    border: 1px solid lightgray;
    border-radius: 6px;
    display: flex;
    flex-flow: column wrap;
    max-width: 215px;
    padding: 6px;
    margin: 0px 6px;
    place-content: center;
    transition: all var(--transition-speed) ease-in-out;
}

.manufacturer-card:hover {
    transform: scale3d(1.03, 1.03, 1.03);
    -webkit-box-shadow: 1px 2px 8px rgb(0 0 0 / 16%);
    -moz-box-shadow: 1px 2px 8px rgb(0 0 0 / 16%);
    box-shadow: 1px 2px 8px rgb(0 0 0 / 16%);
}

.manufacturer-card:focus {
    transform: scale3d(1.03, 1.03, 1.03);
    -webkit-box-shadow: 1px 2px 8px rgb(0 0 0 / 16%);
    -moz-box-shadow: 1px 2px 8px rgb(0 0 0 / 16%);
    box-shadow: 1px 2px 8px rgb(0 0 0 / 16%);
}

/*
|--------------------------------------------------------------------------
| Manufacturer card anchor
|--------------------------------------------------------------------------
*/

.manufacturer-card a {
    display: flex;
    flex: 1 0 auto;
    flex-flow: column wrap;
    place-content: center;
    text-decoration: none;
}

/*
|--------------------------------------------------------------------------
| Manufacturer card header
|--------------------------------------------------------------------------
*/

.manufacturer-card .manufacturer-card-header {
    display: flex;
    flex-flow: column wrap;
    place-content: center center;
}

/*
|--------------------------------------------------------------------------
| Manufacturer card header image
|--------------------------------------------------------------------------
*/

.manufacturer-card .manufacturer-card-header .manufacturer-card-img {
    height: auto;
    width: 100%;
    max-width: fit-content;
    padding: 0.5rem;
    -moz-transition: all var(--transition-speed) ease-in-out;
    -o-transition: all var(--transition-speed) ease-in-out;
    transition: all var(--transition-speed) ease-in-out;
    -webkit-transition: all var(--transition-speed) ease-in-out;
}

/*
|--------------------------------------------------------------------------
| Manufacturer card body
|--------------------------------------------------------------------------
*/

.manufacturer-card .manufacturer-card-body {
    color: var(--dark);
    display: flex;
    flex: 1 0 auto;
    flex-flow: column wrap;
    gap: 4px;
    place-content: center;
}

/*
|--------------------------------------------------------------------------
| Manufacturer card body title
|--------------------------------------------------------------------------
*/

.manufacturer-card .manufacturer-card-body .manufacturer-title {
    font-size: var(--manufacturer-card-title-font-size);
    text-align: center;
}

/*
|--------------------------------------------------------------------------
| Manufacturer card body products
|--------------------------------------------------------------------------
*/

.manufacturer-card .manufacturer-card-body .manufacturer-products {
    align-items: baseline;
    display: flex;
    flex-flow: row wrap;
    place-content: center;
}

.manufacturer-card .manufacturer-card-body .manufacturer-products .products {
    color: var(--primary);
    font-size: var(--manufacturer-card-price-font-size);
    font-weight: var(--manufacturer-card-price-font-weight);
}

/*
|--------------------------------------------------------------------------
| Owl navigation
|--------------------------------------------------------------------------
*/

.carousel-indicators {
    margin-block-end: 0;
}

#thumbsImages .owl-nav {
    display: contents;
}
#thumbsImages button.owl-prev,
#thumbsImages button.owl-next {
    position: relative;
    transform: translateY(-250%);
}
#thumbsImages button.owl-prev {
    float: left !important;
    margin-left: -20px;
}
#thumbsImages button.owl-next {
    float: right !important;
    margin-right: -20px;
}

.product-carousel .owl-nav,
#newProducts .owl-nav,
#card-same-category-products .owl-nav,
#card-suggested-products .owl-nav,
#viewedProductsCard .owl-nav,
#manufacturerCarouselDiv .owl-nav {
    left: auto;
    position: absolute;
    right: 14px;
    top: -36px;
}

.owl-nav > button.owl-prev > i {
    padding-top: 4px;
    padding-right: 2px;
}

.owl-nav > button.owl-next > i {
    padding-top: 4px;
    padding-left: 2px;
}

/*
|--------------------------------------------------------------------------
| Loading results
|--------------------------------------------------------------------------
*/

.loadingResults {
    align-items: center;
    background: rgb(var(--white), 0.7);
    display: flex;
    flex: 1 1 100%;
    justify-content: center;
    margin: 0 -15px;
    padding: 15px;
    width: auto;
}
.loadingFrames {
    z-index: 1;
}
.loadingFrames:after {
    animation: loadingFrames 1.2s linear infinite;
    border: 5px solid var(--dark);
    border-color: var(--dark) transparent var(--dark) transparent;
    border-radius: 50%;
    content: ' ';
    display: block;
    height: 100px;
    margin: 1px;
    width: 100px;
}
@keyframes loadingFrames {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*
|--------------------------------------------------------------------------
| Cards
|--------------------------------------------------------------------------
*/

.card {
    border: none;
}

.card .card-header {
    background-color: transparent;
}

.paymentMethodCard {
    border: 2px solid;
    border-radius: 8px;
}

.paymentMethodCard:hover {
    background-color: rgba(225, 225, 225, 0.225);
}

/*
|--------------------------------------------------------------------------
| Products sort form
|--------------------------------------------------------------------------
*/

.products-sort-form {
    align-items: center;
    display: flex;
    flex-flow: row wrap;
    gap: 24px;
    place-content: space-between space-between;
    justify-content: space-around;
}

.products-sort-form .sort-select {
    align-items: center;
    display: flex;
    flex-flow: row wrap;
    gap: 16px;
    place-content: start start;
    text-decoration: none;
    justify-content: space-around;
}

.products-sort-form .sort-select select {
    display: flex;
    flex: 1 1 auto;
    max-width: 325px;
}

.products-sort-form .view-select {
    align-items: center;
    display: flex;
    flex-flow: row wrap;
    gap: 16px;
    place-content: space-between space-between;
}

.products-sort-form .view-select .grid-action {
    align-items: center;
    color: var(--secondary);
    display: flex;
    flex-flow: column wrap;
    gap: 4px;
    place-content: space-between space-between;
    text-decoration: none;
}

.products-sort-form .view-select .grid-action.active {
    color: var(--primary);
}

.products-sort-form .view-select .grid-action i {
    font-size: 24px;
}

.products-sort-form .view-select .grid-action .grid-action-text {
    font-size: 12px;
}

/*
|--------------------------------------------------------------------------
| Manufacturers sort form
|--------------------------------------------------------------------------
*/

.manufacturers-sort-form {
    align-items: center;
    display: flex;
    flex-flow: row wrap;
    gap: 24px;
    place-content: space-between space-between;
}

.manufacturers-sort-form .sort-select {
    align-items: center;
    display: flex;
    flex: 1 1 auto;
    flex-flow: row wrap;
    gap: 16px;
    place-content: start start;
    text-decoration: none;
}

.manufacturers-sort-form .sort-select select {
    display: flex;
    flex: 1 1 auto;
    max-width: 300px;
}

.manufacturers-sort-form .view-select {
    align-items: center;
    display: flex;
    flex-flow: row wrap;
    gap: 16px;
    place-content: space-between space-between;
}

.manufacturers-sort-form .view-select .grid-action {
    align-items: center;
    color: var(--secondary);
    display: flex;
    flex-flow: column wrap;
    gap: 4px;
    place-content: space-between space-between;
    text-decoration: none;
}

.manufacturers-sort-form .view-select .grid-action.active {
    color: var(--primary);
}

.manufacturers-sort-form .view-select .grid-action i {
    font-size: 24px;
}

.manufacturers-sort-form .view-select .grid-action .grid-action-text {
    font-size: 12px;
}

.jconfirm-buttons {
    display: flex;
    flex-flow: row wrap;
    gap: 16px;
    justify-content: center;
}

/*
|--------------------------------------------------------------------------
| Images scroll animation
|--------------------------------------------------------------------------
*/

@keyframes reveal-category-image {
    from {
        opacity: 0.5;
        clip-path: inset(0% 15% 40% 15%);
    }

    to {
        opacity: 1;
        clip-path: inset(0% 0% 0% 0%);
    }
}

@keyframes reveal-image {
    from {
        opacity: 0;
        scale: 25%;
    }

    to {
        opacity: 1;
        scale: 100%;
    }
}

.reveal-on-scroll {
    view-timeline-name: --revealing-image;
    view-timeline-axis: block;

    animation: ease-in-out var(--reveal-on-scroll-animation-name) both;
    animation-timeline: --revealing-image;

    animation-range-start: entry -50%;
    animation-range-end: cover 25%;
}

.kitDigitalImg {
    margin-top: 4px;
    width: 100%;
    max-width: 450px;
    height: auto;
}

#cart-total-price {
    font-size: 16px;
}

#minimum-order-amount-alert,
#free-shipping-order-amount-alert {
    position: absolute;
    z-index: 3;
}

.secondary-footer {
    display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.w-320 {
    width: 320px;
}

@media (min-width: 992px) {
    .navbar-expand-lg > .container,
    .navbar-expand-lg > .container-fluid {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    #products-sort {
        justify-content: space-evenly;
    }
}

.pull-right {
    float: right;
}

.pointer {
    cursor: pointer;
}

.primary-color {
    color: var(--primary);
}

.bootstrap-select .dropdown-menu {
    max-width: 100% !important;
}

.badge {
    white-space: wrap;
}

.line-through {
    text-decoration: line-through;
}
