@media only screen and (max-width: 800px) {
    
    /* Force table to not be like tables anymore */
	#no-more-tables table, 
	#no-more-tables thead, 
	#no-more-tables tbody, 
	#no-more-tables th, 
	#no-more-tables td, 
	#no-more-tables tr { 
		display: block; 
	}
 
	/* Hide table headers (but not display: none;, for accessibility) */
	#no-more-tables thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
 
	#no-more-tables tr { border: 1px solid #ccc; }
 
	#no-more-tables td { 
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee; 
		position: relative;
		padding-left: 50%; 
		white-space: normal;
		text-align:left;
	}
 
	#no-more-tables td:before { 
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 45%; 
		padding-right: 10px; 
		white-space: nowrap;
		text-align:left;
		font-weight: bold;
	}
 
	/*
	Label the data
	*/
	#no-more-tables td:before { content: attr(data-title); }
}

.back-to-top {
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display:none;
}

/*
 * Component: Direct Chat
 * ----------------------
 */
.direct-nota .box-body {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  position: relative;
  overflow-x: hidden;
  padding: 0;
}
.direct-nota.nota-pane-open .direct-nota-contacts {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}
.direct-nota-messages {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  padding: 10px;
  height: 100%;
  overflow: auto;
}
.direct-nota-msg,
.direct-nota-text {
  display: block;
}
.direct-nota-msg {
  margin-bottom: 10px;
}
.direct-nota-msg:before,
.direct-nota-msg:after {
  content: " ";
  display: table;
}
.direct-nota-msg:after {
  clear: both;
}
.direct-nota-messages,
.direct-nota-contacts {
  -webkit-transition: -webkit-transform 0.5s ease-in-out;
  -moz-transition: -moz-transform 0.5s ease-in-out;
  -o-transition: -o-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
}
.direct-nota-text {
  border-radius: 5px;
  position: relative;
  padding: 5px 10px;
  background: #d2d6de;
  border: 1px solid #d2d6de;
  margin: 5px 0 0 50px;
  color: #444444;
}
.direct-nota-text:after,
.direct-nota-text:before {
  position: absolute;
  right: 100%;
  top: 15px;
  border: solid transparent;
  border-right-color: #d2d6de;
  content: ' ';
  height: 0;
  width: 0;
  pointer-events: none;
}
.direct-nota-text:after {
  border-width: 5px;
  margin-top: -5px;
}
.direct-nota-text:before {
  border-width: 6px;
  margin-top: -6px;
}
.right .direct-nota-text {
  margin-right: 50px;
  margin-left: 0;
}
.right .direct-nota-text:after,
.right .direct-nota-text:before {
  right: auto;
  left: 100%;
  border-right-color: transparent;
  border-left-color: #d2d6de;
}
.direct-nota-img {
  border-radius: 50%;
  float: left;
  width: 40px;
  height: 40px;
}
.right .direct-nota-img {
  float: right;
}
.direct-nota-info {
  display: block;
  margin-bottom: 2px;
  font-size: 12px;
}
.direct-nota-name {
  font-weight: 600;
}
.direct-nota-timestamp {
  color: #999;
}
.direct-nota-danger .right > .direct-nota-text {
  background: #dd4b39;
  border-color: #dd4b39;
  color: #ffffff;
}
.direct-nota-danger .right > .direct-nota-text:after,
.direct-nota-danger .right > .direct-nota-text:before {
  border-left-color: #dd4b39;
}
.direct-nota-primary .right > .direct-nota-text {
  background: #3c8dbc;
  border-color: #3c8dbc;
  color: #ffffff;
}
.direct-nota-primary .right > .direct-nota-text:after,
.direct-nota-primary .right > .direct-nota-text:before {
  border-left-color: #3c8dbc;
}
.direct-nota-warning .right > .direct-nota-text {
  background: #f39c12;
  border-color: #f39c12;
  color: #ffffff;
}
.direct-nota-warning .right > .direct-nota-text:after,
.direct-nota-warning .right > .direct-nota-text:before {
  border-left-color: #f39c12;
}
.direct-nota-info .right > .direct-nota-text {
  background: #00c0ef;
  border-color: #00c0ef;
  color: #ffffff;
}
.direct-nota-info .right > .direct-nota-text:after,
.direct-nota-info .right > .direct-nota-text:before {
  border-left-color: #00c0ef;
}
.direct-nota-success .right > .direct-nota-text {
  background: #00a65a;
  border-color: #00a65a;
  color: #ffffff;
}
.direct-nota-success .right > .direct-nota-text:after,
.direct-nota-success .right > .direct-nota-text:before {
  border-left-color: #00a65a;
}