.thssjsf-field-group {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.thssjsf-field-group__label {
  margin-bottom: 0.85rem;
}

.thssjsf-field-group__fields {

}

/* decrease spacing between cols compared to Bootstrap */
.thssjsf-field-group__fields .thssjsf-field-group__fields-row {
  margin-left: -0.5rem !important;
  margin-right: -0.5rem !important;
  margin-bottom: 0.5rem !important
}

.thssjsf-field-group__fields .thssjsf-field-group__fields-col {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}


/* implement placeholders */
.thssjsf-placeholder {

}

.thssjsf-placeholder .thssjsf-field-group__label {
  display: inline-block;
  width: auto;

  color: transparent !important;
  background-color: #EAEAEA !important;
}

.thssjsf-placeholder .thssjsf-field-group__fields-col > div {
  background-color: #EAEAEA !important;

  border: 1px solid transparent !important;
}

.thssjsf-placeholder .thssjsf-field-group__fields-col > div * { /* hide col text */
  opacity: 0;
}

.thssjsf-placeholder .thssjsf-field-group__label,
.thssjsf-placeholder .thssjsf-field-group__fields-col > div {
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: thssjsfPlaceHolderShimmer;
  animation-timing-function: linear;
}
@keyframes thssjsfPlaceHolderShimmer{
  0% {
      opacity: 0.25;
  }
  100% {
      opacity: 1
  }
}
.thssjsf-placeholder {

}

/* Errors */
.thssjsf-field-group ul.bs-callout {
  display: none;
  list-style-type: none;
  font-size: 11px;
  margin: 0;
  margin-top: -15px;
  padding: 0;

  list-style-type: none;
}
.thssjsf-field-group .thssjsf-field-group__error {
  position: absolute!important;
  top: 100%;
  transform: translateY(-50%);
  padding: 3px 5px;
  width: calc(100% - 2rem);

  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;

  border: 1px solid transparent;
  border-radius: .25rem;

  font-size: 14px;
}