.form-group {
  padding-top: 18px;
  position: relative;
  margin-bottom: 5px; /* 18px */
}

.form-group .form-control ~ label,
.form-group .ui-widget ~ label,
.form-group .ui-calendar ~ label,
.form-group .ui-autocomplete ~ label {
  position: absolute;
  left: 0;
  top: -1px;
/*  margin-bottom: 0; */
  font-size: 12px;
  color: #3e464c;
}

.form-group .form-field-tooltip {
  position: absolute;
  left: -13px;
  top: 0;
  color: #90A4AE !important;
  font-size: 13px !important
}

.form-field-tooltip-component {
  background-color: transparent;
  font-size: 12px;
  max-width: 300px;
}

.form-group .form-field-required {
  position: absolute;
  left: -10px;
  top: 20px;
  color: #E53935;
  font-size: 9px !important;
}

.formGroupFieldErrorMessage,
.formGroupFieldWarningMessage {
  position: absolute;
  left: 0;
  bottom: -15px;
  margin-bottom: 0;
}

.formGroupFieldErrorMessage .ui-message-error,
.formGroupFieldWarningMessage .ui-message-warn {
  font-size: 12px;
  border: none !important;
  margin: 0 !important;
  background-color: transparent !important;
  padding: 0 !important;
}

.formGroupFieldErrorMessage span.ui-message-error-detail,
.formGroupFieldWarningMessage span.ui-message-warn-detail {
  margin: 0;
}

.layout-wrapper .topbar .logo {
  background: none;
}

.ui-datascroller-content.ui-widget-content.ui-corner-all {
  border: none;
  background-color: #f7f7f7;
}

.ui-datascroller .ui-datascroller-content {
    padding: 0;
}

.ui-selectcheckboxmenu-token {
  padding: 1px 3px !important;
}

span.badge {
  min-width: 2rem;
  padding: 0 6px;
  text-align: center;
  line-height: 16px;
  height: 15px;
  float: right;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 10px;
  color: #757575;
  background-color: white;
  border-radius: 2px;
}

span.badge.red {
  color: #fff;
  background-color: rgb(216, 69, 59);
}

span.badge.blue {
  color: #fff;
  background-color: rgb(26, 120, 245);
}

span.badge.green {
  color: #fff;
  background-color: rgb(24, 150, 85);
}

.ui-chips-token {
  padding: 1px 3px !important;
  vertical-align: bottom !important;
}

.ui-chips-input-token {
  padding: 0 !important;
  width: 100%;
}

.ui-chips-input-token input {
  width: 100%;
}

.ui-chips-token-icon.ui-icon.ui-icon-close {
  font-size: 18px !important;
}

.ui-chips-container.ui-inputfield.ui-state-default.ui-corner-all {
  width: 100%;
}

.ui-chips.ui-widget {
  width: 100%;
}

div.ui-button, .ui-splitbutton {
  display: inline-block !important;
}

.jumping-dots span {
  position: relative;
  bottom: 0px;
  -webkit-animation: jump 1500ms infinite;
  animation: jump 2s infinite;
}
.jumping-dots .dot-1{
  display:inline-block;
  width:6px;
  height:6px;
  border-radius:50%;
  margin-right:0px;
  background:white;
  
  -webkit-animation-delay: 200ms;
  animation-delay: 200ms;
}
.jumping-dots .dot-2{
  display:inline-block;
  width:6px;
  height:6px;
  border-radius:50%;
  margin-right:0px;
  background:white;
  
  -webkit-animation-delay: 400ms;
  animation-delay: 400ms;
}
.jumping-dots .dot-3{
  display:inline-block;
  width:6px;
  height:6px;
  border-radius:50%;
  margin-right:0px;
  background:white;
  
  -webkit-animation-delay: 600ms;
  animation-delay: 600ms;
}

@-webkit-keyframes jump {
  0%   {bottom: 0px;}
  20%  {bottom: 5px;}
  40%  {bottom: 0px;}
}

@keyframes jump {
  0%   {bottom: 0px;}
  20%  {bottom: 5px;}
  40%  {bottom: 0px;}
}