.saiyan-snackbar-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 99999;
}

.saiyan-snackbar-wrapper .progress-bar {
    position: absolute;
    display: flex;
    background-color: #1283a6;
    bottom: 0;
    left: 0;
    right: 0;
    width: 0;
    height: 0;
    transition: 400ms ease-out;
}

.saiyan-snackbar-wrapper .progress-bar .message {
    color: white;
    text-align: center;
    margin: auto;
    opacity: 0.0;
    transition: 400ms ease-out;
}

.saiyan-snackbar-wrapper .progress-bar.load {
    height: 5px;
    transition-duration: 500ms;
}

.saiyan-snackbar-wrapper .progress-bar.show-message {
    height: 40px;
    transition-duration: 250ms;
}

.saiyan-snackbar-wrapper .progress-bar.hide {
    height: 0;
}

.saiyan-snackbar-wrapper .progress-bar.show-message .message {
    opacity: 1.0;
}

.saiyan-snackbar-wrapper .saiyan-snackbar {
    position: relative;
    color: white;
    bottom: -100px;
    width: 300px;
    margin: auto;
    padding: 20px;
    pointer-events: all;
    transition: 400ms ease-out;
}

.saiyan-snackbar-wrapper .saiyan-snackbar.info {
    background-color: #1283a6;
}

.saiyan-snackbar-wrapper .saiyan-snackbar.success {
    background-color: #49a62b;
}

.saiyan-snackbar-wrapper .saiyan-snackbar.warning {
    background-color: #ff9800;
}

.saiyan-snackbar-wrapper .saiyan-snackbar.error {
    background-color: #a63d3f;
}

.saiyan-snackbar-wrapper .saiyan-snackbar.show {
    bottom: 0;
}