.bottom_menu_container {
    position: fixed;
    background: white;
    /* border-top:1px solid black; */
    min-height: 55px;
    z-index: 1000;
    width: 100%;
    bottom: -4px;
    left: 0;
    box-shadow: rgba(149, 157, 165, 0.2) 0px -5px 24px;
    display: flex;
    align-items: center;
    border-top-right-radius: 14px;
    border-top-left-radius: 14px;
}

.dark-mode .bottom_menu_container {
    background: var(--dark-gray);
    box-shadow: rgb(0 0 0 / 49%) 0px -5px 24px;
}

.bottom_menu {
    padding: 5px 25px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
}

.bottom_menu li {
    text-align: center;
    width: 20%;
    text-transform: capitalize;
    font-size: 24px;
    font-family: var(--primary-font);
    color: var(--dark-gray);
    font-weight: 500;
}

.bottom_menu .bottom_menu_text {
    display: block;
    font-size: 14px;
}

.bottom_menu li .active {
    color: var(--base-color);
}

.font18 {
    font-size: 18px;
}

@media (max-width:992px) {
    .footerarea .container {
        padding-bottom: 80px;
    }
}

.notify_icon_container {
    position: relative;
}

.notification_badge {
    position: absolute;
    top: -8px;
    right: 29%;
    font-size: 14px;
    background: none;
    color: red;
}

.is_dark .notification_badge {
    color: white;
}

.dark-mode .bottom_menu li .active {
    color: var(--main-green);
}