/* ---- start demo code ---- */
/*body {
    background-color: #26282a;  
    color: #fff;
    font-family: Arial;
    font-size: 14px;
}*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1 {
    font-weight: 600;
    padding: 10px;
}

button {
    background: #fff;
    border: 0;
    border-radius: 4px;
    display: block;
    cursor: pointer;
    margin: 10px;
    padding: 5px 10px;
}

.custom-toast {
    display: flex;
    align-items: center;
}

.custom-toast img {
    background-size: 50px 50px;
    height: 50px;
    width: 50px;
}

.custom-toast p {
    font-size: 14px;
    padding: 10px;
}

/* ---- end demo code ---- */

#toasts {
    min-height: 0;
    position: fixed;
    right: 570px;
    top: 20px;
    width: 300px;
    z-index: 1000;
}

#toasts .toast {
    background: #f7f9fa;
    border-radius: 3px;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, .1);
    color: rgba(0,0,0, .6);
    cursor: default;
    margin-bottom: 20px;
    opacity: 0;
    position: relative;
    padding: 15px 1px 15px 10px;
    transform: translateY(15%);
    transition: opacity .5s ease-in-out, transform .5s ease-in-out;
    width: 100%;
    will-change: opacity, transform;
    z-index: 111100;
} 

#toasts .toast.success {
    background: #03C601;
    color:#fff;
}

#toasts .toast.warning {
    background: #ffc107;
    color:#fff;
}

#toasts .toast.info {
    background: #0d6efd;
    color:#fff;
}

#toasts .toast.error {
    background: #dc3545;
    color:#fff;
}

#toasts .toast.show {
    opacity: 1;
    transform: translateY(0);
    transition: opacity .5s ease-in-out, transform .5s ease-in-out;
}

#toasts .toast.hide {
    height: 0;
    margin: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 50px;
    transition: all .5s ease-in-out;
}

#toasts .toast .close {
    cursor: pointer;
    font-size: 24px;
    height: 16px;
    margin-top: -10px;
    position: absolute;
    right: 14px;
    top: 50%;
    width: 16px;
}

#toasts p{
    margin-bottom: 0;
}

.id-confirm{
    font-size: 30px;
}