@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
#toaster {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 1000;
    text-align: center;
    font-size: 18px;
    font-weight: 900;
}

#toaster div {
    display: flex;
}

.toast {
    display: flex;
    align-items: center;
    min-width: 300px;
    margin-bottom: 10px;
    padding: 15px;
    color: #fff;
    background-color: #333;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.5s, opacity 0.5s;
}

.toast img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
}

.toast .message {
    flex: 1;
    font-size: 18px;
    font-weight: 900;
    text-align: center;
}

.toast button {
    background-color: transparent;
    font-weight: bold;
    color: var(--color2);
    border: none;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 10px;
}

.toast button:hover {
    background-color: #f0f0f0;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast.success {
    background-color: #333333;
}

.toast.error {
    background-color: #dc3545;
}

#toaster2 {
    position: fixed;
    top: 80px;
    right: 50%;
    transform: translateX(50%);
    z-index: 1000;
    text-align: center;
    font-size: 16px;
    font-weight: 800;
}

.toast2 {
    min-width: 250px;
    margin-bottom: 10px;
    padding: 15px;
    color: #fff;
    background-color: #333;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(-100%);
    transition: transform 0.5s, opacity 0.5s;
}

.toast2.show {
    opacity: 1;
    transform: translateY(0);
    text-align: center;
    font-size: 16px;
    font-weight: 800;
}

.toast2.success {
    background-color: #333333;
    text-align: center;
    font-size: 16px;
    font-weight: 800;
}

.toast2.error {
    background-color: #dc3545;
    text-align: center;
    font-size: 16px;
    font-weight: 800;
}

.mrt-2{
    margin-top: 2rem;
    
}

.font-500{
    font-weight: 500 !important;
}
.font-600{
    font-weight: 600;
}

.text-ellipsis {
    overflow: hidden;            
    text-overflow: ellipsis;    
    white-space: nowrap;     
    max-width: 100%;
    width: 50vw;
   
}