@CHARSET "ISO-8859-1";

.header_base {
	border-radius: 0px;
}

.headerContainer {
	width: 100%;
	height: 92px;
	padding: 23px;
	background-color: #F7F7F7;
	font-size: 38px;
	color: #574A55;
	
}
.headerImage{
    /* 	font-weight: bold; */
    /* 	font-size: 25px; */
    /* height: 58px; */
}

.badge{
    position: absolute;
    top: 6px;
    right: 2px;
    font-size: 14px ! important;
}
.badge-primary{
    background: #fc8675 ! important;
}
.badge-success{
/*     background-color: #2EC1CC ! important; */
		background-color: white ! important;
		color: #375A7F ! important;
}

/* CSS3 for animation*/
.animated { 
    -webkit-animation-duration: 1s; 
    animation-duration: 1s; 
    -webkit-animation-fill-mode: both; 
    animation-fill-mode: both; 
} 

@-webkit-keyframes bounce { 
    0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);} 
    40% {-webkit-transform: translateY(-5px);} 
    60% {-webkit-transform: translateY(-5px);} 
}

@keyframes bounce { 
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);} 
    40% {transform: translateY(-5px);} 
    60% {transform: translateY(-5px);} 
} 

.bounce { 
    -webkit-animation-name: bounce; 
    animation-name: bounce; 
}