/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
 * Base element styles and overrides
 */
*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.3;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  position: relative;
}

a,
input[type="submit"],
input[type="button"],
button {
  cursor: pointer;
  text-decoration: none;
}

a {
  transition: color .5s ease;
}

ul {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
}

em {
  font-style: italic;
  font-weight: inherit;
}

img {
  display: inline-block;
  height: auto;
  max-width: 100%;
}

input:not([type="checkbox"]):not([type="radio"]) {
  border-radius: 0;
}

button {
  outline: none;
}

code,
pre {
  background-color: #eee;
  border-radius: .3125rem;
  color: #333;
  font-family: "Lucida Console", Courier, monospace;
}

code {
  font-size: .9375rem;
  padding: .3125rem .625rem;
}

pre {
  border-bottom: solid .3125rem #999;
  font-size: .75rem;
  padding: 25px;
  margin-bottom: 25px;
}

sup,
sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -.5em;
}

sub {
  bottom: -.25em;
}

/**
 * Helper classes to be used throughout the site.
 */
/* Force element to force clear it's children */
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/* Used to define how wide your main content should be at viewport widths */
.inner {
  margin: 0 auto;
  max-width: 72.5rem;
  padding: 0 2.5%;
  position: relative;
}

.inner--static {
  position: static;
}

/* Center an element */
.aligncenter {
  display: block;
  margin: 0 auto;
  margin-bottom: 1.5625rem;
}

.aligncenter img {
  margin: 0 auto;
}

/* Float element left or right */
.alignleft,
.alignright {
  display: block;
  position: relative;
  top: 5px;
  margin-bottom: 1.5625rem;
}

@media (min-width: 650px) {
  .alignleft {
    float: left;
    margin-right: 3.125rem;
  }
  .alignright {
    float: right;
    margin-left: 3.125rem;
  }
}

/* Text that appears below <img> tag when caption is added */
.wp-caption-text {
  font-size: 80%;
  font-style: italic;
  margin-bottom: 0;
  padding: .3125rem .625rem;
  text-align: center;
}

/* Remove <img> border or box-shadow style */
.no-border,
.no-border img {
  border: none;
  box-shadow: none;
}

/* Remove content style from <li> elements  */
.no-list-style, .gform_fields {
  list-style: none;
}

.no-list-style li, .gform_fields li {
  margin-top: 0;
  padding-left: 0;
}

.no-list-style li:before, .gform_fields li:before {
  display: none;
}

/*
 * Remove default button style
 * useful when needing to create a button that is just an icon
 */
.no-button-style {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
}

/* Ensures an element can be forced to be inline  */
.force-inline {
  display: inline !important;
}

/* Ensures an element can be forced to be inline-block  */
.force-inline-block {
  display: inline-block !important;
}

/* Set the font-size to be smaller for elements assigned this class  */
.small {
  font-size: 80%;
}

/* Forces image to be the full width of the viewport or nearest relative parent container  */
.image-full-width {
  height: auto;
  min-height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
}

/* Ensures any ajax loader is centered and only displayed when marked as visible */
.ajax-loading {
  display: none;
  margin: 0 auto;
}

.ajax-loading.visible {
  display: inline-block;
}

@media (min-width: 650px) {
  /* Hide elements with this class when below the smartphone breakpoint */
  .mob-only {
    display: none;
  }
}

.navicon {
  display: none;
  margin-top: -.78125rem;
  height: 1.5625rem;
  position: absolute;
  top: 50%;
  right: 2.5%;
  z-index: 2;
  transition: background .3s ease-in-out;
  width: 3.125rem;
}

.navicon__trigger {
  background: #333;
  height: .3125rem;
  position: relative;
  transition: background 0s .3s;
}

.navicon__trigger::before, .navicon__trigger::after {
  background: inherit;
  content: "";
  height: 5px;
  position: absolute;
  left: 0;
  transition-delay: .3s, 0s;
  transition-duration: .3s, .3s;
  width: 100%;
}

.navicon__trigger::before {
  top: -.625rem;
  transition-property: top, -webkit-transform;
  transition-property: top, transform;
  transition-property: top, transform, -webkit-transform;
}

.navicon__trigger::after {
  bottom: -.625rem;
  transition-property: bottom, -webkit-transform;
  transition-property: bottom, transform;
  transition-property: bottom, transform, -webkit-transform;
}

.navicon__trigger--open {
  background: none;
}

