.edd-toast {

    position: fixed;

    left: 20px;
    bottom: 20px;

    min-width: 280px;
    max-width: 420px;

    padding: 14px 18px;

    border-radius: 10px;

    background: #181818;
    color: #fff;

    font-size: 14px;
    line-height: 1.5;

    z-index: 999999;

    opacity: 0;
    transform: translateY(20px);

    transition: all .3s ease;

    box-shadow:
    0 10px 30px rgba(0,0,0,.25);

}

.edd-toast.show {

    opacity: 1;
    transform: translateY(0);

}

.edd-toast-success {

    border-left: 4px solid #34c759;

}

.edd-toast-error {

    border-left: 4px solid #ff3b30;

}