/* 
    Component: texts
------------------------
*/

@CHARSET "UTF-8";


.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.text-nowrap {
  white-space: nowrap;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.text-muted {
  color: #999;
}


.text-success {
  color:#28a745 !important;
}

.text-danger {
  color:#dc3545 !important;
}

.text-warning {
  color:#ffc107 !important;
}

.text-info {
  color:#17a2b8 !important;
}

.text-bold {
  font-weight:bold;
}

.text-normal {
  font-weight: normal;
}

.bg-verylow-notif {
	background-color: #ffa07a;
	color :white;
}

.bg-Low-notif {
	background-color: #dc143c;
	color : white;
}

.bg-normal-notif {
	background-color: #ff0000;
	color : white;
}

.bg-urgent-notif {
	background-color: #8b0000;
	color : white;
}

.bg-veryurgent-notif {
	background-color: black;
	color : white;
}
.short-text {
	overflow: hidden;
  	white-space: nowrap;
  	text-overflow: ellipsis;
}
