
.title-bar
{
	display: flex;
  justify-content: space-between;
	color: white !important;
	/*
		!important annule les règles du fichier default.css
	*/
	background-image: repeating-linear-gradient(90deg, rgba(0, 0, 0, .8), 70%, rgba(255, 255, 255, .8)) !important;
	background-size: auto !important;
}

.title-bar span
{
	white-space: nowrap;
}

.title-bar .img-contener
{
	display: flex;
	align-items: center;
	cursor: pointer;
}

.title-bar .img-contener:hover
{
	background-color: red;
}

.title-bar img
{
	height: 20px;
}

@media print
{
	.title-bar
	{
		display: none !important;
	}
}