﻿#navigation{
    display: flex;
    flex-direction: column;
}

#navigation #logo {
    padding: 25px;
}

#navigation nav {
    padding: 0 15px;
    flex-grow: 1;
}
#navigation nav .nav-item {
    margin-bottom: 5px;
}

#navigation nav .nav-item.active .nav-icon,
#navigation nav .nav-item.active .nav-text {
    color: #00FDFD !important;
}

#navigation nav .nav-link {
    padding: 8px 12px;
}

#profile {
    padding: 20px 15px;
    font-size: 14px;
}

#profile a{
    text-decoration: none;
    color: #fff;
}

#profile .profile-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #e3e3e3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

#profile .profile-icon i{
    font-size: 12px;
    color: #888888;
}
.badge-sm {
    font-size: 0.6rem;
    padding: 0.25em 0.4em;
    min-width: 1rem;
}
.notification-bubble {
    top: 1px;
    left: 22px;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
}
@media (max-width: 768px) {

    #navigation nav {
        padding: 0;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        position: relative;
    }

    #navigation nav ul {
        display: flex;
        justify-content: space-between;
        text-align: center;
    }

    #navigation .nav-text {
        font-size: 0.75rem;
        line-height: 0.75rem;
        display: block;
    }

    #navigation .nav-icon {
        font-size: 1.2rem;
        display: block;
    }

    #navigation nav .nav-item{
        width: 25%;
    }

    #navigation nav .nav-link {
        padding: 12px 2px;
    }

    #navigation nav .nav-item.active {
        background-color: transparent;
        font-weight: bold;
    }
}