#snackbar {
    visibility: hidden;
    min-width: 300px;
    margin-left: -125px;
    background-color: #60C4D6;
    color: black;
    font-family: 'DM Sans', sans-serif;
    text-align: center;
    border-radius: 16px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 45%;
    bottom: 100px;
    font-size: 34px;
}

#snackbar.show {
    visibility: visible;
    opacity: 0;
    transition: opacity 2.5s ease-in-out;
}

@-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;
    }
}
.loader {
    display: none;
    border: 16px solid #BBBDC0;
    border-radius: 50%;
    border-top: 16px solid #60C4D6;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    position: relative;
     top: 50% !important;
    position: fixed;
    z-index: 9999;
    top: 50%;
    left: 50%;
    margin-right: 60px;
    margin-left: -60px;
    margin-top: -60px
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}