.notif_custom {
	height: 30px;
	width: 100%;
	background-color: red;
	position: absolute;
	top: 0px;
	text-align: center;
	color: white;
	padding: 3px;
	display: none;
	font-size: 9;
}

.notif_tokooffline {
	position: fixed;
	background-color: red;
	width: 100%;
	height: 26px;
	z-index: 99999;
	text-align: center;
	color: #ffffff;
	top: 50px !important;
	left: 0;
	right: 0;
	line-height: 26px;
	font-weight: 700;
	font-size: 12px;
}
.text-tokooffline {
	display: inline-block;
	white-space: nowrap;
	animation: floatText 15s infinite linear;
	padding-left: 100%; /*Initial offset*/
}
.text-tokooffline:hover {
	animation-play-state: paused;
}
@keyframes floatText {
	to {
		transform: translateX(-100%);
	}
}
