.toolbar {
    width: 100%;
    height: 50px;
    background-color: rgb(47, 47, 47);
    margin: 0px 0px 10px 0px;

    display: flex !important;
    justify-content: space-between;
    flex-direction: row-reverse;
    box-sizing: border-box;
    padding-right: 20px;
}

@media (max-width: 1400px) {
    .toolbar{
        display: block;
    }
}

@media (min-width: 1400px) {
    .toolbar {
 
        display: none !important;
    }
}