.public-content img { max-width: 100%;}

#small-chat {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 1000;
  }
  #small-chat .badge {
	position: absolute;
	top: -3px;
	right: -4px;
  }
  .open-small-chat {
	height: 38px;
	width: 38px;
	display: block;
	background: var(--dark-90);
	padding: 9px 8px;
	text-align: center;
	color: #fff;
	border-radius: 50%;
  }
  .open-small-chat:hover {
	color: white;
	background: var(--dark);
  }
  .small-chat-box {
	display: none;
	position: fixed;
	bottom: 16px;
	right: 75px;
	background: #fff;
	border: 1px solid #e7eaec;
	width: 400px;
	height: 500px;
	/*border-radius: 4px;*/
  }
  .small-chat-box.ng-small-chat {
	display: block;
  }
  .body-small .small-chat-box {
	bottom: 70px;
	right: 20px;
  }
  .small-chat-box.active {
	display: block;
  }
  .small-chat-box {
	z-index: 1001;
  }
  .small-chat-box .heading {
	background: #2f4050;
	padding: 8px 15px;
	font-weight: bold;
	color: #fff;
  }
  .small-chat-box .chat-date {
	opacity: 0.6;
	font-size: 10px;
	font-weight: normal;
  }
  .small-chat-box .content {
	padding: 15px 15px;
  }
  .small-chat-box .content .author-name {
	font-weight: bold;
	margin-bottom: 3px;
	font-size: 11px;
  }
  .small-chat-box .content > div {
	padding-bottom: 20px;
  }
  .small-chat-box .content .chat-message {
	padding: 5px 10px;
	border-radius: 6px;
	font-size: 11px;
	line-height: 14px;
	max-width: 80%;
	background: #f3f3f4;
	margin-bottom: 10px;
	transition: all 2s;
  }
  .small-chat-box .content .chat-message.active {
	background: var(--success);
	color: #fff;
  }
  .small-chat-box .content .left {
	text-align: left;
	clear: both;
  }
  .small-chat-box .content .left .chat-message {
	float: left;
  }
  .small-chat-box .content .right {
	text-align: right;
	clear: both;
  }
  .small-chat-box .content .right .chat-message {
	float: right;
  }
  .small-chat-box .form-chat {
	padding: 10px 10px;
  }

.chat-div { position:relative; display:none; z-index:100}
.chat-div.active, .chat-div.active .small-chat-box { display:block}
.chat-user-list { position:fixed; right:20px; bottom:60px; margin:0; padding:0; z-index: 1002;}
.chat-user-list li { list-style:none; margin-bottom:5px; height: 28px; min-width: 38px; position: relative; }
.chat-user-list li a { height: 28px; width: 38px; min-width: 38px; display: block; position: absolute; right: 0; background:rgba(24, 188, 156, 0.5); padding:0; text-align:center; line-height:24px; text-align: center; color:var(--dark); border:solid 2px rgba(24, 188, 156, 1); border-radius:24px; text-transform:capitalize; -webkit-transition:all 0.5s; transition:all 0.5s; text-decoration: none; white-space: nowrap}
.chat-user-list li.offline a { background:rgba(0, 0, 0, 0.3); border:solid 2px rgba(0, 0, 0, 0.4)}
.chat-user-list li a span { display: none; }
.chat-user-list li a:hover { background: rgba(24, 188, 156, 1); color: var(--white); width: auto; padding: 0 10px;}
.chat-user-list li.offline a:hover { background:rgba(0, 0, 0, 0.5)}
.chat-user-list li a:hover span { display: inline;}

.private-chat-list { position: fixed; right: 400px; bottom: 0; }
.private-chat-list .small-chat-box { position: relative; float: right; width: 300px; margin-right: 10px;}

.modal #task-info table td div { max-width: 520px; overflow: auto;}

.form-group.row.hovered { padding-top: 8px; padding-bottom: 9px; margin-bottom: 0;}
.hovered:hover { background: #f8f9fa;}
