﻿.cssTrendIcon {
    color: gray;
    width: 12pt;
    margin-left: 0.5rem;
}

#dimmedOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust the opacity as needed */
    z-index: 9999;
}

.cssCacadeMenuContainer {
    box-shadow: 0 0 20px 5px #6c757d6b;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid lightgray;
    margin: 10px 0;
    min-height: 480px;
}

.cssCategoryMenuColumn {
    overflow-y: auto;
    font-family: 'system-ui';
    column-count: 4;
    display: inline-block;
    width: 100%;
}

@media (max-width: 961px) {
    .cssCacadeMenuContainer {
        min-height: 620px;
    }

    .cssCategoryMenuColumn {
        column-count: 3;
    }
}

@media (max-width: 768px) {
    .cssCategoryMenuColumn {
        column-count: 2;
    }
}

@media (max-width: 480px) {
    .cssCategoryMenuColumn {
        column-count: 1;
    }
}


.cssCategoryMenuColumn .nav-link {
    color: black;
}

    .cssCategoryMenuColumn .nav-link:hover {
        /*border-bottom: 1px solid gray;*/
        background-color: #eeeeee;
        color: red;
    }

.cssCategoryMenuColumn .css-nav-link-content {
    display: flex;
    align-items: center;
}

.cssCategoryMenuTile {
    /*background-color: red;*/
    margin: 3px;
    padding: 5px;
    display: contents;
}

    .cssCategoryMenuTile a {
    }

        .cssCategoryMenuTile a .cssCategoryIcon {
            padding-left: 10px;
            padding-top: 4px;
            opacity: 0.08 !important;
        }

        .cssCategoryMenuTile a .cssCategoryArrow {
            width: 24px;
            height: 24px;
            /*margin-left: auto;*/
            margin-left: 10px;
        }

/* Gradient Scroll Bar */
/* width */
.cssCategoryMenuColumn::-webkit-scrollbar {
    width: 8px;
}

/* Track */
.cssCategoryMenuColumn::-webkit-scrollbar-track {
    border-radius: 100vh;
    background: #1f2937;
}

/* Handle */
.cssCategoryMenuColumn::-webkit-scrollbar-thumb {
    /*background: linear-gradient(rgb(134, 239, 172), rgb(59, 130, 246), rgb(147, 51, 234));*/
    background: linear-gradient(#000, #0d6efd, #000)
}

.tab-pane {
    display: none;
}

    .tab-pane.active {
        display: block;
        animation: fadeIn 0.5s ease-in-out forwards;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cssCategoryMenuColumn img {
    width: 50px;
    height: 50px;
    border: 2px solid #f0f0f0;
    padding: 3px;
    border-radius: 50%;
    margin-right: 10px;
}

.shop_sidebar_boxed {
    padding: 0;
}

.cssBreadCrumb a {
    color: yellow;
    background-color: black;
    padding: 5px;
    border-radius: 5px;
    display: inline-block;
    font-family: 'system-ui';
    font-size: 1.1rem;
}

    .cssBreadCrumb a[disabled], a[disabled]:hover {
        color: black;
        background-color: #aaa;
        pointer-events: none;
        border-radius: 5px;
    }

.cssHeaderBand {
    background-color: orange;
    border: 1px solid darkorange;
    padding: 10px;
    margin-bottom: 10px;
    text-align: center;
}

.cssCategoryMenuVertical {
    padding: 5px 5px;
    /*border: 1px solid #fff;*/
    margin-bottom: 15px;
    box-shadow: 0 0 2px 0px #6c757d6b;
}

.cssCategoryCard {
    transition: box-shadow 0.3s ease-in-out;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%); /* Gradient shining effect */
    background-size: 200% auto;
    background-repeat: no-repeat;
    animation: shining 15s infinite;
    background-color: #ddd;
}

    .cssCategoryCard:hover {
        animation: heartbeat 0.5s 1, shining 5s infinite; /* Apply both animations on hover */
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    }

    .cssCategoryCard .card-body {
        position: relative;
        text-align: center;
        color: white;
        padding: 0.5rem;
    }

    .cssCategoryCard .card-title {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-shadow: 0 0 10px white, 0 0 10px white, 0 0 10px white;
    }

    .cssCategoryCard img {
        opacity: 0.4;
        width: 100%;
    }

.cssUpperCategoryColumn {
    background-color: #eee;
}

.product_wrappers_one {
    /*override them value*/
    /*margin-top: 0px !important;*/
}

.outer-div {
    display: flex;
    flex-wrap: wrap;
}

.inner-div {
    width: calc(100% / 3); /* Set the width for each column, adjust as needed */
    /* Add other styling for the inner divs */
}
