.dropdown-toggle::after, dropend .dropdown-toggle::after {
    content: unset;
}

.nav-pills .nav-link.active {
    background: #fff;
    color: var(--grey-700) !important;
    margin-right: -25px;
}

.nav-link {
    border-top-left-radius:20px !important;
    border-bottom-left-radius: 20px !important;
    padding: 15px !important;

}

.nav-accordion-btn.accordion-button::after {
    content: unset;
    background-color: unset;
}

.nav-accordion-header.accordion-header, .accordion-button:not(.collapsed) {
    background-color: unset !important;
}

.nav-accordion-item.accordion-item{
    border: unset;
}

.navbar-toggler{
    border-color: transparent;
}

.nav-dropdown-border {
    border: 2px solid var(--grey-700) !important;
}

.product-dropdown {
    min-width: 730px !important;
    border: 2px solid var(--grey-700) !important;
    left: -120% !important;
    margin-top: 10px !important;
}

.company-dropdown {
    border: 2px solid var(--grey-700) !important;
    margin-top: 10px !important;
    min-width: 500px !important;
    left: -100% !important;
}

.impact-dropdown {
    min-width: 500px !important;
    left: -180% !important;
    margin-top: 10px !important;
    border: 2px solid var(--grey-700) !important;
}

.all-product-link {
    position: absolute;
    bottom: 0;
    right: 0;
    margin-bottom: 20px;
    margin-right: 20px;
}

.nav-item-description {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    /*width: 100px;*/
}

/*.dropdown-item.active, .dropdown-item:hover {
    background-color: unset !important;
}*/

.dropdown-item.active, .menu-item:hover {
    background-color: unset !important;
}


/*Forcing a div to bottom: */
/*add position: relative; height: 100% to parent*/
/*the add position: absolute; bottom: 0; to make the child stay at the bottom*/

.bottom-parent-container {
    position: relative;
    height: 100%;
}

.bottom-child-element {
    position: absolute;
    bottom: 0;
}