.toast-top-right {
    top: 12px!important;
    right: 12px!important
}

#toast-container .toast {
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
     padding-left:20px;
    box-shadow: none;
    border-radius: 24px;
}

#toast-container>div {
    position: relative;
    pointer-events: auto;
    overflow: hidden;
    margin: 0 0 6px;
    padding: 15px 20px 15px 80px;
    width: auto;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background-position: 15px center;
    background-repeat: no-repeat;
    /* -moz-box-shadow: 0 0 12px #999;
    -webkit-box-shadow: 0 0 12px #999;
    box-shadow: 0 0 12px #999; */
    color: #000;
    opacity: 1;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
    filter: alpha(opacity=100);
    background-color: #FFF0D0;
    border-color: transparent;
    max-width:650px;
}




.toast-error{
    background-color: rgb(143, 28, 28)!important;
    color: white!important;
}

.toast-success{
    background-color: rgb(70, 181, 109)!important;
    color: rgb(246, 242, 242)!important;
}

.toast-warning{
    background-color: rgb(149, 139, 51)!important;
    color: rgb(246, 242, 242)!important;
}

.toast-info{
    background-color: rgb(51, 124, 149)!important;
    color: rgb(246, 242, 242)!important;
}