   
        
/**
* Make the field a flex-container, reverse the order so label is on top.
*/
.field {
  display: flex;
  flex-flow: column-reverse;
}
/**
* Add a transition to the label and input.
*/
label, input {
  transition: all 0.2s;
}

input {
  font-size: 1em;
  border: 0;
/*  border-bottom: 1px solid #ccc;*/
}
/**
* Change input border on focus.
*/
input:focus {
  outline: 0;
  border-bottom: 1px solid #bfbfbf;
}
/**
* When the label follows an input matching :placeholder-shown...
* 1. Make sure the label is only on one row, at max 2/3rds of the
*     field—to make sure it scales properly and doesn't wrap.
* 2. Fix the cursor.
* 3. Translate down and scale the label up to cover the placeholder.
*/
input:placeholder-shown label {
  /* [1] */
  max-width: 66.66%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  /* |2] */
  cursor: text;
  /* [3 */
  transform-origin: left bottom; 
  transform: translate(0, 2.125rem) scale(1.5);
}
/**
* By default, the placeholder should be transparent. Also, it should 
* inherit the transition.
*/
::-webkit-input-placeholder {
  transition: inherit;
  opacity: 0;
}
/**
* Show the placeholder when the input is focused.
*/
input:focus::-webkit-input-placeholder {
  opacity: 1;
}
/**
* 1. When the element is focused, remove the label transform.
*     Also, do this when the placeholder is _not_ shown, i.e. when 
*     there's something in the input at all.
* 2. ...and set the cursor to pointer.
*/
input:not(:placeholder-shown) + label,
input:focus + label {
  transform: translate(0, 0) scale(1); /* [1] */
  cursor: pointer; /* [2] */
}
  

/*
#ContactUs .form-wrap label {
    position: absolute;
    top: 0;
    left: 0;
    font: 400 14px/115% 'Open Sans', sans-serif;
    text-align: left;
    color: #999999;
    transition: top 0.2s ease-in-out;
    z-index: -1;
}
*/
        