h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

h1 {
  margin: 1rem 0;
  font-size: 1.5rem;
  font-weight: 300;
}

h2 {
  font-size: 1.25rem;
}

h3 {
  font-size: 1rem;
}

h4, p {
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
}

h5 {
  font-size: 0.75rem;
}

h4 {
  font-weight: 600;
}

/* @import url('https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800'); */
/* @mixin border-radius{
  border-radius: 2px;
} */
/* box-shadow: 0 2px 4px 0 rgba(0,0,0,0.2); */
.end {
  display: flex;
  justify-content: flex-end;
}

.align-center {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #363545;
  height: 100%;
}

/*FLEXBOX RESPONSIVE TABLE*/
.tableData .table {
  display: flex;
  flex-flow: column nowrap;
  flex: 1 1 auto;
}

.tableData .table .tr.thead {
  width: 99%;
}

.tableData .table .tr.thead a.active {
  text-decoration: underline;
  color: #00437B;
  background-color: transparent !important;
}

.tableData .table .tr.thead:hover {
  background-color: transparent !important;
  cursor: default;
}

.tableData .table .tr {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  height: 50px;
}

.tableData .table .tr:hover {
  background-color: #CFE1EE;
  cursor: pointer;
}

.tableData .table .tr .td {
  flex-flow: row nowrap;
  flex-grow: 1;
  flex-basis: 0;
  padding: 0 10px;
  word-break: break-word;
  min-width: 20px;
  width: 100px;
  border-bottom: 1px solid #E2E2E7;
  display: flex;
  align-items: center;
}

.tableData .table .tr .td.th {
  font-weight: 600;
  justify-content: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 12px 10px 13px;
}

.tableData .table .tr .td.th .wrapHeaderItems {
  width: 100%;
}

.tableData .table .tr .td.th .sort-arrow, .tableData .table .tr .td.th .sort-head {
  vertical-align: middle;
}

.tableData .table .tr .td.th .sort-arrow {
  width: 10px;
}

.tableData .table .tr .td .icon-svg {
  width: 30px;
  height: 30px;
  background: transparent url("@{icon32ScalePath}/icon_solid_release_16-32-64.svg") no-repeat center center;
  background-size: 30px 30px;
  margin-right: 10px;
  flex-shrink: 0;
}

.tableData .table .tr .td .icon-thumbnail {
  width: 29px;
  height: 22px;
  margin-right: 10px;
  text-align: center;
  flex-shrink: 0;
}

.tableData .table .tr .td .icon-thumbnail img {
  height: auto;
  width: auto;
  max-width: 29px;
  max-height: 22px;
}

.tableData .table .tr .td .tc-img-wrap {
  width: 32px;
}

.tableData .table .tr .td .tc-img-wrap .tc-img-thumb {
  width: 32px;
  height: 32px;
  background-color: grey;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

.tableData .table .tr .td .tc-img-wrap .tc-img-thumb img {
  padding: 0;
}

.tableData .table .tr .td.field-hamburger {
  width: 50px;
  flex: 0 0 auto;
}

.tableData .table .tr .td.field-hamburger .dropdown-toggle {
  box-shadow: none;
}

.tableData .table .tr .td.wrapCheckbox {
  width: 57px;
  flex: 0 0 auto;
}

.tableData .table .tr .td.wrapCheckbox.td {
  padding: 0 0 0 10px;
}

.tableData .table .tr .td.field-thumb {
  width: 100px;
  flex: 0 0 auto;
  padding: 10px;
}

.tableData .table .tr .td.width0 {
  max-width: 100px;
}

.tableData .table .tr .td.width1 {
  flex-grow: 1;
}

.tableData .table .tr .td.width2 {
  flex-grow: 2;
}

.tableData .table .tr .td.width3 {
  flex-grow: 3;
}

.tableData .table .tr .td.text-center {
  justify-content: center;
}

.tableData .table .tr .td.no-padding-x {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.tableData .table.border {
  border: 1px solid #E2E2E7;
}

.tableData .table .space-vscroll {
  width: 95%;
}

.truncate-auto {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.show {
  display: block;
}

.in-block {
  display: inline-block;
}

.text-muted {
  color: #afaec1;
}

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

.tile {
  padding: 10px 5px;
  cursor: pointer;
  overflow: hidden;
  height: auto;
  display: flex;
  flex-flow: row nowrap;
}

.tile:hover {
  background-color: #CFE1EE;
}

.tile .status, .tile .checkbox, .tile .thumbnail {
  margin-right: 1rem;
  flex-shrink: 0;
}

.tile .status {
  width: 20px;
  height: 20px;
  display: block;
}

.tile .status.low {
  background: url("../../src/images/LOW.png") no-repeat;
}

.tile .status.normal {
  background: url("../../src/images/NORMAL.png") no-repeat;
}

.tile .status.high {
  background: url("../../src/images/HIGH.png") no-repeat;
}

.tile .status.critical {
  background: url("../../src/images/CRITICAL.png") no-repeat;
}

.tile .thumbnail {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
}

.tile .thumbnail img {
  width: 100%;
  height: 100%;
}

.tile .details-group {
  line-height: 1.5rem;
  display: flex;
  flex-flow: column wrap;
  overflow: hidden;
}

.tile .details-group > div {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.tile.profilex .thumbnail {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  border: 5px solid #ccc;
}

.tile.profilex:hover {
  border: 1px solid #009AD9;
}
