:root {
    --mainFont: "GTEestiPro", arial, sans-serif;
}
html {
    width: 100vw;
    overflow-x: hidden;
}
body {
    margin: 0;
    font-family: var(--mainFont);
}

.container {
    display: flex;
    flex-direction: column;
    padding: 0 5px;
}
#action-bar {
    position: sticky;
    bottom: 0;
    align-items: center;
    box-sizing: border-box;
    display: flex;
    flex-wrap: nowrap;
    height: 49px;
    justify-content: space-between;
    max-width: 100vw;
    overflow: hidden;
    -webkit-tap-highlight-color: rgba(15, 119, 176, .1);
    background-color: #fff;
}
#action-bar>a {
    color: #99a3ae;
    font-size: calc(10px + .4vw);
    font-size: 12px;
    height: 100%;
    line-height: 16px;
    position: relative;
    text-decoration: none;
    touch-action: none;
    -webkit-user-select: none;
    align-items: center;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
}
.list-item {
    border-radius: 5px;
    margin: 5px;
    padding: 5px;
    border: solid 1px #99a3ae;
    display: flex;
    flex-direction: column;
}