/* TOASTS */
.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;
}

#toasts {
    min-height: 0;
    position: fixed;
    left: 35px;
    bottom: 20px;
    width: 400px;
    z-index: 1000;
}

#toasts p {
    margin: 0;
    font-weight: 700;
}

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

#toasts .toast.success {
    background: #d4edda;
    color: #155724;
}

#toasts .toast.warning {
    background: #fff3cd;
    color: #856404;
}

#toasts .toast.info {
    background: #e8efff;
    color: #365fb6;
}

#toasts .toast.error {
    background: #f8d7da;
    color: #721c24;
}

#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 30px;
    transition: all .5s ease-in-out;
}

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