@-webkit-keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

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

.just-validate-tooltip-container {
  position: relative; }

.just-validate-tooltip-hide {
  -webkit-animation: fadeOut .4s linear;
          animation: fadeOut .4s linear;
  opacity: 0; }

.js-validate-error-label {
  position: absolute;
  top: -24px;
  right: 7px;
  z-index: 10;
  background: rgb(184, 17, 17);
  border-radius: 4px;
  color: #fff !important;
  padding: 4px 8px;
  font-size: 10px;
  pointer-events: none;
  transition: all .4s linear; }