@import url("https://fonts.googleapis.com/css?family=Muli:300,400,700,900");

.bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
    flex: 1;
    height: 100%;
}

.bar-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    margin: 0;
    background: #444;
    border: 1px solid #555;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #f2f2f2;
    font-size: 13px;
    font-family: inherit;
    min-height: 34px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    text-decoration: none;
    white-space: nowrap;
}

.bar-button::-moz-focus-inner {
    border: 0;
    padding: 0;
}

.bar-button input[type="checkbox"],
.bar-button input[type="radio"] {
    display: none !important;
}

.bar-button:hover {
    background: #555;
    border-color: #666;
}

.bar-button:active {
    background: #333;
    border-color: #444;
}
