/************************** SNACKBAR **************************/

#snackbar {
    visibility: hidden;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    position: fixed;
    top: 15px;
    left: 15px;
    right: 15px;
    z-index: 999;
    font-size: 14px;
    opacity: 0;
    transition: 0.3s;
}

@media only screen and (min-width: 600px) {
    #snackbar {
        display: grid;
        justify-content: center;
        top: 15px;
        right: 15px;
    }
}

#snackbar #snackbar-content {
    display: flex;
    justify-content: space-between;
    column-gap: 30px;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px 15px;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;

}

#snackbar #snackbar-content #snackbar-close {
    font-size: 30px;
    line-height: 0px;
    cursor: pointer;
}

#snackbar.show {
    visibility: visible;
}