#jquery-toast-container {
	display: block;
	position: fixed;
	max-width: 95%;
	pointer-events: none !important;
	margin: 0;
	padding: 0;
	z-index: 99999 !important;
}

@media only screen and (max-width: 576px) {
	.jquery-toast-container {
		width: 95%;
	}
}

@media only screen and (min-width: 576px) {
	.jquery-toast-container {
		width: 75%;
	}
}

@media only screen and (min-width: 768px) {
	.jquery-toast-container {
		width: 50%;
	}
}

@media only screen and (min-width: 992px) {
	.jquery-toast-container {
		width: 33%;
	}
}

@media only screen and (min-width: 1200px) {
	.jquery-toast-container {
		width: 25%;
	}
}

.jquery-toast {
	display: block;
	position: relative;
	width: 100%;
	margin: .25rem;
	padding: 0;
	border-radius: .35rem;
	border: 1px solid;
}

.jquery-toast-header {
	padding: .4rem .5rem .5rem .5rem;
	border-radius: .35rem .35rem 0 0;
	border-bottom: 1px solid;
}

.jquery-toast-header-title {
	font-weight: bold;
	width: calc(100% - 20px);
}

.jquery-toast-header-icon {
	font-size: 1.2rem;
	float: left;
	margin: -.15rem .5rem .25rem 0;
}

.jquery-toast-body {
	padding: .5rem;
	pointer-events: all !important;
	border-radius: 0 0 .35rem .35rem;
}


.jquery-toast-body a,
.jquery-toast-body a:link,
.jquery-toast-body a:visited {
	text-decoration: none;
	font-weight: bold;
	color: var(--bs-primary-text-emphasis, #6EA8FE);
}

.jquery-toast-body a:hover {
	filter: brightness(200%);
}

.jquery-toast-body-list {
	margin: 0 0 0 .15rem;
	padding:0;
}

.jquery-toast-body-list-item {
	list-style-type: disc !important;
	line-height: 1.25;
	margin: 0;
	padding: 0;
}

.jquery-toast-close-icon {
	position: absolute;
	top: -2px;
	right: 10px;
	font-size: 1.5rem;
	cursor: pointer;
	pointer-events: all !important;
}
