.top_slide_bar{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: 100ms;
}

.top_slide_bar_open{
    position: fixed;
    height: 50px;
    background-color: var(--background);
    border-bottom: var(--border);
    animation-duration: 100ms;
    animation-fill-mode: forwards;
    animation-name: flow;
}

@keyframes flow {
    0%{
        top: -50px;
    }
    100%{
        top: 0;
    }
}

.top_slide_bar_open .main_page_title{
    margin-top: auto;
    margin-bottom: auto;
    text-align: center;
    font-weight: 500;
    height: max-content;
    font-size: 22px;
    position: absolute;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.top_slide_bar_open .top_action_button{
    line-height: unset;
}