.nps-mega-menu-dropdown-block {
    padding: 25px;
    width: 100%;
    height: 100%;

    .nps-mega-menu-dropdown-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 25px 20px;
        row-gap: 25px;
        column-gap: 20px;
        grid-auto-flow: row;
        padding: 0px;
        justify-content: start;
        align-content: start;
    }

    .child-category-container {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: initial;
        flex-grow: 0;
        align-self: initial;
        flex-wrap: wrap;
        gap: 15px 15px;
        row-gap: 15px;
        column-gap: 15px;
    }

    .child-category-heading {
        font-weight: 500;
        color: #FF9017;
        padding: 0;
        margin: 0;
        line-height: 1;
        box-shadow: none;
        text-decoration: none;
        transition: all .15s ease;
    }

    .child-category-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        justify-content: start;
        gap: 4px;
        font-size: 14px;
        text-align: left;
        margin-bottom: 0;
        padding-left: 0;
    }

    .sub-child-container {
        color: var(--e-global-color-7d0d9e1);
        position: relative;
        display: flex;
        align-items: center;
        justify-content: inherit;
        gap: 10px;
        margin-bottom: 0 !important;
        transition: all .15s ease;

        &:hover {
            color: var(--e-global-color-accent);
            transition: all .15s ease;
        }
    }

    .sub-child-icon-container {
        overflow: hidden;
        border-radius: 50%;
        background-color: var(--color-gray-200);
        width: 28px;
        height: 28px;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        color: var(--color-gray-800);
        line-height: 1;
        transition: all .15s ease;
    }

    .sub-child-icon {
        width: 50px;
        height: 50px;
        min-width: 70px;
        object-fit: contain;
    }

    .sub-child-name{
        color: inherit;
        text-decoration: none;
        transition: all .15s ease;
    }
}