
/*Sub Menus*/
.sub-menu-item {
    height:50px;
    background: #e6e7e9;
    cursor: pointer;


    transition:All .3s ease;
    -webkit-transition:All .3s ease;
    -moz-transition:All .3s ease;
    -o-transition:All .3s ease;

}
.sub-menu-item-col {
    padding-bottom: 10px;
    transition:All .3s ease;
    -webkit-transition:All .3s ease;
    -moz-transition:All .3s ease;
    -o-transition:All .3s ease;
}

.sub-menu-item-col:hover .second {
    display: block;

}
.sub-menu-item-col:hover .first {
    display: none;
}
.sub-menu-item-col:hover .menu-icon,
.sub-menu-item-col.active .menu-icon {
    background: var(--bs-primary);

}
.sub-menu-item-col:hover .sub-menu-item,
.sub-menu-item-col.active  .sub-menu-item {
    background: var(--bs-primary);

}
.sub-menu-item-col:hover .sub-menu-name,
.sub-menu-item-col.active  .sub-menu-name {
    color: #ffffff;

}
.sub-menu-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.sub-menu-name, .sub-menu-icon {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
}
.sub-menu-icon {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5px;
    background: #3b3e40;
}