﻿.toastcustom-container {
    position: fixed;
    top: 13px;
    right: 226px;
    z-index: 10000;
}

.toastcustom {
    background-color: #d9534f;
    color: white;
    padding: 10px;
    border-radius: 5px;
    /*margin-bottom: 10px;*/
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 250px;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
    font-weight: bold;
    font-size: 16px;
}

    .toastcustom.hide {
        opacity: 0;
    }

    .toastcustom button {
        background: none;
        border: none;
        color: white;
        font-size: 16px;
        cursor: pointer;
    }

    .toastcustom .icon {
        margin-right: 10px;
        font-size: 20px;
    }

        .toastcustom .icon img {
            width: 15px;
            height: 15px;
        }
