/* body{
    background-color: grey;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
} */

#toast_main_container{
    position: fixed;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
    overflow: hidden;
    width: 400px;
    padding-bottom: 30px;
}


.toast_container{
    display: flex;
    align-items: center;
    justify-content: start;
    background-color: #ffffff;
    padding: 13px;
    max-width: 330px;
    min-width: 330px;
    position: relative;
    border-radius: 100px 0px 0px 100px;
    overflow: hidden;
    transform: translateX(100%);
    animation: moveLeft 0.5s linear forwards;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgb(209, 213, 219) 0px 0px 0px 1px inset;
}

@keyframes moveLeft {
    100%{
        transform: translateX(0%);
    }
}

.move_right{
    transform: translateX(0%);
    animation: moveRight 0.5s linear forwards;
}

@keyframes moveRight {
    100%{
        transform: translateX(100%);
    }
}

.container_error::after{
    background-color: #d60000;
}

.container_success::after{
    background-color: rgb(0, 158, 0);
}


.container_warning::after{
    background-color: rgb(218, 145, 0);
}

.toast_container::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    animation: disappear 5s linear forwards;
}
@keyframes disappear {
    100%{
        width: 0%;
    }
}

.icon{
    font-size: 15px;
    padding: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    margin-right: 10px;
}

.error{
    background: #d60000;
    border: 4px solid #760000;
}

.success{
    background:  rgb(0, 158, 0);;
    border: 4px solid  rgb(0, 115, 0);;
}
.warning{
    background: rgb(218, 145, 0);
    border: 4px solid  rgb(174, 117, 2);
}

.text_message p{
    margin: 0px;
    font-size: 15px;
    font-weight: 500;
    color: #000000;
}