/**
 * plugin Gravity Forms
 */

.gform_fields input::-webkit-input-placeholder,
.gform_fields textarea::-webkit-input-placeholder {
    color: #646464;
}
.gform_fields input::-moz-placeholder,
.gform_fields textarea::-moz-placeholder {
    color: #646464;
}
.gform_fields input:-ms-input-placeholder,
.gform_fields textarea::-ms-input-placeholder {
    color: #646464;
}
.gform_fields input:-moz-placeholder,
.gform_fields textarea::-moz-placeholder {
    color: #646464;
}

.gform_wrapper {
    position: relative;
}

ul.gform_fields {
    padding-left: 0;
    margin-bottom: 0;
}
ul.gform_fields > li{
    list-style-type: none;
}
ul.gform_fields > li:nth-last-child(n + 2) {
    margin-bottom: 10px;
}

.gform_fields .hidden_label > label{
    display: none;
}

.gform_fields input,
.gform_fields select,
.gform_fields textarea {
    display: block;
    width: 100%;
    box-sizing: border-box;
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1;
    color:#8f878f;
    padding: 15px;
    padding-left: 2.5em;
    /*border:none;*/
    /*border: 1px solid #efeeed;*/
    border: none;
    border-radius: 17px;
    /*background-color: #fff;*/
    background-color: transparent;
    transition-property: color, border, background, box-shadow;
    transition-duration: .5s;
}
.gform_fields textarea{
    height: 120px;
    overflow: auto;
    resize: vertical;
    background-color: #f1f3f8;
}
.gform_fields input:focus,
.gform_fields textarea:focus {
    color: #332933;
    /*border-color: rgba(51, 41, 51, .1);*/
    /*background-color: rgba(51, 41, 51, .1);*/
    background-color: #f1f3f8;
    /*box-shadow:0 0 2px 8px rgba(51, 41, 51, .1);*/
}

/** */
ul.gfield_checkbox {
    padding-left: 0;
    font-size: 1.6rem;
}
.gform_fields ul.gfield_checkbox li {
    list-style-type: none;
}
ul.gfield_checkbox input {
    /*display: inline-block;*/
    /*width: auto;*/
    display: none;
}
ul.gfield_checkbox li label {
    /*margin-left: .8em;*/
    display: flex;
    align-items: center;
}
ul.gfield_checkbox li label {
    /*margin-left: .8em;*/
    display: flex;
    align-items: center;
}
ul.gfield_checkbox li label:before {
    content: '';
    font-family: inherit;
    display: inline-block;
    outline: 1px solid;
    outline-offset: 2px;
    width: 8px;
    height: 8px;
    margin-right: 10px;
    box-sizing: border-box;
    flex-shrink: 0;
    flex-grow: 0;
}
ul.gfield_checkbox li input:checked ~ label:before {
    background-color: #0a0a0a;
}

/** */
.gform_footer {
    /*margin-top: 25px;*/
}
.gform_footer  [type=submit] {
    transition-property: color, background-color, border;
    transition-duration: .4s;
}
.gform_footer  [type=submit]:hover,
.gform_footer  [type=submit]:focus {
    cursor: pointer;
    color:#fff;
    border-color: #007168;
    background-color: #007168;
}
.gform_footer  [type=submit],
.gform_fields .fake-submit button {
    font-size: 2.3rem;
    color:#fff;
    padding:10px;
    width: 100%;
    background-color: #05A79F;
    box-shadow: 1px 3px #9bdcd9;
    border-radius: 10px;
	border: 0px;
}
.gform_fields button[disabled] {
    cursor: not-allowed;
    opacity: .5;
    /*background-color: #f5f5f5;*/
}

/** */
@media (max-width: 991px) {
    .gform_fields input,
    .gform_fields select,
    .gform_fields textarea {
        font-size: 1.6rem;
        padding-bottom: 1.1em;
    }
    .gform_footer  [type=submit] {
        /*font-size: 1.2rem;*/
        /*padding: 15px;*/
    }
}

/** */
.validation_error {
    margin-bottom: 30px;
}
.validation_message {
    margin-top: 8px;
}
.validation_error,
.validation_message {
    font-size: 1.5rem;
    color:tomato;
}
.gfield_error input,
.gfield_error textarea {
    border-color: #a94442;
}

.gform_confirmation_message {
    color: #3c763d;
    font-weight: 700;
    text-align: center;
    font-size: 2.5rem;
}

/** */
.gform_fields {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.gform_fields > li {
    width:100%;
}


@media (min-width: 769px) {
    .gform_fields li.col-2 {
        width:calc(50% - 5px);
    }
}


/**
 *
 */
.gform_validation_container,
.gform_wrapper .gform_validation_container,
body .gform_wrapper .gform_body ul.gform_fields li.gfield.gform_validation_container,
body .gform_wrapper li.gform_validation_container,
body .gform_wrapper ul.gform_fields li.gfield.gform_validation_container {
    display: none!important;
    position: absolute!important;
    left: -9000px;
}


/*
 *
*/
.ginput_container {
    position: relative;
}
.ginput_container:before {
    position: absolute;
    top: .4em;
    left: .8em;
    font-family: 'fontello';
    font-size: 2rem;
    color: #05A79F;
}
.ginput_container_name:before {
    content: '\e805';
}
.ginput_container_email:before {
    content: '\e806';
}
.ginput_container_phone:before {
    content: '\e807';
}
.ginput_container_textarea:before {
    content: '\e809';
}