@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Regular.ttf');
}
@font-face {
  font-family: 'Roboto Condensed';
  src: url('../fonts/RobotoCondensed-Regular.ttf');
}

* {
  box-sizing: border-box;
}
html,
html body,
html body.mobile div#root {
  height: 100%;
  cursor: default;
  font-family: Roboto, "Helvetica Neue" ,Helvetica, Arial, sans-serif;
  overflow: hidden;
  font-size: 14px;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
  color: #333;
  background-color: #fff;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}

h1, .h1, h2, .h2, h3, .h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

h3, .h3 {
  font-size: 24px;
}

body.mobile div, body.mobile a {
  cursor: pointer !important;
}
.selectable {
  -webkit-touch-callout: default;
  -webkit-user-select: initial;
  -khtml-user-select: all;
  -moz-user-select: all;
  -ms-user-select: all;
  user-select: text;
  cursor: text;
}

html, body, .scrollable, .react-grid-Canvas {
  -webkit-overflow-scrolling: touch;
}

div {
  /*position: relative;*/
}

.shadow {
  -webkit-box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.41);
  -moz-box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.41);
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.41);
}

::-webkit-scrollbar-track { }

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background-color: #949494;
}

::-webkit-scrollbar-thumb:hover{
  background-color: #434343;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
  display: block;
  height: 12px;
  width: 12px;
}

::-webkit-scrollbar-button:vertical:end:increment {
  background-image: url("../Img/arrowDown.png");
}

::-webkit-scrollbar-button:vertical:start:decrement {
  background-image: url("../Img/arrowUp.png");
}

::-webkit-scrollbar-button:horizontal:end:increment {
  background-image: url("../Img/arrowRight.png");
}

::-webkit-scrollbar-button:horizontal:start:decrement {
  background-image: url("../Img/arrowLeft.png");
}

textarea {
  resize: none;
  font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
  border-radius: 5px;
  width: 100%;
  min-height: 32px;
  padding: 7px;
  display: block;
  transition: height 0.2s ease;
}

.textarea--container {
  position: relative;
}

.textarea--ghost {
  font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
  border-radius: 5px;
  width: 100%;
  min-height: 32px;
  padding: 7px;
  opacity: 0.3;
  display: block;
  white-space: pre-wrap;
  word-wrap: break-word;
  visibility: hidden;
  position: absolute;
  top: 0;
}

/* unvisited link */
a:link {
  color: inherit;
}

/* visited link */
a:visited {
  color: inherit;
}

/* mouse over link */
a:hover {
  color: inherit;
}

/* selected link */
a:active {
  color: inherit;
  text-decoration: none;
}

input,
input[type="text"],
input[type="password"],
input[type="email"],
textarea,
input[type="date"],
input[type="amount"],
input[type="number"]{
  background: #f5f5f5;
  border: 1px solid transparent;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
}

.jc-drawer-content input,
.jc-drawer-content input[type="text"],
.jc-drawer-content input[type="password"],
.jc-drawer-content input[type="email"],
.jc-drawer-content textarea,
.jc-drawer-content input[type="date"],
.jc-drawer-content input[type="amount"],
.jc-drawer-content input[type="number"],
.tile-body input,
.tile-body input[type="text"],
.tile-body input[type="password"],
.tile-body input[type="email"],
.tile-body textarea,
.tile-body input[type="date"],
.tile-body input[type="amount"],
.tile-body input[type="number"]
{
  background: #ffffff;
  margin-bottom:2px;
}

.datatable .react-grid-Row input {
  background: #ffffff;
  margin-bottom:2px;
  border: 1px solid #e5e5e5;
}

input[type="text"]:hover,
input[type="password"]:hover,
input[type="date"]:hover,
input[type="email"]:hover,
input[type="number"]:hover,
input[type="amount"]:hover,
textarea:hover {
  border: solid 1px #e5e5e5;
}
input:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
textarea:focus,
input[type="number"]:focus,
input[type="amount"]:focus {
  outline: none !important;
  border: 1px solid #b3b3b3 !important;
  /*outline: #808080 auto 5px !important;*/
}


a:focus,
span:focus
{
  outline: none !important;
}