.navicon__trigger--open::before {
  top: 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.navicon__trigger--open::after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.navicon__trigger--open::before, .navicon__trigger--open::after {
  background: #666;
  transition-delay: 0s, .3s;
}

.social {
  margin-bottom: 0;
}

.social__item {
  display: inline-block;
}

/**
 * Default styles for the Slick Carousel jQuery plugin.
 * @ref http://kenwheeler.github.io/slick/
 */
.slick-prev, .slick-next {
  color: #333;
  cursor: pointer;
  font-size: .75rem;
  position: absolute;
  top: 42%;
  z-index: 10;
  transition: opacity, .5s, ease, color, .5s, ease;
}

@media (min-width: 650px) {
  .slick-prev, .slick-next {
    font-size: 2.25rem;
  }
}

.slick-prev:hover, .slick-next:hover {
  color: #fff;
}

.slick-prev:hover .fa-circle, .slick-next:hover .fa-circle {
  color: rgba(153, 153, 153, 0.7);
}

.slick-prev .fa-circle, .slick-next .fa-circle {
  color: rgba(255, 255, 255, 0.6);
}

.slick-prev {
  left: 1.875rem;
}

.slick-next {
  right: 1.875rem;
}

.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

#cboxOverlay {
  background: #333;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
}

#colorbox {
  overflow: visible !important;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
}

#colorbox:focus {
  outline: none;
}

#cboxContent {
  background: #fff;
  box-shadow: 0 0 .625rem rgba(0, 0, 0, 0.7);
  position: relative;
}

#cboxLoadedContent {
  background: #fff;
  box-sizing: content-box;
  padding: 10px;
  position: relative;
  z-index: 10;
}

.cboxIframe {
  height: 100%;
  width: 100%;
}

#cboxClose {
  background: url(data:image/png;base64,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) no-repeat;
  border: 0;
  color: #999;
  cursor: pointer;
  height: 30px;
  padding: 0 10px;
  position: absolute;
  top: -15px;
  right: -15px;
  z-index: 9999;
  width: 30px;
}

#cboxClose:hover {
  color: #999;
  opacity: .8;
}

.two-column li,
.three-column li,
.four-column li {
  padding-bottom: .625rem;
}

.two-column li + li,
.three-column li + li,
.four-column li + li {
  margin-top: 0;
}

@media (min-width: 650px) {
  .two-column,
  .three-column,
  .four-column {
    -webkit-column-gap: 1.875rem;
       -moz-column-gap: 1.875rem;
            column-gap: 1.875rem;
    padding-left: 0;
  }
  .two-column li,
  .three-column li,
  .four-column li {
    -webkit-column-break-inside: avoid;
       page-break-inside: avoid;
            break-inside: avoid;
    padding-left: 1.875rem;
  }
  .two-column li:before,
  .three-column li:before,
  .four-column li:before {
    left: .625rem;
  }
}

