body {
    margin-bottom: 50px;
}

.snackbar {
    position: fixed;
    left: 0;
    bottom: 0;
    background-color: #FF563C;
    color: #fff;
    width: 100%;
    padding: 5px 0;
    opacity: 0.8;
}

.snackbar-is-closed {
    display: none;
}

.snackbarWrapper {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
    line-height: 100%;
}

span {
    margin: 10px 10px 10px 0;
    font-size: 0.75rem;
    /*12px*/
    font-family: 'Poppins';
    font-weight: 600;
    /*semi-bold*/
}

@media screen and (min-width: 375px) {
    span {
        font-size: 1rem;
        /*16px*/
    }
}

.snackbarFermer {
    height: 30px;
    width: 30px;
    cursor: pointer;
}