/*--------------------------------------------------------------------------*\
    Button container (often coupled with the is-save-alert class)
\*--------------------------------------------------------------------------*/

.btn-wrapper {
    /*box*/
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px;
    z-index: 3;
}

.btn-wrapper--right {
    /*box*/
    justify-content: flex-end;
}

.btn-wrapper--center {
    /*box*/
    justify-content: center;
}