.ui-notify { 
	position: fixed;	
	bottom: 24px; 
	left: 24px;
	width: 360px;
	max-width: calc(100vw - 48px);
	z-index: 9999;
}
.ui-notify-message {
	position: relative;
	box-sizing: border-box;
	min-height: 88px;
	padding: 12px 38px 12px 12px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 12px 32px rgba(15, 23, 42, .18), 0 2px 8px rgba(15, 23, 42, .08);
	animation: jpn-enter .35s ease-out both;
}

.ui-notify-message:last-child { 
	margin-bottom:0; 
}

.ui-notify-message-style { 
	background: #fff;
	border: 1px solid #e5e7eb; 
}

.ui-notify-message-style h1 { 
	color:#fff; 
	font-weight:bold; 
}

.ui-notify-message-style p { 
	color:#fff; 
}

.ui-notify-close { 
	color:#fff; 
	text-decoration:underline;	
}

.ui-notify-click { 
	cursor:pointer;
}

.ui-notify-cross { 
	position: absolute;
	top: 8px;
	right: 9px;
	margin: 0;
	cursor:pointer; 
	text-decoration:none; 
	font-size: 18px;
	font-weight: 400;
	line-height: 24px;
	text-align: center;
	color: #64748b !important;
	width: 24px;
	height: 24px;
	padding: 0;
	border-radius: 50%;
}

.ui-notify-cross:hover { 
	color: #0f172a !important;
	background: #f1f5f9;
}

.ui-notify-cross:active { 
	position:relative; 
	top:1px; 
}

.jpn-image-area {
	float: left;
	display: block;
	width: 64px;
	height: 64px;
	margin-right: 13px;
	border-radius: 9px;
	overflow: hidden;
	background: #f8fafc;
}

.jpn-image-area img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.jpn-message-area {
	overflow: hidden;
}

.jpn-eyebrow {
	margin: 0 0 4px;
	font-family: 'PT Sans', Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: 700;
	line-height: 15px;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: #64748b;
}

.jpn-check {
	display: inline-block;
	margin-right: 4px;
	color: #16a34a;
}

.jpn-message {
	font-family: 'PT Sans', Arial,Helvetica,sans-serif;
	font-size: 14px;
	line-height: 18px;
	color: #1e293b;
	margin-bottom: 4px;
}

.jpn-message a {
	font-size: 14px;
	font-weight: 700;
	color: #40a1c9;
	text-decoration: none;
}

.jpn-message a:hover {
	text-decoration: underline;
}

.jpn-time-ago {
	font-family: 'PT Sans', Arial,Helvetica,sans-serif;
	font-size: 11px;
	line-height: 15px;
	color: #64748b;
}

@keyframes jpn-enter {
	from { opacity: 0; transform: translate3d(-18px, 0, 0); }
	to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@media only screen and (max-width: 767px) {
	.ui-notify {
		bottom: 12px;
		left: 12px;
		width: calc(100vw - 24px);
		max-width: none;
	}

	.ui-notify-message {
		min-height: 84px;
		padding: 10px 36px 10px 10px;
	}

	.jpn-image-area {
		width: 60px;
		height: 60px;
		margin-right: 11px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ui-notify-message {
		animation: none;
	}
}
