﻿
.toolbar-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: start;
    overflow-x: auto;
    overflow-y: hidden;
}

.tb-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: auto;
    margin-left: 1rem;
    margin-right: 1rem;
}

/* ---------- Mobile ---------- */
@media only screen and (max-width: 768px) {

    .toolbar-container {
        scroll-snap-type: x mandatory;
    }

    .tb-section {
        min-width: 100vw;
        scroll-snap-align: center;
        margin-left: 0rem;
    }
}