.app-body {
    padding: 30px 20px 20px;
}

.action-bar {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px;
    width: 180px;
    height: 60px;
    box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, .6);
    border: 1px solid var(--neutral1);
    padding-left: 15px;
    padding-right: 15px;
}

.button-action-bar {
    border: none;
    background-color: rgba(255, 255, 255, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    width: 45px;
    height: 45px;
}

.button-action-bar-selected {
    background-color: var(--primary);
}

.button-action-bar-selected .material-icons {
    color: white;
}