#snackbar {
    visibility: hidden;
    min-width: 240px;
    height: 50px;
    padding: 5px 26px;
    background-color: #a13c72;
    border: 1px solid #0c1210;
    border-radius: 50px;
    color: #fff;
    text-align: center;
    line-height: 16px;
    position: fixed;
    z-index: 11;
    bottom: 30px;
    left: 121px
}

#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein .10s, fadeout .5s 2.5s;
    animation: fadein .10s, fadeout .5s 2.5s
}

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0
    }
    to {
        bottom: 30px;
        opacity: 1
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0
    }
    to {
        bottom: 30px;
        opacity: 1
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1
    }
    to {
        bottom: 0;
        opacity: 0
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1
    }
    to {
        bottom: 0;
        opacity: 0
    }
}

@media only screen and (max-width:1024px) {
    #snackbar {
        bottom: 75px
    }
}

@media only screen and (max-width:820px) {
    #snackbar {
        border-radius: unset;
        width: 100%;
        line-height: unset;
        height: unset;
        left: 0
    }
    @-webkit-keyframes fadein {
        from {
            bottom: 0;
            opacity: 0
        }
        to {
            bottom: 75px;
            opacity: 1
        }
    }
    @keyframes fadein {
        from {
            bottom: 0;
            opacity: 0
        }
        to {
            bottom: 75px;
            opacity: 1
        }
    }
    @-webkit-keyframes fadeout {
        from {
            bottom: 75px;
            opacity: 1
        }
        to {
            bottom: 0;
            opacity: 0
        }
    }
    @keyframes fadeout {
        from {
            bottom: 75px;
            opacity: 1
        }
        to {
            bottom: 0;
            opacity: 0
        }
    }
}