.ffl-wrapper
{
  font-size: 16px;
  position: relative;
  display: block;
  padding-top: 1em;
}
.ffl-wrapper .ffl-label
{
  transition-property: all;
  transition-duration: 200ms;
  transition-timing-function: ease;
  transition-delay: 0s;
  position: absolute;
  white-space: nowrap;
  max-width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  pointer-events: none;
  top: 1.5em;
}
.ffl-wrapper.ffl-floated .ffl-label
{
  top: 0px;
}

.ffl-label
{
  color: #CCCCCC;
  line-height: 1.2;
  margin-left: 8px;
}
.ffl-floated .ffl-label
{
  /*color: #0289f3;*/
  font-size: 0.75em;
  color: #666666;
}

/*
form
{
  max-width: 30em;
  margin: 2em auto 0;
  background-color: #ffffff;
  padding: 1em;
}
form:after
{
  content: "";
  display: block;
  clear: both;
}
*/

/*
*/
.ffl-wrapper input,
.ffl-wrapper textarea,
.ffl-wrapper select
{
  transition: border-bottom 100ms ease;
  display: block;
  width: 100%;
  padding: 0;
  padding-left: 8px;
  padding-right: 8px;
  margin-bottom: 0.5em;
  box-shadow: none;
  appearance: none;
  outline: none;
  background-color: #FFFFFF;

  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 0.25em;

  /*
  border-style: none;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(0, 0, 0, 0.2);
  */
  /*height: 1.875em;*/
  line-height: 2em;
  height: Calc(2em + 2px);
}

.ffl-wrapper input[readonly='readonly']
{
    background-color: #F6F6F6;
    color: #999999;
    border-color: rgba(0,0,0,0.1);
}

.ffl-wrapper select
{
    height: 2em;
}

.ffl-wrapper input:hover,
.ffl-wrapper textarea:hover,
.ffl-wrapper select:hover
{
    /*
    border-bottom-width: 1px;
    border-bottom-color: #909090;
    */

    /*border-color: #909090;*/
}
.ffl-wrapper input:focus,
.ffl-wrapper textarea:focus,
.ffl-wrapper select:focus
{
    /*
    border-bottom-width: 1px;
    border-bottom-color: #0289f3;
    */

    /*border-color: #0289f3;*/
}

.ffl-wrapper textarea
{
  resize: none;
  min-height: 2em;
}

.ffl-wrapper label > span
{
  color: #cccccc;
}

/*
[type="submit"]
{
  transition: background-color 0.3s ease;
  border: none;
  background-color: #0289f3;
  color: #ffffff;
  padding: 0.5em 1em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 1em;
  float: right;
}
[type="submit"]:hover, [type="submit"]:focus
{
  background-color: #027bda;
}
*/

.ffl-wrapper input.parsley-error,
.ffl-wrapper textarea.parsley-error,
.ffl-wrapper select.parsley-error
{
    border-color: #dc3545;
    color: #dc3545;
}




.ffl-wrapper-checkbox
{
    font-size: 16px;
    padding-top: 0.5em;
    margin-bottom: 0.5em;
}

.ffl-wrapper-checkbox > input[type='checkbox']
{
    width: 24px;
    height: 24px;
    vertical-align: bottom;
}

.ffl-wrapper-checkbox > label
{
    margin: 0px;
    margin-left: 8px;
    color: #333333;
    font-weight: normal;
}