#topbar {
    display: flex;
    justify-content: center;
    align-items: center;

    top: 0;
    left: 0;
    position: fixed;
    z-index: 999;

    width: 100%;
    height: var(--topbar-height);
    background: #fff;
    box-shadow:  var(--box-shadow);
}

#topbar .topbar__content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#topbar .topbar__logo img {
    cursor: pointer;
    height: 40px;
}

#topbar .menu__item {
    font-size: var(--content-size);
    transition: color 300ms;
    text-decoration: none;
    padding: 5px 15px;
    font-weight: 400;
    color: #717171;
}

#topbar .menu__item:hover {
    color: #000;
}

#topbar .topbar__menu .active__item {
    font-weight: 400;
    color: #000;
}

#topbar .topbar__actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

#topbar .topbar__actions .action__item {
    margin-left: 10px;
}

#topbar .topbar__actions .action__item:last-child {
    margin-left: 0px !important;
}

#topbar .topbar__actions svg {
    width: 28px;
    max-height: 26px;
    stroke: #343a40;
    stroke-width: 1.2px;
    cursor: pointer;
}

#topbar .topbar__notifications {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

#topbar #notifications__number {
    width: 15px;
    height: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-title);
    font-weight: 600;
    font-size: 9px;
    line-height: 1;
    background: var(--color-primary);
    border-radius: 10px;
    margin-left: -15px;
    cursor: pointer;
}

#topbar .topbar__divider {
    margin: 0px 25px;
    border-left: 1px solid #00000010;
    height: 30px;
}

#topbar .topbar__account {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    cursor: pointer;
}

#topbar .topbar__account p {
    cursor: pointer;
    margin-left: 8px;
    margin-bottom: 0px;
    font-weight: 400;
    font-size: 13px;
    line-height: 1;
}

#topbar .topbar__logged {
    width: 35px;
    height: 35px;
    background: #c1c1c1ac;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: .9em;
    color: #343a40;
    margin-right: 5px;
}

#topbar .topbar__picture {
    width: 35px;
    height: 35px;
    background-size: cover !important;
    background-position: center center !important;
    border-radius: 100%;
    margin-right: 5px;
}

#topbar .dropdown-menu {
    border: none !important;
    box-shadow: 0px 0px 50px #00000020;
    font-size: .9em !important;
    border-radius: 20px !important;
    overflow: hidden !important;
}

#topbar .dropdown-menu hr {
    margin: 5px 0px;
    border-color: #00000015;
    z-index: 10000;
}

#topbar .dropdown-menu .dropdown-item:focus {
    background: #ececec !important;
    color: #000;
}

.dropdown__notifications .dropdown-menu {
    margin-top: 10px !important;
}

#topbar .nothing__notify {
    font-size: .9em !important;
    font-weight: 300 !important;
    color: #343a40ac !important;
    padding: 25px 35px;
}

#topbar .nothing__notify:hover {
    background: #ffffff !important;
}


/* RESPONSIVIDADE TOPBAR */

.topbar__logo__icon {
    display: none;
}

.topbar__mobile {
    display: none;
}

#mobile__menu {
    position: fixed !important;
    z-index: 1000;
    top: 0 !important;
    left: -150%;
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    transition: all 300ms;
}

#mobile__menu .mobile__links {
    text-align: center;   
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
}

#mobile__menu .mobile__links p {
    font-size: 1.4em;
    font-weight: 400;
    margin-bottom: 20px;
}

#mobile__menu .mobile__links hr {
    border-color: #00000050;
    margin: 10px 0px 20px 0px;
    width: 10%;
}

#mobile__menu .mobile__header {
    margin-bottom: 50px;
    height: 15vh;

    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 1.2em;
    padding: 0px 8%;
    border-bottom: 1px solid #00000010;
}

#mobile__menu .mobile__header .mobile__account {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

#mobile__menu .mobile__header .mobile__account .mobile__logged {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background: #c1c1c1;
    color: #343a40ac;
    font-size: .9em;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

#mobile__menu .mobile__header .mobile__account .mobile__picture {
    width: 40px;
    height: 40px;
    background-size: cover !important;
    background-position: center center !important;
    border-radius: 100%;
    margin-right: 15px;
}

#mobile__menu .mobile__header .mobile__account p {
    font-weight: 600;
    font-size: 1.1em;
    margin-bottom: 0px;
    color: #161617;
}

#mobile__menu .mobile__header .mobile__account .mobile__login {
    padding: 10px 15px;
    border-radius: 15px;
    border: 1px solid #343a40;
    background: transparent;
    line-height: 1;
    color: #343a40;
}

@media (max-width: 855px) {

    #topbar {
        position: absolute !important;
    }

    .topbar__favorites {
        display: none !important;
    }

    .topbar__notifications {
        display: none !important;
    }

    .topbar__account {
        display: none !important;
    }

    .topbar__divider {
        display: none;
    }

    .topbar__menu {
        display: none;
    }

    .topbar__mobile {
        width: 40px;
        height: 40px;

        background: var(--color-primary);
        color: #ffffff;

        border-radius: 20px;
        font-size: 1.3em;
        cursor: pointer;

        display: flex;
        justify-content: center;
        align-items: center;
    }

}