@media (min-width: 650px) {
  .two-column {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}

@media (min-width: 650px) {
  .three-column {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
}

@media (min-width: 650px) {
  .four-column {
    -webkit-column-count: 4;
       -moz-column-count: 4;
            column-count: 4;
  }
}

[class*="listContainer"] {
  margin-bottom: 1.5625rem;
}

[class*="listContainer"]:before {
  content: '';
  display: table;
  clear: both;
}

[class*="listContainer"] .two-column,
[class*="listContainer"] .three-column,
[class*="listContainer"] .four-column {
  margin-bottom: 0;
}

@media (min-width: 650px) {
  [class*="listContainer"] .two-column,
  [class*="listContainer"] .three-column,
  [class*="listContainer"] .four-column {
    float: left;
  }
  [class*="listContainer"] .two-column {
    width: 50%;
  }
  [class*="listContainer"] .three-column {
    width: 33.33333%;
  }
  [class*="listContainer"] .four-column {
    width: 25%;
  }
}

.gform_fields,
.gfield_radio,
.gfield_checkbox {
  padding-left: 0;
}

.gform_wrapper {
  margin-bottom: 1.5625rem;
}

.gfield {
  clear: both;
  padding-bottom: .9375rem;
}

.gform_description {
  display: block;
  margin-bottom: 1.875rem;
}

.screen-reader-text {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-top: 7px;
}

.instruction,
.gfield_description {
  clear: both;
  font-size: 85%;
}

.instruction {
  font-style: italic;
}

.gfield_required {
  color: #e50000;
  margin-left: 3px;
  position: relative;
  top: -4px;
}

.validation_error,
.validation_message,
.gfield_error input {
  border-color: #e50000;
  color: #e50000;
  font-weight: 600;
}

.validation_message {
  margin-top: 5px;
}

.validation_error {
  margin-bottom: 20px;
}

.gfield_error input,
.gfield_error textarea,
.gfield_error .selector select[multiple="multiple"] {
  border-color: #e50000;
  color: #e50000;
  font-weight: 600;
}

.gform_footer {
  clear: both;
}

.gform_ajax_spinner {
  display: none !important;
}

.gfield_radio,
.gfield_checkbox {
  padding-left: 0;
}

.gfield_radio label,
.gfield_checkbox label {
  display: inline;
}

.ginput_complex {
  overflow: hidden;
}

.ginput_complex label {
  display: block;
  font-size: 85%;
}

.ginput_complex input:not([type="checkbox"]):not([type="radio"]) {
  width: 100%;
}

.ginput_complex .ginput_right,
.ginput_complex .ginput_left {
  float: left;
  width: 49%;
}

.ginput_complex .ginput_right {
  margin-left: 2%;
}

.name_prefix,
.name_first,
.name_middle,
.name_last,
.name_suffix {
  float: left;
}

.gf_name_has_5 span {
  margin-left: 1%;
  width: 19.2%;
}

.gf_name_has_4 span {
  margin-left: 2%;
  width: 23.5%;
}

.gf_name_has_3 span {
  margin-left: 2%;
  width: 32%;
}

.gf_name_has_2 span {
  margin-left: 2%;
  width: 49%;
}

.gf_name_has_5 span:first-child,
.gf_name_has_4 span:first-child,
.gf_name_has_3 span:first-child,
.gf_name_has_2 span:first-child {
  margin-left: 0;
}

.has_zip .address_zip,
.has_state .address_state {
  margin-left: 0;
}

.has_state.has_zip .address_zip {
  float: right;
}

.has_state.has_country .address_state,
.has_state.has_zip .address_state,
.has_state.has_street .address_state {
  float: left;
  margin-left: 0;
}

.has_city.has_state .address_state,
.has_city.has_zip .address_zip,
.has_city.has_country .address_country,
.has_zip.has_country .address_country {
  margin-left: 2%;
}

.has_city.has_state.has_zip .address_zip,
.has_city.has_zip.has_country .address_country,
.has_city.has_state.has_country .address_country {
  float: left;
  margin-left: 0;
}

.has_state.has_country.has_zip .address_zip {
  float: right;
  margin-left: 2%;
}

.has_state.has_country.has_zip .address_country {
  margin-left: 0;
}

.has_state.has_country.has_zip.has_city .address_state {
  float: right;
  margin-left: 2%;
}

.gf_left_half,
.gf_right_half,
.gf_left_third,
.gf_middle_third,
.gf_right_third {
  float: left;
  clear: none;
}

.gf_left_half .small,
.gf_left_half .medium,
.gf_left_half .large,
.gf_right_half .small,
.gf_right_half .medium,
.gf_right_half .large,
.gf_left_third .small,
.gf_left_third .medium,
.gf_left_third .large,
.gf_middle_third .small,
.gf_middle_third .medium,
.gf_middle_third .large,
.gf_right_third .small,
.gf_right_third .medium,
.gf_right_third .large {
  width: 100% !important;
}

.gf_left_half,
.gf_right_half {
  width: 49%;
}

.gf_right_half {
  margin-left: 2%;
}

.gf_left_third,
.gf_middle_third,
.gf_right_third {
  width: 32%;
}

.gf_middle_third,
.gf_right_third {
  margin-left: 2%;
}

.gf_left_half,
.gf_left_third {
  clear: both;
}

.gfield_date_month,
.gfield_date_day,
.gfield_date_year,
.gfield_date_dropdown_month,
.gfield_date_dropdown_day,
.gfield_date_dropdown_year {
  float: left;
  margin-left: 2%;
  width: 6.25rem;
}

.gfield_date_month input,
.gfield_date_day input,
.gfield_date_year input,
.gfield_date_dropdown_month input,
.gfield_date_dropdown_day input,
.gfield_date_dropdown_year input {
  display: block;
  width: 100%;
}

.gfield_date_dropdown_month,
.gfield_date_month {
  margin-left: 0;
}

.gfield_time_hour,
.gfield_time_minute,
.gfield_time_ampm {
  float: left;
}

.gfield_time_hour input,
.gfield_time_minute input,
.gfield_time_ampm input {
  width: 3.375rem;
}

.gfield_time_hour label,
.gfield_time_minute label,
.gfield_time_ampm label {
  display: block;
}

.gfield_time_minute {
  margin-left: .25rem;
}

.gfield_time_ampm {
  margin-left: .75rem;
  width: 4.375rem;
}

.gform_drop_area {
  border: 2px dashed #ddd;
  color: #aaa;
  margin-bottom: 10px;
  padding: 1.5625rem;
  text-align: center;
}

.datepicker {
  max-width: 8.75rem;
}

.ui-datepicker {
  box-shadow: 0 0 3px 2px rgba(0, 0, 0, 0.2);
  font-size: 9px;
}

.ui-datepicker a {
  text-decoration: none;
}

.ui-datepicker-header {
  background-color: #fff;
  /* set the header background color */
  color: #e0e0e0;
  font-weight: bold;
  box-shadow: inset 0px 1px 1px 0px rgba(250, 250, 250, 0.2);
  line-height: 30px;
  min-height: 30px !important;
  border-width: 1px 0 0 0;
  border-style: solid;
  border-color: #666;
}

.ui-datepicker-title {
  text-align: center;
}

.ui-datepicker-title select {
  border: 1px solid #e0e0e0;
  font-size: .6875rem;
  margin-left: 2px;
  margin-right: 2px;
  margin-top: 2.5%;
}

.ui-datepicker-prev,
.ui-datepicker-next {
  display: inline-block;
  height: 30px;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  width: 30px;
}

.ui-datepicker-prev {
  float: left;
  background-position: center -30px;
}

.ui-datepicker-next {
  float: right;
  background-position: center 0px;
}

.ui-datepicker thead {
  background: #f7f7f7;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y3ZjdmNyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmMWYxZjEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: linear-gradient(to bottom, #f7f7f7 0%, #f1f1f1 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#f1f1f1',GradientType=0 );
  border-bottom: 1px solid #bbb;
}

.ui-datepicker th {
  text-transform: uppercase;
  text-align: center;
  font-size: 6pt;
  padding: 5px 0;
  color: #fff;
}

.ui-datepicker tbody td {
  padding: 0;
  border-top: 1px solid #bbb;
  border-right: 1px solid #bbb;
}

.ui-datepicker tbody td:last-child {
  border-right: 0px;
}

.ui-datepicker tbody tr {
  border-bottom: 1px solid #bbb;
}

.ui-datepicker tbody tr:last-child {
  border-bottom: 0px;
}

.ui-datepicker td span,
.ui-datepicker td a {
  display: inline-block;
  font-weight: bold;
  text-align: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: #666666;
  -webkit-filter: dropshadow(color=#fff, offx=1, offy=1);
          filter: dropshadow(color=#fff, offx=1, offy=1);
}

.ui-datepicker-calendar .ui-state-default {
  background: #ededed;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2VkZWRlZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkZWRlZGUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  background: linear-gradient(to bottom, #ededed 0%, #dedede 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ededed', endColorstr='#dedede',GradientType=0 );
  box-shadow: inset 1px 1px 0px 0px rgba(250, 250, 250, 0.5);
}

.ui-datepicker-calendar .ui-state-hover {
  background: #f7f7f7;
}

.ui-datepicker-calendar .ui-state-active {
  background: #FFF2AA;
  /* set the active date background color */
  border: 1px solid #c19163;
  /* set the active date border color */
  color: #666;
  /* set the active date font color */
  box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  margin: -1px;
}

.ui-datepicker-unselectable .ui-state-default {
  background: #f4f4f4;
  color: #b4b3b3;
}

.ui-datepicker-calendar td:first-child .ui-state-active {
  width: 29px;
  margin-left: 0;
}

.ui-datepicker-calendar td:last-child .ui-state-active {
  width: 29px;
  margin-right: 0;
}

.ui-datepicker-calendar tr:last-child .ui-state-active {
  height: 29px;
  margin-bottom: 0;
}

td.ui-datepicker-unselectable.ui-state-disabled {
  background-color: #d7d7d7;
}

table.ui-datepicker-calendar {
  margin: 0 0 0 0 !important;
}

body div#ui-datepicker-div[style] {
  z-index: 9999 !important;
}

.gf_progressbar {
  border-radius: 3px;
  background: #ccc;
  padding: .3125rem;
}

.gf_progressbar_percentage {
  border-radius: 3px;
  background: #999;
  color: #fff;
  font-weight: 600;
  padding: 0 5px;
  text-align: center;
}

.field_description_below .gfield_description {
  margin-top: .25rem;
}

.gfield .small {
  width: 25%;
}

.gfield .medium {
  width: 49%;
}

.gfield .large {
  width: 100%;
}

.gform_widget .top_label input,
.gform_widget .uploader {
  width: 100%;
}

.gform_widget .top_label [type="submit"] {
  width: auto;
}

.gform_widget .uploader span.action {
  position: absolute;
  right: 0;
  top: 0;
}

@media (max-width: 649px) {
  .gf_right_half,
  .gf_name_has_2 span {
    margin-left: 0;
  }
  .ginput_complex > span {
    width: 100%;
  }
  .ginput_complex .name_first,
  .ginput_complex .name_last,
  .ginput_complex .ginput_left,
  .ginput_complex .ginput_right {
    width: 100%;
  }
  .ginput_complex .ginput_right {
    margin-left: 0;
  }
  .gf_left_half,
  .gf_right_half {
    width: 100%;
  }
  .gf_left_half input,
  .gf_right_half input {
    width: 100%;
  }
  .gfield {
    margin-top: 0;
  }
  .gfield input,
  .gfield .selector {
    width: 100%;
  }
  .gform_wrapper .medium,
  .gform_wrapper .large {
    width: 100% !important;
  }
}
