/*!
 * Float Labels
 * @version: 3.3.4
 * @author: Paul Ryley (http://geminilabs.io)
 * @url: https://geminilabs.github.io/float-labels.js
 * @license: MIT
 */.fl-form .fl-wrap {
    position: relative;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    vertical-align: top;
}
.fl-form input.fl-input_, .fl-form select.fl-select_, .fl-form textarea.fl-textarea_ {
    width: 100%;
    outline: 0;
    font-size: 16px;
    line-height: 1.5;
    border-radius: 3px;
    border: 1px solid #dfdfdf;
    background-color: #fff;
    box-sizing: border-box;
    transition: all .2s ease-in-out;
    margin-bottom: 24px;
}
.fl-form input.fl-input:-moz-placeholder, .fl-form input.fl-input::-moz-placeholder, .fl-form select.fl-select:-moz-placeholder, .fl-form select.fl-select::-moz-placeholder, .fl-form textarea.fl-textarea:-moz-placeholder, .fl-form textarea.fl-textarea::-moz-placeholder {
    color: #000;
    font-size: 14px;
}
.fl-form input.fl-input:-ms-input-placeholder, .fl-form select.fl-select:-ms-input-placeholder, .fl-form textarea.fl-textarea:-ms-input-placeholder {
    color: #4a4a4a;
    font-size: 14px;
}
.fl-form input.fl-input::-webkit-input-placeholder, .fl-form select.fl-select::-webkit-input-placeholder, .fl-form textarea.fl-textarea::-webkit-input-placeholder {
    color: #4a4a4a;
    font-size: 14px;
}
.fl-form select.fl-select {
    position: relative;
    color: #4a4a4a;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.fl-form select.fl-select::-ms-expand {
    display: none;
}
.fl-form .fl-is-active input.fl-input, .fl-form .fl-is-active select.fl-select, .fl-form .fl-is-active textarea.fl-textarea {
    color: #000;
    /*background-color: #fff;
    border-color: #dfdfdf;*/
    /*border-bottom: 1px solid #F3E200;*/
}
.fl-form .fl-has-focus input.fl-input, .fl-form .fl-has-focus select.fl-select, .fl-form .fl-has-focus textarea.fl-textarea {
    /*background-color: #fff;*/
    /*border-color: #1976d2;*/
    border-bottom: 1px solid #DA2C7C;
}
.fl-form label.fl-label {
    opacity: 0;
    visibility: hidden;
    display: block;
    position: absolute;
    top: -20px;
    left: 27px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    color: #4a4a4a;
    border-radius-top-left: 3px;
    transition: all .2s ease-in-out;
    z-index: 1;
}




.fl-form .fl-is-active label.fl-label {
    opacity: 1;
    visibility: visible;
}
.fl-form .fl-has-focus label.fl-label {
    /*color: #1976d2;*/
}
.fl-form .fl-is-required:before {
    opacity: 1;
    content: "*";
    display: block;
    position: absolute;
    top: 1px;
    right: 15px;
    font-size: 16px;
    line-height: 1.75;
    color: #d32f2f;
    transition: all .2s ease-in-out;
    padding: 6px 0 0;
    z-index: 1;
}
.fl-form .fl-is-required.fl-is-active:before {
    opacity: 0;
}
.fl-form.fl-style-1 input.fl-input, .fl-form.fl-style-1 select.fl-select, .fl-form.fl-style-1 textarea.fl-textarea {
    /*padding: 6px 12px;*/
}
.fl-form.fl-style-1 select.fl-select {
    /*height: 38px;*/
}
.fl-form.fl-style-1 .fl-is-active input.fl-input, .fl-form.fl-style-1 .fl-is-active select.fl-select, .fl-form.fl-style-1 .fl-is-active textarea.fl-textarea {
    /*padding: 6px 0px;*/
}
.fl-form.fl-style-1 label.fl-label {
    top: 5px;
    /*left: 10px;*/
    background-color: transparent;
    padding: 12px 15px;
}
.fl-form.fl-style-1 label.fl-label:before {
    content: "";
    display: block;
    position: absolute;
    top: 19px;
    left: 0;
    right: 0;
    height: 1px;
    /*background-color: #fff;*/
    z-index: -1;
}
.fl-form.fl-style-1 .fl-is-active label.fl-label {
    top: 12px;
    padding: 0px 15px;
}
.fl-form.fl-style-1 .fl-is-active label.fl-label:before {
    top: 9px;
}
.fl-form.fl-style-2 input.fl-input, .fl-form.fl-style-2 select.fl-select, .fl-form.fl-style-2 textarea.fl-textarea {
    padding: 12px;
}
.fl-form.fl-style-2 select.fl-select {
    height: 50px;
}
.fl-form.fl-style-2 .fl-is-active input.fl-input, .fl-form.fl-style-2 .fl-is-active select.fl-select, .fl-form.fl-style-2 .fl-is-active textarea.fl-textarea {
    padding: 18px 12px 6px;
}
.fl-form.fl-style-2 label.fl-label {
    top: 1px;
    left: 10px;
    padding: 6px 3px 3px;
}
.fl-form.fl-style-2 .fl-is-required:before {
    padding-top: 12px;
}
.fl-form .fl-wrap-select00:after {
    content: "";
    position: absolute;
    display: block;
    top: 1px;
    right: 15px;
    height: calc(100% - 2px);
    width: 18px;
    background-image: url("../images/select.svg");
    background-repeat: no-repeat;
    /*background-position: right center;*/
    background-size: 18px 18px;
    background-position: 100% 50%;
    z-index: 2;
}

