/*Toast Common Css*/
.toast {
    -ms-flex-preferred-size : 350px;
    flex-basis              : 350px;
    max-width               : 350px;
    font-size               : var(--font-16);
    line-height             : var(--line-20);
    background-color        : var(--basic-white);
    background-clip         : padding-box;
    border                  : none;
    box-shadow              : none;
    opacity                 : 0;
    border-radius           : 0;
    font-weight             : 400;
}

.toast .toast-header {
    display          : -ms-flexbox;
    display          : flex;
    -ms-flex-align   : center;
    align-items      : center;
    padding          : 0;
    color            : inherit;
    background-color : inherit;
    background-clip  : padding-box;
    border           : none;
    border-radius    : 0;
    font-weight      : inherit;
}

.toast .toast-body {
    padding : 0;
}
