.toast-custom {
    display: none;
    position: fixed;
    z-index: 9999999;
    border-radius: 10px;
    background-color: #fff;
    padding: 1.5em;
    -webkit-box-shadow: 0px 0px 12px 0px rgba(201,201,201,0.7);
    -moz-box-shadow: 0px 0px 12px 0px rgba(201,201,201,0.7);
    box-shadow: 0px 0px 12px 0px rgba(201,201,201,0.7);
    border: solid 1px;
    cursor: pointer;
}

.toast-custom-bottom-right {
    right: 100px;
    bottom: 20px;
}

.toast-custom-top-left {
    left: 20px;
    top: 10px;
}