/*removes most of the padding/margin from the button icon*/
.md-icon-button.small {
  padding: 0px;
}

.child-padding > div {
  padding: 4px
}
/* a smaller size chip*/
.almost-chip {
  border-radius: 16px;
  background-color: #e0e0e0;
  padding: 4px;
}
.almost-chip md-icon {
  height: 16px;
  width: 16px;
  min-height: 16px;
  min-width: 16px;
  font-size: 16px;
}
.no-link a {
  text-decoration: none;
  color: inherit;
}
/* Prevent float animation on md-no-float fields*/
md-input-container.md-input-focused:not([md-no-float]) .md-select-placeholder span:first-child {
  -webkit-transform: none;
  transform: none;
}

.clickable-sort {
  cursor: pointer;
}
.clickable-sort:focus {
  outline: none;
}

/*custom flex value for 150%, used on the dashboard to force flex over 100*/
.custom-flex-150 {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 150%;
  flex: 1 1 150%;
  box-sizing: border-box;
  max-width: 15%;
}
.test-status {
  font-weight: 600;
  white-space: nowrap;
  /*text-overflow: ellipsis;*/
  padding: .2em .3em .3em;
  border-radius: 5px;
  color: white;
}
.child-small-icons md-icon {
  font-size: 20px;
}
.small-font {
  font-size: 12px;
}
.validation-error {
  color: #866500;
}
.capitalize {
  text-transform: capitalize;
}
.bold {
  font-weight:600;
}
.red {
  color: red;
}
.grey {
  color: grey;
}
.green {
  color: green;
}
.no-padding {
  padding: 0px;
}
.no-margin {
  margin: 0px;
}
.hide-overflow {
  overflow: hidden;
  text-overflow: ellipsis
}
.inactive {
  color: #f0f0f0;
}
.orange {
  color: orange;
}
/*for the test-result items*/
.table-selected-row {
  background: #f0f0f0;
}
/*.table-unselected-row {
  background: #fff;
}*/
.break-word {
  overflow-wrap: break-word;
  word-wrap: break-word;

  word-break: break-word;

  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}
/*Custom css outline on a selected test request*/
.expandme {
  margin: 16px 0;
  box-shadow: 0 1px 10px 2px rgba(0, 0, 150, .2)
  /* 0 1px 1px 0 rgba(0,0,0,.14), 0 2px 1px -1px rgba(0,0,0,.12)*/
}

.side-padding {
  padding-left: 8px;
  padding-right: 8px;
}
.side-padding.extra {
  padding-left: 16px;
  padding-right: 16px;
}
advance-search .side-padding {
  padding-left: 4px;
  padding-right: 4px;
}
/*advance search button that looks like an md-select field*/
.md-button.adv-search {
  text-transform: inherit;
  font-weight: 400;
  color: rgba(0,0,0,0.38);
  margin: 0
}
/*to create a custom fab-card like*/
.md-button.d-fab.md-mini.sq-card {
  border-radius: 2px;
  box-shadow:
    0 1px 3px 0 rgba(0,0,0,.2),
    0 1px 1px 0 rgba(0,0,0,.14),
    0 2px 1px -1px rgba(0,0,0,.12)
}
/*Used for a div bar at the top of the page, directly underneath the navbar*/
.sub-nav {
  background-color:#f6f6f6;
  box-shadow:0 1px 3px 0 rgba(0,0,0,.2);
}
.top-bottom-margin {
  margin-top: 12px;
  margin-bottom: 12px;
}
.top-bottom-margin-half {
  margin-bottom: 4px;
}
.top-bottom-margin-children > *{
  margin-top: 8px;
  margin-bottom: 8px;
}
.top-bottom-padding {
  padding-top: 4px;
  padding-bottom: 4px;
}
/*make datepicker fit properly*/
.md-datepicker-input-container .long{
  width: 100%;
  margin-left: 0px;
}

/*advance search custom css*/
.advance-search {
  padding: 0px 4px;
  border: 0px;
  border-radius:10px;
  height: 40px;
  width: 100%;

}
/*Used in the create form "body" inside of a section*/
section div.form-section {
  margin: 16px;
}
/*for div under an input*/
.hint {
  /* Position the hint */
   position: absolute;
   left: 2px;
   right: auto;
   bottom: 7px;
   /* Copy styles from ng-messages */
   font-size: 12px;
   line-height: 14px;
   transition: all 0.3s cubic-bezier(0.55, 0, 0.55, 0.2);
   /* Set our own color */
   color: grey;
}
/*padding and margin fixes for input containers for input types. Changes these
to make them the same size as a normal input.*/
.fix-margin {
  margin-top: 0px;
}

/*apply this to the bottom of an md-select*/
.fix-padding-bottom {
  padding-bottom : 18px;
}
/*Looks like a link, but is used for a button, and has the margins of an input box*/
.click-link {
  /*text-decoration: underline;*/
  /*margin: 13px 8px;*/
  /*margin-top: 10px;
  margin-left: 4px;*/
  color: rgba(0,0,0,0.54);
  cursor: pointer;
  outline: 0;
}
.click-link:hover {
  opacity: .80;
}
.advance-search:focus {
  outline: 0;
}
/*navagation button used in the sidebar*/
.nav-button {
  padding: 0;
  margin: 0;
}
/*make a title clickable*/
.clickable-title {
  cursor: pointer;
}
.clickable-title:hover {
  opacity: .80;
}

/*The selected row looks the same as the clickable-row*/
.selected-row {
  cursor:default;
  /*background-color:#f0f0f0;*/
  /*font-weight: bold;*/
}

/*make table rows clickable, used on the dashboard table*/
.clickable-row {
  cursor:default
}
/*.clickable-row:hover {
  background-color:#f0f0f0;
}*/
.clickable-row:focus {
  outline:0;
}

/*static navbar*/
#static-navbar {
  position: relative;
}
/*To prevent the top nav from overlapping the content*/
#content {
  /*margin-top: 50px;*/
}
/*css for the the administration navmenu*/
.page-side-nav {
  padding-top:30px;
  padding-bottom:30px;
}

/*Quick fix to remove input error message*/
md-input-container.hide-error-msg .md-errors-spacer:empty {
  display: none;
}
md-input-container{
  margin-bottom: 5px;
}

/*For Table displays*/
.header-row {
  font-weight: 500;
  color: grey;
  font-size: 13px;
}
.table-row {
  font-size: 13px;
}
