

/* fonts.googleapis.com */
* {
	font-family: 'Public Sans', sans-serif;
    font-weight: 400;
	font-size: 14px;
}


/* table menu tile text*/
.sidebar-menu .nav-header {
	font-weight: 600;
	font-size: 14px;
	color: #ACAAC1;
}
/* sub menu tile*/
.nav-item *{
	font-weight: 400;
	font-size: 15px;
}

.sidebar-menu .nav-item > .nav-link {
    margin-bottom: 0rem;
    padding: 3px 0px 7px 20px;	
}

/* Sidebar Highlight */
.sidebar-wrapper .sidebar-menu > .nav-item > .nav-link.active:not(:hover) {
	color: #006e89;
    background-color: #d5dfe9;
}

/* Clean  log message */
.success-message {
    color: green;
    margin-left: 13px;
}
.error-message {
    color: red;
    margin-left: 13px;
}

/* Slide Noti */
/* Ticker Container */
.ticker-wrapper {
    width: 80%;
    overflow: hidden;
    white-space: nowrap;
}

/* Animation*/
.ticker-text {
    display: inline-block;
    padding-left: 100%; 
    animation: tickerSlide 40s linear infinite;
}

/* Mouse Slide pause*/
.ticker-text:hover {
    animation-play-state: paused;
    cursor: pointer;
}

/* Keyframes that will move from right to left */
@keyframes tickerSlide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}