.inline-content > * {
	display: inline-block;
}

.pull-right {
  float: right !important;
}

.pull-left {
  float: left !important;
}

.btn-min-wide {
  min-width: 120px;
}

.modal-header-primary {
  border-bottom: 1px solid #eee;
}

.modal-header-primary > .modal-title {
  color: #333;
}

.table-small > tbody > tr > td {
  padding: 0.6rem 0.25rem 0.6rem 0.8rem;
  vertical-align: middle;
}

.table-small > thead > tr > th {
  padding: 0.8rem 0.25rem 0.8rem 0.8rem;
}

.table > tbody > tr > td {
  color: #333;
}

.row-hover > tbody > tr:hover > td {
  background-color: #edfff3;
}

.table-holder {
  width:100%;
  display:inline-block;
  border: solid 1px #ccc;
}

.btn-link {
  border: none;
  background: none;
  text-decoration: none;
  margin: 0px;
  padding: 0px;
  text-align: left;
}

.btn-link:hover {
  text-decoration: underline;
}

.block-hover:hover {
  background-color: #eee;
}

td.form-label {
  text-align: right;
  padding-right: 12px;
}

.content-spacer-vertical > * {
  margin-top: 15px;
  margin-bottom: 15px;
}

.content-scroller {
  overflow-y: auto;
  max-height: 250px;
}

.inline-content > * {
  display: inline-block;
}

.fade-in {
  animation: fadeIn 0.2s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.shimmer-text {
  background: linear-gradient(
    90deg,
    #555 25%,
    #555 50%,
    #999 75%
  );
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}