﻿.input {
  display: block;
}
.input span {
  position: absolute;
  z-index: 1;
  cursor: text;
  pointer-events: none;
  color: #999;
  /* Input padding + input border */
  padding: 7px;
  /* Firefox does not respond well to different line heights. Use padding instead. */
  line-height: 17px;
  /* This gives a little gap between the cursor and the label */
  margin-left: 2px;
  margin-bottom: 0;
  font-weight: normal !important;
}
.input input, .input textarea, .input select {
  z-index: 0;
  /*padding: 5px;
  margin: 0;
  font: inherit;*/
}
.input select {
  padding: 5px;
  /* Unfortunately selects don't respond well to padding. They need an explicit height. */
  height: 31px;
}

/*MV Position changes for label script*/
.input {
    position:relative;
}
.labelFocus {
        opacity: 0.5;
        right: 0;
        font-size: 75%;
        margin-top:-6px;
        white-space:nowrap;
}

.labelBlur {
        opacity: 1;
        left: 0;
        font-size: 100%;
        margin-top:0;
        white-space:nowrap;
}
/*End Position changes for label script*/
.whereSpendInput {
    display: inline-block;
    width: 70% !important;
}