.inputError{
      border-color: var(--error) !important;
      background: var(--red-15) !important;
}

.inputErrorInfo{
      font-weight: 500;
      font-size: 10pt;
      color: var(--error);
      display: block;
      text-align: right;
      height: 38px;
      line-height: 38px;
      margin: -39px 20px -20px 10px;
      float: right;
      position: absolute;
      pointer-events: none;
      background: var(--red-15);

}

.inputFocus{
      border-color: var(--red) !important;
      outline: none;
}

.loginBox .inputErrorInfo{
      margin: 5px 0px -20px 0;
      position: relative;
}

.disabled .inputFocus{
      border-color: revert !important;
}
.toast{
      background: #444;
      padding: 10px 35px;
      min-height: 28px;
      line-height: 28px;
      border-radius: 22px;
      color: white;
      position: fixed;
      bottom: 150px;
      left: 50%;
      transform: translate(-50%, -50%);
      box-shadow: 0px 0px 15px #666;
      font-weight: 400;
      font-size: 13pt;
      opacity: 1;
      display: none;
      z-index: 100100;

}

#toastSaved{
      background: var(--ok);
      z-index: 100000;
}

#toastMsg{
      bottom: 100px;
}

.toast_green{
      background: var(--ok);
}

#toastError, .toast_red, .toast_error{
      background: var(--error);
}

.toastToPosition{
      bottom: 150px !important;
      opacity: 1 !important;
}

.toastToUp{
      bottom: 300px !important;
      opacity: 0 !important;
}.spinnerW {
  margin-right: 15px;
  width: 60px;
  height: 60px;
  text-align: center;
  display: inline-block;
  position: relative;
}

.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;

  -webkit-animation: sk-bounceW 2.0s infinite ease-in-out;
  animation: sk-bounceW 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounceW {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounceW {
  0%, 100% {
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% {
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}

.spinnerGray {
  width: 60px;
  height: 60px;
  text-align: center;
  display: inline-block;
  position: relative;
}

.spinnerGray .double-bounce1, .spinnerGray .double-bounce2 {
      background: var(--gray);
}

.spinnerLabel{
      display: block;
      margin-top: 50px;
      opacity: 0.5;
      font-weight: bold;
}