body {
  height: auto;
}

body,
#mainWrapper {
  background-color: whitesmoke;
}

body,
.form-control {
  font-size: 12px !important;
}

.floatRight {
  float: right;
  margin-right: 18px;
}

.has-error {
  color: red;
}

.formcontainer {
  padding: 40px;
}

.tablecontainer {
  padding-left: 20px;
  padding-right: 20px;
}

.generic-container {
  width: 80%;
  margin-left: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 20px;
}

.custom-width {
  width: 80px !important;
}

.table-hover > tbody > tr > .selected {
  background-color: #f5f5f5;
}

table.dataTable tbody td,
table.dataTable tbody th {
  padding: 1px 1px;
}

.nowrap {
  white-space: nowrap;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-justify {
  text-align: justify;
}

.selected {
  background-color: #6164c1;
  color: #fff;
  border-color: #6164c1;
}

.popover-width-400px {
    max-width: 400px;
}

.div-table {
  display: table;
  width: 100%;
}

.div-table-row {
  display: table-row;
}

.div-table-row-no-data {
  text-align: center;
  width: 100%;
  border: 1px solid #999999;
  display: table-cell;
  padding: 3px 10px;
}

.div-table-heading {
  background-color: #EEE;
  text-align: center;
  display: table-header-group;
}

.div-table-body {
  display: table-row-group;
}

.div-table-cell, .div-table-head {
  border: 1px solid #999999;
  display: table-cell;
  padding: 3px 10px;
}

.div-table-heading {
  background-color: #EEE;
  display: table-header-group;
  font-weight: bold;
}

.div-table-foot {
  background-color: #EEE;
  display: table-footer-group;
  font-weight: bold;
}

.navbar,
.navbar-default .navbar-nav > li > a {
  background-color: #333;
  color: #FFF;
}

.navbar-default .navbar-brand {
  color: #FFF;
}

.matter-document-container {
  padding: 10px;
  position: relative;
}
.matter-document-bar {
  padding: 2px;
  position: relative;
}
.matter-document-bar button {
  background-color: #2D2D2D;
  color: #FFF;
}
.matter-document-path {
  border: 1px;
  border-top-style: solid;
  border-bottom-style: solid;
  position: relative;
}
.matter-document-path button {
  background-color: transparent;
  color: #000;
}
.matter-document-list {
  position: relative;
  left: 5px;
  right: 5px;
  top: 5px;
  bottom: 5px;
}
.matter-document-list .item {
  display: flex;
  align-items: center;
}
.matter-document-list .item .icon {
  font-size: 4em;
  width: 64px;
  height: 64px;
  line-height: 64px;
  text-align: center;
}
.matter-document-list .item .detail {
  padding: 5px;
}

.app-background {
  position: fixed;
  background-image: url(../images/3.jpg);
  background-size: cover;
  z-index: 1;
  filter: blur(5px);
  width: 100%;
  height: 100%;
}

.login-logo {
  padding: 20px;
  background-color: white;
  border-bottom: solid;
  border-bottom-width: 10px;
  border-bottom-color: #fa6800;
}

.login-form {
  z-index: 2;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 400px;
  margin-left: -200px;
  margin-top: -150px;
}

.tile-area {
  z-index: 2;
  position: fixed;
  overflow: scroll;
}

.tile-area-controls {
  position: fixed;
  right: 40px;
  top: 40px;
}

.grid-matter-body {
  background-color: #FFF;
  /*background-image: url(../images/9.jpg);
  background-size: cover;*/
}
.grid-matter-container {
  margin: 50px auto 0 auto;
  width: 100%;
  display: flex;
  align-items: space-around;
  max-width: 1200px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 600px) {
  .grid-matter-container {
    flex-direction: column;
    width: 280px;
  }
}
.grid-matter-tile {
  min-width: 280px;
  min-height: 280px;
  margin: 10px;
  background-color: #2D2D2D;
  display: inline-block;
  background-size: cover;
  position: relative;
  cursor: pointer;
  transition: all 0.4s ease-out;
  box-shadow: 0px 35px 77px -17px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  color: #fff;
}
.grid-matter-tile .text {
  position: absolute;
  padding: 30px;
  height: calc(100% - 60px);
}
.grid-matter-tile h1 {
  font-weight: 300;
  margin: 0;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}
.grid-matter-tile h2 {
  font-size: 24px;
  font-weight: 100;
  margin: 0 0 0 0;
  font-style: italic;

}
.grid-matter-tile p {
  font-weight: 300;
  margin: 0 0 0 0;
  line-height: 25px;

}
.grid-matter-tile img {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transition: all 0.4s ease-out;
}
.grid-matter-tile:hover {
  background-color: #FA6800;
  box-shadow: 0px 35px 77px -17px rgba(250, 104, 0, 0.64);
  transform: scale(1.05);
}
.grid-matter-tile:hover img {
  opacity: 0.2;
}
.grid-matter-tile:hover .animate-text {
  transform: translateX(0);
  opacity: 1;
}

.animate-text {
  opacity: 0;
  transition: all 0.6s ease-in-out;
}

.matter-body {
  background-color: #FFF;
}
.matter-container {
  /* position: absolute; */
  top: 0;
  bottom: 0;
  /* padding: 5px; */
  left: 0;
  right: 0;
  background-color: #f5f5f5;
}
.matter-nav {
  /* position: fixed; 
  float: left;
  width: 204px;
  background-image: linear-gradient(to top right, #fff, #d8d8d8); */
  top: 75px;
  bottom: 150px;
  left: 10px;
  /* box-shadow: 0px 35px 77px -17px rgba(0, 0, 0, 0.7); */
}
.matter-nav .title {
  vertical-align: middle;
}
.matter-nav .title h3 {
  font-weight: 300;
  padding-left: 10px;
}
.matter-nav .title h5 {
  font-weight: 300;
  padding-left: 10px;
}
.matter-nav .tab-wrap {
  display: flex;
  flex-wrap: wrap;
}
.matter-nav .tab-item {
	/* width: 72px;
	height: 72px; */
	background-color: #FA6800;
	color: #fff;
	margin: 0 0 5px 1%;
	text-align: center;
	line-height: 40px;
	cursor: pointer;
}
.matter-nav .tab-item:hover {
  background-color: #2D2D2D;
}
.matter-nav .info h3 {
  font-weight: 300;
  padding-left: 0px;
  text-overflow: ellipsis;
  overflow: hidden;
}
.matter-nav .info p {
  padding-left: 0px;
}
.matter-detail {
  position: fixed;
  left: 220px;
  top: 75px;
  bottom: 150px;
  right: 200px;
  background-image: linear-gradient(to top right, #fff, #d8d8d8);
  box-shadow: 0px 35px 77px -17px rgba(0, 0, 0, 0.7);
  overflow: auto;
  padding: 10px;
}
.matter-full-detail {
  position: fixed;
  left: 5px;
  top: 75px;
  bottom: 150px;
  right: 5px;
  background-image: linear-gradient(to top right, #fff, #d8d8d8);
  box-shadow: 0px 35px 77px -17px rgba(0, 0, 0, 0.7);
  z-index: 100;
  overflow: auto;
  padding: 10px 20px;
}
.matter-full-button {
  position: absolute;
  right: 2px;
  top: 2px;
  width: 36px;
  height: 36px;
  background-color: #2D2D2D;
  color: #FFF;
  text-align: center;
  cursor: pointer;
  z-index: 200;
  font-size: 2em;
}
.matter-full-button span {
  line-height: 36px;
}
.matter-lawyer-container {
  display: flex;
  /* flex-wrap: wrap;
  position: absolute;
  bottom: 20px;
  left: 10px;
  right: 200px;
  height: 100px;
  padding: 1px 20px; */
}
.matter-lawyer-icon {
  font-size: 4em;
  /* color: #FFF; */
  position: relative;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.3s ease;
  background-color: #d8d8d8;
  text-align: center;
  margin: 10px 10px 10px 0px;
}
.matter-lawyer-icon:hover {
  background-color: transparent;
  cursor: pointer;
}
.matter-lawyer-icon span {
	font-size: 24px;
  line-height: 32px;
}
.matter-lawyer-icon label {
  position: absolute;
  display:inline-block;
  font-size: 0.3em;
  white-space: nowrap;
  line-height:32px;
  text-overflow: ellipsis;
  padding-left:12px;
  max-width: 150px;
  text-align: left;
  overflow: hidden;
}
.matter-summary {
  position: fixed;
  right: 10px;
  width: 180px;
  top: 75px;
  align-items: center;
  padding: 0px;
  display: flex;
  flex-wrap: wrap;
}
.matter-stakeholder-container {
  /* min-height: 100px;
  min-width: 180px;
  background-image: linear-gradient(to top right, #fff, #d8d8d8);
  box-shadow: 0px 35px 77px -17px rgba(0, 0, 0, 0.7); */
  margin-bottom: 5px;
  padding: 2px;
}
.matter-stakeholder-icon {
  padding: 3px;
  display: flex;
/*   font-size: 2em; */
  color: #000;
  position: relative;
  border-radius: 50%;
  /* width: 25px;
  height: 25px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.3s ease;
  background-color: #d8d8d8; */
  text-align: left;
  margin: 10px;
  align-items: center;
}
.matter-stakeholder-icon h5 {
  line-height: 25px;
  font-size: 0.7em;
  margin-left: 5px;
}


.editable td span.btn {
    margin: 5px 10px;
}
thead {
    background: #6164C1;
	color: #fff;
	border-bottom: 3px solid #5F5F5F;
	box-shadow: 0px 1px 0px 0px #FA6800;
}

table.dataTable thead .sorting_asc::after, table.dataTable thead .sorting_asc_disabled::after, table.dataTable thead .sorting_desc::after, table.dataTable thead .sorting_desc_disabled::after {
    color: #fff !important;
}


table.dataTable thead .sorting::after, table.dataTable thead .sorting_asc::after, table.dataTable thead .sorting_desc::after, table.dataTable thead .sorting_asc_disabled::after, table.dataTable thead .sorting_desc_disabled::after {
    opacity: 0.5 !important;
    line-height: 20px !important;
}

.editable td {padding: 1px !important;}

.table .btn-primary {
    color: #1b75bc;
    background-color: transparent;
    border-color: transparent;
}
.table .btn-danger {
    color: #DD6777;
    background-color: transparent;
    border-color: transparent;
}
/* .table .btn-xs, .table .btn-group-xs > .btn {
    padding: 0.0625rem 0.3125rem;
    font-size: 14px;
    line-height: 1.5;
} */

.input-group-btn > button.btn-md {
    margin-top: -2px;
}

/* .tile-group .tile-group-title {
	color: #59595A !important;
} */
.start {
	background-image: url(../images/o-LAW.jpg);
	background-size: cover;
}

/*# sourceMappingURL=erp.css.map */

.lds-dual-ring {
  display: inline-block;
  height: 36px;
}
.lds-dual-ring:after {
  content: " ";
  display: position;
  width: 12px;
  height: 12px;
  margin: 1px;
  border-radius: 50%;
  border: 2px solid #fff;
  border-color: #fff transparent #fff transparent;
  animation: lds-dual-ring 1.2s linear infinite;
  margin: 10px auto;

}
@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.loading-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background-color: rgba(255,255,255,0.5);
}

.matter-body .loading-container {
  padding-top: 10%;
}

.loading {
  width: 32px;
  height: 32px;
  background-color: rgb(67,71,172);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-animation: loading-rotateplane 1.2s infinite ease-in-out;
  animation: loading-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes loading-rotateplane {
  0% { -webkit-transform: perspective(120px) }
  50% { -webkit-transform: perspective(120px) rotateY(180deg) }
  100% { -webkit-transform: perspective(120px) rotateY(180deg)  rotateX(180deg) }
}

@keyframes loading-rotateplane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
  } 50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
  } 100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}