/* Switches into mobile view */
@media only screen and (max-width: 600px) {
    body #navigationbar #foologo[title="WeAreDevs"]{
        display: none;
    }
    
    body #navigationbar{
        display: flex;
        flex-direction: column;
    }

    body #navigationbar ul{
        flex-direction: column;
    }

    body #navigationbar .navItem{
        width: 100%;
        margin: auto;
    }

    body .menu-toggle{
        display: block;
    }

    body .navItems{
        display: none;
    }
}

.menu-toggle{
    display: none;
    width: 20px;
    height: 20px;
    background: url("/icons/menu.png");
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    margin: 4px auto;
    padding: 5px;
}

.navbell{
    margin-left: auto;
    z-index: 2;
}

header ul{
    display: flex;
    align-items: center;
}

#navigationbar .menu a{
    display: block;
}

#navigationbar{
    position: relative;
    z-index: 1;
    display: flex;
    gap: 26px;
    align-items: center;
    padding: 5px var(--padding);
    margin-bottom: var(--padding);
}

#navigationbar #foologo{
    font-size: 21px;
    font-weight: 400;
}

#navigationbar ul{
    width: 100%;
}

.navItems{
    display: flex;
    gap: 18px;
}

.navItem{
    list-style: none;
    display: block;
    font-size: 17px;
    text-align: center;
    position: relative;
}

.navItem:hover{
    transform: scale(1.1);
    transition: all .3s ease-in-out;
}

.navHeader_dropmenu > .dropmenu-title{
    cursor: pointer;
}

.navHeader_dropmenu > .menu{
    display: none;
    position: absolute;
    right: 0;
    width: 300px;
    padding: 12px;
    margin-top: 5px;
    background-color: var(--color-background);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 
                0 10px 15px rgba(0, 0, 0, 0.05), 
                0 20px 25px rgba(0, 0, 0, 0.05);
}

.dropMenu_option{
    cursor: pointer;
}

header .icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

header .community {
    background-image: url(/images/community.svg);
}

header .youtube {
    background-image: url(/images/youtube.svg);
}

header .discord {
    background-image: url(/images/discord.webp);
}

/* Notifications */

.notifbell{
    display: block;
    width: 20px;
    height: 20px;
    background: url("/icons/bell.png");
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    margin: auto;
}

.notifcount{
    display: block;
    background-color: red;
    height: 12px;
    width: 12px;
    font-size: 10px;
    border-radius: 12px;
    position: absolute;
    right: -3px;
    top: -3px;
}

.menu-toggle-notif::after{
    content: "";
    display: block;
    background-color: red;
    height: 9px;
    width: 9px;
    border-radius: 12px;
    position: absolute;
    right: -2px;
    top: -1px;
}

.notification{
    display: flex;
    align-items: center;
    padding: 0 0 8px;
}

.notification > div{
    flex: 1;
    font-size: 14px;
    text-align: left;
}

.notification img{
    width: 28px;
    height: 28px;
    border-radius: 10px;
    float: left;
    margin-right: 8px;
}

.notification .notif-time{
    font-size: 10px;
}

.notif-exit{
    color: red;
    cursor: pointer;
    display: block;
}

.deleteallnotifs{
    color: red;
    cursor: pointer;
    font-size: 12px;
}

/* End Notifictions */