.text-overflow {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}


.card .card-image .card-title, .card .card-content {
	padding: 15px 20px;
}


.flex-center {
	align-items: center;
}

.justify-content {
	justify-content: space-between !important;
}

#loader {
	margin: 0;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 999999999999;
	height: 100%;
	border-radius: 0;
	background-color: black;
	overflow: hidden;
	transition: 200ms;
	opacity: 1;
}

#loader::before,
#loader::after {
	content: '';
	position: absolute;
	background-color: transparent;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	width: 400px;
	margin: -200px;
	left: 50%;
	right: 50%;
	top: 50%;
	bottom: 50%;
}

#loader::before {
	background-image: url('../../img/logoibr.png');
	top: 150px;
}

#loader::after {
	background-size: 80px;
	background-image: url('../../img/carregando-new.gif');
	bottom: 150px;
}

#loader.fadeOut{
	opacity: 0;
	/* display: none !important; */
}
