I'm implementing Ngx-toastr in angular 6 with typescript.
The problem is that I can't make it look presentable because I don't know which CSS is override on that ngx-toastr class I wrote some CSS on Style.css file ngx-toastr and I want border-radius: 15px; but inner part not taking rounded corner with border-radius: 15px; 
This is my Css Code
.toast-container .ngx-toastr {
    position: relative;
    overflow: hidden;
    margin: 0 0 6px;
    padding: 15px 15px 15px 50px;
    width: 300px;
    border-radius: 15px !important;
    background-position: 15px center;
    background-repeat: no-repeat;
    background-size: 24px;
    box-shadow: 0 0 12px #999;
    color: #fff;
    border-image-source: linerar-gradient(red,purple) !important;
    border: 4px solid green !important;
    border-image-source: linear-gradient(red, purple) !important;
    border-image-slice: 20 !important;
}
.toast-success {
    background-color: #51a351;
}
But My Expectation is I want same as in this picture if u want to check then visit this link and click on RESET button to show toastr Click Here to visit that site
