/**
 * Colors
 *
 * Green: #88A93C / rgb(136, 169, 60)
 * LBlue: #9dd5e8 / 
 * Navy:  #0f4d6c / 
 * 
 * Border Radius: 8px
 * 
 */

/*** MAIN FORM WRAPPER ***/
.gform_wrapper {}

/*** GRAVITY FIELDS ***/
.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
.gform_wrapper select,
.gform_wrapper textarea {
    background: white;
    border: 3px solid rgb(229, 229, 229);
    border-radius: 4px;
    padding: 16px 16px 13px;
}
.gform_wrapper ul.gform_fields li.gfield {
    margin-bottom: 20px;
}
input[type=text]:focus,
input.text:focus,
input.title:focus,
textarea:focus {
    border-color: #d0d0d0 !important;
    box-shadow: rgba(0,0,0,0.15) 0px 2px 8px 0px !important;
}
.gform_wrapper textarea.small,
.gform_wrapper textarea.medium,
.gform_wrapper textarea.large {
    padding: 12px !important;
}
 
/*** BUTTON STYLING ***/
.gform_wrapper .gform_footer input.button,
.gform_wrapper .gform_footer input[type=submit] {
    background: black;
    color: #fff;
    text-transform: uppercase;
    border: none;
    padding: 16px 66px 10px;
    cursor: pointer;
    font-size: 18px;
    -moz-transition: all 0.2s;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    border-radius: 4px;
    box-shadow: rgba(0,0,0,0.3) 0px 2px 18px 0px;
    margin: 0 auto;
}
.gform_wrapper .gform_footer input.button:hover,
.gform_wrapper .gform_footer input[type=submit]:hover {
    background: #88A93C;
}

/*** SECTION STYLING ***/
.gform_wrapper h2.gsection_title {
    font-weight: normal;
    font-size: 2em;
}
.gform_wrapper .gsection {
    padding: 20px 20px 14px !important;
    border: none !important;
    background-color: #97c4d9 !important;
    font-family: "ff-good-headline-web-pro-con", sans-serif;
    margin-top: 40px;
    font-weight: 600;
    text-shadow: 0em 2px 10px rgba(35,95,155,0.57);
}
.gform_wrapper .gsection h3 {
    color:  #ffffff;
    font-size: 45px;
}

/*** GRAVITY RADIO AND CHECKBOXES ***/
.gform_wrapper ul.gfield_checkbox li input[type=checkbox],
.gform_wrapper .gfield_checkbox input[type=checkbox],
.gform_wrapper ul.gfield_radio li input[type=radio] {
    visibility: hidden;
    margin: 0;
    width: 0 !important;
}
.gform_wrapper input[type=checkbox] + label,
.gform_wrapper input[type=radio] + label {
    font-size: 16px;
}
input[type=checkbox] + label:hover,
input[type=radio] + label:hover {
    cursor: pointer;
}
input[type=checkbox] + label:before,
input[type=radio] + label:before {
    font-family: "ETmodules" !important;
    font-size: 30px;
    position: relative;
    top: 0.3em;
    margin-right: 0.2em;
}
.gform_wrapper li.gf_list_inline ul.gfield_checkbox li,
.gform_wrapper li.gf_list_inline ul.gfield_radio li {
    display: -moz-inline;
    display: inline;
}
input[type=checkbox] + label:before {
    content: '\056';
    color: rgb(229, 229, 229);
}
input[type=checkbox] + label:hover:before {
    content: '\05a';
    filter: alpha(opacity=40);
    color: #a9a9a9;
}
input[type=checkbox]:checked + label:before {
    content: '\05a';
    color: #88A93C;
}
input[type=checkbox]:checked + label:hover:before {
    color: #88A93C;
    filter: alpha(opacity=100);
    opacity: 1;
}
input[type=radio] + label:before {
    content: '\05b';
}
input[type=radio] + label:hover:before {
    content: '\05c';
    filter: alpha(opacity=40);
    opacity: 0.4;
}
input[type=radio]:checked + label:before {
    content: '\05c';
    color: #88A93C;
}
input[type=radio]:checked + label:hover:before {
    color: #88A93C;
    filter: alpha(opacity=100);
    opacity: 1;
}
.gform_wrapper ul.gfield_checkbox li input[type=checkbox]:checked+label,
.gform_wrapper ul.gfield_radio li input[type=radio]:checked+label {
    font-weight: normal;
}

/*** SUCCESS MESSAGE ***/
.gform_confirmation_wrapper {
    background: #fff;
    padding: 15px;
}
