﻿
/*toster start*/
.toster {
    position: fixed;
    left: calc(50% - 140px);
    z-index: 9999;
    top: 10px;
    width: 280px;
}

    .toster.top-right {
        right: 10px !important;
        top: 10px !important;
    }

    .toster.top-left {
        left: 10px !important;
        top: 10px !important;
        right: unset;
    }

    .toster.bottom-left {
        left: 10px !important;
        top: unset;
        right: unset;
        bottom: 10px !important;
    }

    .toster.bottom-right {
        left: unset;
        top: unset;
        right: 10px;
        bottom: 10px !important;
    }

.toster-card {
    background: #f0fcf4;
    backdrop-filter: blur(6px);
    padding: 10px;
    display: flex;
    border-radius: 6px;
    border: 1px solid #22c55e;
    color: #000
}

.toster-card-icon {
    width: 18px;
    margin-right: 10px;
}

.toster-card-sec h2 {
    font-size: 16px;
    color: #000;
    margin-bottom: 5px;
}

.toster-card-sec p {
    margin-bottom: 0;
    font-size: 12px;
}

.toster-card-icon i {
    font-size: 19px;
    color: #22c55e;
    margin-top: -3px;
    display: block;
}


.toster-card.success h2 {
    color: #000;
}

.toster-card.success i {
    color: #000;
}

.toster-card.success {
    border-color: #adf8c9;
    background: #adf8c9;
}

.toster-card.error h2 {
    color: #000;
}

.toster-card.error i {
    color: #000;
}

.toster-card.error {
    border-color: #ff9393;
    background: #ff9393;
}

.toster-card.warning h2 {
    color: #000;
}

.toster-card.warning i {
    color: #000;
}

.toster-card.warning {
    border-color: #f97316;
    background: #f97316;
}
/*toster end*/
