

.toast {
    background-clip: padding-box;
    background-color: #254962;
    border: 1px solid #3f5576;
    border-radius: 3px;
    box-shadow: 2px 2px 3px 0px black;
    color: #fff;
    font-size: 0.875rem;
    max-width: 100%;
    pointer-events: auto;
    width: 350px;
	padding: 3px 7px;
}

.toast.showing {
    opacity: 0
}

.toast:not(.show) {
    display: none
}

.toast-container {
    padding: 1rem !important;
    right: 0 !important;
    bottom: 0 !important;
	position: fixed !important;

    max-width: 100%;
    pointer-events: none;
    width: max-content;
    z-index:1090;
}

.toast-container>:not(:last-child) {
    margin-bottom: var(--bs-toast-spacing)
}

.toast-header {
	align-items: center;
    background-clip: padding-box;
    border-bottom: 1px solid #0000002d;
    border-top-left-radius: calc(0.375rem - 1px);
    border-top-right-radius: calc(0.375rem - 1px);
    color: #6585a5bf;
    display: flex;
    padding: 0.5rem 0.75rem;
}

.toast-header>span {
    border-radius: 50% !important;
    background-color: #dc2626 !important;
	padding: .5rem !important;
	margin-right: .5rem !important;
	border-color: rgba(#f8f9fa) !important;
	border: 1 solid #3d658d !important;
}

.toast-header>strong {
	margin-right: auto !important;
}

.toast-header .btn-close {
    margin-left: var(--bs-toast-padding-x);
    margin-right: calc(var(--bs-toast-padding-x)*-.5);

    --bs-btn-close-color: #000;
    --bs-btn-close-bg: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3E%3C/svg%3E");
    background: transparent var(--bs-btn-close-bg) center / 1em auto no-repeat;
    border: 0;
    border-radius: .375rem;
    box-sizing: content-box;
    height: 1em;
    opacity: 0.5;
    padding: .25em;
    width: 1em;
}

.toast-body {
    padding: 0.75rem;
    word-wrap: break-word
}