﻿/* fix problem where dialog is behind FAB */
.blazored-toast-container {
    z-index: 1049;
}

.blazored-toast-container.position-bottomright {
    right: 1.1rem;
    bottom: 5.3rem;
}


.blazored-toast-close:hover {
    color: #2b2821 !important;
}

.blazored-toast {
    width: 25rem;
    opacity: 0.9;
}

@media (max-width: 992px) {
    .blazored-toast {
        width: 20rem;
        margin-bottom: 0.4rem;
    }
}

@media (max-width:600px) {
    .blazored-toast-heading {
        font-size: 1.2rem !important;
    }

    .blazored-toast-message {
        font-size: 0.8rem !important;
    }

    .blazored-toast {
        width: 15rem;
        padding: 0.8rem 1rem;
    }
}
