.toastify {
    display:flex;
    position:fixed;
    opacity:0;
    transition:all .4s cubic-bezier(.215, .61, .355, 1);
    /* max-width:calc(50% - 20px); */
    z-index:2147483647;
    max-width: 25%;
}
.toastify.on {
    opacity:1
}
.toast-close{
    background:0 0;
    border:0;
    color:#fff;
    cursor:pointer;
    font-family:inherit;
    font-size:1em;
    opacity:.4;
    padding:0 5px
}
.toastify-right{
    right:15px
}
.toastify-left{
    left:15px
}
.toastify-top{
    top:-150px
}
.toastify-bottom{
    bottom:-150px
}
.toastify-avatar{
    width:1.5em;
    height:1.5em;
    margin:-7px 5px;
    border-radius:2px
}
.toastify-center{
    margin-left:auto;
    margin-right:auto;
    left:0;
    right:0;
    max-width:fit-content;
    max-width:-moz-fit-content;
}

@media only screen and (max-width:360px) {
    .toastify-left,.toastify-right {
        margin-left:auto;
        margin-right:auto;
        left:0;
        right:0;
        max-width:fit-content;
    }
}

.toastify-inner {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    font-family: Inter;
    min-width: 20rem;
}

.toastify .toastify-content .icon-state {
    height: 100%;
    margin-top: 0.1rem;
}

.toastify-content {
    display: flex;
    gap: 0.625rem;
    white-space: pre-wrap;
    color: black
}

.toastify-container {
    padding: 1.875rem;
    min-width: 6.25rem;
}

.toastify-container .toastify-close {
    width: 0.875rem;
    height: 0.875rem;
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    cursor: pointer
}

.toastify-progressbar {
    position: absolute;
    bottom: 0;
    left: 0;
    max-width: 100%;
    width: 100%;
    height: 0.5rem;
}

.toastify-type-info .toastify-inner, .toastify-type-default .toastify-inner {
    background: var(--primary-90);
    color: var(--primary);
}
.toastify-type-success .toastify-inner {
    background: var(--green-secondary);
    color: var(--green);

}
.toastify-type-warning .toastify-inner {
    background: var(--gold-secondary);
    color: var(--gold);
}
.toastify-type-error .toastify-inner {
    background: var(--red-secondary);
    color: var(--red);
}

.toastify-type-info .toastify-progressbar, .toastify-type-default .toastify-progressbar {
    background: var(--primary);
}
.toastify-type-success .toastify-progressbar {
    background: var(--green);
}
.toastify-type-warning .toastify-progressbar {
    background: var(--gold);
}
.toastify-type-error .toastify-progressbar {
    background: var(--red);
}