#toast {
    position: fixed;
    bottom: -100px;
    left: calc(50% - 180px);
    padding: 15px 18px;
    border-radius: 10px;
    color: #000;
    font-family: 'Inter';
    font-size: 14px;
    opacity: 1;
    width: 100%;
    white-space: break-spaces;
    box-shadow: 0px 0px 99.6px 0px rgb(255 255 255 / 50%);
    display: flex;
    justify-content: center;
    align-items: center;
    height: fit-content;
    animation: slideInUp 0.7s forwards;
    z-index: 9999;
    background: #fff !important;
}

@keyframes slideInUp {
    from {
        bottom: -100px;
    }

    to {
        bottom: 100px;
    }
}



.hidden {
    display: none !important;
}

.success,
.error,
.warning {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.custom-message {
    text-align: center;
    letter-spacing: 0px;
    line-height: 25px;
    margin-bottom: 0px;
    font-size: 18px;
    font-weight: 500;
    font-family: unset;
}

.alert-svg {
    /* box-shadow: 3px 1px 30px 1px #e0dddd; */
    border-radius: 100%;
}


@media (max-width: 600px) {

    #toast {
        width: calc(70% - -46px);
        left: 50%;
        bottom: -100px;
        transform: translateX(-50%);
    }

    @keyframes slideInUp {
        from {
            bottom: -100px;
        }

        to {
            bottom: 200px;
        }
    }
}


@media screen and (max-width:768px) {

    .custom-message {
        text-align: center;
        letter-spacing: 0px;
        line-height: 25px;
        margin-bottom: 0px;
        font-size: 14px;
        font-weight: 500;
        font-family: 'Inter';
    }
}

@media screen and (min-width:2300px) {
    @keyframes slideInUp {
        from {
            bottom: -100px;
        }

        to {
            bottom: 250px;
        }
    }
}