input:disabled,
input[type="text"]:disabled,
input[type="password"]:disabled,
input[type="date"]:disabled,
input[type="number"]:disabled,
input[type="amount"]:disabled
{
  background: transparent;
  border: none;
  color: #bdbdbd;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;}


div:focus {
  outline: none !important;
}

.borderRadius {
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}

.tile {
  display: inline-block;
  width: 160px;
  height: 160px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.mm-admin-tiles-layout .tile {
  width: 250px;
  height: 250px;
  margin: 10px;
}

.tile .tile-body {

  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  padding: 20px;
  margin: 5px;

  background-color: #f5f5f5;
  border-radius: 3px;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;

  -webkit-box-shadow: 1px 1px 3px rgba(185, 185, 185, 1);
  -moz-box-shadow: 1px 1px 3px rgba(185, 185, 185, 1);
  box-shadow: 1px 1px 3px rgba(185, 185, 185, 1);

  -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.tile-large-text .tile .tile-body{
	padding: 20px 5px;
}

.mm-admin-tiles-layout .tile .tile-body {
  border-radius: 15px;
  border: 3px solid #00abbd;

  background: -webkit-linear-gradient(top, #f1f1f1 0%,#eeeeee 50%,#f1f1f1 100%);
  background: -moz-linear-gradient(top, #f1f1f1 0%,#eeeeee 50%,#f1f1f1 100%);
  background: linear-gradient(top, #f1f1f1 0%,#eeeeee 50%,#f1f1f1 100%);

  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.tile .tile-body::after {
  content: "";
  border-radius: 3px;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 4px 4px 3px rgba(185, 185, 185, 1);
  -moz-box-shadow: 4px 4px 3px rgba(185, 185, 185, 1);
  box-shadow: 4px 4px 3px rgba(185, 185, 185, 1);

  opacity: 0;
  -moz-opacity: 0;
  -khtml-opacity: 0;

  -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  overflow: hidden;
}

.mm-admin-tiles-layout .tile .tile-body::after {
  border-radius: 15px;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.tile:hover .tile-body {
  -ms-transform: translate(-5px, -5px);
  -webkit-transform: translate(-5px, -5px);
  transform: translate(-5px, -5px);
}

.tile:hover .tile-body::after {
  opacity: 1;
  -moz-opacity: 1;
  -khtml-opacity: 1;
}

.mm-admin-tiles-layout .tile .tile-body > div:first-of-type {
  height: 100px !important;
}
.mm-admin-tiles-layout .tile .tile-body > div:last-of-type {
  font-size: 18px !important;
  text-transform: uppercase !important;
  color: #952370 !important;
}
.mm-admin-tiles-layout .tile .tile-body > div:first-of-type  > svg {
  height: 100px !important;
  width: 100px !important;
}

.popup {
  -moz-border-radius-topleft: 10px;
  -moz-border-radius-topright:10px;
  -webkit-border-top-left-radius:10px;
  -webkit-border-top-right-radius:10px;
  border-top-left-radius:10px;
  border-top-right-radius:10px;
}

input:-ms-input-placeholder {
  color: LightGrey;
}

.error {
  border: solid 1px red;
  outline-style: solid! important;
  outline-color: red! important;
}

.had-error {
  border: solid 1px red;
}

.page-not-found-layout {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  right: 0;
  margin: 20%;
  text-align: center;
}

.page-not-found-layout button{
  margin: 20px;
}

@media screen and (max-width: 1024px) {
  input,
  input[type="text"],
  input[type="password"],
  textarea,
  input[type="date"],
  input[type="number"],
  input[type="amount"] {
    background: white;
    border: solid 1px #e5e5e5;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
  }

  input:focus,
  input[type="text"]:focus,
  input[type="password"]:focus,
  textarea:focus,
  input:hover,
  input[type="text"]:hover,
  input[type="password"]:hover,
  input[type="date"]:hover,
  input[type="number"]:hover,
  input[type="amount"]:hover,
  textarea:hover {
    outline: none !important;
    border: solid 1px #e5e5e5;
  }

  input:disabled,
  input[type="text"]:disabled,
  input[type="password"]:disabled,
  input[type="date"]:disabled,
  input[type="number"]:disabled,
  input[type="amount"]:disabled
  {
    background: transparent;
    border: solid 1px #e5e5e5;
    color: #bdbdbd;
  }
}

p {
  margin: 0!important;
}

.ql-align-right {
  text-align: right;
}

.ql-align-center {
  text-align: center;
}

.ql-align-justify {
  text-align: justify;
}

.ql-clipboard {
  display: none;
}

.ql-editor {
  min-height: 20px;
  padding: 5px;
}

.ql-editor h1,
.ql-editor h2,
.ql-editor h3,
.ql-editor h4,
.ql-editor h5,
.ql-editor h6 { font-size: 1em; font-weight: normal; }

div.clr{
  clear:both;
}
div.clr::after {
  clear:both;
  content:"";
  display: table;
}

/* ******** FULLCALENDAR ******** */

.fc table td, .fc table th {
  border-color: #f1f1f1;
}

.fc-view {
  z-index: 0;
}

.fc-time-grid .fc-slats td{
  height:3vh;
}

.fc .fc-toolbar button {
  background-image: none !important;
  border-color: #e5e5e5 !important;
  box-shadow: none;
  text-shadow: none;
  border-radius: 2px;
  z-index: 0 !important;
}
.fc .fc-toolbar button:focus {
  outline-width: 0;
}
.fc .fc-toolbar button.fc-state-hover {
  background-color: #960e2c !important;
  color: #fff;
}
.fc h2, .fc thead.fc-head th {
  font-family: "Roboto Condensed", Roboto, "Helvetica Neue" ,Helvetica, Arial, sans-serif;
  text-transform: uppercase;
}
.fc h2 {
  font-weight: 400;
  color: #1a1a1a;
}
.fc thead.fc-head th {
  color: #b3b3b3;
  font-weight: normal;
}
.fc td.fc-other-month {
  background-color: #fafafa;
}
.fc td.fc-today {
  background-color: #e5e5e5;
  /*background-color: rgba(150,14,44,0.1);*/
}
.fc a.fc-event {
  background-color: #960e2c;
  border-color: #960e2c;
  padding: 0 2px;
}

.fc a.fc-more {
  color: #960e2c;
}
.fc a.fc-event .fc-bg {
  background: none;
  opacity: 0;
}
.fc thead.fc-head th.fc-today, .fc .fc-content-skeleton td.fc-today .fc-day-number {
  background: none;
  color: #960e2c;
  font-weight: 600;
}
.fc .fc-agendaDay-view td.fc-today {
  background: none;
}
.fc .fc-agendaDay-view a.fc-event, .fc .fc-agendaWeek-view a.fc-event {
  border-color: #7D0013;
}

.fc-readonly-event {
  opacity: 0.5 !important;
}

.fc-selected-event {
  background-color: #434343 !important;
}

.fc .fc-toolbar {
  padding: 10px 30px 0 10px;
}

.fc-highlight {
  background: #aaaaaa;
  opacity: .5;
}

@media (max-width:768px) {
	.fc-time-grid .fc-slats td{
	  height:2em;
	}
  .fc .fc-center {
    margin-top: 10px;
  }
  .fc .fc-center h2 {
    font-size: 20px;
  }
  .fc .fc-center button {
    font-size: 10px;
  }
  .fc .fc-toolbar.fc-header-toolbar>*>* {
    margin-left: 0.35em;
  }
  .fc .fc-more-cell div {
    margin-top: 3px;
    line-height: 10px;
  }
}

@media (max-width:768px) {
  .fc .fc-center h2 {
    font-size: 16px;
  }
}

body.mobile .fc .fc-toolbar button.fc-state-hover {
  background-color: #f5f5f5;
  color: #333;
  border-color: #e5e5e5;
}

.timesheet-view .date-selector {
  text-align: center;
}
.timesheet-view .date-selector span {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 500;
}
.timesheet-view .date-selector span.full-date {
  font-size: 1.5em;
}
.timesheet-view .date-selector span.day-of-week {
  font-size: 1.2em;
  text-transform: uppercase;
  display: block;
}
.timesheet-view .date-selector a {
  margin: 0 .75em;
  display: inline-block;
  padding: 0 .6em;
  border: 1px solid #e5e5e5;
  border-radius: 2px;
  background: #f1f1f1;
  font-size: 1.5em;
  cursor: pointer;
}
@media (max-width: 500px) {
  .timesheet-view .date-selector a {
    padding: 0 .25em;
  }
}
.timesheet-view .date-selector a:hover {
  color: #fff;
  background: #960e2c;

}.timesheet-view .date-selector a:hover svg {
  fill: #fff !important;
}
 .timesheet-view{
   display: flex;
   align-items: stretch;
   flex: 1;
 }

.datatable {
  flex: 1;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.datatable > div{
  flex: 1;
  display: inherit;
  align-items: stretch;
}

.datatable .react-grid-Container{
  width: 100%!important;
  min-width: 100%;
  position: relative;
}

.datatable .react-grid-Main {
	font-size: 12px;
  background-color: #fff;
  color: inherit;
  padding: 0;
  outline: 1px solid #e7eaec;
  clear: both;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}

.datatable .react-grid-Canvas {
  background-color: #fff;
  height: 100%!important;
  max-height: 100%;
  width: 100%!important;
  min-width: 100%;
}

.datatable .react-grid-Grid {
    background-color: #fff;
    height: 100%!important;
    max-height: 100%;
}

.datatable .react-grid-Grid {
    border: 0;
    height: 100%!important;
    min-height: 100%!important;
}

.datatable .widget-HeaderCell__value,
.datatable .react-grid-Cell__value {
  padding: 0 10px;
  position: relative;
  top: 50%;
  white-space: nowrap;
  overflow: hidden;
  transform: translateY(-50%);
}

.datatable .react-grid-Cell__value input:disabled{
  color: rgb(26,26,26);
}

.datatable .react-grid-HeaderCell {
	color: #b3b3b3;
	font-size: 14px;
  font-family:'Roboto Condensed',sans-serif;
	text-transform: uppercase;
	border-right: 1px solid #ddd;
  box-sizing: border-box;
  text-align: left;
  font-weight: 600;
  background-color: #fff;
}
.datatable .react-grid-Header {
  background-color: #fff;
}

.datatable .react-grid-HeaderRow {
  width: 100%!important;
  min-width: 100%;
  line-height: 1.3;
}

input, button, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/*.datatable .react-grid-HeaderCell:first-child {
	text-align: center;
}*/

.datatable .react-grid-Cell {
  box-sizing: border-box;
  background-color: #fff;
  padding-left: 0;
  padding-right: 0;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  font-family: Roboto, sans-serif;
  font-size: 14px;
}

.datatable .react-grid-Cell--locked:last-of-type {
  z-index: 8;
}
.datatable .react-grid-HeaderCell-sortable {
  padding: 1px 10px;
}

.datatable .react-grid-Cell__value .svg-icon{
  text-align: center;
}

.datatable .react-grid-Cell__value .svg-icon > div {
	height: 30px !important;
}

.datatable .react-grid-Row--even .react-grid-Cell {
	background-color: #f1f1f1;
}

.datatable .react-grid-Row--odd .react-grid-Cell {
	background-color: #fff;
}

.datatable .react-grid-Row.row-context-menu .react-grid-Cell, 
.datatable .react-grid-Row:hover .react-grid-Cell {
    background-color: #e5e5e5;
}

.datatable .react-grid-Row.row-selected .react-grid-Cell,
.datatable .react-grid-Row .row-selected .react-grid-Cell {
    color: #fff;
	  background-color: #960e2c;
}

.datatable .react-grid-Row .row-selected div {
  color: #fff !important;
}

.datatable .react-grid-Cell__value span div {
	text-overflow: ellipsis;
	white-space: nowrap;	    
    overflow: hidden;
}

.datatable .react-grid-Cell__value .react-grid-checkbox-container {
	text-overflow: initial;
}

.datatable .row-selected svg path {
	fill: #fff;
}

.google-login {
  position: absolute;
  bottom: 2px;
}

.google-button {
  position: relative;
  float: right;
  margin-top: 15px;
  color: white;
}

.google-button-background{
  background-color: #3367d6;
}


/**** Forms ****/

.form-with-cancel-save {
  width: 100%;
  padding-right: 70px;
  position: relative;
  min-height: 100px;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.cancel-save-container {
  position: relative;
  display: flex;
  flex-direction: column;
}

.form-with-cancel-save-overlay {
  display: flex;
  position: relative;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.input--short {
  width: 100px !important;
}

/**** Helpers ****/
.link-like {
  cursor: pointer;
}

.link-like:hover {
  text-decoration: underline;
}

.section-title {
  border-bottom: 1px solid #808080;
  white-space: normal;
  position: relative;
  font-size: 16px;
  font-family: 'Roboto Condensed', sans-serif;
  margin-bottom: 10px;
  padding-bottom: 2px;
  cursor: pointer;
}

.col-two-thirds {
    float: left;
    width: 66.666%
}

.col-one-third {
    float: left;
    width: 33.333%
}

.single-row-ellipse {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

div.general-preferences-form {
  margin: 20px 35px 20px 20px;
}
.localizable-string-btn {
  background: linear-gradient( to bottom, #f1f1f1, #cbcbcb) !important;
  cursor: pointer;
  border: 1px solid #cbcbcb;
  color: #1a1a1a;
}
button {
  background: linear-gradient( to bottom, #f1f1f1, #cbcbcb);
  cursor: pointer;
  border: 1px solid #cbcbcb;
  color: #1a1a1a;
  padding: 7px;
  border-radius: 10px;
  font-family: Roboto, "Helvetica Neue" ,Helvetica, Arial, sans-serif;
}
button:hover {
  background: linear-gradient( to bottom, #f1f1f1, #e5e5e5);
  border: 1px solid #e5e5e5;
}

button.svgBtn{
  background:none;
  border:none;
  padding:2px;
}

.localizable-string-btn:hover {
  background: linear-gradient( to bottom, #f1f1f1, #e5e5e5) !important;
  border: 1px solid #e5e5e5;
}

div.guide-btn-wrapper {
  text-align: center;
  margin-top: 10px;
}
div.guide-btn-wrapper button {
  padding: 10px 25px;
}
div.guide-btn-wrapper button a {
  text-decoration: none;
  font-size: 16px;
}
.joyride-beacon,
.joyride-tooltip__button,
.joyride-tooltip__button:hover {
  background-image: none;
  border: none;
}
div.prompt-box {
  padding: 10px;
}

table .subrow:hover .subRowDelete a{
  display:block!important;
}

table .mainrow:hover .mainRowDelete a{
  display:block!important;
}

.security-seal {
  position: relative;
}
.security-seal .security-seal-tooltip {
  position: absolute;
  z-index: 9999;
  background: #f1f1f1;
  padding: 15px;
  width: 300px;
  text-align: center;
}
.security-seal .security-seal-tooltip h3,
.security-seal .security-seal-tooltip a {
  color: #960e2c;
}
.security-seal .security-seal-tooltip h3 {
  font-family: 'Roboto Condensed', sans-serif;
  text-transform: uppercase;
  margin-top: 0;
}
.security-seal .security-seal-tooltip a {
  display: inline-block;
  margin-top: 10px;
}


div.editable-summary {
  padding-right: 50px;
}
div.summary-section-wrapper {
  margin-bottom: 15px;
}

div.coi-words {
  display: inline-block;
  margin: 10px;
}
div.coi-words::after {
  clear: both;
}
div.coi-search-word, div.coi-remove-word-btn {
  float: left;
}
button.coi-remove-word-btn {
  margin-left: 5px;
  padding: 2px 5px;
  border-radius: 5px;
}

table.account-links-table,
table.taxes-groups-table {
  min-width: 400px;
  border: 1px solid #b3b3b3;
  border-collapse: collapse;
  margin-bottom: 10px;
}

table.taxes-account-links-table {
  width: 50%;
  min-width: 400px;
  border: 1px solid #b3b3b3;
  border-collapse: collapse;
}

table.account-links-table th,
table.taxes-account-links-table th,
table.taxes-groups-table th {
  background: #e5e5e5;
  color: #808080;
  font-size: 11px;
  font-weight: normal;
  text-align: left;
  padding: 5px;
}
table.account-links-table td,
table.taxes-account-links-table td {
  width: 50%;
  border: 1px solid #b3b3b3;
  padding: 0 5px;
}

table.taxes-groups-table td {
  width: 50%;
  border: 1px solid #b3b3b3;
  padding: 0;
  border-collapse: collapse;
}

div.small-calendar-dayofweek {
  color: #b3b3b3;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 14px;
  margin-bottom: 7px;
}

div.toolbar_icon_with_expand .icon,
div.toolbar_icon_with_expand .separator,
div.toolbar_icon_with_expand .expand {
  float: left;
}
div.toolbar_icon_with_expand::after {
  clear: both;
}
div.toolbar_icon_with_expand .separator {
  width: 1px;
  height: 30px;
  margin: 0 2px 0 4px;
  display: inline-block;
  background: #1a1a1a;
}

div.toolbar_icon_with_expand .expand {
  padding: 5px 0px;
}

.view-type-selector {
  width: 100%;
  padding: 10px;
}

.divhref{
	text-decoration: underline;

}

.divhref:hover{
	color:#960e2c;
	cursor:pointer;
}

.divBtn:hover{
  cursor:pointer;
  background-color: #e5e5e5;
}

/**** CollectionBase.jsx ****/

.jc-table-cell{
  border: 1px solid rgb(192, 192, 192);
  padding: 0;
  textAlign: left;
}

/**** NotLoggedWrapper.jsx ****/

.unlogged-layout{
  position: absolute;
  top:0;
  bottom:0;
  right:0;
  left:0;
  text-align: center;
  height: 100%;
}

.unlogged-layout .jc-apiloader-layout{
  align-items: flex-start;
  height: 100%;
}

.not-logged-container {
  margin: 30px auto 30px auto;
  position: relative;
  display: inline-flex;
  flex-direction: column;
  text-align: left;
}

.not-logged-container-mobile {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.not-logged-container-header {
  padding: 10px;
  background: #e5e5e5;
}

.not-logged-container-header button {
  background: none;
  text-transform: uppercase;
  text-decoration: underline;
  color: #960e2c !important;
  border: none;
}

.not-logged-container-header button:hover {
  color: #780b23 !important;
}

.not-logged-container-body,
.not-logged-container-body-ie {
  padding: 20px;
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.not-logged-container-body {
  min-height: 200px;
}

.not-logged-container-body-ie {
  min-height: 350px;
}

.not-logged-container-footer {
  padding: 10px;
  background: #e5e5e5;
  display: flex;
}

.not-logged-container-footer a {
  color: #960e2c !important;
  text-decoration: underline;
}

.not-logged-container-footer a:hover {
  color: #780b23 !important;
}

.not-logged-container-footer-left {
  width: 100%;
}

/**** Login.jsx ****/

.login, .advertising-window-wrapper{
  height: 100%;
  display: flex;
  position: absolute;
  top:0;
  bottom:0;
  right:0;
  left:0;
}

.advertising-aside{
  width: 33%;
}
.advertising-aside iframe{
  width: 100%;
  height: 100%;
  border: none;
}

.login-window, .advertising-related-window{
  width: 66%;
  text-align: center;
}

.login-window-form{
  min-width: 300px;
}

@media (max-width: 1024px) {
  .login-window {
    width: 100%;
    bottom: 0;
  }
  .login-aside {
    display: none;
  }
}

.jc-login-mobile-app-message{
  width: 300px;
  margin: auto auto 0px;
  overflow: hidden;
}

.jc-login-warning-message{
  width: 300px;
  margin: auto auto 0px;
  overflow: hidden;
}

.login-input-user{
  margin: 5px;
}
.login-input-password{
  margin: 5px;
}
.login-input-connection{
  margin: 5px;
}
.login-messages{
  margin: 5px;
}

.login-input-user,
.login-input-password,
.login-messages,
.reset-input-email,
.reset-input-new,
.reset-input-confirm,
.reset-input-btn,
.entitycreate-input-email,
.entitycreate-input-btn,
.login-input-connection{
  margin: 5px;
}

.not-logged-btn-container,
.not-logged-otherbtns-container{
  text-align: center;
}

.not-logged-container-body .not-logged-otherbtns-container button,
.not-logged-container-body .not-logged-otherbtns-container a {
  background: transparent;
  border: none;
  color: #808080 !important;
  font-size: 13px;
  text-decoration: underline;
  margin-top: 5px;
  padding: 0;
}

.not-logged-container-body .not-logged-otherbtns-container button:hover,
.not-logged-container-body .not-logged-otherbtns-container a:hover {
  color: #444444 !important;
}

.not-logged-container-body .not-logged-btn-container button {
  margin: 5px auto;
  padding: 8px 20px;
  border: none;
  background: #960e2c;
  background: -moz-linear-gradient(top, #960e2c 0%, #780b23 100%);
  background: -webkit-linear-gradient(top, #960e2c 0%,#780b23 100%);
  background: linear-gradient(to bottom, #960e2c 0%,#780b23 100%);
  color: #fff !important;
  font-size: 16px;
  border-radius: 20px;
}

.not-logged-container-body .not-logged-btn-container button:hover {
  background: #780b23;
}

/**** TitledPage.jsx ****/

.jc-titled-page-layout{
  display: flex;
  flex: 1;
  flex-direction: column;
  overflow: hidden;
}

.jc-titled-page-title{
  padding: 5px;
  border-top: solid 1px #fff;
  border-bottom: solid 1px #b3b3b3;
  height: auto;
  background: #e5e5e5;
  font-size: 17px;
  font-weight: bold;
}

/**** ToolBarLayout.jsx ****/

.jc-toolbar-layout{
  display: flex;
  flex: 1;
  flex-direction: column;
  overflow: hidden;
}

/**** ToolBar.jsx ****/

.jc-toolbar{
  border-top: solid 1px #fff;
  border-bottom: solid 1px #b3b3b3;
  height: auto;
  background: #e5e5e5;
}

/**** ConnectedSection.jsx ****/

.jc-connected-section-root{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex: 1;
}

.jc-connected-section{
  overflow: hidden;
  align-items: stretch;
  display: flex;
  flex: 1;
}

/**** SideMenu.jsx ****/
.jc-side-menu-layout{
  display: flex;
  align-items: stretch;
  flex: 1;
  overflow: hidden;
}

.jc-side-menu-inner-layout{
  display: flex;
  align-items: stretch;
  flex: 1;
  overflow: hidden;
}

.jc-side-menu{
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border-right: solid 1px #b3b3b3;
  overflow: auto;
  transition: width 250ms ease-in;
  -webkit-transition: width 250ms ease-in;
}
.jc-side-menu-open {
  width: 200px;
}
.jc-side-menu-collapsed {
  width: 45px;
}
.jc-side-menu-top-icon{
  text-align: right;
  height: auto;
  padding: 5px;
}

.jc-side-menu-top-section{
  flex: 1;
}

.jc-side-menu-bottom-section{
  height: auto;
}

/**** Drawer.jsx ****/

.jc-drawer-layout-left{
  align-items: stretch;
  flex: 1;
  display: flex;
  flex-direction: row-reverse;
  overflow: hidden;
}

.jc-drawer-layout-right{
  align-items: stretch;
  flex: 1;
  display: flex;
  flex-direction: row;
  overflow: hidden;
}

.jc-drawer-layout-up{
  align-items: stretch;
  flex: 1;
  display: flex;
  flex-direction: column-reverse;
  overflow: hidden;
}

.jc-drawer-children{
  display: flex;
  align-items: stretch;
  flex: 1;
}

.jc-drawer-container-up{
  border-bottom: solid 1px #b3b3b3;
  transition: height 250ms ease-in;
  -webkit-transition: height 250ms ease-in;
  position: relative;
  display: flex;
  align-items: stretch;
}

.jc-drawer-container-left{
  border-right: solid 1px #b3b3b3;
  transition: width 250ms ease-in;
  -webkit-transition: width 250ms ease-in;
  position: relative;
  display: flex;
  align-items: stretch;
}

.jc-drawer-container-right{
  border-left: solid 1px #b3b3b3;
  transition: width 250ms ease-in;
  -webkit-transition: width 250ms ease-in;
  position: relative;
  display: flex;
  align-items: stretch;
}

.jc-drawer-container-vertical-open{
  height: 60px;
}

.jc-drawer-container-vertical-closed{
  height: 0px;
}

.jc-drawer-container-horizontal-open-left{
  width: 320px;
}

.jc-drawer-container-horizontal-open-right{
  width: 320px;
}

.jc-drawer-container-horizontal-closed{
  width: 0px;
}

.jc-drawer-content{
  display: flex;
  align-items: stretch;
  flex: 1;
  overflow: hidden;
}

.jc-drawer-inner-content-horizontal{
  min-width: 320px;
  display: flex;
  align-items: stretch;
  flex: 1;
}

.jc-drawer-inner-content-vertical{
  min-height: 150px;
  display: flex;
  align-items: stretch;
  flex: 1;
}

/**** FilterPanel.jsx ****/

.jc-filter-panel{
  overflow-y: auto;
  overflow-x: hidden;
  padding: 10px;
  background: #e5e5e5;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}

/**** ListView.jsx ****/

.jc-listview{
  align-items: stretch;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.jc-listview-rowcount{
  text-align: center;
  padding: 5px;
  height: 32px;
}

.jc-listview-nodataresult{
  position: absolute;
  top: 50%;
  left: 50%;
}

/**** ApiLoader.jsx ****/

.jc-apiloader-layout{
  position: relative;
  display: flex;
  align-items: stretch;
  flex: 1;
  overflow: hidden;
}

.cancel_loading{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
}
.cancel_loading > *{ 
  position: absolute;
  top: calc(50% - 5px);
  left: calc(50% - 10px);
}

/**** RightAccessWrapper.jsx ****/
.jc-right-access-wrapper{
    display: flex;
    align-items: stretch;
    flex: 1;
    overflow: hidden;
}

/**** Spinner.jsx ****/

.jc-spinner-container{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  opacity: 0.1;
}

.spinner {
  position: absolute;
}

.spinner .container1 > div,
.spinner .container2 > div,
.spinner .container3 > div {
  width: 20%;
  height: 20%;
  background-color: #960e2c;

  border-radius: 100%;
  position: absolute;
  -webkit-animation: bouncedelay 1.2s infinite ease-in-out;
  animation: bouncedelay 1.2s infinite ease-in-out;
  /* Prevent first frame from flickering when animation starts */
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.spinner .spinner-container {
  position: absolute;
  width: 100%;
  height: 100%;
}

.spinner .container2 {
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

.spinner .container3 {
  -webkit-transform: rotateZ(90deg);
  transform: rotateZ(90deg);
}

.spinner .circle1 { top: 0; left: 0; }
.spinner .circle2 { top: 0; right: 0; }
.spinner .circle3 { right: 0; bottom: 0; }
.spinner .circle4 { left: 0; bottom: 0; }

.spinner .container2 .circle1 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .container3 .circle1 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

.spinner .container1 .circle2 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .container2 .circle2 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

.spinner .container3 .circle2 {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}

.spinner .container1 .circle3 {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}

.spinner .container2 .circle3 {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

.spinner .container3 .circle3 {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}

.spinner .container1 .circle4 {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}

.spinner .container2 .circle4 {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}

.spinner .container3 .circle4 {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}

@-webkit-keyframes bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0.0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes bouncedelay {
  0%, 80%, 100% {
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 40% {
      transform: scale(1.0);
      -webkit-transform: scale(1.0);
    }
}

/**** Summary.jsx ****/

.jc-list-preview-background{
  position: absolute;
  overflow: hidden;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
  background: #f1f1f1;
}

.jc-list-preview-background-mobile{
  position: absolute;
  overflow: hidden;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
  background: #f1f1f1;
}

.jc-list-preview-container{
  display: flex;
  align-items: stretch;
  flex: 1;
  width: 300px;
  overflow: auto;
}

.jc-list-preview-content{
  overflow: auto;
  background-size: 200px;
  background-repeat: no-repeat;
  background-position: right bottom;
  padding: 10px;
  flex: 1;
}

/**** Popup.jsx ****/

.jc-popup-background{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  background-color: rgba(0,0,0,0.2);
  display: flex;
}

/**** CancelSave.jsx ****/

.jc-cancel-save-layout{
  position: relative;
  overflow: hidden;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex: 1;
}

.jc-cancel-save-container{
  position: absolute;
  top: calc(50% - 45px);
  right: 15px;
}

.jc-cancel-save-content{
  display: flex;
  flex-direction: column;
}

/**** Other layouts ****/
.jc-business-object-edit-layout{
  overflow-y: auto;
  overflow-x: auto;
  flex: 1;
  padding: 10px 60px 10px 10px;
  -webkit-overflow-scrolling: touch;
  height:100%;
}

.jc-has-created-by-footer {
  padding-bottom: 30px;
}

.jc-scrollable-layout{
  overflow-y: auto;
  overflow-x: auto;
  flex: 1;
  padding: 20px;
  -webkit-overflow-scrolling: touch;
}

.jc-business-object-input-layout{
  flex: 1;
}

.jc-business-object-input-container{
  flex: 1;
}

/**** Timesheet.jsx ****/

.jc-timesheet-layout{
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex: 1;
  overflow: auto;
}

.jc-timesheet-filter{
  background-color: #e5e5e5;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex: 1;
  overflow: auto;
}

.jc-timesheet-filter .jc-filter-panel{
  overflow-y: auto;
}

.jc-time-entry{
  padding: 10px 0px 10px 10px;
  position: relative;
}

.jc-time-entry-mobile{
  height: 250px;
  padding: 10px 0px 10px 10px;
  display: block;
  overflow: scroll;
  position: relative;
  -webkit-overflow-scrolling: touch;
}

.jc-time-entry-container{
  display: flex;
  padding-right: 75px;
}

.jc-time-entry-container-mobile{
  display: flex;
  flex-wrap: wrap;
  padding-right: 75px;
  max-height: 200px;
  overflow: auto;
}

.jc-time-entry .jc-cancel-save-layout,
.jc-time-entry-mobile .jc-cancel-save-layout{
  position: initial;
}

.jc-time-entry-mobile .small-input{
  width: 120px;
}

.jc-time-entry-mobile .medium-input{
  width: 175px;
}

.jc-time-entry-mobile .large-input{
  width: 250px;
}

.jc-time-entry .small-input{
  width: 33%;
  margin-top: 3px;
}

.jc-time-entry .medium-input{
  width: 35%;
  margin-top: 3px;
}

.jc-time-entry .large-input{
  width: 67%;
  margin-top: 3px;
}

.jc-timesheet-list{
  display: flex;
  align-items: stretch;
  flex: 1;
  min-height: 150px;
}

.jc-time-entry-inner {
  height: calc(100% + 1px);
}

.jc-timesheet-layout .datatable .react-grid-Row.row-selected .react-grid-Cell input[type=text],
.jc-timesheet-layout .datatable .react-grid-Row.row-selected .react-grid-Cell input[type=text].amount-box,
.jc-timesheet-layout .datatable .react-grid-Row.row-selected .react-grid-Cell textarea {
  color: #1a1a1a;
}

/**** ReportTemplateMenu.jsx ****/

.jc-report-template-menu-layout{
  display: flex;
  flex-direction: column;
  overflow: hidden;
  align-items: stretch;
  flex: 1;
}

.report-template-subsection {
  min-height: 185px;
  display: flex;
  align-items: stretch;
  padding: 10px;
  overflow: auto;
}

/**** AdminTiles.jsx ****/
/**** MatterFunctionTiles.jsx ****/
/**** MatterReportTiles.jsx ****/

.jc-admin-tiles-layout,
.jc-matter-function-tiles-layout,
.jc-matter-report-tiles-layout{
  background-color: #e5e5e5;
  overflow: auto;
  align-items: stretch;
  flex: 1;
  padding: 5px;
}
.mm-admin-tiles-layout {
  background-color: #ffffff;
  overflow: auto;
  align-items: stretch;
  flex: 1;
  padding: 5px;
  border-bottom: 50px solid #952370;
}
/**** GoogleCalendarTile.jsx ****/

.jc-google-calendar-tile{
  padding-right: 50px;
}

.jc-google-calendar-tile .jc-cancel-save-container{
  right: 0px;
}

.jc-google-calendar-tile-title{
  font-weight: 600;
  text-align: center;
}

/**** ClassificationsManagement.jsx ****/

.jc-classification-management-treeview-container{
  padding: 0px 20px 20px 20px;
  margin-top: 25px;
  display: flex;
  align-items: stretch;
  flex: 1;
  overflow: auto;
  overflow-x: scroll;
  width: 100%;
}

/**** Wizard.jsx ****/

.jc-wizard-main-container {
  align-items: stretch;
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.jc-wizard-upper-container{
  display: flex;
  overflow: hidden;
  min-height: 75px;
}

.jc-wizard-steps-container{
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px;
  -webkit-overflow-scrolling: touch;
}

.jc-wizard-functions-container{
  width: auto;
  padding: 10px;
}

.jc-wizard-current-step-container{
  display: flex;
  align-items: stretch;
  flex: 1;
  overflow: hidden;
}

.jc-wizard-step{
  flex: 1;
  min-width: 175px;
  text-align: center;
  position: relative;
}

.jc-wizard-step .line{
  width: 100%;
  height: 2px;
  position: absolute;
  top: 17px;
  background-color: #949494;
}

.jc-wizard-step .line-first{
  width: 50%;
  right: 0px;
}

.jc-wizard-step .line-last{
  width: 50%;
}

.jc-wizard-step .button{
  border-radius: 50%;
  width: 35px;
  height: 35px;
  line-height: 34px;
  text-align: center;
  font-weight: bold;
  margin: 0px auto;
  font-size: medium;
  z-index: 999;
  position: relative;
  border: 2px solid rgb(153, 153, 153);
  color: rgb(153, 153, 153);
  background-color: white;
}

.jc-wizard-step .button-active{
  border: 2px solid rgb(150, 14, 44);
  color: rgb(255, 255, 255);
  background-color: rgb(150, 14, 44);
}

.jc-wizard-step .button-inactive{
  border: 2px solid rgb(150, 14, 44);
  color: rgb(150, 14, 44);
  background-color: white;
}

.jc-wizard-step .label{
  display: inline-block;
  color: rgb(153, 153, 153);
  text-transform: uppercase;
  font-family: "Roboto Condensed";
  font-weight: bold;
  margin-top: 5px;
}

.jc-wizard-step .label-active{
  color: rgb(150, 14, 44);
}

.jc-wizard-step .label-inactive{
  color: rgba(0, 0, 0, 0.87);
}

/**** fine uploader ****/
.fine-uploader-dropzone-container{
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
}

/**** ConflictOfInterestSearchForm.jsx ****/
.jc-conflic-of-interest-layout{
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex: 1;
  overflow: hidden;
}

.jc-conflic-of-interest-header{
  padding: 10px;
  height: 100px;
}

/**** MessageBox ****/

.jc-message-box-layout{
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex: 1;
  overflow: hidden;
}
.jc-message-box-body{
  padding: 10px;
  overflow: auto;
}
.jc-message-box-buttons{
  margin: 10px;
  text-align: right;
}

/**** FlowPaper ****/
.flowpaper-container{
  display: flex;
  align-items: stretch;
  flex: 1;
  overflow: hidden;
  position: relative;
  flex-direction: row-reverse;
}

div.flowpaper_viewer > div[id^='pagesContainer_'] {
  display: flex !important;
  justify-content: center !important;
}

.flowpaper_viewer_container{
  display: inline-flex;
  flex: 1;
}

.flowpaper-bookmarks-container{
  width: 250px;
  background: #e5e5e5;
  padding: 10px;
  border-right: 1px solid #b3b3b3;
}

.minutebook-pdf-viewer {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.minutebook-pdf-viewer .flowpaper_fisheye {
  width: calc(100% - 250px);
  left: auto !important;
}

.minutebook-pdf-viewer .flowpaper_viewer_container > div[id^='toolbar_'] {
  width: calc(100% - 250px) !important;
}
.minutebook-pdf-viewer canvas[id^='pagesContainer_'] {
  width: calc(100% - 250px) !important;
  margin-left: 250px;
}

/**** Table layouts ****/

.jc-editable-table{
  width: 100%;
  border-collapse: collapse;
  white-space: nowrap;
}

.jc-editable-table thead {
  background-color: #E5E5E5;
  color: #808080;
}

.jc-editable-table thead th {
  border: solid 1px #C0C0C0;
  padding: 5px;
  font-weight: normal;
  text-align: left;
}

.jc-editable-table td {
  padding: 0;
}

.jc-editable-table tbody td {
  padding: 0 5px;
  border: 1px solid #C0C0C0;
}

.jc-editable-table .jc-currency {
  text-align: right;
}

/**** Group Box ****/

.jc-groupbox-layout {
  margin-bottom: 20px;
}

.jc-groupbox-header-layout {
  display: flex;
  align-items: stretch;
  color: #B6B6B6;
  border-bottom: solid 1px #C0C0C0;
  text-transform: uppercase;
  font-weight: 500;
  font-family: "Roboto Condensed";
  font-size: 17px;
  padding-bottom: 3px;
}

.jc-groupbox-header-title {

}

.jc-groupbox-header-titleIcon {

}

.jc-groupbox-header-titleCount {

}

.jc-groupbox-header-toolbar {
  flex: 1;
}

.jc-groupbox-header-collapse {
  float: right;
  position: relative;
}

.jc-groupbox-content-layout {
  padding-top: 5px;
}

/**** ChatEdit.jsx ****/

.chat-list {
  flex: 1;
  display: flex;
}

.chat-list .jc-drawer-container-horizontal-open-right{
  width: 500px;
}

.chat-edit{
  display: flex;
  flex-direction: column;
  background-color: #EFEFEF;
  flex:1;
  overflow: hidden;
}

.chat-edit .chat-message-status{
  padding: 5px;
  text-align: right;
}

.chat-edit .chat-messages-layout{
  flex:1;
  overflow: auto;
}

.chat-edit .chat-message{
  padding: 5px;
}

.chat-edit .chat-message:after {
  content: "";
  display: table;
  clear: both;
}

.chat-edit .current-user{
  margin: 5px 5px 5px 60px;
}

.chat-edit .other-user{
  margin: 5px 60px 5px 5px;
}

.chat-edit .chat-message .message-sender{
  text-transform: uppercase;
  font-family: 'Roboto Condensed', sans-serif;
  color: #808080;
}

.chat-edit .current-user .message-sender{
  float: right;
  clear: right;
}

.chat-edit .other-user .message-sender{
  float: left;
  clear: left;
}

.chat-edit .chat-message .message-senton,
.chat-edit .chat-message .message-readby{
  padding: 3px;
  font-size: 10px;
  color: #808080;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.chat-edit .other-user.chat-message .message-senton,
.chat-edit .other-user.chat-message .message-readby{
  float: left;
  clear: left;
}
.chat-edit .current-user.chat-message .message-senton,
.chat-edit .current-user.chat-message .message-readby{
  float: right;
  clear: right;
  text-align: right;
}

.chat-edit .chat-message .message-content{
  margin-top: 5px;
  border-radius: 5px;
  padding: 10px;
  white-space: pre-wrap;
}

.chat-edit .other-user .message-content{
  background: #fff;
  border-bottom-left-radius: 0;
  float: left;
  clear: left;
}

.chat-edit .current-user .message-content{
  background: #960e2c;
  color: #fff;
  border-bottom-right-radius: 0;
  float: right;
  clear: right;
}

.chat-edit .chat-message .message-attachements-layout{
  margin-top: 5px;
  padding: 5px;
}
.chat-edit .other-user.chat-message .message-attachements-layout{
  border-left: 5px solid #b3b3b3;
  margin-right: auto;
  margin-left: 0;
  float: left;
  clear: left;
}
.chat-edit .current-user.chat-message .message-attachements-layout{
  border-right: 5px solid #b3b3b3;
  margin-left: auto;
  margin-right: 0;
  float: right;
  clear: right;
}
.chat-edit .current-user.chat-message .message-attachements-layout div {
  text-align: right;
}
.chat-edit .other-user.chat-message .message-attachements-layout div {
  text-align: left;
}

.chat-edit .chat-message .message-attachement{
  cursor: pointer;
  padding: 5px;
}

.chat-edit .chat-message .attachement-filename{
  font-weight: bold;
  margin-bottom: 5px;
  word-break: break-all;
  overflow: hidden;
}

.chat-edit .chat-message .attachement-filedate{
  text-align: right;
  display:none;
}

.chat-edit .new-message {
  padding: 10px;
}

.chat-edit .new-message .message-attachements-layout{
  padding: 5px;
  margin-top: 5px;
  max-height: 150px;
  overflow: auto;
}
.chat-edit .new-message .message-attachements-layout:after {
  content: "";
  display: table;
  clear: both;
}

.chat-edit .new-message .message-attachement{
  padding: 5px;
}

.chat-edit .new-message .attachement-filename{
  font-weight: bold;
  margin-bottom: 5px;
  word-break: break-all;
  overflow: hidden;
}

.chat-edit .chat-message .attachement-filesize,
.chat-edit .new-message .attachement-filesize{
  font-size: 12px;
}

.chat-edit .new-message textarea {
  padding: 10px !important;
}

.chat-edit .new-msg-zone {
  display: flex;
  align-items: center;
}
.chat-edit .new-msg-zone textarea {
  width:auto !important;
  flex:1 !important;
}

/**** FormItemDocumentBox.jsx ****/

.document-box{
  display: flex;
  flex-direction: column;
  background-color: #EFEFEF;
  flex:1;
}

.document-box .old-attachements.attachements-layout{
  border: 1px solid #b3b3b3;
  border-left: 5px solid #b3b3b3;
  margin: 5px 0;
  padding: 5px;
  background: #fff;
}

.document-box .old-attachements .attachement{
  cursor: pointer;
  padding: 5px;
}

.document-box .old-attachements .attachement-filename{
  font-weight: bold;
  margin-bottom: 5px;
  word-break: break-all;
}

.document-box .old-attachements .attachement-filesize{
  float: left;
  font-size: 12px;
}

.document-box .old-attachements .attachement-filedate{
  text-align: right;
  font-size: 12px;
}

.document-box .new-attachements {
}

.document-box .new-attachements .attachements-layout{
  border-left: 5px solid #b3b3b3;
  padding: 5px;
  max-height: 150px;
  overflow: auto;
}

.document-box .new-attachements .attachement{
  padding: 5px;
}

.document-box .new-attachements .attachement-filename{
  font-weight: bold;
  margin-bottom: 5px;
  word-break: break-all;
  overflow: hidden;
}

.document-box .new-attachements .attachement-filesize{
  font-size: 12px;
}

.document-box .add-attachement-btn{

}

/**** WIPS ****/

.rich-textbox-container{

}
.rich-textbox-content{

}
.caij-form{

}
.saveas-popup-form{

}
.Incorporation-dev-flag{

}
.debug-info{

}

.jc-arraylistview-layout{

}
.jc-arraylistview-header{

}

.jc-list-summary-icon{

}
.jc-list-summary-layout{

}
.jc-popup-layout{

}
.jc-popup-container{

}
.jc-popup-modal-background{

}
.jc-popup-modal-overlay{

}

.incorporation-wizard-reference-number{

}

.discrete-header-notice{
  padding: 5px 10px;
  border-bottom: solid 1px #CCCCCC;
  background: #EDEDED;
}

/* CollectionBase.jsx */
.jc-collection-groupbox-icon {
  float: right;
  position: relative;
}
.jc-collection-title {
  position: relative;
}
.jc-collection-title-groupbox {
  padding: 10px 0 0 0;
}
.jc-collection-toolbar {
  position: absolute;
  right: 30px;
  top: 0;
}

.jc-asset-edit .jc-collection-title .selectable {
  padding-top: 7px !important;
  padding-bottom: 7px !important;
}
body.mobile div.jc-connected-section,
body.mobile div.jc-drawer-inner-content-vertical,
body.mobile div.timesheet-view {
  width: 100%;
}

body.mobile .jc-drawer-inner-content-horizontal {
  min-width: 150px;
}
body.mobile .jc-list-preview-container,
body.mobile .jc-drawer-container-horizontal-open-right,
body.mobile .jc-drawer-container-horizontal-open-left{
  max-width: 225px;
}

.datatable.datahastotal .widget-HeaderCell__value {
  top: 5px;
}

.sendjdocemail_wizard {
  width:100%;
  margin:0 20px;
}
.sendjdocemail_wizard .actors,
.sendjdocemail_wizard .recipients{
  display:inline-block;
  width:48%;
  margin: 2px 20px 2px 2px;
  vertical-align: top;
}

.sendjdocemail_wizard .recipients > div{
  padding-bottom: 10px;
}

.sendjdocemail_wizard .recipients td {
  border:none;
}

.sendjdocemail_wizard .options > div{
  margin:5px 0;
}

.client_tax_group_select{
  margin:20px;
}

a.wizard_next_button:focus { 
    border-radius: 15px;
    outline : #960E2C auto 5px !important;
}


.incorporation-dev-flag{
   width: 0; 
  height: 0; 
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 50px solid purple;
  color:white;
}

.incorporation-dev-flag > span{
  position:absolute;
  transform: translate(-50%,-200%);
  text-transform: uppercase;
}


tr .intervenor_person_td:first-of-type{
  height:1px;
} 
tr .intervenor_person_td:first-of-type > div{
  height:100%;
}

div.upload_documents_warning{
  padding:10px;
}
div.upload_documents_warning > p{
  padding-bottom:10px;
}

.license-agreement .content{
  margin:20px;
}
.license-agreement .content > p{
  padding:10px 0;
}

.quarter_selector{
	min-height:200px;
}

.jc-timesheet-list .datatable textarea::-webkit-scrollbar {
   display: none;
}

.jc-timesheet-list .datatable textarea{
   line-height:20px;
   padding:5px!important;
}

.datalist-amounts {
  text-align: right;
}

.soquij-toolBarMenuButton-item {
    padding:10px 5px;
    color:rgba(0, 0, 0, 0.87);
    min-height:26px;
    min-width:200px;
}

.soquij-toolBarMenuButton-item:hover{
    background:#960E2C;
    color:white;
    cursor:pointer;
}

td .amount-box{
  float:right;
}

.amount-box.summary{
  text-align:left!important;
}

table.deposit-slip-total-table td .amount-box{
  float:none;
}

.noteCollectionTable tbody tr td:nth-child(2){
	width:200px;
}

.toolbar_title {
  overflow: hidden;
}

.toolbar_title:after {
    content: '';
    display: block;
    clear: both;
}

.toolbar_title .toolbar_sub_title{
	max-width:500px;
	overflow-x: hidden;
	word-break:break-word;
	text-overflow:ellipsis;
}

.end_date_hover_btn_container > *{
	display:inline-block
}

.end_date_hover_btn_container:hover .hover_btn {
	display:inline-block!important;
}

.end_date_hover_btn_container .hover_btn{
	vertical-align: top;
	margin:5px;
}

.moral_actor_name > div{
		display:inline-block;
		width:25%;
}
.moral_actor_name > div:nth-child(2){
	width:30px;
	vertical-align: bottom;
	margin:5px 5px 7px 5px;
}

.moral_actor_name > div:nth-child(1){
	width:75%;
}

.check-form{
	margin:10px;
}

.form-item-links-edit{
  width:100%;
  margin: 10px;
  border: 1px solid #b3b3b3;
  padding: 10px;
  background: #fefefe;
}
.form-item-links-edit.mobile {
  width: 100%;
  margin: 0;
  border: none;
  padding: 0;
  background: transparent;
}

.form-item-links-edit .row{
  margin:20px 10px;
}
.form-item-links-edit.mobile .row{
  margin-left: 0;
  margin-right: 0;
}

.form-item-links-edit .sub-row{
  margin-left:100px;
}

.form-item-links-edit .section-row {
  border: 1px solid #b3b3b3;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.form-item-links-edit .section-row > .jc-groupbox-layout > .jc-groupbox-header-layout {
  color: #808080;
  padding: 10px;
  background: #f1f1f1;
}
.form-item-links-edit.mobile .section-row > .jc-groupbox-layout > .jc-groupbox-header-layout {
  font-size: 14px;
}

.form-item-links-edit .section-row .jc-groupbox-header-toolbar svg {
  fill: #808080 !important;
}

.form-item-links-edit .section-row >.sub-row{
  margin-left:0;
}
.form-item-links-edit.mobile .section-row >.sub-row{
  margin: 0 5px;
}

.form-item-links-edit .required p:before {
   content: "* ";
}

.form-item-links-edit .answer > p{
  color: #808080;
}

.form-item-links-edit .answer{
  clear:both;
}

.form-item-links-edit .label{
  white-space: pre-wrap;
  color: #960e2c;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 0;
}

.form-item-links-edit .row .answer-box{
  margin:0px 5px;
}
.form-item-links-edit.mobile .row .answer-box{
  margin:0;
}

.form-item-links-edit .jc-groupbox-layout{
  width:100%;
}

.form-item-links-edit .design-mode{
  border: 1px dashed #b3b3b3;
  padding: 5px;
  border-radius: 5px;
}

.form-item-links-edit .row .date-input,
.form-item-links-edit .row .number-input{
  max-width: 200px;
  margin-right: 5px;
}

.form-item-links-edit.mobile .row .date-input,
.form-item-links-edit.mobile .row .number-input{
  max-width: none;
  margin-right: 0;
}

.checkbox_wrapper{
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

}

.checkbox_wrapper .checkbox_box{
    border: solid 1px black;
    display: inline-block;
    padding: 0px 0px;
    margin-right: 5;
    background-color: white;
    width:20px;
    height:20px;
}

.matter_form_wizard_approve .btns > *{
  margin:5px;
  margin-left:0px;
  width:100px !important;
}

.form_draft_applicant{
  display:block;
  
}

.form_draft_applicant_input{
  margin-bottom:15px;
}

.summary_label_icon{
  float:right;
  margin:0px 5px;
}


.jc-wizard-form-step input,
.jc-wizard-form-step input[type="text"],
.jc-wizard-form-step input[type="password"],
.jc-wizard-form-step input[type="email"],
.jc-wizard-form-step textarea,
.jc-wizard-form-step input[type="date"],
.jc-wizard-form-step input[type="amount"],
.jc-wizard-form-step input[type="number"]{
  border: solid 1px #e5e5e5;
  border-radius: 0 !important;
  margin-top:2px;
}

.jc-wizard-form-step input:focus,
.jc-wizard-form-step input[type="text"]:focus,
.jc-wizard-form-step input[type="password"]:focus,
.jc-wizard-form-step input[type="email"]:focus,
.jc-wizard-form-step textarea:focus,
.jc-wizard-form-step input[type="number"]:focus,
.jc-wizard-form-step input[type="amount"]:focus,
.jc-wizard-form-step input[type="text"]:hover,
.jc-wizard-form-step input[type="password"]:hover,
.jc-wizard-form-step input[type="date"]:hover,
.jc-wizard-form-step input[type="email"]:hover,
.jc-wizard-form-step input[type="number"]:hover,
.jc-wizard-form-step input[type="amount"]:hover,
.jc-wizard-form-step textarea:hover {
  outline: none !important;
  border: solid 1px #e5e5e5;
}

.notification-counter,
.notification-counter-selected{
  min-width: 18px;
  display: inline-block;
  border: solid black 1px;
  background: #ffffff;
  border-radius: 9px;
  height: 18px;
  padding: 3px;
  font-size: 12px;
  text-align: center;
  line-height: 1;
  position: absolute;
  right: 0;
  bottom: 10px;
}

.notification-counter-selected {
  background: #960e2c;
  border: solid white 1px;
}

.court-number-input input{
	max-width:75%;
	float:left;
}

.judicial-district{
	margin:20px;
}

.court-house-schedule{
	max-width:80%;
}

.court-house-schedule > div{
	margin-bottom:20px;
}

.court-house-schedule .court-name{
	border-bottom:1px solid black;
	margin-bottom:5px;
	padding-bottom:5px;
}


pre{
	 font-family: 'Roboto', sans-serif;
}

.datatable .react-grid-Row {
  height: 100% !important;
}

.datatable .react-grid-Row > .react-grid-Cell {
  height: 100% !important;
}

.scrollbar.scrollable{
	height:100%;
  flex:1;
}

.activity-created-by-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin-top: 10px;
  background: #e5e5e5;
  padding: 5px;
}

.prefix_text_box > *{
  padding:5px;
  display:inline-block;
  zoom:1;
  height:30px;
}

.timesheet-insert-popup {
  padding: 20px 0 20px 30px;
}

.report-viewer__content {
  flex: 1;
}
.report-viewer__content__frame.report-viewer-safari {
  display: flex;
}
.report-viewer__content__frame.report-viewer-safari .iframe {
  flex: 1;
  height: auto !important;
}

/* Remove or customize the blue outline/focus ring from ReactDataGrid selected cell overlay */
.rdg-selected {
  border: none !important;
}