.trovao-notify-container
{
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 1000000105;
	width: 380px;
	max-width: calc(100vw - 40px);
	pointer-events: none;
}

.trovao-notify
{
	position: relative;
	display: flex;
	align-items: flex-start;
	margin-bottom: 10px;
	padding: 14px 42px 14px 14px;
	color: #fff;
	background: #3f8ef8;
	border: 1px solid rgba(255,255,255,.14);
	border-left: 5px solid #3f8ef8;
	border-radius: .215rem;
	box-shadow: 0 10px 28px rgba(0,32,30,.24);
	pointer-events: auto;
	overflow: hidden;
	transform: translateX(18px);
	opacity: 0;
	transition: opacity .18s ease, transform .18s ease;
}

.trovao-notify.is-visible
{
	transform: translateX(0);
	opacity: 1;
}

.trovao-notify.is-closing
{
	transform: translateX(18px);
	opacity: 0;
}

.trovao-notify-success
{
	background: #6DA611;
	border-left-color: #6DA611;
}

.trovao-notify-primary
{
	background: #3f8ef8;
	border-left-color: #3f8ef8;
}

.trovao-notify-loading
{
	background: #32439E;
	border-left-color: #32439E;
}

.trovao-notify-warning
{
	background: #FFC928;
	border-left-color: #FFC928;
}

.trovao-notify-error,
.trovao-notify-danger
{
	background: #CD5C5C;
	border-left-color: #CD5C5C;
}

.trovao-notify-undo
{
	background: #263238;
	border-left-color: #263238;
}

.trovao-notify-icon
{
	flex: 0 0 auto;
	width: 22px;
	margin-right: 12px;
	line-height: 22px;
	text-align: center;
}

.trovao-notify-success .trovao-notify-icon
{
	color: #fff;
}

.trovao-notify-primary .trovao-notify-icon
{
	color: #fff;
}

.trovao-notify-loading .trovao-notify-icon
{
	color: #fff;
}

.trovao-notify-warning .trovao-notify-icon
{
	color: #000;
}

.trovao-notify-error .trovao-notify-icon,
.trovao-notify-danger .trovao-notify-icon
{
	color: #fff;
}

.trovao-notify-undo .trovao-notify-icon
{
	color: #fff;
}

.trovao-notify-content
{
	min-width: 0;
	flex: 1 1 auto;
	line-height: 1.4;
}

.trovao-notify-title
{
	display: none;
	margin-bottom: 3px;
	font-weight: 700;
	color: #fff;
}

.trovao-notify-has-title .trovao-notify-title
{
	display: block;
}

.trovao-notify-message
{
	color: #fff;
	word-break: break-word;
}

.trovao-notify-count
{
	margin-left: 5px;
	font-weight: 700;
}

.trovao-notify-details
{
	display: none;
	margin-top: 6px;
	font-size: 1rem;
	color: rgba(255,255,255,.78);
	word-break: break-word;
}

.trovao-notify-warning .trovao-notify-details
{
	color: #000;
}

.trovao-notify-warning .trovao-notify-title,
.trovao-notify-warning .trovao-notify-message
{
	color: #000;
}

.trovao-notify-warning .trovao-notify-close
{
	color: rgba(0,0,0,.55);
}

.trovao-notify-warning .trovao-notify-close:hover,
.trovao-notify-warning .trovao-notify-close:focus
{
	color: #000;
}

.trovao-notify-has-details .trovao-notify-details
{
	display: block;
}

.trovao-notify-close
{
	position: absolute;
	top: 8px;
	right: 8px;
	width: 26px;
	height: 26px;
	padding: 0;
	color: rgba(255,255,255,.72);
	background: transparent;
	border: 0;
	line-height: 26px;
	text-align: center;
	cursor: pointer;
}

.trovao-notify-close:hover,
.trovao-notify-close:focus
{
	color: #fff;
	outline: 0;
}

.trovao-notify a
{
	font-weight: 700;
	color: #FDCF6F;
}

@media (max-width: 479.98px)
{
	.trovao-notify-container
	{
		top: 10px;
		right: 10px;
		left: 10px;
		width: auto;
		max-width: none;
	}
}
