/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
 Remodal's necessary styles
 ========================================================================== */
/* Hide scroll bar */
@media only screen and (min-width: 768px) {
  html.remodal-is-locked {
    overflow: hidden;
    -ms-touch-action: none;
    touch-action: none;
  }
}
/* Anti FOUC */
.remodal, [data-remodal-id] {
  display: none;
}
/* Necessary styles of the overlay */
.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
}
/* Necessary styles of the wrapper */
.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}
.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}
/* Fix iPad, iPhone glitches */
.remodal-overlay, .remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
/* Necessary styles of the modal dialog */
.remodal {
  position: relative;
  outline: none;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}
/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
 Get Updates Promo Theme
 ========================================================================== */
.remodal.modal-updates {
  max-width: 480px;
}
@media only screen and (min-width: 768px) {
  .remodal.modal-updates {
    max-width: 480px;
  }
}
.modal .title-pretitle {
  text-transform: uppercase;
  color: #727272;
  letter-spacing: 1.5px;
  font-size: 12px;
  margin: 1em 0 0;
}
@media only screen and (min-width: 768px) {
  .modal .title-pretitle {
    font-size: 15px;
  }
}
.modal-reserve .title-pretitle {
  margin-top: 1.5em;
}
@media only screen and (min-width: 768px) {
  .modal-reserve .title-pretitle {
    margin-top: 2em;
  }
}
.modal-updates .promo-price {
  font-size: 32px;
  color: #da385f;
  font-family: 'Publico', 'Helvetica Neue', Helvetica, sans-serif;
  font-weight: bold;
  line-height: 1;
  margin: 0.1em 0 0;
}
@media only screen and (min-width: 768px) {
  .modal-updates .promo-price {
    font-size: 48px;
  }
}
.modal-updates.modal .gform_wrapper {
  padding: 0 24px 24px;
}
@media only screen and (min-width: 768px) {
  .modal-updates.modal .gform_wrapper {
    padding: 0 64px 24px;
  }
}
.modal-reserve.modal .gform_wrapper {
  margin-top: 0;
  padding-top: 0;
}
.modal-updates.modal h3, .modal-updates.modal .gform_wrapper h3.gform_title {
  font-size: 18px;
  line-height: 1.3;
  margin-top: 1em;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .modal-updates.modal h3, .modal-updates.modal .gform_wrapper h3.gform_title {
    font-size: 22px;
    line-height: 1.3;
  }
}
/* ==========================================================================
 Remodal's default mobile first theme
 ========================================================================== */
.remodal-is-locked > body > .remodal-wrapper.remodal-is-opened {
  position: static !important;
  background-color: #222428;
  min-height: 100vh;
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .remodal-is-locked > body > .remodal-wrapper.remodal-is-opened {
    min-height: 0;
    position: fixed !important;
    background-color: transparent;
  }
}
.remodal-is-locked > body > .wrapper {
  display: none !important;
}
@media only screen and (min-width: 768px) {
  .remodal-is-locked > body > .wrapper {
    display: block !important;
  }
}
.remodal-is-locked > body > .remodal-overlay.remodal-is-opened {
  display: none !important;
}
@media only screen and (min-width: 768px) {
  .remodal-is-locked > body > .remodal-overlay.remodal-is-opened {
    display: block !important;
  }
}
.modal .gform_wrapper {
  padding: 0 24px 24px;
  margin-top: 0;
}
@media only screen and (min-width: 768px) {
  .modal .gform_wrapper {
    padding: 0 32px 32px;
  }
}
.modal .gform_confirmation_wrapper {
  padding: 0 32px 32px;
  min-height: 300px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.gform_wrapper h2.gsection_title {
  font-family: 'proxima-nova', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.modal h3, .modal .gform_wrapper h3.gform_title {
  font-family: 'Publico', 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  text-transform: none;
}
@media only screen and (min-width: 768px) {
  .modal h3, .modal .gform_wrapper h3.gform_title {
    font-size: 32px;
  }
}
.modal .gform_description {
  text-align: center;
}
.modal.no-padding {
  padding: 0;
}
/* Default theme styles of the overlay */
.remodal-overlay {
  background: rgba(43, 46, 56, 0.9);
}
.remodal-overlay.remodal-is-opening {
  opacity: 1;
}
/* Default theme styles of the wrapper */
.remodal-wrapper {
  padding: 0;
}
/* Default theme styles of the modal dialog */
.remodal {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 35px;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  color: #2b2e38;
  background: #fff;
}
.remodal {
  transition: 0.1s opacity linear;
}
.remodal.modal {
  transform: translateY(0);
  transition: 0.2s opacity linear, 0.3s transform cubic-bezier(0.39, 0.575, 0.565, 1);
}
.remodal-is-closed.remodal.modal {
  transform: translateY(20px);
}
.remodal-wrapper.remodal-is-closed {
  opacity: 0;
}
.remodal-wrapper.remodal-is-opened, .remodal-wrapper.remodal-is-opened {
  opacity: 1;
}
.remodal-is-closed {
  opacity: 0;
}
.remodal-is-opened {
  opacity: 1;
}
.remodal.remodal-is-closing {
  opacity: 0;
}
/* Vertical align of the modal dialog */
.remodal, .remodal-wrapper:after {
  vertical-align: middle;
}
.remodal-confirm {
  color: #fff;
  background: #81c784;
}
.remodal-confirm:hover, .remodal-confirm:focus {
  background: #66bb6a;
}
.remodal-cancel {
  color: #fff;
  background: #e57373;
}
.remodal-cancel:hover, .remodal-cancel:focus {
  background: #ef5350;
}
/* Remove inner padding and border in Firefox 4+ for the button tag. */
.remodal-confirm::-moz-focus-inner, .remodal-cancel::-moz-focus-inner, .remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0;
}
/* Keyframes
 ========================================================================== */
@-webkit-keyframes remodal-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes remodal-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@-webkit-keyframes remodal-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes remodal-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* Media queries
 ========================================================================== */
@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 700px;
  }
  .remodal.modal-children {
    max-width: 580px;
  }
}
/* IE8
 ========================================================================== */
.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}
.lt-ie9 .remodal {
  width: 700px;
}
.iframe-modal {
  margin: 0;
  width: 100%;
  height: 300px;
  min-height: 450px;
  border: none;
  overflow: hidden;
}
.remodal-is-locked #tidio-chat {
  display: none;
}
@font-face {
  font-family: 'Cabrito';
  src: url('../fonts/cabrito-reg.eot');
  /* IE9 Compat Modes */
  src: url('../fonts/cabrito-reg.eot?#iefix') format('embedded-opentype'), url('../fonts/cabrito-reg.woff2') format('woff2'), url('../fonts/cabrito-reg.woff') format('woff'), url('../fonts/cabrito-reg.ttf') format('truetype');
  /* IE6-IE8 */
  /* Safari, Android, iOS */
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: 'Cabrito';
  src: url('../fonts/cabrito-demi.eot');
  src: url('../fonts/cabrito-demi.eot?#iefix') format('embedded-opentype'), url('../fonts/cabrito-demi-new.woff2') format('woff2'), url('../fonts/cabrito-demi.woff') format('woff'), url('../fonts/cabrito-demi.ttf') format('truetype');
  font-style: bold;
  font-weight: 700;
}
@font-face {
  font-family: 'Publico';
  src: url('../fonts/PublicoHeadline-Bold.woff2') format('woff2'), url('../fonts/PublicoHeadline-Bold.woff') format('woff'), url('../fonts/PublicoHeadline-Bold.otf') format('opentype'), url('../fonts/PublicoHeadline-Bold.ttf') format('truetype');
  /* Safari, Android, iOS */
  font-style: normal;
  font-weight: bold;
}
@font-face {
  font-family: 'Publico';
  src: url('../fonts/PublicoHeadline-BoldItalic.woff2') format('woff2'), url('../fonts/PublicoHeadline-BoldItalic.woff') format('woff'), url('../fonts/PublicoHeadline-BoldItalic.otf') format('opentype'), url('../fonts/PublicoHeadline-BoldItalic.ttf') format('truetype');
  /* Safari, Android, iOS */
  font-style: italic;
  font-weight: bold;
}
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}
* {
  box-sizing: border-box;
}
svg {
  max-width: 100%;
}
figure {
  margin: 0 auto;
}
hr {
  border: 0;
  height: 3px;
  background-color: #efefef;
  width: 90%;
  max-width: 1280px;
  margin: 1em auto;
}
@media only screen and (min-width: 768px) {
  hr {
    margin: 3em auto;
  }
}
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.site-content {
  padding-top: 66px;
}
@media only screen and (min-width: 768px) {
  .site-content {
    padding-top: 74px;
  }
}
.modal-overlay {
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
  transition: opacity 0.3s ease;
}
.visuallyhidden, .visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}
/* 
 .modal-container {
 width: 300px;
 margin: 40px auto 0;
 padding: 20px 30px;
 background-color: #fff;
 border-radius: 2px;
 box-shadow: 0 2px 8px rgba(0, 0, 0, .33);
 transition: opacity .3s ease;
 font-family: Helvetica, Arial, sans-serif;
 }
 .modal-header h3 {
 margin-top: 0;
 color: #42b983;
 }
 .modal-body {
 margin: 20px 0;
 } */
.text-right {
  text-align: right;
}
.form-label {
  display: block;
  margin-bottom: 1em;
}
.form-label > .form-control {
  margin-top: 0.5em;
}
.form-control {
  display: block;
  width: 100%;
  padding: 0.5em 1em;
  line-height: 1.5;
  border: 1px solid #ddd;
}
.modal-enter, .modal-leave {
  opacity: 0;
}
/*.modal-enter .modal-container,
 .modal-leave .modal-container {
 -webkit-transform: opacity(1);
 transform: opacity(1);
 }*/
ul {
  padding: 0;
}
ul.unstyled, ul.menu {
  list-style-type: none;
}
li {
  margin: 0 10px 0 20px;
}
a {
  color: #da385f;
}
p {
  color: #454545;
  margin: 0.5em 0;
}
.header {
  position: absolute;
  z-index: 99;
  top: 0;
  right: 0;
  left: 0;
}
.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
@media only screen and (min-width: 768px) {
  .md-col-1-2 {
    width: 50%;
  }
}
@media only screen and (min-width: 768px) {
  .md-col-1-3 {
    width: 33.33%;
  }
}
.grid-row {
  display: flex;
}
.grid-col-1 {
  width: 100%;
}
.grid-col-1-2 {
  width: 50%;
}
.grid-col-1-2.input-wrap:first-child {
  padding-right: 5px;
}
.grid-col-1-2.input-wrap:last-child {
  padding-left: 5px;
}
.logo {
  width: 150px;
  height: 48px;
}
.logo-link {
  color: #242d33;
}
.txt-center {
  text-align: center;
}
.p-large {
  font-size: 17px;
  max-width: 650px;
}
@media only screen and (min-width: 768px) {
  .p-large {
    font-size: 21px;
    margin: 1em auto;
  }
}
.container, .container-slim {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 10px;
}
@media only screen and (min-width: 768px) {
  .container, .container-slim {
    padding: 0 15px;
  }
}
.container-slim {
  max-width: 980px;
}
.container-header {
  padding: 8px 0;
  display: flex;
  justify-content: space-between;
}
.hero {
  padding-top: 0;
  background-color: #f7d56b;
  height: 55vh;
  min-height: 290px;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .hero {
    height: 60vh;
  }
}
.bg-wrap {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  overflow: hidden;
}
svg {
  max-width: 100%;
  height: auto;
}
h1, .home .entry-content h2, h2.entry-title {
  font-family: 'Publico', Georgia, serif;
  font-weight: bold;
  font-size: 32px;
  line-height: 1.2;
  margin: 0 auto 0.5em;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  h1, .home .entry-content h2, h2.entry-title {
    font-size: 32px;
  }
}
@media only screen and (min-width: 992px) {
  h1, .home .entry-content h2, h2.entry-title {
    font-size: 44px;
    max-width: 480px;
    margin: 0 auto 12px;
  }
}
h1, h2 {
  max-width: 700px;
}
h2 {
  font-family: 'Helvetica Neue', Helvetica, sans-serif;
}
.home .hero h1, .home .hero h2 {
  max-width: 360px;
}
@media only screen and (min-width: 992px) {
  .home .hero h1, .home .hero h2 {
    max-width: 480px;
  }
}
h2 {
  margin: 1em auto 0.5em;
  font-size: 26px;
}
@media only screen and (min-width: 768px) {
  h2 {
    font-size: 30px;
  }
}
@media only screen and (min-width: 992px) {
  h2 {
    font-size: 36px;
  }
}
h2.with-subtitle {
  margin: 0 auto 0.3em;
}
h3 {
  margin: 1em 0 0.5em;
  font-size: 15px;
}
@media only screen and (min-width: 768px) {
  h3 {
    font-size: 18px;
  }
}
.hero-content {
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
  left: 0;
  text-align: center;
}
.pretitle {
  font-family: 'Helvetica Neue', Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-top: 0;
}
button {
  cursor: pointer;
}
.subtitle {
  font-family: 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 12px;
}
.section-features, .section-results, .section-price {
  margin: 24px 0;
}
@media only screen and (min-width: 768px) {
  .section-features, .section-results, .section-price {
    margin: 48px 0;
  }
}
.feature-list, .entry-content ul.feature-list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 1em -10px;
}
@media only screen and (min-width: 768px) {
  .feature-list, .entry-content ul.feature-list {
    margin: 1.5em -15px;
  }
}
.feature-list li {
  width: 50%;
  padding: 0 10px;
  box-sizing: border-box;
  margin: 0 0 15px;
}
@media only screen and (min-width: 768px) {
  .feature-list li {
    width: 33.33%;
    padding: 0 10px;
  }
}
.feature-desc, .feature-list p {
  margin: 0;
  max-width: 276px;
  font-size: 14px;
}
@media only screen and (min-width: 768px) {
  .feature-desc, .feature-list p {
    font-size: 16px;
  }
}
.bg-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.svg-icon.bg-sun {
  width: 900px;
  height: 900px;
  position: absolute;
  bottom: -460px;
  max-width: none;
}
@media only screen and (min-width: 992px) {
  .svg-icon.bg-sun {
    width: 1200px;
    height: 1200px;
    position: absolute;
    bottom: -610px;
    max-width: none;
  }
}
.section-about {
  background-color: #62c4c2;
  padding: 24px 0;
}
@media only screen and (min-width: 768px) {
  .section-about {
    padding: 48px 0;
  }
}
.section-about h2 {
  margin-top: 0.5em;
}
.section-about h2, .section-about h3, .section-about p {
  color: #fff;
}
.photo-circle {
  border-radius: 50%;
}
.wp-block-cover-image.has-parallax {
  background-attachment: scroll;
}
.wp-block-cover-image {
  position: relative;
  background-size: cover;
  background-position: 50%;
  min-height: 430px;
  width: 100%;
  margin: 0 0 1.5em;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .wp-block-cover-image.has-parallax {
    background-attachment: fixed;
  }
  .subtitle {
    font-size: 14px;
  }
}
@media only screen and (min-width: 992px) {
  .svg-icon.bg-sun {
    width: 1200px;
    height: 1200px;
    position: absolute;
    bottom: -610px;
  }
}
.btn, .button.button-primary {
  padding: 12px 20px;
  font-weight: bold;
  font-size: 17px;
}
.btn-primary, .button.button-primary {
  color: #fff;
  border-radius: 1px;
  box-shadow: 0px 1px 6px -2px rgba(0, 0, 0, 0.4);
  background: #da385f;
  border: none;
  cursor: pointer;
}
.btn.btn-secondary {
  background-color: #fff;
  color: #00a6e7;
  box-shadow: none;
}
.btn.btn-secondary:hover {
  border-color: #00a6e7;
  color: #00a6e7;
  box-shadow: 0 2px 12px -4px rgba(0, 0, 0, 0.4);
}
.modal-program .modal-content-columns {
  min-height: 50vh;
}
/* ------ Forms ------ */
input {
  box-sizing: border-box;
}
.form-group {
  margin-bottom: 8px;
}
.form-group > label {
  display: block;
}
.form-group .form-input {
  display: block;
  padding: 12px 10px;
  font-size: 17px;
  border: 1px solid #d0d0d0;
  border-radius: 1px;
}
.form-actions {
  margin: 15px 0 20px;
}
.modal .form-input {
  display: block;
  width: 100%;
}
.modal .btn, .modal .wp-submit {
  display: block;
  width: 100%;
}
.hide-mobile {
  display: none;
}
@media only screen and (min-width: 768px) {
  .hide-mobile {
    display: inline;
  }
}
@media only screen and (min-width: 768px) {
  .hide-desktop {
    display: none;
  }
}
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
.wrap-login {
  max-width: 450px;
  margin: 0 auto;
}
.wrap-login .button {
  width: 100%;
  margin: 15px 0;
}
@media only screen and (min-width: 768px) {
  .wrap-login .button {
    margin: 20px 0;
  }
}
.page .site-content.site-content-signup {
  padding-top: 0;
}
@media only screen and (min-width: 768px) {
  .page .site-content.site-content-signup {
    padding-top: 0;
  }
}
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.pin-right {
  max-width: 320px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .pin-right {
    margin-left: 20px;
    margin-right: 0;
    float: right;
  }
}
@media only screen and (min-width: 768px) {
  .pin-left {
    margin-right: 20px;
    margin-left: 0;
    float: left;
  }
}
article.post .entry-content > div.row {
  padding-left: 0;
}
@media only screen and (min-width: 768px) {
  article.post .entry-content > div.row {
    padding-left: 40px;
    padding-right: 40px;
  }
}
article.post .row {
  max-width: 920px;
  margin: 0 auto;
}
article.post .row .col-1-3.img {
  padding: 20px 10px;
}
article.post .row .col-1-3.img img {
  width: 320px;
  max-width: 100%;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .col-3-4 {
    width: 75%;
  }
}
@media only screen and (min-width: 768px) {
  .col-1-4 {
    width: 25%;
  }
}
@media only screen and (min-width: 768px) {
  .col-1-3 {
    width: 33%;
  }
}
@media only screen and (min-width: 768px) {
  .col-2-3 {
    width: 66%;
  }
}
.svgsun1 {
  display: inline;
  fill: #d6f1f2;
  stroke: #fca427;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-miterlimit: 10;
}
.svgsun2 {
  fill: none;
  stroke: #ffffd6;
  stroke-width: 7;
  stroke-linecap: round;
  stroke-miterlimit: 10;
}
.svgsun3 {
  fill: none;
  stroke: #ffe581;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-miterlimit: 10;
}
.svgsun5 {
  fill: none;
  stroke: #222;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-miterlimit: 10;
}
.svgsun6 {
  fill: #f7d56b;
}
.svgsun7 {
  fill: none;
  stroke: #fca427;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-miterlimit: 10;
}
.svgsun8 {
  fill: none;
  stroke: #fca427;
  stroke-width: 9;
  stroke-linecap: round;
  stroke-miterlimit: 10;
}
.svgsun9 {
  fill: none;
  stroke: #ffe581;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-miterlimit: 10;
}
.svgsun10 {
  opacity: 0.5;
}
.svgsun11 {
  fill: none;
  stroke: #ffe581;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-miterlimit: 10;
}
.svgsun12 {
  display: inline;
}
.svgsun13 {
  fill: none;
  stroke: #ffe581;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-miterlimit: 10;
}
.svgsun14 {
  display: inline;
  opacity: 0;
}
.svgsun15 {
  fill: #f7d56b;
  stroke: #fca427;
  stroke-width: 8;
  stroke-linecap: round;
  stroke-miterlimit: 10;
}
.svgsun16 {
  display: inline;
  opacity: 0.5;
}
.online0 {
  fill: #242d33;
}
.online1 {
  fill: none;
  stroke: #242d33;
  stroke-width: 3;
  stroke-miterlimit: 10;
}
.schedule0 {
  fill: #fff;
  stroke: #242d33;
  stroke-width: 3;
  stroke-miterlimit: 10;
}
.schedule1 {
  fill: #242d33;
}
.schedule2 {
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-miterlimit: 10;
}
.schedule3 {
  fill: none;
  stroke: #242d33;
  stroke-width: 2;
  stroke-miterlimit: 10;
}
.support0 {
  fill: #242d33;
}
.support1 {
  fill: #fff;
  stroke: #242d33;
  stroke-width: 2;
  stroke-miterlimit: 10;
}
.timer0 {
  fill: none;
  stroke: #242d33;
  stroke-width: 4;
  stroke-miterlimit: 10;
}
.timer1 {
  fill: #242d33;
}
.video0 {
  fill: none;
  stroke: #242d33;
  stroke-width: 3;
  stroke-miterlimit: 10;
}
.video1 {
  fill: #242d33;
}
.weeks0 {
  fill: none;
  stroke: #242d33;
  stroke-width: 3;
  stroke-miterlimit: 10;
}
.weeks1 {
  fill: none;
  stroke: #242d33;
  stroke-miterlimit: 10;
}
.featured0 {
  fill: #fff;
}
.featured1 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: #fff;
}
.chartfluency0 {
  fill: #da385f;
}
.chartfluency1 {
  fill: none;
  stroke: #000;
  stroke-miterlimit: 10;
}
.chartfluency2 {
  fill: #333;
}
.chartfluency3 {
  font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;
}
.chartfluency4 {
  font-size: 18px;
}
.chartfluency5 {
  letter-spacing: 1;
}
.chartfluency6 {
  font-size: 13.7761px;
}
.chartfluency7 {
  font-size: 9px;
}
.chartcomp0 {
  fill: #7048a5;
}
.chartcomp1 {
  fill: none;
  stroke: #000;
  stroke-miterlimit: 10;
}
.chartcomp2 {
  fill: #333;
}
.chartcomp3 {
  font-family: 'Helvetica Neue', Arial, Helvetica, sans-serif;
}
.chartcomp4 {
  font-size: 22px;
}
.chartcomp5 {
  font-size: 13.7761px;
}
.chartcomp6 {
  font-size: 9px;
}
/*
 ----------------------------------------------------------------
 browsers.css
 Gravity Forms Browser-Specific CSS
 http://www.gravityforms.com
 updated: January 12, 2017 03:56 PM (GMT-05:00) US Eastern Time
 Gravity Forms is a Rocketgenius project
 copyright 2008-2017 Rocketgenius Inc.
 http: //www.rocketgenius.com
 this may not be redistributed without the
 express written permission of the author.
 NOTE: DO NOT EDIT THIS FILE! MAKE ANY MODIFICATIONS IN YOUR
 THEME STYLESHEET. THIS FILE IS REPLACED DURING AUTO-UPDATES
 AND ANY CHANGES MADE HERE WILL BE OVERWRITTEN.
 If you need to make extensive customizations,
 copy the contents of this file to your theme
 style sheet for editing. Then, go to the form
 settings page & set the 'output CSS' option
 to no.
 ----------------------------------------------------------------
 */
/* Safari specific styles */
.entry .gform_wrapper.gf_browser_safari ul li:before, .entry .gform_wrapper.gf_browser_safari ul li:after {
  content: "";
}
.gform_wrapper.gf_browser_safari .gform_body ul.gform_fields li.gfield .ginput_container #recaptcha_widget_div #recaptcha_area {
  width: 99% !important;
}
.gform_wrapper.gf_browser_safari .left_label #recaptcha_area #recaptcha_table, .gform_wrapper.gf_browser_safari .right_label #recaptcha_area #recaptcha_table {
  margin-left: 32%;
}
.gform_wrapper.gf_browser_safari .gfield_checkbox li input[type=checkbox], .gform_wrapper.gf_browser_safari .gfield_radio li input[type=radio], .gform_wrapper.gf_browser_safari .gfield_checkbox li input {
  margin-top: 4px;
}
.gform_wrapper.gf_browser_safari select[multiple=multiple] {
  height: auto !important;
}
.gform_wrapper.gf_browser_safari input.button.gform_button_select_files {
  padding: 6px 12px !important;
}
.gform_wrapper.gf_browser_safari .gfield_time_ampm select {
  max-width: 5rem !important;
  width: calc(2rem + 20px);
}
/* Google Chrome (and now Opera) styles */
.gform_wrapper.gf_browser_chrome select {
  padding: 2px 0 2px 3px;
}
.gform_wrapper.gf_browser_chrome .gfield_time_ampm select {
  max-width: 5rem !important;
  width: calc(3rem + 20px);
}
.gform_wrapper.gf_browser_chrome ul li:before, .gform_wrapper.gf_browser_chrome ul li:after, .entry .gform_wrapper.gf_browser_chrome ul li:before, .entry .gform_wrapper.gf_browser_chrome ul li:after {
  content: none;
}
.gform_wrapper.gf_browser_chrome .gform_body ul.gform_fields li.gfield .ginput_container #recaptcha_widget_div #recaptcha_area {
  width: 99% !important;
}
.gform_wrapper.gf_browser_chrome .left_label #recaptcha_area #recaptcha_table, .gform_wrapper.gf_browser_chrome .right_label #recaptcha_area #recaptcha_table {
  margin-left: 32%;
}
.gform_wrapper.gf_browser_chrome .ginput_complex select, .gform_wrapper.gf_browser_chrome .ginput_complex .ginput_right select {
  text-indent: 2px;
  line-height: 1.5em;
  margin-bottom: 5px;
  margin-top: 2px;
}
.gform_wrapper.gf_browser_chrome .gfield_checkbox li input[type=checkbox], .gform_wrapper.gf_browser_chrome .gfield_radio li input[type=radio], .gform_wrapper.gf_browser_chrome .gfield_checkbox li input {
  margin-top: 6px;
}
.gform_wrapper.gf_browser_chrome ul.gform_fields li.gfield div.ginput_complex span.ginput_left select, .gform_wrapper.gf_browser_chrome ul.gform_fields li.gfield div.ginput_complex span.ginput_right select, .gform_wrapper.gf_browser_chrome ul.gform_fields li.gfield select {
  margin-left: 1px;
}
.gform_wrapper.gf_browser_chrome ul.gform_fields li.gfield input[type=radio] {
  margin-left: 1px;
}
.gform_wrapper.gf_browser_chrome ul.gform_fields li.gfield span.name_first, .gform_wrapper.gf_browser_chrome ul.gform_fields li.gfield span.name_middle, .gform_wrapper.gf_browser_chrome ul.gform_fields li.gfield span.name_last {
  padding-top: 2px;
}
.gform_wrapper.gf_browser_chrome select[multiple=multiple] {
  height: auto !important;
}
.gform_wrapper.gf_browser_chrome .gfield_error .ginput_complex.ginput_container.has_first_name.has_middle_name.has_last_name span.name_middle, .gform_wrapper.gf_browser_chrome .gfield_error .ginput_complex.ginput_container.has_first_name.has_middle_name.has_last_name span.name_last {
  margin-left: 1.1%;
}
.gform_wrapper.gf_browser_chrome .gfield_error input[type=text], .gform_wrapper.gf_browser_chrome .gfield_error input[type=email], .gform_wrapper.gf_browser_chrome .gfield_error input[type=tel], .gform_wrapper.gf_browser_chrome .gfield_error input[type=url], .gform_wrapper.gf_browser_chrome .gfield_error input[type=number], .gform_wrapper.gf_browser_chrome .gfield_error input[type=password], .gform_wrapper.gf_browser_chrome .gfield_error select, .gform_wrapper.gf_browser_chrome .gfield_error textarea, .gform_wrapper.gf_browser_chrome li.gfield_error.field_sublabel_above .ginput_complex input[type=text] {
  margin-bottom: 2px;
}
.gform_wrapper.gf_browser_chrome input.button.gform_button_select_files {
  padding: 6px 12px !important;
}
.gform_wrapper.gf_browser_chrome span.address_country {
  margin-top: -2px;
}
/* Firefox specific styles */
.gform_wrapper.gf_browser_gecko select {
  padding: 2px 12px 2px 2px;
}
.gform_wrapper.gf_browser_gecko .gfield_time_ampm select {
  max-width: 5rem !important;
  width: calc(4rem + 25px);
}
.gform_wrapper.gf_browser_gecko ul li:before, .gform_wrapper.gf_browser_gecko ul li:after, .entry .gform_wrapper.gf_browser_gecko ul li:before, .entry .gform_wrapper.gf_browser_gecko ul li:after {
  content: none;
}
.gform_wrapper.gf_browser_gecko .ginput_complex .ginput_cardinfo_left select.ginput_card_expiration.ginput_card_expiration_month {
  margin-right: 1px;
}
.gform_wrappergf_browser_gecko .chosen-container-single .chosen-single {
  height: 32px;
  line-height: 2.4;
}
.gform_wrappergf_browser_gecko .chosen-container-single .chosen-single div b {
  position: relative;
  top: 5px;
}
/* Internet Explorer specific styles */
.gform_wrapper.gf_browser_ie ul li:before, .gform_wrapper.gf_browser_ie ul li:after, .entry .gform_wrapper.gf_browser_ie ul li:before, .entry .gform_wrapper.gf_browser_ie ul li:after {
  content: none;
}
.gform_wrapper.gf_browser_ie .gfield_time_hour {
  width: 80px;
}
.gform_wrapper.gf_browser_ie .gfield_time_minute {
  width: 70px;
}
.gform_wrapper.gf_browser_ie .gfield_time_ampm {
  padding-top: 2px;
}
.gform_wrapper.gf_browser_ie .gfield_time_hour input, .gform_wrapper.gf_browser_ie .gfield_time_minute input {
  margin-left: 0;
}
.gform_wrapper.gf_browser_ie .ginput_complex .ginput_left label, .gform_wrapper.gf_browser_ie .ginput_complex .ginput_right label {
  margin: 3px 0 5px 0;
}
.gform_wrapper.gf_browser_ie .gform_footer input.button {
  padding: 3px;
}
.gform_wrapper.gf_browser_ie ul.top_label .clear-multi {
  overflow: hidden;
  clear: both;
}
.gform_wrapper.gf_browser_ie .gfield_radio li {
  line-height: 20px !important;
}
.gform_wrapper.gf_browser_ie .gfield_checkbox li input[type=checkbox], .gform_wrapper.gf_browser_ie .gfield_radio li input[type=radio], .gform_wrapper.gf_browser_ie .gfield_checkbox li input {
  margin-top: 0;
}
.gform_wrapper.gf_browser_ie .ginput_complex .ginput_left select, .gform_wrapper.gf_browser_ie .ginput_complex .ginput_right select {
  padding: 2px 0 2px 0;
}
.gform_wrapper.gf_browser_ie .gform_body ul.gform_fields li.gfield .ginput_container #recaptcha_widget_div #recaptcha_area {
  width: 99% !important;
}
.gform_wrapper.gf_browser_ie .gform_body ul.gform_fields li.gfield .ginput_container #recaptcha_widget_div #recaptcha_area {
  width: 99% !important;
}
.gform_wrapper.gf_browser_ie .left_label #recaptcha_area #recaptcha_table, .gform_wrapper.gf_browser_ie .right_label #recaptcha_area #recaptcha_table {
  margin-left: 32%;
}
.gform_wrapper.gf_browser_ie .ginput_complex .ginput_cardinfo_right span.ginput_card_security_code_icon {
  position: relative;
  top: -1px;
  left: 4px;
}
.gform_wrapper.gf_browser_ie img.add_list_item, .gform_wrapper.gf_browser_ie img.delete_list_item {
  width: 16px !important;
  height: 16px !important;
  background-size: 16px 16px !important;
}
.gform_wrapper.gf_browser_iphone ul li:before, .gform_wrapper.gf_browser_iphone ul li:after, .entry .gform_wrapper.gf_browser_iphone ul li:before, .entry .gform_wrapper.gf_browser_iphone ul li:after {
  content: none;
}
.gform_wrapper.gf_browser_unknown ul li:before, .gform_wrapper.gf_browser_unknown ul li:after, .entry .gform_wrapper.gf_browser_unknown ul li:before, .entry .gform_wrapper.gf_browser_unknown ul li:after {
  content: none;
}
@media only screen and (max-width: 641px) {
  /* make the nifty styled selects a little larger for mobile devices */
  .gform_wrapper.gf_browser_gecko .chosen-container-single .chosen-single, .gform_wrapper.gf_browser_safari .chosen-container-single .chosen-single, .gform_wrapper.gf_browser_chrome .chosen-container-single .chosen-single {
    height: 44px;
    line-height: 3.2;
  }
  .gform_wrapper.gf_browser_gecko .chosen-container-single .chosen-single div b, .gform_wrapper.gf_browser_safari .chosen-container-single .chosen-single div b, .gform_wrapper.gf_browser_chrome .chosen-container-single .chosen-single div b {
    position: relative;
    top: 12px;
  }
}
/*
 ----------------------------------------------------------------
 formreset.css
 Gravity Forms CSS Reset
 http://www.gravityforms.com
 updated: March 15, 2015 1:41 PM
 Gravity Forms is a Rocketgenius project
 copyright 2008-2015 Rocketgenius Inc.
 http: //www.rocketgenius.com
 this may not be redistributed without the
 express written permission of the author.
 NOTE: DO NOT EDIT THIS FILE! MAKE ANY MODIFICATIONS IN YOUR
 THEME STYLESHEET. THIS FILE IS REPLACED DURING AUTO-UPDATES
 AND ANY CHANGES MADE HERE WILL BE OVERWRITTEN.
 If you need to make extensive customizations,
 copy the contents of this file to your theme
 style sheet for editing. Then, go to the form
 settings page & set the 'output CSS' option
 to no.
 ----------------------------------------------------------------
 */
body .gform_wrapper.gf_reset_wrapper, body .gform_wrapper.gf_reset_wrapper div, body .gform_wrapper.gf_reset_wrapper span, body .gform_wrapper.gf_reset_wrapper iframe, body .gform_wrapper.gf_reset_wrapper h1, body .gform_wrapper.gf_reset_wrapper h2, body .gform_wrapper.gf_reset_wrapper h3, body .gform_wrapper.gf_reset_wrapper h4, body .gform_wrapper.gf_reset_wrapper h5, body .gform_wrapper.gf_reset_wrapper h6, body .gform_wrapper.gf_reset_wrapper p, body .gform_wrapper.gf_reset_wrapper img, body .gform_wrapper.gf_reset_wrapper ol, body .gform_wrapper.gf_reset_wrapper ul, body .gform_wrapper.gf_reset_wrapper li, body .gform_wrapper.gf_reset_wrapper fieldset, body .gform_wrapper.gf_reset_wrapper form, body .gform_wrapper.gf_reset_wrapper label, body .gform_wrapper.gf_reset_wrapper legend, body .gform_wrapper.gf_reset_wrapper input[type=text], body .gform_wrapper.gf_reset_wrapper input[type=email], body .gform_wrapper.gf_reset_wrapper input[type=tel], body .gform_wrapper.gf_reset_wrapper input[type=url], body .gform_wrapper.gf_reset_wrapper input[type=number], body .gform_wrapper.gf_reset_wrapper input[type=password], body .gform_wrapper.gf_reset_wrapper select, body .gform_wrapper.gf_reset_wrapper textarea, body .gform_wrapper.gf_reset_wrapper input[type=submit], body .gform_wrapper.gf_reset_wrapper input[type=button], body .gform_wrapper.gf_reset_wrapper input[type=image], body .gform_wrapper.gf_reset_wrapper button, body .gform_wrapper.gf_reset_wrapper table, body .gform_wrapper.gf_reset_wrapper caption, body .gform_wrapper.gf_reset_wrapper tbody, body .gform_wrapper.gf_reset_wrapper tfoot, body .gform_wrapper.gf_reset_wrapper thead, body .gform_wrapper.gf_reset_wrapper tr, body .gform_wrapper.gf_reset_wrapper th, body .gform_wrapper.gf_reset_wrapper td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}
body .gform_wrapper.gf_reset_wrapper div, body .gform_wrapper.gf_reset_wrapper span, body .gform_wrapper.gf_reset_wrapper iframe, body .gform_wrapper.gf_reset_wrapper p, body .gform_wrapper.gf_reset_wrapper img, body .gform_wrapper.gf_reset_wrapper ol, body .gform_wrapper.gf_reset_wrapper ul, body .gform_wrapper.gf_reset_wrapper li, body .gform_wrapper.gf_reset_wrapper fieldset, body .gform_wrapper.gf_reset_wrapper form, body .gform_wrapper.gf_reset_wrapper label, body .gform_wrapper.gf_reset_wrapper legend, body .gform_wrapper.gf_reset_wrapper input[type=text], body .gform_wrapper.gf_reset_wrapper input[type=email], body .gform_wrapper.gf_reset_wrapper input[type=tel], body .gform_wrapper.gf_reset_wrapper input[type=url], body .gform_wrapper.gf_reset_wrapper input[type=number], body .gform_wrapper.gf_reset_wrapper input[type=password], body .gform_wrapper.gf_reset_wrapper select, body .gform_wrapper.gf_reset_wrapper textarea, body .gform_wrapper.gf_reset_wrapper input[type=submit], body .gform_wrapper.gf_reset_wrapper input[type=button], body .gform_wrapper.gf_reset_wrapper input[type=image], body .gform_wrapper.gf_reset_wrapper button, body .gform_wrapper.gf_reset_wrapper table, body .gform_wrapper.gf_reset_wrapper caption, body .gform_wrapper.gf_reset_wrapper tbody, body .gform_wrapper.gf_reset_wrapper tfoot, body .gform_wrapper.gf_reset_wrapper thead, body .gform_wrapper.gf_reset_wrapper tr, body .gform_wrapper.gf_reset_wrapper th, body .gform_wrapper.gf_reset_wrapper td {
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
  line-height: 1;
  font-weight: normal;
}
body .gform_wrapper.gf_reset_wrapper div, body .gform_wrapper.gf_reset_wrapper span, body .gform_wrapper.gf_reset_wrapper p {
  line-height: 1.8;
}
body .gform_wrapper.gf_reset_wrapper fieldset, body .gform_wrapper.gf_reset_wrapper img {
  border: 0;
}
body .gform_wrapper.gf_reset_wrapper ol, body .gform_wrapper.gf_reset_wrapper ul, body .gform_wrapper.gf_reset_wrapper li {
  list-style: none;
}
body .gform_wrapper.gf_reset_wrapper a img {
  border: none;
}
body .gform_wrapper.gf_reset_wrapper :focus {
  outline: 0;
}
/*
 ----------------------------------------------------------------
 Gravity Forms Front End Form Styles
 http: //www.gravityforms.com
 updated: August 04, 2017 04:03 PM (GMT-05:00) US Eastern Time
 Gravity Forms is a Rocketgenius project
 copyright 2008-2017 Rocketgenius Inc.
 http: //www.rocketgenius.com
 this may not be redistributed without the
 express written permission of the author.
 NOTE: DO NOT EDIT THIS FILE! MAKE ANY MODIFICATIONS IN YOUR
 THEME STYLESHEET. THIS FILE IS REPLACED DURING AUTO-UPDATES
 AND ANY CHANGES MADE HERE WILL BE OVERWRITTEN.
 If you need to make extensive customizations,
 copy the contents of this file to your theme
 style sheet for editing. Then, go to the form
 settings page & set the 'output CSS' option
 to no.
 ----------------------------------------------------------------
 */
/* mobile styles first â€‹*/
.gform_wrapper {
  margin: 16px 0;
  max-width: 100%;
}
.gform_wrapper form {
  text-align: left;
  max-width: 100%;
  margin: 0 auto;
}
.gform_wrapper *, .gform_wrapper *:before, .gform_wrapper *:after {
  box-sizing: border-box !important;
}
.gform_wrapper h1, .gform_wrapper h2, .gform_wrapper h3 {
  font-weight: normal;
  border: none;
  background: none;
}
.gform_wrapper input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']) {
  font-size: inherit;
  font-family: inherit;
  padding: 5px 4px;
  letter-spacing: normal;
}
.gform_wrapper input[type=image] {
  border: none !important;
  padding: 0 !important;
  width: auto !important;
}
.gform_wrapper textarea {
  font-size: inherit;
  font-family: inherit;
  letter-spacing: normal;
  padding: 6px 8px;
  line-height: 1.5;
  resize: none;
}
.gform_wrapper select {
  line-height: 1.5;
}
.gform_wrapper .ginput_container_multiselect select {
  background-image: none !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
}
.gform_wrapper ul.gform_fields {
  margin: 0 !important;
  list-style-type: none;
  display: block;
}
html > body .entry ul, .gform_wrapper ul {
  text-indent: 0;
}
.gform_wrapper li, .gform_wrapper form li {
  margin-left: 0 !important;
  list-style-type: none !important;
  list-style-image: none !important;
  list-style: none !important;
  overflow: visible;
}
.gform_wrapper ul li.gfield {
  clear: both;
}
.gform_wrapper ul.gfield_radio li, .gform_wrapper ul.gfield_checkbox li {
  overflow: hidden;
}
.gform_wrapper ul.gform_fields.right_label li.gfield, .gform_wrapper form ul.gform_fields.right_label li.gfield, .gform_wrapper ul.gform_fields.left_label li.gfield, .gform_wrapper form ul.gform_fields.left_label li.gfield {
  margin-bottom: 14px;
}
.gform_wrapper ul.right_label li ul.gfield_radio li, .gform_wrapper form ul.right_label li ul.gfield_radio li, .gform_wrapper ul.left_label li ul.gfield_radio li, .gform_wrapper form ul.left_label li ul.gfield_radio li, .gform_wrapper ul.right_label li ul.gfield_checkbox li, .gform_wrapper form ul.right_label li ul.gfield_checkbox li, .gform_wrapper ul.left_label li ul.gfield_checkbox li, .gform_wrapper form ul.left_label li ul.gfield_checkbox li {
  margin-bottom: 10px;
}
.gform_wrapper ul li:before, .gform_wrapper ul li:after, .gform_wrapper ul.gform_fields {
  padding: 0;
  margin: 0;
  overflow: visible;
}
.gform_wrapper select {
  font-size: inherit;
  font-family: inherit;
  letter-spacing: normal;
}
.gform_wrapper select option {
  padding: 2px;
  display: block;
}
.gform_wrapper .inline {
  display: inline !important;
}
.gform_wrapper .gform_heading {
  width: 100%;
  margin-bottom: 18px;
}
.gform_wrapper .clear-multi {
  display: flex;
}
/* date â€‹fields */
.gform_wrapper .gfield_date_day, .gform_wrapper .gfield_date_year {
  display: -moz-inline-stack;
  display: inline-block;
}
.gform_wrapper .gfield_date_day, .gform_wrapper .gfield_date_month, .gform_wrapper .gfield_date_year {
  width: 33.333%;
  flex-direction: row;
}
@media only screen and (min-width: 321px) {
  .gform_wrapper .gfield_date_day, .gform_wrapper .gfield_date_month {
    max-width: 4rem;
  }
  .gform_wrapper .gfield_date_year, .gform_wrapper .gfield_time_ampm {
    max-width: calc(4rem + .5rem);
  }
}
.gform_wrapper .gfield_date_dropdown_month, .gform_wrapper .gfield_date_dropdown_day, .gform_wrapper .gfield_date_dropdown_year {
  vertical-align: top;
  flex-direction: row;
}
.gform_wrapper .gfield_date_dropdown_month, .gform_wrapper .gfield_date_dropdown_day, .gform_wrapper .gfield_date_dropdown_year {
  margin-right: 0.5rem;
}
.gform_wrapper .gfield_date_month, .gform_wrapper .gfield_date_day {
  width: 4rem;
  margin-right: 0.5rem;
}
.gform_wrapper .gfield_date_month input[type="number"], .gform_wrapper .gfield_date_day input[type="number"] {
  width: calc(3rem + 8px) !important;
}
.gform_wrapper .gfield_date_year input[type="number"] {
  width: calc(4rem + 8px) !important;
}
.gform_wrapper .gfield_date_year {
  width: 5rem;
}
.gform_wrapper .gfield_date_month input, .gform_wrapper .gfield_date_day input {
  width: calc(3rem + 8px);
}
.gform_wrapper .gfield_date_year input {
  width: 4rem;
}
.gform_wrapper .field_sublabel_above div[class*="gfield_date_"].ginput_container label, .gform_wrapper .field_sublabel_below div[class*="gfield_date_"].ginput_container label {
  width: 3rem;
  text-align: center;
}
.gform_wrapper .field_sublabel_above div.gfield_date_year.ginput_container label, .gform_wrapper .field_sublabel_below div.gfield_date_year.ginput_container label {
  width: 4rem;
}
/* time â€‹fields */
.gform_wrapper .gfield_time_hour, .gform_wrapper .gfield_time_minute, .gform_wrapper .gfield_time_ampm {
  width: 33.333%;
  flex-direction: row;
}
@media only screen and (min-width: 321px) {
  .gform_wrapper .gfield_time_hour, .gform_wrapper .gfield_time_minute {
    max-width: 4rem;
  }
  .gform_wrapper .gfield_time_hour, .gform_wrapper .gfield_time_ampm {
    max-width: calc(4rem + .5rem);
  }
  .gform_wrapper .gfield_time_hour {
    max-width: calc(4rem + .5rem);
  }
}
.gform_wrapper ul.gform_fields:not(.top_label) .ginput_container_time span {
  float: left;
}
.gform_wrapper .gfield_time_hour i {
  font-style: normal !important;
  font-family: sans-serif !important;
  width: 10px;
  text-align: center;
  float: right;
  margin-top: 9%;
}
.gform_wrapper .gfield_time_minute {
  margin-right: 0.5rem;
}
.gform_wrapper .gfield_time_hour {
  margin-right: 0.25rem;
}
.gform_wrapper .gfield_time_ampm {
  vertical-align: top;
  display: -moz-inline-stack;
  display: inline-block;
}
.gform_wrapper .gfield_time_ampm select {
  min-width: calc(2rem + 25px);
  width: calc(3rem + 25px);
}
.gform_wrapper .gfield_time_hour input, .gform_wrapper .gfield_time_minute input {
  width: calc(3rem + 8px);
}
.gform_wrapper .gfield_time_hour input[type="number"], .gform_wrapper .gfield_time_minute input[type="number"] {
  width: calc(3rem + 8px) !important;
}
.gform_wrapper .field_sublabel_above div[class*="gfield_time_"].ginput_container label, .gform_wrapper .field_sublabel_below div[class*="gfield_time_"].ginput_container label {
  width: 3rem;
  text-align: center;
}
.gform_wrapper .field_hover {
  border: 1px dashed #2175a9;
  cursor: pointer;
}
.gform_wrapper .field_selected {
  background-color: #dfefff;
  border: 1px solid #c2d7ef;
}
.gform_wrapper .field_name_first, .gform_wrapper .field_name_middle, .gform_wrapper .field_name_last {
  width: 49.5%;
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: top;
}
.gform_wrapper .ginput_complex.ginput_container {
  overflow: visible;
  width: 100%;
}
.gform_wrapper label.gfield_label {
  font-weight: 700;
  font-size: inherit;
}
.gform_wrapper .top_label .gfield_label {
  display: -moz-inline-stack;
  display: inline-block;
  line-height: 1.3;
  clear: both;
}
.gform_wrapper .ginput_complex input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='image']):not([type='file']), .gform_wrapper .ginput_complex .ginput_left input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='image']):not([type='file']), .gform_wrapper .ginput_complex .ginput_right input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='image']):not([type='file']) {
  width: 100%;
}
.gform_wrapper .ginput_complex .ginput_right select, .gform_wrapper .ginput_complex select {
  width: 100%;
}
.gform_wrapper .field_sublabel_above .ginput_complex.ginput_container label, .gform_wrapper .field_sublabel_below .ginput_complex.ginput_container label, .gform_wrapper .field_sublabel_above div[class*="gfield_time_"].ginput_container label, .gform_wrapper .field_sublabel_below div[class*="gfield_time_"].ginput_container label, .gform_wrapper .field_sublabel_above div[class*="gfield_date_"].ginput_container label, .gform_wrapper .field_sublabel_below div[class*="gfield_date_"].ginput_container label {
  display: block;
  font-size: 0.813em;
  letter-spacing: 0.5pt;
  white-space: nowrap;
}
.gform_wrapper ul.gfield_radio li label, .gform_wrapper ul.gfield_checkbox li label {
  display: -moz-inline-stack;
  display: inline-block;
  letter-spacing: inherit;
  vertical-align: middle;
  cursor: pointer;
}
.gform_wrapper .field_sublabel_above .ginput_complex.ginput_container label, .gform_wrapper .field_sublabel_above div[class*="gfield_time_"].ginput_container label {
  margin: 9px 0 1px 1px;
}
.gform_wrapper ul.gform_fields:not(.top_label) .field_sublabel_above .ginput_container.ginput_container_name label, .gform_wrapper ul.gform_fields:not(.top_label) .field_sublabel_above .ginput_container.ginput_container_email label, .gform_wrapper ul.gform_fields:not(.top_label) .field_sublabel_above .ginput_container.ginput_container_password label, .gform_wrapper ul.gform_fields:not(.top_label) .field_sublabel_above .ginput_container.ginput_container_time label {
  margin-top: 0;
}
.gform_wrapper .field_sublabel_below .ginput_complex.ginput_container label, .gform_wrapper .field_sublabel_below div[class*="gfield_time_"].ginput_container label {
  margin: 1px 0 9px 1px;
}
.gform_wrapper .top_label .field_sublabel_above label.gfield_label + .ginput_complex.ginput_container, .gform_wrapper .top_label .field_sublabel_above label.gfield_label + div[class*="gfield_time_"].ginput_container {
  margin-top: 0;
}
body .gform_wrapper .top_label div.ginput_container {
  margin-top: 8px;
}
body.gform_wrapper div.clear-multi {
  display: -moz-inline-stack;
  display: inline-block;
}
body .gform_wrapper ul li.field_description_below div.ginput_container_radio, body .gform_wrapper ul li.field_description_below div.ginput_container_checkbox {
  margin-top: 16px;
  margin-bottom: 0;
}
.gform_wrapper .hidden_label .gfield_label {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.gfield.right_label, .gfield.left_label {
  padding-top: 10px;
}
.gform_wrapper li.hidden_label input {
  margin-top: 12px;
}
.gform_wrapper .field_sublabel_hidden_label .ginput_complex.ginput_container input[type=text], .gform_wrapper .field_sublabel_hidden_label .ginput_complex.ginput_container select {
  margin-bottom: 12px;
}
.gform_wrapper label.screen-reader-text, .gform_wrapper label.hidden_sub_label {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.gform_wrapper input.small, .gform_wrapper select.small, .gform_wrapper input.medium, .gform_wrapper select.medium, .gform_wrapper input.large, .gform_wrapper select.large, .gform_wrapper input.large, .gform_wrapper select.large {
  width: 100%;
}
.gform_wrapper input.datepicker_with_icon.small, .gform_wrapper input.datepicker_with_icon.medium, .gform_wrapper input.datepicker_with_icon.large {
  width: calc(100% - 24px);
}
.gform_wrapper .gfield_error input.small, .gform_wrapper .gfield_error select.small, .gform_wrapper .gfield_error input.medium, .gform_wrapper .gfield_error select.medium, .gform_wrapper .gfield_error input.large, .gform_wrapper .gfield_error select.large, .gform_wrapper .gfield_error input.large, .gform_wrapper .gfield_error select.large {
  width: 100%;
}
.gform_wrapper .gfield_error input.datepicker_with_icon.small, .gform_wrapper .gfield_error input.datepicker_with_icon.medium, .gform_wrapper .gfield_error input.datepicker_with_icon.large {
  width: calc(100% - 32px);
}
.gform_wrapper textarea.small {
  height: 80px;
  width: 100%;
}
.gform_wrapper textarea.medium {
  height: 120px;
  width: 100%;
}
.gform_wrapper textarea.large {
  height: 160px;
  width: 100%;
}
.gform_wrapper h2.gsection_title {
  margin: 0 !important;
  padding: 0 !important;
  letter-spacing: normal !important;
}
.gform_wrapper .gsection .gfield_label, .gform_wrapper h2.gsection_title, .gform_wrapper h3.gform_title {
  font-weight: 700;
  font-size: 1.25em;
}
.gform_wrapper h3.gform_title {
  letter-spacing: normal !important;
  margin: 10px 0 6px 0;
}
.gform_wrapper li.gfield.field_description_below + li.gsection {
  margin-top: 24px !important;
}
.gform_wrapper span.gform_description {
  font-weight: 400;
  display: block;
  width: auto !important;
  margin-bottom: 16px;
}
.gform_wrapper .gsection {
  border-bottom: 1px solid #ccc;
  padding: 0 16px 8px 0;
  margin: 28px 0 28px 0;
  clear: both;
}
.gform_wrapper ul.gfield_checkbox li input[type=checkbox], .gform_wrapper ul.gfield_radio li input[type=radio] {
  width: auto !important;
}
.gform_wrapper .gfield_checkbox li, .gform_wrapper .gfield_radio li {
  position: relative;
}
.gform_wrapper ul.gfield_checkbox, .gform_wrapper ul.gfield_radio {
  margin: 6px 0;
  padding: 0;
}
.gform_wrapper .gfield_checkbox li label, .gform_wrapper .gfield_radio li label {
  display: -moz-inline-stack;
  display: inline-block;
  padding: 0;
  width: auto;
  line-height: 1.5;
  font-size: 0.875em;
  vertical-align: middle;
  max-width: 85%;
  white-space: normal;
}
.gform_wrapper .gfield_checkbox li label {
  margin: 0;
}
.gform_wrapper .gfield_radio li label {
  margin: 2px 0 0 4px;
}
.gform_wrapper .gfield_checkbox li input[type=checkbox], .gform_wrapper .gfield_radio li input[type=radio], .gform_wrapper .gfield_checkbox li input {
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  margin-left: 1px;
}
.gform_wrapper .description, .gform_wrapper .gfield_description, .gform_wrapper .gsection_description, .gform_wrapper .instruction {
  font-size: 0.813em;
  line-height: inherit;
  clear: both;
  font-family: inherit;
  letter-spacing: normal;
}
.gform_wrapper .description, .gform_wrapper .gfield_description, .gform_wrapper .gsection_description {
  padding: 0 16px 0 0;
}
.gform_wrapper .field_description_below .gfield_description {
  padding-top: 16px;
}
.gform_wrapper .field_sublabel_above .description, .gform_wrapper .field_sublabel_above .gfield_description, .gform_wrapper .field_sublabel_above .gsection_description {
  margin-top: 9px;
}
.gform_wrapper .top_label .gsection_description {
  width: 100%;
  margin-bottom: 9px;
}
.gform_wrapper .gfield_description {
  width: 100%;
}
.gform_wrapper .description_above .gfield_description {
  padding: 0 0 10px 0;
}
.gfield_date_year + .gfield_description {
  padding: 0;
}
.gform_wrapper .gfield_required {
  color: #790000;
  margin-left: 4px;
}
.gform_wrapper li.gfield.gfield_error, .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
  background-color: rgba(255, 223, 224, .25);
  margin-bottom: 6px !important;
  border-top: 1px solid #c89797;
  border-bottom: 1px solid #c89797;
  padding-bottom: 6px;
  padding-top: 8px;
  box-sizing: border-box;
}
.gform_wrapper li.gfield.gfield_creditcard_warning {
  padding: 16px 16px 14px 16px;
  border-top: 2px solid #790000;
  border-bottom: 4px solid #790000;
  background-color: rgba(255, 223, 224, 0.25);
  width: calc(100% - 16px);
}
.gform_wrapper li.gfield.gfield_error.gfield_creditcard_warning {
  padding: 16px 16px 14px 16px;
}
.gform_wrapper li.gfield.gfield_creditcard_warning div.gfield_creditcard_warning_message {
  font-size: 0.875em;
  font-weight: 700;
  font-family: inherit;
  min-height: 25px;
  color: #790000;
  max-width: 100%;
  position: relative;
}
.gform_wrapper li.gfield.gfield_creditcard_warning div.gfield_creditcard_warning_message span {
  display: block;
  padding: 0 0 14px 24px;
  margin-bottom: 16px;
  line-height: 1.5;
  letter-spacing: 0.1pt;
  border-bottom: 1px solid #790000;
  text-transform: uppercase;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB2aWV3Qm94PSItMTA2NyAyODY1IDI0IDMyIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IC0xMDY3IDI4NjUgMjQgMzI7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+DQoJLnN0MHtmaWxsOiM3OTAwMDA7fQ0KPC9zdHlsZT4NCjxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0tMTA1MywyODY1Yy01LjUsMC0xMCw0LjUtMTAsMTBoNGMwLTMuMywyLjctNiw2LTZjMy4zLDAsNiwyLjcsNiw2djJoLTIwdjE0YzAsMy4zLDIuNyw2LDYsNmgxMg0KCWMzLjMsMCw2LTIuNyw2LTZ2LTE2Qy0xMDQzLDI4NjkuNS0xMDQ3LjUsMjg2NS0xMDUzLDI4NjV6IE0tMTA0OSwyODkzaC0xMmMtMS4xLDAtMi0wLjktMi0ydi0xMGgxNnYxMA0KCUMtMTA0NywyODkyLjEtMTA0Ny45LDI4OTMtMTA0OSwyODkzeiBNLTEwNTMsMjg4N2MwLDEuMS0wLjksMi0yLDJzLTItMC45LTItMmMwLTEuMSwwLjktMiwyLTJTLTEwNTMsMjg4NS45LTEwNTMsMjg4N3oiLz4NCjwvc3ZnPg0K);
  background-size: 1em auto;
  background-repeat: no-repeat;
  background-position: left center;
}
.gform_wrapper li.gfield.gfield_error.gfield_creditcard_warning div.gfield_creditcard_warning_message {
  padding: 16px 16px 14px 16px;
}
li.gfield + li.gfield.gfield_creditcard_warning {
  margin-top: 16px !important;
}
.gform_wrapper .top_label .gfield_error {
  width: calc(100% - 2px);
}
.gform_wrapper .top_label .gfield_error input.large, .gform_wrapper .top_label .gfield_error select.large, .gform_wrapper .top_label .gfield_error textarea.textarea {
  width: 100%;
}
.gform_wrapper .right_label .gfield_error input.large, .gform_wrapper .right_label .gfield_error select.large, .gform_wrapper .right_label .gfield_error textarea.textarea, .gform_wrapper .left_label .gfield_error input.large, .gform_wrapper .left_label .gfield_error select.large, .gform_wrapper .left_label .gfield_error textarea.textarea {
  width: 70%;
}
.gform_wrapper .gfield_error .gfield_label {
  color: #790000;
}
.gform_wrapper li.gfield.gfield_error.gfield_contains_required {
  padding-right: 0;
}
.gform_wrapper li.gfield.gfield_error.gfield_contains_required div.gfield_time_minute.ginput_container, .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.gfield_time_ampm.ginput_container {
  margin-left: 0;
}
.gform_wrapper li.gfield.gfield_error.gfield_contains_required div.gfield_description {
  max-width: 100%;
  padding-right: 16px;
}
.gform_wrapper li.gfield.gfield_error.gfield_contains_required label.gfield_label, .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container {
  margin-top: 12px;
}
.gform_wrapper li.gfield.gfield_error.gfield_contains_required fieldset legend.gfield_label {
  position: relative;
  top: 12px;
}
.gform_wrapper div.validation_error {
  color: #790000;
  font-size: 1em;
  font-weight: 700;
  margin-bottom: 25px;
  border-top: 2px solid #790000;
  border-bottom: 2px solid #790000;
  padding: 16px 0 16px 0;
  clear: both;
  width: 100%;
  text-align: center;
}
.gform_wrapper ol.validation_list {
  clear: both;
  width: 100%;
  margin-bottom: 25px;
  color: #790000;
}
.gform_wrapper ol.validation_list li {
  list-style-type: decimal !important;
}
.gform_wrapper ol.validation_list li a {
  color: #790000;
}
.gform_wrapper ol.validation_list:after {
  content: "";
}
.gform_wrapper div#error {
  margin-bottom: 25px;
}
.gform_wrapper table.gfield_list tbody tr td.gfield_list_icons {
  vertical-align: middle !important;
}
.gform_wrapper li.gfield fieldset {
  margin: 0px;
  padding: 0px;
  display: block;
  position: relative;
  width: 100%;
}
.gform_wrapper li.gfield fieldset > * {
  width: auto;
}
.gform_wrapper li.gfield fieldset legend.gfield_label {
  width: 100%;
  line-height: 32px;
}
div.gf_page_steps + div.validation_error {
  margin-top: 16px;
}
.gform_wrapper div.gfield_description.validation_error {
  color: #790000;
  font-weight: 700;
  font-size: 0.875em;
  line-height: 1.2;
  margin-bottom: 16px;
}
.gform_wrapper .validation_message {
  color: #790000;
  font-weight: 700;
  letter-spacing: normal;
}
.gform_wrapper li.gfield_error input:not([type='radio']):not([type='checkbox']):not([type='submit']):not([type='button']):not([type='image']):not([type='file']), .gform_wrapper li.gfield_error textarea {
  border: 1px solid #790000;
}
.gform_wrapper li.gfield_error div.ginput_complex.ginput_container label, .gform_wrapper li.gfield_error ul.gfield_checkbox, .gform_wrapper li.gfield_error ul.gfield_radio {
  color: #790000;
}
.gform_wrapper .gform_footer {
  padding: 10px 0 0 0 !important;
  margin: 0 !important;
  clear: both;
  width: 100%;
}
.gform_wrapper .gform_footer input.button, .gform_wrapper .gform_page_footer input.button, .gform_wrapper .gform_footer input[type=submit], .gform_wrapper .gform_page_footer input[type=submit] {
  font-size: 1em;
  width: 100%;
  margin: 0 0 16px 0;
}
.gform_wrapper .gform_footer a.gform_save_link, .gform_wrapper .gform_page_footer a.gform_save_link {
  font-size: 1em;
  display: block;
  text-align: center;
}
.gform_wrapper .gform_footer input[type=image] {
  padding: 0;
  width: auto !important;
  background: none !important;
  border: none !important;
  margin: 0 auto 16px auto !important;
  display: block;
  max-width: 100%;
}
.gform_wrapper .ginput_complex .ginput_left, .gform_wrapper .ginput_complex .ginput_right, .gform_wrapper .ginput_complex .ginput_full {
  min-height: 45px;
}
.gform_wrapper .ginput_complex .ginput_full input[type=text], .gform_wrapper .ginput_complex .ginput_full input[type=url], .gform_wrapper .ginput_complex .ginput_full input[type=email], .gform_wrapper .ginput_complex .ginput_full input[type=tel], .gform_wrapper .ginput_complex .ginput_full input[type=number], .gform_wrapper .ginput_complex .ginput_full input[type=password] {
  width: 100%;
}
.gform_wrapper .gfield_error .ginput_complex .ginput_full input[type=text], .gform_wrapper .gfield_error .ginput_complex .ginput_full input[type=url], .gform_wrapper .gfield_error .ginput_complex .ginput_full input[type=email], .gform_wrapper .gfield_error .ginput_complex .ginput_full input[type=tel], .gform_wrapper .gfield_error .ginput_complex .ginput_full input[type=number], .gform_wrapper .gfield_error .ginput_complex .ginput_full input[type=password], .gform_wrapper .gfield_error .ginput_complex .ginput_full select {
  width: 100%;
}
.gform_wrapper .gfield_checkbox li, .gform_wrapper .gfield_radio li {
  margin: 0 0 16px 0;
  line-height: 1.2;
}
.gform_wrapper ul.gfield_radio li input[type="radio"]:checked + label, .gform_wrapper ul.gfield_checkbox li input[type="checkbox"]:checked + label, .gchoice_select_all {
  font-weight: 700;
}
.gform_wrapper input.datepicker.datepicker_with_icon {
  margin-right: 4px !important;
  display: -moz-inline-stack;
  display: inline-block;
}
.gform_wrapper input[type=hidden], .gform_wrapper input.gform_hidden, .gform_wrapper .gform_hidden, .gform_wrapper .gf_hidden {
  display: none !important;
  max-height: 1px !important;
  overflow: hidden;
}
.gform_wrapper .gfield_visibility_hidden, .gform_wrapper .gf_invisible {
  visibility: hidden;
  position: absolute;
  left: -9999px;
}
.gform_wrapper .ginput_full br, .gform_wrapper .ginput_left br, .gform_wrapper .ginput_right br {
  display: none !important;
}
.gform_wrapper ul.gfield_checkbox li, .gform_wrapper ul.gfield_radio li {
  padding: 0 !important;
}
.gform_wrapper ul.gfield_radio li input + input {
  margin-left: 4px;
}
.gform_wrapper ul.gfield_radio li input[value=gf_other_choice] {
  margin-right: 6px;
  margin-top: 4px;
}
.gform_wrapper .gfield_description + .gform_wrapper .gfield_description.validation_message {
  margin-top: 6px;
}
.gform_wrapper .ginput_container.ginput_list + .gfield_description.validation_message {
  margin-top: 0;
}
.gform_wrapper li.gfield_html {
  max-width: 100%;
}
.gform_wrapper .gfield_html.gfield_no_follows_desc {
  margin-top: 10px;
}
body .gform_wrapper ul li.gfield.gfield_html img {
  max-width: 100% !important;
}
.gform_wrapper .gform_ajax_spinner {
  padding-left: 10px;
}
.gform_validation_container, .gform_wrapper .gform_validation_container, body .gform_wrapper li.gform_validation_container, body .gform_wrapper .gform_body ul.gform_fields li.gfield.gform_validation_container, body .gform_wrapper ul.gform_fields li.gfield.gform_validation_container {
  display: none !important;
  position: absolute !important;
  left: -9000px;
}
.gform_wrapper .gfield_captcha_input_container {
  padding-top: 3px;
}
.gform_wrapper .simple_captcha_small input {
  width: 64px;
}
.gform_wrapper .simple_captcha_medium input {
  width: 96px;
}
.gform_wrapper .simple_captcha_large input {
  width: 128px;
}
.gform_wrapper .gform_wrapper .left_label .simple_captcha_small, .gform_wrapper .right_label .simple_captcha_small, .gform_wrapper .left_label .simple_captcha_medium, .gform_wrapper .right_label .simple_captcha_medium, .gform_wrapper .left_label .simple_captcha_large, .gform_wrapper .right_label .simple_captcha_large {
  margin-left: 32%;
}
.gform_wrapper .gfield_captcha_container img.gfield_captcha {
  border: none !important;
  background: none !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.gform_wrapper .math_small input {
  width: 70px;
}
.gform_wrapper .math_medium input {
  width: 510px;
}
.gform_wrapper .math_large input {
  width: 612px;
}
.gform_wrapper .left_label .math_small, .gform_wrapper .right_label .math_small, .gform_wrapper .left_label .math_medium, .gform_wrapper .right_label .math_medium, .gform_wrapper .left_label .math_large, .gform_wrapper .right_label .math_large {
  margin-left: 32%;
}
.gform_wrapper div.charleft {
  font-size: 0.688em;
  margin-top: 4px;
  color: #b7b7b7;
  width: 92% !important;
  white-space: nowrap !important;
}
.gform_wrapper div.charleft[style] {
  width: 92% !important;
}
.gform_wrapper .left_label div.charleft, .gform_wrapper .right_label div.charleft {
  margin-left: 32%;
}
.gform_wrapper div.charleft.ginput_counter_tinymce {
  border: 1px solid #eee;
  border-width: 1px 0 0;
  padding: 4px 9px;
  width: 100% !important;
}
.gform_wrapper div.charleft.warningTextareaInfo {
  color: #a1a1a1;
}
.gform_wrapper div.charleft.ginput_counter_error {
  color: red;
}
.gform_wrapper li.gf_hide_charleft div.charleft {
  display: none !important;
}
.gf_submission_limit_message {
  color: #790000;
  font-size: 1.375em;
}
.gform_wrapper .ginput_price {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
}
.gform_wrapper span.ginput_total {
  color: #060;
  font-size: inherit;
}
.gform_wrapper .top_label span.ginput_total {
  margin: 8px 0;
}
.gform_wrapper span.ginput_product_price_label {
  margin-right: 2px;
}
.gform_wrapper span.ginput_product_price {
  color: #900;
}
.gform_wrapper span.ginput_quantity_label {
  margin-left: 10px;
  margin-right: 2px;
}
.gform_wrapper input.ginput_quantity[type=text] {
  width: 3rem;
}
.gform_wrapper input.ginput_quantity[type=number] {
  width: 4rem;
}
.gform_wrapper .gform_page_footer {
  margin: 14px 0;
  width: 100%;
  border-top: 1px dotted #ccc;
  padding: 16px 0 0 0;
  clear: both;
}
.gform_wrapper .gform_page_footer.left_label, .gform_wrapper .gform_page_footer.right_label {
  padding: 16px 0 0 29%;
}
.gform_wrapper .gform_page_footer .button.gform_previous_button, .gform_wrapper .gform_page_footer .button.gform_next_button {
  display: -moz-inline-stack;
  display: inline-block;
}
.gform_wrapper .gform_page_footer .button.gform_previous_button {
  margin-bottom: 8px;
}
.gform_wrapper .gf_progressbar_wrapper {
  clear: both;
  width: 100%;
  margin: 0 0 16px 0;
  padding: 0 0 16px 0;
}
.gform_wrapper .gf_progressbar_wrapper h3.gf_progressbar_title {
  font-size: 0.813em;
  line-height: 1 !important;
  margin: 0 0 8px 12px !important;
  padding: 0 !important;
  clear: both;
  filter: alpha(opacity=60);
  -moz-opacity: 0.6;
  -khtml-opacity: 0.6;
  opacity: 0.6;
}
.gform_wrapper .gf_progressbar {
  padding: 10px;
  position: relative;
  background-color: rgba(0, 0, 0, 0.1);
  -moz-border-radius: 25px;
  -webkit-border-radius: 25px;
  border-radius: 25px;
  -webkit-box-shadow: inset 0px 0px 1px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0px 0px 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0px 0px 1px 1px rgba(0, 0, 0, 0.05);
  width: 100%;
}
.gform_wrapper .gf_progressbar_percentage {
  height: 24px;
  text-align: right;
  font-family: helvetica, arial, sans-serif;
  font-size: 0.813em !important;
  text-shadow: 0 1px 1px rgba(0, 0, 0, .50);
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  z-index: 999;
  vertical-align: middle;
  background: repeating-linear-gradient(-45deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 10px, rgba(0, 0, 0, 0.1) 10px, rgba(0, 0, 0, 0.1) 20px), linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.3));
}
.gform_wrapper .gf_progressbar:after {
  content: "";
  display: block;
  width: 100%;
  z-index: 990;
  height: 24px;
  margin-top: -24px;
  background-color: rgba(0, 0, 0, 0.1);
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  -webkit-box-shadow: inset 0px 0px 2px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0px 0px 2px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0px 0px 2px 2px rgba(0, 0, 0, 0.05);
}
.gform_wrapper .gf_progressbar_percentage.percentbar_100 {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.gform_wrapper .gf_progressbar_percentage span {
  display: block;
  width: auto;
  float: right;
  margin-right: 5px;
  margin-left: 5px;
  line-height: 1.8;
}
.gform_wrapper .gf_progressbar_percentage.percentbar_0 span {
  color: #959595;
  text-shadow: none;
  float: none !important;
  margin-left: 12px;
  word-wrap: normal;
}
.gform_wrapper .percentbar_blue {
  background-color: #036493;
  color: #fff;
}
.gform_wrapper .percentbar_gray {
  background-color: #7c7c7c;
  color: #fff;
}
.gform_wrapper .percentbar_green {
  background-color: #88b831;
  color: #fff;
}
.gform_wrapper .percentbar_orange {
  background-color: #ff7120;
  color: #fff;
}
.gform_wrapper .percentbar_red {
  background-color: #ff2a1a;
  color: #fff;
}
.gform_wrapper .gf_page_steps {
  width: 100%;
  margin: 0 0 8px 0;
  padding: 0 0 4px 0;
  border-bottom: 1px dotted #ccc;
}
.gform_wrapper .gf_step {
  width: 100%;
  margin: 24px 24px 24px 0;
  font-size: 0.875em;
  height: 14px;
  line-height: 1.25 !important;
  filter: alpha(opacity=20);
  -moz-opacity: 0.2;
  -khtml-opacity: 0.2;
  opacity: 0.2;
  font-family: inherit;
}
.gform_wrapper .gf_step span.gf_step_number {
  font-size: 1.25em;
  font-family: arial, sans-serif;
  margin-right: 4px;
}
.gform_wrapper .gf_step span.gf_step_number, .gform_wrapper .gf_step span.gf_step_label {
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
}
.gform_wrapper .gf_step.gf_step_active {
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
.gform_wrapper .gf_step_clear {
  display: block;
  clear: both;
  height: 1px;
  overflow: hidden;
}
.gform_wrapper .gfield_password_strength {
  border: 1px solid #ddd;
  margin-top: 18px;
  margin-bottom: 18px;
  line-height: 1.8;
  padding: 10px 5px;
  text-align: center;
  background-color: #eee;
  border-bottom: 3px solid #ddd;
}
.gform_wrapper ul.top_label li.gfield.gfield_error.gfield_contains_required .gfield_password_strength {
  margin-right: 16px;
}
.gform_wrapper ul.left_label li.gfield .gfield_password_strength, .gform_wrapper ul.right_label li.gfield .gfield_password_strength {
  margin-top: 18px;
  margin-bottom: 18px;
  width: 100%;
}
.gform_wrapper .gfield_password_strength.bad {
  background-color: #ffb78c;
  border-color: #ff853c;
  border-bottom: 3px solid #ff853c;
}
.gform_wrapper .gfield_password_strength.good {
  background-color: #ffec8b;
  border-color: #fc0;
  border-bottom: 3px solid #fc0;
}
.gform_wrapper .gfield_password_strength.short, .gform_wrapper .gfield_password_strength.mismatch {
  background-color: #ffa0a0;
  border-color: #f04040;
  border-bottom: 3px solid #f04040;
}
.gform_wrapper .gfield_password_strength.strong {
  background-color: #c3ff88;
  border-color: #8dff1c;
  border-bottom: 3px solid #8dff1c;
}
.gform_wrapper table.gfield_list, .gform_wrapper table.gfield_list caption, .gform_wrapper table.gfield_list tbody, .gform_wrapper table.gfield_list tfoot, .gform_wrapper table.gfield_list thead, .gform_wrapper table.gfield_list tr, .gform_wrapper table.gfield_list th, .gform_wrapper table.gfield_list td {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
.gform_wrapper table.gfield_list {
  border-spacing: 0;
  border-collapse: collapse;
}
/* fix for twentyfifteen theme table layout issue */
.gform_wrapper table.gfield_list {
  table-layout: auto !important;
}
.gform_wrapper table.gfield_list thead th {
  font-weight: 700;
  text-align: left;
}
.gform_wrapper table.gfield_list colgroup {
  width: 100%;
  display: block;
}
.gform_wrapper li.gfield.gfield_error table.gfield_list thead th {
  color: #790000;
}
.gform_wrapper table.gfield_list thead, .gform_wrapper table.gfield_list tr {
  padding: 0;
  margin: 0;
}
.gform_wrapper table.gfield_list th, .gform_wrapper table.gfield_list td {
  padding: 4px 0 4px 0;
}
.gform_wrapper ul.gform_fields:not(.top_label) table.gfield_list th {
  padding: 0 0 4px 0;
}
.gform_wrapper table.gfield_list th + th, .gform_wrapper table.gfield_list td + td {
  padding: 0 0 0 16px;
}
.gform_wrapper .gfield_list {
  width: 100%;
}
.gform_wrapper .gfield_list td.gfield_list_cell input {
  width: 100%;
}
.gfield_icon_disabled {
  cursor: default !important;
  filter: alpha(opacity=60);
  -moz-opacity: 0.6;
  -khtml-opacity: 0.6;
  opacity: 0.6;
}
.gform_wrapper table.gfield_list tr td.gfield_list_icons {
  width: 48px !important;
  padding: 0 0 0 4px !important;
  box-sizing: border-box;
}
.gform_wrapper table.gfield_list td.gfield_list_icons img {
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
}
.gform_wrapper select.chosen-select {
  visibility: hidden;
  height: 28px !important;
  min-height: 28px !important;
}
.gform_wrapper .chosen-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: inherit;
  -webkit-user-select: none;
  -moz-user-select: none;
}
.gform_wrapper .chosen-container, .gform_wrapper .chosen-container * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.gform_wrapper .chosen-container.chosen-container-multi .chosen-choices {
  min-height: 28px !important;
}
.gform_wrapper .ginput_container.ginput_container_multiselect .chosen-container.chosen-container-multi ul.chosen-choices li.search-field input.default {
  height: 24px;
}
.gform_wrapper .chosen-container .chosen-drop {
  position: absolute;
  top: 100%;
  left: -9999px;
  z-index: 1010;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  border: 1px solid #aaa;
  border-top: 0;
  background: #fff;
  box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
}
.gform_wrapper .chosen-container.chosen-with-drop .chosen-drop {
  left: 0;
}
.gform_wrapper .chosen-container a {
  cursor: pointer;
}
.gform_wrapper .chosen-container-single .chosen-single {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0 0 0 8px;
  height: 23px;
  border: 1px solid #aaa;
  border-radius: 5px;
  background-color: #fff;
  background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #fff), color-stop(50%, #f6f6f6), color-stop(52%, #eee), color-stop(100%, #f4f4f4));
  background: -webkit-linear-gradient(top, #fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
  background: -moz-linear-gradient(top, #fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
  background: -o-linear-gradient(top, #fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
  background: linear-gradient(top, #fff 20%, #f6f6f6 50%, #eee 52%, #f4f4f4 100%);
  background-clip: padding-box;
  box-shadow: 0 0 3px white inset, 0 1px 1px rgba(0, 0, 0, .1);
  color: #444;
  text-decoration: none;
  white-space: nowrap;
  line-height: 24px;
}
.gform_wrapper .chosen-container-single .chosen-default {
  color: #999;
}
.gform_wrapper .chosen-container-single .chosen-single span {
  display: block;
  overflow: hidden;
  margin-right: 26px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.gform_wrapper .chosen-container-single .chosen-single-with-deselect span {
  margin-right: 38px;
}
.gform_wrapper .chosen-container-single .chosen-single abbr {
  position: absolute;
  top: 6px;
  right: 26px;
  display: block;
  width: 12px;
  height: 12px;
  background: url('chosen-sprite.png') -42px 1px no-repeat;
  font-size: 1px;
}
.gform_wrapper .chosen-container-single .chosen-single abbr:hover {
  background-position: -42px -10px;
}
.gform_wrapper .chosen-container-single.chosen-disabled .chosen-single abbr:hover {
  background-position: -42px -10px;
}
.gform_wrapper .chosen-container-single .chosen-single div {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 18px;
  height: 100%;
}
.gform_wrapper .chosen-container-single .chosen-single div b {
  display: block;
  width: 100%;
  height: 100%;
  background: url('chosen-sprite.png') no-repeat 0px 2px;
}
.gform_wrapper .chosen-container-single .chosen-search {
  position: relative;
  z-index: 1010;
  margin: 0;
  padding: 3px 4px;
  white-space: nowrap;
}
.gform_wrapper .chosen-container-single .chosen-search input[type="text"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 1px 0;
  padding: 4px 20px 4px 5px;
  width: 100%;
  height: auto;
  border: 1px solid #aaa;
  background: white url('chosen-sprite.png') no-repeat 100% -20px;
  background: url('chosen-sprite.png') no-repeat 100% -20px;
  font-size: 1em;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
}
.gform_wrapper .chosen-container-single .chosen-drop {
  margin-top: -1px;
  border-radius: 0 0 4px 4px;
  background-clip: padding-box;
}
.gform_wrapper .chosen-container-single.chosen-container-single-nosearch .chosen-search {
  position: absolute;
  left: -9999px;
}
.gform_wrapper .chosen-container .chosen-results {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0 4px 4px 0;
  padding: 0 0 0 4px;
  max-height: 240px;
  -webkit-overflow-scrolling: touch;
}
.gform_wrapper .chosen-container .chosen-results li {
  display: none;
  margin: 0;
  padding: 5px 6px;
  list-style: none;
  line-height: 15px;
  -webkit-touch-callout: none;
}
.gform_wrapper .chosen-container .chosen-results li.active-result {
  display: list-item;
  cursor: pointer;
}
.gform_wrapper .chosen-container .chosen-results li.disabled-result {
  display: list-item;
  color: #ccc;
  cursor: default;
}
.gform_wrapper .chosen-container .chosen-results li.highlighted {
  background-color: #3875d7;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));
  background-image: -webkit-linear-gradient(#3875d7 20%, #2a62bc 90%);
  background-image: -moz-linear-gradient(#3875d7 20%, #2a62bc 90%);
  background-image: -o-linear-gradient(#3875d7 20%, #2a62bc 90%);
  background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
  color: #fff;
}
.gform_wrapper .chosen-container .chosen-results li.no-results {
  display: list-item;
  background: #f4f4f4;
}
.gform_wrapper .chosen-container .chosen-results li.group-result {
  display: list-item;
  font-weight: 700;
  cursor: default;
}
.gform_wrapper .chosen-container .chosen-results li.group-option {
  padding-left: 15px;
}
.gform_wrapper .chosen-container .chosen-results li em {
  font-style: normal;
  text-decoration: underline;
}
.gform_wrapper .chosen-container-multi .chosen-choices {
  position: relative;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto !important;
  height: 1%;
  border: 1px solid #aaa;
  background-color: #fff;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(1%, #eee), color-stop(15%, #fff));
  background-image: -webkit-linear-gradient(#eee 1%, #fff 15%);
  background-image: -moz-linear-gradient(#eee 1%, #fff 15%);
  background-image: -o-linear-gradient(#eee 1%, #fff 15%);
  background-image: linear-gradient(#eee 1%, #fff 15%);
  cursor: text;
}
.gform_wrapper .chosen-container-multi .chosen-choices li {
  float: left;
  list-style: none;
}
.gform_wrapper .chosen-container-multi .chosen-choices li.search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.gform_wrapper .chosen-container-multi .chosen-choices li.search-field input[type="text"] {
  margin: 1px 0;
  padding: 5px;
  height: 15px;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none;
  color: #666;
  font-size: 100%;
  font-family: sans-serif;
  line-height: normal;
  border-radius: 0;
}
.gform_wrapper .chosen-container-multi .chosen-choices li.search-field .default {
  color: #999;
}
.gform_wrapper .chosen-container-multi .chosen-choices li.search-choice {
  position: relative;
  margin: 5px 0 5px 5px !important;
  padding: 3px 20px 3px 5px;
  border: 1px solid #aaa;
  border-radius: 3px;
  background-color: #e4e4e4;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee));
  background-image: -webkit-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-image: -moz-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-image: -o-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-clip: padding-box;
  box-shadow: 0 0 2px white inset, 0 1px 0 rgba(0, 0, 0, .05);
  color: #333;
  line-height: 13px;
  cursor: default;
}
.gform_wrapper .chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  position: absolute;
  top: 4px;
  right: 3px;
  display: block;
  width: 12px;
  height: 12px;
  background: url('chosen-sprite.png') -42px 1px no-repeat;
  font-size: 1px;
}
.gform_wrapper .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
  background-position: -42px -10px;
}
.gform_wrapper .chosen-container-multi .chosen-choices li.search-choice-disabled {
  padding-right: 5px;
  border: 1px solid #ccc;
  background-color: #e4e4e4;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee));
  background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-image: -o-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-image: linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  color: #666;
}
.gform_wrapper .chosen-container-multi .chosen-choices li.search-choice-focus {
  background: #d4d4d4;
}
.gform_wrapper .chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
  background-position: -42px -10px;
}
.gform_wrapper .chosen-container-multi .chosen-results {
  margin: 0;
  padding: 0;
}
.gform_wrapper .chosen-container-multi .chosen-drop .result-selected {
  display: list-item;
  color: #ccc;
  cursor: default;
}
.gform_wrapper .chosen-container-active .chosen-single {
  border: 1px solid #5897fb;
  box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}
.gform_wrapper .chosen-container-active.chosen-with-drop .chosen-single {
  border: 1px solid #aaa;
  -moz-border-radius-bottomright: 0;
  border-bottom-right-radius: 0;
  -moz-border-radius-bottomleft: 0;
  border-bottom-left-radius: 0;
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #eee), color-stop(80%, #fff));
  background-image: -webkit-linear-gradient(#eee 20%, #fff 80%);
  background-image: -moz-linear-gradient(#eee 20%, #fff 80%);
  background-image: -o-linear-gradient(#eee 20%, #fff 80%);
  background-image: linear-gradient(#eee 20%, #fff 80%);
  box-shadow: 0 1px 0 #fff inset;
}
.gform_wrapper .chosen-container-active.chosen-with-drop .chosen-single div {
  border-left: none;
  background: transparent;
}
.gform_wrapper .chosen-container-active.chosen-with-drop .chosen-single div b {
  background-position: -18px 2px;
}
.gform_wrapper .chosen-container-active .chosen-choices {
  border: 1px solid #5897fb;
  box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}
.gform_wrapper .chosen-container-active .chosen-choices li.search-field input[type="text"] {
  color: #111 !important;
}
.gform_wrapper .chosen-disabled {
  opacity: 0.5 !important;
  cursor: default;
}
.gform_wrapper .chosen-disabled .chosen-single {
  cursor: default;
}
.gform_wrapper .chosen-disabled .chosen-choices .search-choice .search-choice-close {
  cursor: default;
}
.gform_wrapper .chosen-rtl {
  text-align: right;
}
.gform_wrapper .chosen-rtl .chosen-single {
  overflow: visible;
  padding: 0 8px 0 0;
}
.gform_wrapper .chosen-rtl .chosen-single span {
  margin-right: 0;
  margin-left: 26px;
  direction: rtl;
}
.gform_wrapper .chosen-rtl .chosen-single-with-deselect span {
  margin-left: 38px;
}
.gform_wrapper .chosen-rtl .chosen-single div {
  right: auto;
  left: 3px;
}
.gform_wrapper .chosen-rtl .chosen-single abbr {
  right: auto;
  left: 26px;
}
.gform_wrapper .chosen-rtl .chosen-choices li {
  float: right;
}
.gform_wrapper .chosen-rtl .chosen-choices li.search-field input[type="text"] {
  direction: rtl;
}
.gform_wrapper .chosen-rtl .chosen-choices li.search-choice {
  margin: 3px 5px 3px 0;
  padding: 3px 5px 3px 19px;
}
.gform_wrapper .chosen-rtl .chosen-choices li.search-choice .search-choice-close {
  right: auto;
  left: 4px;
}
.gform_wrapper .chosen-rtl.chosen-container-single-nosearch .chosen-search, .gform_wrapper .chosen-rtl .chosen-drop {
  left: 9999px;
}
.gform_wrapper .chosen-rtl.chosen-container-single .chosen-results {
  margin: 0 0 4px 4px;
  padding: 0 4px 0 0;
}
.gform_wrapper .chosen-rtl .chosen-results li.group-option {
  padding-right: 15px;
  padding-left: 0;
}
.gform_wrapper .chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
  border-right: none;
}
.gform_wrapper .chosen-rtl .chosen-search input[type="text"] {
  padding: 4px 5px 4px 20px;
  background: white url('chosen-sprite.png') no-repeat -30px -20px;
  background: url('chosen-sprite.png') no-repeat -30px -20px;
  direction: rtl;
}
.gform_wrapper .chosen-rtl.chosen-container-single .chosen-single div b {
  background-position: 6px 2px;
}
.gform_wrapper .chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
  background-position: -12px 2px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 144dpi) {
  .gform_wrapper .chosen-rtl .chosen-search input[type="text"], .gform_wrapper .chosen-container-single .chosen-single abbr, .gform_wrapper .chosen-container-single .chosen-single div b, .gform_wrapper .chosen-container-multi .chosen-choices .search-choice .search-choice-close, .gform_wrapper .chosen-container .chosen-results-scroll-down span, .gform_wrapper .chosen-container .chosen-results-scroll-up span {
    background-image: url('chosen-sprite@2x.png') !important;
    background-position: 0 0;
    background-size: 52px 37px !important;
    background-repeat: no-repeat !important;
  }
}
.gform_wrapper .gform_card_icon_container {
  margin: 8px 0 6px 0;
  height: 32px;
}
.gform_wrapper div.gform_card_icon {
  margin-right: 4px;
  text-indent: -9000px;
  background-image: url(../images/gf-creditcard-icons.png);
  background-repeat: no-repeat;
  width: 36px;
  height: 32px;
  float: left;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_visa {
  background-position: 0 0;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_visa {
  background-position: 0 -32px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_visa {
  background-position: 0 -64px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_mastercard {
  background-position: -36px 0;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_mastercard {
  background-position: -36px -32px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_mastercard {
  background-position: -36px -64px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_amex {
  background-position: -72px 0;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_amex {
  background-position: -72px -32px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_amex {
  background-position: -72px -64px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_discover {
  background-position: -108px 0;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_discover {
  background-position: -108px -32px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_discover {
  background-position: -108px -64px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_maestro {
  background-position: -144px 0;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_maestro {
  background-position: -144px -32px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_maestro {
  background-position: -144px -64px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_jcb {
  background-position: -180px 0;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_jcb {
  background-position: -180px -32px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_jcb {
  background-position: -180px -64px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_visa {
  background-position: 0 -192px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_visa {
  background-position: 0 -224px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_visa {
  background-position: 0 -256px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_mastercard {
  background-position: -36px -192px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_mastercard {
  background-position: -36px -224px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_mastercard {
  background-position: -36px -256px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_amex {
  background-position: -72px -192px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_amex {
  background-position: -72px -224px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_amex {
  background-position: -72px -256px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_discover {
  background-position: -108px -192px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_discover {
  background-position: -108px -224px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_discover {
  background-position: -108px -256px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_maestro {
  background-position: -144px -192px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_maestro {
  background-position: -144px -224px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_maestro {
  background-position: -144px -256px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_jcb {
  background-position: -180px -192px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_jcb {
  background-position: -180px -224px;
}
.gform_wrapper .gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_jcb {
  background-position: -180px -256px;
}
.gform_card_icon_container input[type=radio]#gform_payment_method_creditcard {
  float: left;
  position: relative;
  top: 4px !important;
}
.gform_wrapper .ginput_complex .ginput_cardinfo_right {
  min-width: 85px !important;
}
.gform_wrapper .ginput_complex .ginput_cardinfo_left label, .gform_wrapper .ginput_complex .ginput_cardinfo_right label {
  white-space: nowrap !important;
}
.gform_wrapper .ginput_complex span.ginput_cardextras {
  display: block;
  overflow: hidden;
}
.gform_wrapper .ginput_complex .ginput_cardinfo_left span.ginput_card_expiration_container {
  position: relative;
  display: block;
  min-width: 160px !important;
}
.gform_wrapper .ginput_complex .ginput_cardinfo_left span.ginput_card_expiration_container select {
  margin-bottom: 8px;
}
.gform_wrapper .ginput_complex .ginput_cardinfo_right input.ginput_card_security_code {
  max-width: 50% !important;
}
.gform_wrapper .ginput_complex .ginput_cardinfo_right span.ginput_card_security_code_icon {
  width: 32px;
  height: 23px;
  background-image: url(../images/gf-creditcard-icons.png);
  background-repeat: no-repeat;
  background-position: 0 -128px;
  position: relative;
  top: -1px;
  left: 6px;
  display: -moz-inline-stack;
  display: inline-block;
}
.gform_wrapper .gform_fileupload_multifile .gform_drop_area {
  padding: 24px;
  border: 1px dashed #ccc;
  text-align: center;
  color: #aaa;
  margin-bottom: 16px;
  background: rgba(0, 0, 0, 0.02);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.gform_wrapper span.gform_drop_instructions {
  display: block;
  margin-bottom: 8px;
}
.gform_delete {
  vertical-align: middle;
  cursor: pointer;
}
.gform_wrapper .copy_values_option_container .copy_values_enabled {
  width: auto;
}
.gform_wrapper li.field_sublabel_above .ginput_complex input[type=text] {
  margin-bottom: 1px;
}
/* save and continue dialog and form */
.gform_wrapper .form_saved_message {
  margin: 1em auto;
  padding: 3em 2em 3em;
  width: 99%;
  font-size: 1em;
  line-height: 1.8;
  color: rgba(49, 112, 143, 1);
  background-color: rgba(227, 243, 243, 1);
  text-align: center;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.gform_wrapper .form_saved_message form {
  text-align: center;
}
.form_saved_message p.resume_form_link_wrapper {
  background-color: rgba(255, 255, 255, 1);
  display: inline-block;
  padding: 1em;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  max-width: 98% !important;
  overflow: hidden;
  -webkit-box-shadow: 0px 3px 2px 0px rgba(66, 103, 126, .2);
  -moz-box-shadow: 0px 3px 2px 0px rgba(66, 103, 126, .2);
  box-shadow: 0px 3px 2px 0px rgba(66, 103, 126, .2);
}
.form_saved_message a.resume_form_link {
  word-wrap: break-word;
  text-decoration: none;
  color: rgba(47, 99, 126, 1);
}
.form_saved_message .form_saved_message_emailform {
  margin: 1em 0 0 0;
}
.form_saved_message label.form_saved_label {
  position: absolute;
  left: -9000px;
}
div.form_saved_message div.form_saved_message_emailform form input[type=text] {
  margin-bottom: 0.25em;
}
div.form_saved_message div.form_saved_message_emailform form input {
  margin: 0.75em auto 0 auto;
  display: inline-block;
}
div.form_saved_message div.form_saved_message_emailform form input[type=email] {
  padding: calc(.75em - 1px) !important;
  width: 24em;
  max-width: 98% !important;
  font-size: 1em;
  background-color: rgba(255, 255, 255, 1);
  border: 1px solid rgba(145, 175, 199, 1);
  color: rgba(66, 66, 66, 1);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-box-shadow: inset 0px 0px 5px 0px rgba(238, 238, 238, 1);
  -moz-box-shadow: inset 0px 0px 5px 0px rgba(238, 238, 238, 1);
  box-shadow: inset 0px 0px 5px 0px rgba(238, 238, 238, 1);
}
div.form_saved_message div.form_saved_message_emailform form input[type=submit] {
  padding: 0.75em 1em;
  font-size: 1em;
  line-height: 1;
  background-color: rgba(145, 175, 199, 1);
  border: 1px solid rgba(145, 175, 199, 1);
  color: rgba(255, 255, 25566, 1);
  text-transform: uppercase;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  -webkit-appearance: none;
  -moz-appearance: none;
}
@media only screen and (max-width: 640px) {
  div.form_saved_message div.form_saved_message_emailform form input[type=email], div.form_saved_message div.form_saved_message_emailform form input[type=submit] {
    display: block;
    width: 98%;
  }
}
.form_saved_message .form_saved_message_emailform .validation_message {
  color: #790000;
  font-weight: 700;
  padding: 2em;
}
.form_saved_message_sent {
  margin: 1em auto;
  padding: 3em 2em;
  width: 99%;
  font-size: 1em;
  background-color: rgba(233, 255, 217, 1);
  color: rgba(60, 118, 61, 1);
  text-align: center;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  box-sizing: border-box;
}
.form_saved_message_sent .saved_message_email, .form_saved_message_sent .saved_message_success {
  font-weight: 700;
  display: block;
  line-height: 2;
}
.form_saved_message_sent .saved_message_email {
  word-wrap: break-word;
  text-decoration: underline;
}
body #content .entry-content .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container #recaptcha_widget_div #recaptcha_area .recaptchatable tbody tr td .recaptcha_input_area, body .gform_wrapper form .gform_body .gform_fields .gfield .ginput_container #recaptcha_widget_div #recaptcha_area .recaptchatable tbody tr td .recaptcha_input_area {
  line-height: 1 !important;
}
body .gform_wrapper img.ui-datepicker-trigger {
  width: 17px !important;
  height: 16px !important;
  display: -moz-inline-stack;
  display: inline-block;
}
body .gform_wrapper img.add_list_item, body .gform_wrapper img.delete_list_item {
  display: -moz-inline-stack;
  display: inline-block;
  margin-top: -2px;
}
.gform_wrapper ul li.gfield.field_sublabel_above.field_description_below + li.gfield {
  margin-top: 16px;
}
.gform_wrapper li.gfield ul.gfield_radio li input[type="radio"] + input[type="text"] {
  width: 45.25%;
}
.gform_wrapper table.recaptchatable {
  table-layout: auto;
}
/* adjusting the captcha margin for left or right label settings */
.gform_wrapper ul.gform_fields:not(.top_label) div.ginput_container_captcha {
  margin-left: 29%;
}
/* rich text editor */
.gfield .wp-editor-container {
  border: 1px solid #ddd;
}
.gfield .wp-switch-editor {
  border-color: #ddd;
}
.gfield .tmce-active .switch-tmce, .gfield .html-active .switch-html {
  border-bottom-color: #f5f5f5;
}
.gfield .mce-edit-area iframe {
  width: 99.9% !important;
  margin: 0 !important;
}
body .gform_wrapper ul li.gfield {
  margin-top: 16px;
  padding-top: 0;
}
body .gform_wrapper ul.gfields li.gfield label.gfield_label {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
/* do our best to restore styles for lists inside the HTML field */
body .gform_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html {
  line-height: inherit;
}
body .gform_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html ul li, body .gform_wrapper form div.gform_body ul.gform_fields li.gfield.gfield_html ul li {
  list-style-type: disc !important;
  margin: 0 0 8px 0;
  overflow: visible;
  padding-left: 0;
}
body .gform_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html ul, body .gform_wrapper form div.gform_body ul.gform_fields li.gfield.gfield_html ul {
  list-style-type: disc !important;
  margin: 16px 0 16px 28px !important;
  padding-left: 0;
}
body .gform_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html ol li, body .gform_wrapper form div.gform_body ul.gform_fields li.gfield.gfield_html ol li {
  list-style-type: decimal !important;
  overflow: visible;
  margin: 0 0 8px 0;
  padding-left: 0;
}
body .gform_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html ol, body .gform_wrapper form div.gform_body ul.gform_fields li.gfield.gfield_html ol {
  list-style-type: decimal !important;
  margin: 16px 0 18px 32px;
  padding-left: 0;
}
body .gform_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html ol li ul, body .gform_wrapper form div.gform_body ul.gform_fields li.gfield.gfield_html ol li ul li {
  list-style-type: disc !important;
  padding-left: 0;
}
body .gform_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html ol li ul {
  margin: 16px 0 16px 16px;
}
body .gform_wrapper form div.gform_body ul.gform_fields li.gfield.gfield_html ol li ul li {
  margin: 0 0 8px;
}
body .gform_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html dl {
  margin: 0 0 18px 0;
  padding-left: 0;
}
body .gform_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html dl dt {
  font-weight: 700;
}
body .gform_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html dl dd {
  margin: 0 0 16px 18px;
}
.gform_wrapper span.gf_clear_span {
  display: block;
  height: 1px;
  overflow: hidden;
  width: 100%;
  float: none;
  clear: both;
  margin-top: -1px;
}
.gform_wrapper .gform_body .top_label .gfield_label, .gform_wrapper .gform_body legend.gfield_label {
  display: block;
}
@media only screen and (max-width: 641px) {
  /* make the inputs a little larger for mobile devices */
  .gform_wrapper input:not([type='radio']):not([type='checkbox']):not([type='image']):not([type='file']) {
    line-height: 2;
    min-height: 2rem;
  }
  .gform_wrapper textarea {
    line-height: 1.5;
  }
  .gform_wrapper .chosen-container.chosen-container-single[style] {
    width: 100% !important;
  }
  .gform_wrapper .chosen-container-single .chosen-single {
    height: 40px;
    line-height: 2.8;
  }
  .gform_wrapper .chosen-container-single .chosen-single div b {
    position: relative;
    top: 10px;
  }
  .gform_wrapper div.chosen-container.chosen-container-multi[style] {
    width: 100% !important;
  }
  .gform_wrapper .chosen-container.chosen-container-multi ul.chosen-choices li.search-choice, .gform_wrapper .chosen-container.chosen-container-multi ul.chosen-choices li.search-field {
    width: calc(100% - 10px);
    line-height: 2;
    float: none;
  }
  .gform_wrapper .chosen-container.chosen-container-multi ul.chosen-choices li.search-choice span {
    margin-bottom: 0;
  }
  .gform_wrapper .chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
    top: calc(50% - 6px);
  }
  .gform_wrapper .ginput_container span:not(.ginput_price) {
    margin-bottom: 8px;
    display: block;
  }
  .gform_wrapper li.field_sublabel_below .ginput_complex {
    margin-top: 12px !important;
  }
  .gform_wrapper ul.gfield_radio li label, .gform_wrapper ul.gfield_checkbox li label {
    width: 85%;
    cursor: pointer;
  }
}
@media only screen and (max-width: 761px), (min-device-width: 768px) and (max-device-width: 1023px) {
  /* force the list table to not behave like a table anymore */
  .gform_wrapper ul.gform_fields li.gfield.gfield_error + li.gfield.gfield_error {
    margin-top: 32px;
  }
  .gform_wrapper table.gfield_list {
    border: 0;
  }
  .gform_wrapper table.gfield_list thead {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .gform_wrapper table.gfield_list tr {
    margin-bottom: 10px;
    display: block;
    background: #fff;
    position: relative;
    border: 1px solid #ccc;
    border-top: 2px solid #ccc;
    border-bottom: 4px solid #ccc;
  }
  .gform_wrapper table.gfield_list td {
    display: block;
    margin-left: 8px;
    margin-right: 8px;
  }
  .gform_wrapper table.gfield_list td.gfield_list_icons {
    border-bottom: 0;
    margin: 16px 0 0 0 !important;
  }
  .gform_wrapper ul.gform_fields.form_sublabel_above table.gfield_list td:before, .gform_wrapper ul.gform_fields.form_sublabel_below table.gfield_list td:after {
    content: attr(data-label);
    font-size: 0.875em;
    letter-spacing: 0.5pt;
    white-space: nowrap;
    display: block;
    clear: both;
  }
  .gform_wrapper ul.gform_fields.form_sublabel_above table.gfield_list td:before {
    margin: 8px 0 3px 8px;
  }
  .gform_wrapper ul.gform_fields.form_sublabel_below table.gfield_list td:after {
    margin: 3px 0 8px 8px;
  }
  .gform_wrapper table.gfield_list th + th, .gform_wrapper table.gfield_list td + td {
    padding: 4px 0 0 0;
  }
  .gform_wrapper table.gfield_list tr.gfield_list_row_odd, .gform_wrapper table.gfield_list tr.gfield_list_row_even {
    margin: 16px 0;
  }
  .gform_wrapper table.gfield_list tr.gfield_list_row_odd:first-child {
    padding-top: 12px;
  }
  .gform_wrapper table.gfield_list tr {
    padding-top: 12px;
  }
  .gform_wrapper table.gfield_list tr td.gfield_list_icons {
    width: 100% !important;
    padding: 0 4px 4px 4px !important;
    background-color: #eee;
  }
  .gform_wrapper table.gfield_list tr td.gfield_list_icons img.add_list_item {
    margin: 12px 0 0 16px !important;
  }
  .gform_wrapper table.gfield_list tr td.gfield_list_icons img.delete_list_item {
    margin: 12px 0 0 8px !important;
  }
  .gform_wrapper .gform_footer a.gform_save_link, .gform_wrapper .gform_page_footer a.gform_save_link {
    margin-left: 0;
  }
  .gform_wrapper .gfield_list td.gfield_list_cell input {
    width: calc(100% - 16px);
    margin-left: 8px;
    margin-right: 8px;
  }
}
/* media queries - portrait mode tablet or desktop styles */
@media only screen and (min-width: 641px) {
  /* adjusting the name field so it aligns properly */
  /* a little better specificty to avoid problems with forms in widgets */
  /* tweak the sizes for validation and left/right label layouts */
  /* adjusting the address field alignment for some scenarios */
  /* force the CAPTCHA field over for right and left label layouts */
  .gform_wrapper .gform_body {
    width: 100%;
  }
  .gform_wrapper.gform_validation_error .gform_body ul li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half) {
    max-width: calc(100% - 16px) !important;
  }
  .gform_wrapper .gfield_checkbox li, .gform_wrapper .gfield_radio li {
    margin: 0 0 8px 0;
    line-height: 1.3;
  }
  .gform_wrapper .gsection {
    margin: 28px 16px 28px 0;
  }
  .gform_wrapper ul.gform_fields:not(.top_label) .gfield_label {
    float: left;
    width: 29%;
    padding-right: 16px;
    margin-bottom: 16px;
  }
  .gform_wrapper .right_label .gfield_label {
    text-align: right;
  }
  .gform_wrapper .left_label .gfield_description, .gform_wrapper .right_label .gfield_description {
    width: 70%;
  }
  .gform_wrapper ul.right_label li ul.gfield_radio li, .gform_wrapper form ul.right_label li ul.gfield_radio li, .gform_wrapper ul.left_label li ul.gfield_radio li, .gform_wrapper form ul.left_label li ul.gfield_radio li, .gform_wrapper ul.right_label li ul.gfield_checkbox li, .gform_wrapper form ul.right_label li ul.gfield_checkbox li, .gform_wrapper ul.left_label li ul.gfield_checkbox li, .gform_wrapper form ul.left_label li ul.gfield_checkbox li {
    margin-bottom: 10px;
  }
  .gform_wrapper .right_label .gfield_description, .gform_wrapper .left_label .gfield_description, .gform_wrapper .left_label .instruction, .gform_wrapper .right_label .instruction {
    margin-left: 29%;
  }
  .gform_wrapper ul.gform_fields:not(.top_label) .gsection .gsection_description {
    margin-left: 0;
    padding-top: 4px;
    padding-left: 0;
    line-height: 1.5;
  }
  .gform_wrapper form ul.gform_fields:not(.top_label) li.gfield_html_formatted {
    margin-left: 29% !important;
    width: 70%;
  }
  .gform_wrapper ul.gform_fields:not(.top_label) ul.gfield_checkbox, .gform_wrapper ul.gform_fields:not(.top_label) ul.gfield_radio {
    overflow: hidden;
  }
  .gform_wrapper .right_label div.ginput_complex, .gform_wrapper .left_label div.ginput_complex {
    width: 70%;
    margin-left: 29%;
  }
  .gform_wrapper .right_label input.small, .gform_wrapper .right_label select.small, .gform_wrapper .left_label input.small, .gform_wrapper .left_label select.small {
    width: 15%;
  }
  .gform_wrapper .right_label input.medium, .gform_wrapper .right_label select.medium, .gform_wrapper .left_label input.medium, .gform_wrapper .left_label select.medium {
    width: calc(35% - 8px);
  }
  .gform_wrapper .right_label input.large, .gform_wrapper .right_label select.large, .gform_wrapper .left_label input.large, .gform_wrapper .left_label select.large {
    width: 70%;
  }
  .gform_wrapper .right_label textarea.small, .gform_wrapper .left_label textarea.small, .gform_wrapper .right_label textarea.medium, .gform_wrapper .left_label textarea.medium, .gform_wrapper .right_label textarea.large, .gform_wrapper .left_label textarea.large {
    width: 70%;
  }
  .gform_wrapper ul.gform_fields:not(.top_label) .ginput_list {
    width: 70%;
    margin-left: 29% !important;
  }
  .gform_wrapper .top_label .gfield_list {
    width: 100%;
  }
  .gform_wrapper .left_label .gf_list_one_column, .gform_wrapper .right_label .gf_list_one_column {
    width: 45%;
  }
  .gform_wrapper .top_label .gf_list_one_column {
    width: 46%;
  }
  .gform_wrapper .left_label li.hidden_label input, .gform_wrapper .right_label li.hidden_label input {
    margin-left: 3.7%;
  }
  .gform_wrapper .left_label li.gfield .gfield_password_strength, .gform_wrapper .right_label li.gfield .gfield_password_strength {
    margin-left: 29%;
  }
  .gform_wrapper .top_label input.small, .gform_wrapper .top_label select.small {
    width: 25%;
  }
  .gform_wrapper .top_label input.medium, .gform_wrapper .top_label select.medium {
    width: calc(50% - 8px);
  }
  .gform_wrapper.gform_validation_error .top_label input.medium, .gform_wrapper.gform_validation_error .top_label select.medium {
    width: 50%;
  }
  .gform_wrapper .top_label input.large, .gform_wrapper .top_label select.large, .gform_wrapper .hidden_label input.large, .gform_wrapper .hidden_label select.large {
    width: 100%;
  }
  .gform_wrapper .top_label input.small.datepicker, .gform_wrapper .top_label input.medium.datepicker, .gform_wrapper .top_label input.large.datepicker {
    width: auto;
  }
  .gform_wrapper textarea.small {
    height: 80px;
    width: 100%;
  }
  .gform_wrapper textarea.medium {
    height: 160px;
    width: 100%;
  }
  .gform_wrapper textarea.large {
    height: 320px;
    width: 100%;
  }
  .gform_wrapper .ginput_complex .ginput_left, .gform_wrapper .ginput_complex .ginput_right {
    width: 50%;
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: top;
    margin: 0 -4px 0 0;
  }
  .gform_wrapper .ginput_container_password .ginput_right {
    padding-left: 8px;
  }
  .gform_wrapper .gfield_error .ginput_complex .ginput_left, .gform_wrapper .gfield_error .ginput_complex .ginput_right {
    width: 50%;
  }
  .gform_wrapper .ginput_complex .ginput_cardinfo_left, .gform_wrapper .ginput_complex .ginput_cardinfo_right {
    min-height: 43px;
    position: relative;
    float: left;
  }
  .gform_wrapper .ginput_complex .ginput_cardinfo_left {
    width: 50%;
  }
  .gform_wrapper .ginput_complex select.ginput_card_expiration.ginput_card_expiration_month, .gform_wrapper .ginput_complex select.ginput_card_expiration.ginput_card_expiration_year {
    width: 47% !important;
    display: -moz-inline-stack;
    display: inline-block;
  }
  .gform_wrapper .ginput_complex .ginput_cardinfo_left select.ginput_card_expiration.ginput_card_expiration_month {
    margin-right: 4px;
  }
  .gform_wrapper .gf_step {
    width: auto;
    display: -moz-inline-stack;
    display: inline-block;
    margin: 16px 32px 16px 0;
  }
  .gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer input[type=submit], .gform_wrapper .gform_footer input[type=image] {
    display: -moz-inline-stack;
    display: inline-block;
  }
  .gform_wrapper .gform_footer input[type=image] {
    vertical-align: middle;
  }
  .gform_wrapper .gform_footer a.gform_save_link, .gform_wrapper .gform_page_footer a.gform_save_link {
    font-size: 1em;
    margin-left: 16px;
    display: -moz-inline-stack;
    display: inline-block;
  }
  .gform_wrapper .gform_footer input.button, .gform_wrapper .gform_page_footer input.button, .gform_wrapper .gform_footer input[type=submit], .gform_wrapper .gform_page_footer input[type=submit] {
    font-size: 1em;
    width: auto;
    margin: 0 16px 0 0;
  }
  .gform_wrapper ul.gform_fields li.gfield {
    padding-right: 16px;
  }
  .gform_wrapper .ginput_complex .ginput_left {
    padding-right: 8px;
  }
  .gform_wrapper .left_label .ginput_complex.ginput_container_address:after {
    content: "";
    display: block;
  }
  .gform_wrapper .ginput_complex.ginput_container_address .ginput_left {
    margin-right: 8px;
  }
  .gform_wrapper .ginput_complex.ginput_container_address .ginput_right {
    margin-right: -8px;
    padding-right: 8px;
  }
  .gform_wrapper .ginput_complex.ginput_container_address span.ginput_full + span.ginput_right {
    padding-right: 8px !important;
    margin-right: 8px;
  }
  .gform_wrapper .ginput_complex.ginput_container_address span.ginput_right + span.ginput_left {
    padding-right: 8px !important;
    margin-right: -8px;
  }
  .gform_wrapper .ginput_complex.ginput_container_address span.ginput_right + span.ginput_left.address_zip {
    margin-right: 8px;
  }
  .gform_wrapper .gfield_error .ginput_container {
    padding-right: 0;
  }
  .gform_wrapper ul.top_label li.gfield.gfield_error.gfield_contains_required .gfield_password_strength {
    margin: 18px 0 18px 0;
  }
  .gform_wrapper .gform_footer:not(.top_label) {
    padding: 16px 0 10px 0;
    margin-left: 29%;
    width: 70%;
  }
  .top_label div.ginput_complex.ginput_container.gf_name_has_1, .top_label div.ginput_complex.ginput_container.gf_name_has_2, .top_label div.ginput_complex.ginput_container.gf_name_has_3 {
    width: calc(100% + 15px);
  }
  .top_label div.ginput_complex.ginput_container.gf_name_has_4 {
    width: calc(100% + 13px);
  }
  .top_label div.ginput_complex.ginput_container.gf_name_has_5 {
    width: calc(100% + 14px);
  }
  ul.gform_fields:not(.top_label) div.ginput_complex.ginput_container.gf_name_has_1, ul.gform_fields:not(.top_label) div.ginput_complex.ginput_container.gf_name_has_2, ul.gform_fields:not(.top_label) div.ginput_complex.ginput_container.gf_name_has_3 {
    width: calc(70% + 15px);
    margin-left: 29%;
  }
  ul.gform_fields:not(.top_label) li.gfield.gfield_error div.ginput_complex.ginput_container.gf_name_has_1, ul.gform_fields:not(.top_label) li.gfield.gfield_error div.ginput_complex.ginput_container.gf_name_has_2, ul.gform_fields:not(.top_label) li.gfield.gfield_error div.ginput_complex.ginput_container.gf_name_has_3 {
    width: calc(70% + 24px);
  }
  ul.gform_fields:not(.top_label) div.ginput_complex.ginput_container.gf_name_has_4 {
    width: calc(70% + 13px);
    margin-left: 29%;
  }
  ul.gform_fields:not(.top_label) div.ginput_complex.ginput_container.gf_name_has_5 {
    width: calc(70% + 14px);
    margin-left: 29%;
  }
  div.ginput_container_name span {
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: top;
    padding-right: 16px;
    margin-right: -4px;
  }
  div.ginput_complex.ginput_container.gf_name_has_1 span {
    width: 100%;
  }
  div.ginput_complex.ginput_container.gf_name_has_2 span {
    width: 50%;
  }
  div.ginput_complex.ginput_container.gf_name_has_3 span {
    width: 33.3%;
  }
  div.ginput_complex.ginput_container.gf_name_has_4 span {
    width: 25%;
  }
  div.ginput_complex.ginput_container.gf_name_has_5 span {
    width: 19.95%;
  }
  .gform_wrapper ul.gform_fields:not(.top_label) li.gfield.gfield_error div.ginput_complex.ginput_container.gf_name_has_1 span {
    width: 99.75% !important;
  }
  .gform_wrapper ul.gform_fields:not(.top_label) li.gfield.gfield_error div.ginput_complex.ginput_container.gf_name_has_2 span {
    width: 49.75% !important;
  }
  .gform_wrapper ul.gform_fields:not(.top_label) li.gfield.gfield_error div.ginput_complex.ginput_container.gf_name_has_3 span {
    width: 33% !important;
  }
  .gform_wrapper ul.gform_fields:not(.top_label) li.gfield.gfield_error div.ginput_complex.ginput_container.gf_name_has_4 span {
    width: 24.75% !important;
  }
  .gform_wrapper ul.gform_fields:not(.top_label) li.gfield.gfield_error div.ginput_complex.ginput_container.gf_name_has_5 span {
    width: 19.75% !important;
  }
  html div.ginput_complex.ginput_container.gf_name_has_2 span:first-child, html div.ginput_complex.ginput_container.gf_name_has_3 span:first-child, html div.ginput_complex.ginput_container.gf_name_has_4 span:first-child, html div.ginput_complex.ginput_container.gf_name_has_5 span:first-child {
    margin-left: 0 !important;
  }
  .gform_wrapper .top_label .ginput_complex.ginput_container.ginput_container_email {
    width: calc(100% + 15px);
  }
  .gform_wrapper ul.gform_fields:not(.top_label) div.ginput_complex.ginput_container.ginput_container_email {
    width: calc(70% + 16px);
    margin-left: 29%;
  }
  .gform_wrapper ul.gform_fields:not(.top_label) li.gfield.gfield_error div.ginput_complex.ginput_container.ginput_container_email {
    width: calc(70% + 17px);
  }
  li.gfield.gfield_error .gform_wrapper ul.gform_fields:not(.top_label) li.gfield.gfield_error .ginput_complex.ginput_container.ginput_container_email {
    width: calc(70% + 8px) !important;
  }
  .gform_wrapper .ginput_complex.ginput_container.ginput_container_email .ginput_left, .gform_wrapper .ginput_complex.ginput_container.ginput_container_email .ginput_right {
    padding-right: 16px;
  }
  .gform_wrapper ul.left_label li.gfield .gfield_password_strength, .gform_wrapper ul.right_label li.gfield .gfield_password_strength {
    width: 70%;
  }
  .gform_wrapper .ginput_complex span.ginput_left + input.gform_hidden + span.ginput_left {
    padding-right: 0;
  }
  .gform_wrapper .ginput_complex span.ginput_left.address_country {
    margin-right: 0;
  }
  html:not([dir="rtl"]) .gform_wrapper ul.gform_fields:not(.top_label) .ginput_container:not(.ginput_container_time), html:not([dir="rtl"]) .gform_wrapper ul.gform_fields:not(.top_label) .clear-multi, html:not([dir="rtl"]) .gform_wrapper ul.gform_fields:not(.top_label) .gfield_description {
    width: 70%;
    margin-left: 29% !important;
  }
  .gform_wrapper .gf_progressbar {
    width: calc(100% - 16px);
  }
  .gform_wrapper ul.gform_fields:not(.top_label) .gform_fileupload_multifile .gform_drop_area {
    margin-left: 29%;
    width: 70%;
  }
  body .gform_wrapper span.ginput_left.address_city + input.gform_hidden + span.ginput_left.address_country {
    width: calc(50% - 8px);
    margin-right: 0;
  }
  .gform_wrapper ul.gform_fields:not(.top_label) .ginput_container.ginput_recaptcha {
    margin-left: 29% !important;
  }
  .gform_wrapper .gform_page_footer .button.gform_previous_button {
    margin-bottom: 0;
  }
  .gform_wrapper .gform_page_footer .button.gform_next_button, .gform_wrapper .gform_page_footer .button.gform_button {
    margin-right: 10px;
  }
}
/*
 ----------------------------------------------------------------
 readyclass.css
 Gravity Forms Ready Class Pre-Set Helper Styles
 http://www.gravityforms.com
 updated: August 02, 2017 12:10 PM (GMT-05:00) US Eastern Time
 Gravity Forms is a Rocketgenius project
 copyright 2008-2017 Rocketgenius Inc.
 http: //www.rocketgenius.com
 this may not be redistributed without the
 express written permission of the author.
 NOTE: DO NOT EDIT THIS FILE! MAKE ANY MODIFICATIONS IN YOUR
 THEME STYLESHEET. THIS FILE IS REPLACED DURING AUTO-UPDATES
 AND ANY CHANGES MADE HERE WILL BE OVERWRITTEN.
 If you need to make extensive customizations,
 copy the contents of this file to your theme
 style sheet for editing. Then, go to the form
 settings page & set the 'output CSS' option
 to no.
 ----------------------------------------------------------------
 */
@media only screen and (min-width: 641px) {
  /* 3 columns */
  /* 4 columns - quarters */
  /* horizontal list columns - displayed inline */
  /* vertical list columns - using CSS columns */
  /* simple horizontal form ready class - very simple implementation for up to 5 fields and a button */
  /* end media query */
  .gform_wrapper .top_label li.gfield.gf_inline {
    vertical-align: top;
    width: auto !important;
    margin: 0;
    padding-right: 16px;
    float: none !important;
    display: -moz-inline-stack;
    display: inline-block;
  }
  .gform_wrapper .top_label li.gfield.gf_inline input[type=text].large, .gform_wrapper .top_label li.gfield.gf_inline input[type=url].large, .gform_wrapper .top_label li.gfield.gf_inline input[type=email].large, .gform_wrapper .top_label li.gfield.gf_inline input[type=tel].large, .gform_wrapper .top_label li.gfield.gf_inline input[type=number].large, .gform_wrapper .top_label li.gfield.gf_inline input[type=password].large, .gform_wrapper .top_label li.gfield.gf_inline input[type=text].medium, .gform_wrapper .top_label li.gfield.gf_inline input[type=url].medium, .gform_wrapper .top_label li.gfield.gf_inline input[type=email].medium, .gform_wrapper .top_label li.gfield.gf_inline input[type=tel].medium, .gform_wrapper .top_label li.gfield.gf_inline input[type=number].medium, .gform_wrapper .top_label li.gfield.gf_inline input[type=password].medium, .gform_wrapper .top_label li.gfield.gf_inline input[type=text].small, .gform_wrapper .top_label li.gfield.gf_inline input[type=url].small, .gform_wrapper .top_label li.gfield.gf_inline input[type=email].small, .gform_wrapper .top_label li.gfield.gf_inline input[type=tel].small, .gform_wrapper .top_label li.gfield.gf_inline input[type=number].small, .gform_wrapper .top_label li.gfield.gf_inline input[type=password].small {
    width: 100%;
  }
  .gform_wrapper .top_label li.gfield.gf_inline input[type=text].datepicker.medium {
    width: 96px !important;
  }
  .gform_wrapper .top_label li.gfield.gf_inline select {
    width: 100%;
  }
  .gform_wrapper .top_label li.gfield.gf_inline textarea {
    width: 100%;
  }
  .gform_wrapper .top_label li.gfield.gf_inline div.gfield_time_hour input[type=text], .gform_wrapper .top_label li.gfield.gf_inline div.gfield_time_minute input[type=text] {
    width: 70% !important;
  }
  .gform_wrapper .top_label li.gfield.gf_inline div.gfield_time_hour, .gform_wrapper .top_label li.gfield.gf_inline div.gfield_time_minute, .gform_wrapper .top_label li.gfield.gf_inline div.gfield_date_month, .gform_wrapper .top_label li.gfield.gf_inline div.gfield_date_day, .gform_wrapper .top_label li.gfield.gf_inline div.gfield_date_year {
    width: 50px;
  }
  .gform_wrapper .top_label li.gfield.gf_inline div.gfield_time_ampm {
    width: auto;
  }
  .gform_wrapper li.gf_inline div.ginput_container {
    white-space: nowrap !important;
  }
  .gform_wrapper li.gf_inline div.ginput_container.ginput_container_date label {
    display: block !important;
  }
  .gform_wrapper li.gfield.gfield_error.gf_inline {
    margin-right: 16px;
    padding-right: 0;
  }
  .gform_wrapper .top_label li.gfield.gf_left_half, .gform_wrapper .top_label li.gfield.gf_right_half {
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: top;
    width: 50%;
    padding-right: 16px;
    float: none;
  }
  .gform_wrapper .top_label li.gfield.gf_left_half .ginput_container:not(.gfield_time_hour):not(.gfield_time_minute):not(.gfield_time_ampm):not(.ginput_container_date):not(.ginput_quantity):not(.datepicker), .gform_wrapper .top_label li.gfield.gf_right_half .ginput_container:not(.gfield_time_hour):not(.gfield_time_minute):not(.gfield_time_ampm):not(.ginput_container_date):not(.ginput_quantity):not(.datepicker) {
    width: 100% !important;
    margin: 8px 0 0 0;
    padding-left: 0;
    padding-right: 0;
  }
  .gform_wrapper .top_label li.gfield.gf_left_half:before {
    content: "";
    display: block;
    clear: both;
  }
  .gform_wrapper .top_label li.gfield.gf_right_half:after {
    content: "";
    display: table;
    clear: both;
  }
  .gform_wrapper.gform_validation_error .top_label li.gfield.gfield_error.gf_left_half, .gform_wrapper.gform_validation_error .top_label li.gfield.gfield_error.gf_right_half {
    max-width: calc(50% - 16px);
    padding-right: 0;
  }
  .gform_wrapper .top_label li.gfield.gfield_error.gf_left_half {
    margin-right: 16px;
  }
  .gform_wrapper .top_label li.gfield.gf_left_half div:not(.ginput_container_date) input.medium, .gform_wrapper .top_label li.gfield.gf_left_half div:not(.ginput_container_date) input.large, .gform_wrapper .top_label li.gfield.gf_left_half div:not(.ginput_container_date) select.medium, .gform_wrapper .top_label li.gfield.gf_left_half div:not(.ginput_container_date) select.large, .gform_wrapper .top_label li.gfield.gf_right_half div:not(.ginput_container_date) input.medium, .gform_wrapper .top_label li.gfield.gf_right_half div:not(.ginput_container_date) input.large, .gform_wrapper .top_label li.gfield.gf_right_half div:not(.ginput_container_date) select.medium, .gform_wrapper .top_label li.gfield.gf_right_half div:not(.ginput_container_date) select.large {
    width: 100%;
  }
  .gform_wrapper .top_label li.gfield.gf_left_half textarea, .gform_wrapper .top_label li.gfield.gf_right_half textarea {
    width: 98%;
  }
  .gform_wrapper .top_label li.gfield.gf_left_half input.small, .gform_wrapper .top_label li.gfield.gf_right_half input.small {
    width: 35%;
  }
  .gform_wrapper .top_label li.gfield.gf_left_half + li.gsection, .gform_wrapper .top_label li.gfield.gf_right_half + li.gsection {
    padding: 16px 0 8px 0;
  }
  .gform_wrapper .top_label li.gfield.gf_left_half + li.gfield.gsection.gf_left_half, .gform_wrapper .top_label li.gfield.gf_right_half + li.gfield.gsection.gf_left_half, .gform_wrapper .top_label li.gfield.gf_left_half + li.gfield.gsection.gf_right_half, .gform_wrapper .top_label li.gfield.gf_right_half + li.gfield.gsection.gf_right_half, .gform_wrapper .top_label li.gfield.gsection.gf_left_half + li.gfield.gsection.gf_left_half, .gform_wrapper .top_label li.gfield.gsection.gf_right_half + li.gfield.gsection.gf_left_half, .gform_wrapper .top_label li.gfield.gsection.gf_right_half + li.gfield.gsection.gf_right_half {
    padding: 16px 0 8px 0;
  }
  .gform_wrapper .top_label li.gfield.gsection.gf_left_half + li.gfield.gsection.gf_right_half {
    padding: 0 0 8px 0;
  }
  .gform_wrapper .top_label li.gfield.gsection.gf_left_half + li.gfield.gsection.gf_right_half + li.gfield.gsection.gf_left_half + li.gfield.gsection.gf_right_half {
    padding: 16px 0 8px 0;
  }
  .gform_wrapper .top_label li.gfield.gf_left_half + li.gfield, .gform_wrapper .top_label li.gfield.gf_right_half + li.gfield, .gform_wrapper .top_label li.gfield.gf_left_half + .gform_footer, .gform_wrapper .top_label li.gfield.gf_right_half + .gform_footer {
    clear: both;
  }
  .gform_wrapper .top_label li.gfield.gf_left_third, .gform_wrapper .top_label li.gfield.gf_middle_third, .gform_wrapper .top_label li.gfield.gf_right_third {
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: top;
    float: none;
  }
  .gform_wrapper .top_label li.gfield.gf_left_third:not(.gfield_time_hour):not(.gfield_time_minute):not(.gfield_time_ampm), .gform_wrapper .top_label li.gfield.gf_middle_third:not(.gfield_time_hour):not(.gfield_time_minute):not(.gfield_time_ampm) {
    width: 33.3%;
  }
  .gform_wrapper .top_label li.gfield.gf_right_third:not(.gfield_time_hour):not(.gfield_time_minute):not(.gfield_time_ampm) {
    width: 33.4%;
  }
  .gform_wrapper .top_label li.gfield.gf_left_third, .gform_wrapper .top_label li.gfield.gf_middle_third, .gform_wrapper .top_label li.gfield.gf_right_third {
    margin-bottom: 8px;
  }
  .gform_wrapper .top_label li.gfield.gf_left_third div:not(.ginput_container_date) input.medium, .gform_wrapper .top_label li.gfield.gf_left_third div:not(.ginput_container_date) input.large, .gform_wrapper .top_label li.gfield.gf_left_third div:not(.ginput_container_date) select.medium, .gform_wrapper .top_label li.gfield.gf_left_third div:not(.ginput_container_date) select.large, .gform_wrapper .top_label li.gfield.gf_middle_third div:not(.ginput_container_date) input.medium, .gform_wrapper .top_label li.gfield.gf_middle_third div:not(.ginput_container_date) input.large, .gform_wrapper .top_label li.gfield.gf_middle_third div:not(.ginput_container_date) select.medium, .gform_wrapper .top_label li.gfield.gf_middle_third div:not(.ginput_container_date) select.large, .gform_wrapper .top_label li.gfield.gf_right_third div:not(.ginput_container_date) input.medium, .gform_wrapper .top_label li.gfield.gf_right_third div:not(.ginput_container_date) input.large, .gform_wrapper .top_label li.gfield.gf_right_third div:not(.ginput_container_date) select.medium, .gform_wrapper .top_label li.gfield.gf_right_third div:not(.ginput_container_date) select.large {
    width: 100%;
  }
  .gform_wrapper .top_label li.gfield.gf_left_third div:not(.ginput_container_date) input:not([type='radio']):not([type='checkbox']):not(.ginput_quantity), .gform_wrapper .top_label li.gfield.gf_middle_third div:not(.ginput_container_date) input:not([type='radio']):not([type='checkbox']):not(.ginput_quantity), .gform_wrapper .top_label li.gfield.gf_right_third div:not(.ginput_container_date) input:not([type='radio']):not([type='checkbox']):not(.ginput_quantity), .gform_wrapper .top_label li.gfield.gf_left_third div:not(.ginput_container_date) select, .gform_wrapper .top_label li.gfield.gf_middle_third div:not(.ginput_container_date) select, .gform_wrapper .top_label li.gfield.gf_right_third div:not(.ginput_container_date) select {
    width: 100% !important;
  }
  .gform_wrapper .top_label li.gfield.gfield_error.gf_left_third, .gform_wrapper .top_label li.gfield.gfield_error.gf_middle_third {
    width: calc(33.3% - 24px) !important;
    margin-right: 16px;
  }
  .gform_wrapper .top_label li.gfield.gfield_error.gf_right_third {
    width: 33.4%;
  }
  .gform_wrapper .top_label li.gfield.gf_right_third:after {
    content: "";
    display: table;
    clear: both;
  }
  .gform_wrapper .top_label li.gfield.gf_left_third + li.gsection, .gform_wrapper .top_label li.gfield.gf_right_third + li.gsection {
    padding: 16px 0 8px 0;
  }
  .gform_wrapper .top_label li.gfield.gf_left_third + li.gfield, .gform_wrapper .top_label li.gfield.gf_middle_third + li.gfield, .gform_wrapper .top_label li.gfield.gf_right_third + li.gfield, .gform_wrapper .top_label li.gfield.gf_left_third + .gform_footer, .gform_wrapper .top_label li.gfield.gf_middle_third + .gform_footer, .gform_wrapper .top_label li.gfield.gf_right_third + .gform_footer {
    clear: both;
  }
  .gform_wrapper .top_label li.gfield.gf_first_quarter:not(.gfield_time_hour):not(.gfield_time_minute):not(.gfield_time_ampm), .gform_wrapper .top_label li.gfield.gf_second_quarter:not(.gfield_time_hour):not(.gfield_time_minute):not(.gfield_time_ampm), .gform_wrapper .top_label li.gfield.gf_third_quarter:not(.gfield_time_hour):not(.gfield_time_minute):not(.gfield_time_ampm), .gform_wrapper .top_label li.gfield.gf_fourth_quarter:not(.gfield_time_hour):not(.gfield_time_minute):not(.gfield_time_ampm) {
    width: 25%;
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: top;
    float: none;
  }
  .gform_wrapper .top_label li.gfield.gf_first_quarter, .gform_wrapper .top_label li.gfield.gf_second_quarter, .gform_wrapper .top_label li.gfield.gf_third_quarter, .gform_wrapper .top_label li.gfield.gf_fourth_quarter {
    margin-bottom: 8px;
  }
  .gform_wrapper .top_label li.gfield.gf_first_quarter div:not(.ginput_container_date) input:not([type='radio']):not([type='checkbox']), .gform_wrapper .top_label li.gfield.gf_second_quarter div:not(.ginput_container_date) input:not([type='radio']):not([type='checkbox']), .gform_wrapper .top_label li.gfield.gf_third_quarter div:not(.ginput_container_date) input:not([type='radio']):not([type='checkbox']), .gform_wrapper .top_label li.gfield.gf_fourth_quarter div:not(.ginput_container_date) input:not([type='radio']):not([type='checkbox']), .gform_wrapper .top_label li.gfield.gf_first_quarter div:not(.ginput_container_date) select, .gform_wrapper .top_label li.gfield.gf_second_quarter div:not(.ginput_container_date) select, .gform_wrapper .top_label li.gfield.gf_third_quarter div:not(.ginput_container_date) select, .gform_wrapper .top_label li.gfield.gf_fourth_quarter div:not(.ginput_container_date) select {
    width: 100% !important;
  }
  .gform_wrapper .top_label li.gfield.gfield_error.gf_first_quarter, .gform_wrapper .top_label li.gfield.gfield_error.gf_second_quarter, .gform_wrapper .top_label li.gfield.gfield_error.gf_third_quarter, .gform_wrapper .top_label li.gfield.gfield_error.gf_fourth_quarter {
    width: 24.5%;
  }
  .gform_wrapper .top_label li.gfield.gf_fourth_quarter:after {
    content: "";
    display: table;
    clear: both;
  }
  .gform_wrapper .top_label li.gfield.gf_first_quarter input.medium, .gform_wrapper .top_label li.gfield.gf_first_quarter input.large, .gform_wrapper .top_label li.gfield.gf_first_quarter select.medium, .gform_wrapper .top_label li.gfield.gf_first_quarter select.large, .gform_wrapper .top_label li.gfield.gf_second_quarter input.medium, .gform_wrapper .top_label li.gfield.gf_second_quarter input.large, .gform_wrapper .top_label li.gfield.gf_second_quarter select.medium, .gform_wrapper .top_label li.gfield.gf_second_quarter select.large, .gform_wrapper .top_label li.gfield.gf_third_quarter input.medium, .gform_wrapper .top_label li.gfield.gf_third_quarter input.large, .gform_wrapper .top_label li.gfield.gf_third_quarter select.medium, .gform_wrapper .top_label li.gfield.gf_third_quarter select.large, .gform_wrapper .top_label li.gfield.gf_fourth_quarter input.medium, .gform_wrapper .top_label li.gfield.gf_fourth_quarter input.large, .gform_wrapper .top_label li.gfield.gf_fourth_quarter select.medium, .gform_wrapper .top_label li.gfield.gf_fourth_quarter select.large {
    width: 97.5%;
  }
  .gform_wrapper .top_label li.gfield.gf_first_quarter + li.gsection, .gform_wrapper .top_label li.gfield.gf_fourth_quarter + li.gsection {
    padding: 16px 0 8px 0;
  }
  .gform_wrapper .top_label li.gfield.gf_first_quarter + li.gfield, .gform_wrapper .top_label li.gfield.gf_second_quarter + li.gfield, .gform_wrapper .top_label li.gfield.gf_third_quarter + li.gfield, .gform_wrapper .top_label li.gfield.gf_fourth_quarter + li.gfield, .gform_wrapper .top_label li.gfield.gf_first_quarter + .gform_footer, .gform_wrapper .top_label li.gfield.gf_second_quarter + .gform_footer, .gform_wrapper .top_label li.gfield.gf_third_quarter + .gform_footer, .gform_wrapper .top_label li.gfield.gf_fourth_quarter + .gform_footer {
    clear: both;
  }
  .gform_wrapper .top_label li ul.gfield_checkbox, .gform_wrapper .top_label li ul.gfield_radio {
    width: calc(100% + 16px);
  }
  .gform_wrapper ul.gform_fields:not(.top_label) li ul.gfield_checkbox, .gform_wrapper ul.gform_fields:not(.top_label) li ul.gfield_radio {
    width: calc(70% + 16px);
  }
  .gform_wrapper li.gfield.gf_list_2col ul.gfield_checkbox li, .gform_wrapper li.gfield.gf_list_2col ul.gfield_radio li {
    width: 50%;
    display: -moz-inline-stack;
    display: inline-block;
    margin: 0;
    padding-right: 16px;
    min-height: 28px;
    vertical-align: top;
    font-size: 90%;
  }
  .gform_wrapper li.gfield.gf_list_3col ul.gfield_checkbox li, .gform_wrapper li.gfield.gf_list_3col ul.gfield_radio li {
    width: 33.3%;
    display: -moz-inline-stack;
    display: inline-block;
    margin: 0 0 2px 0;
    padding-right: 16px;
    min-height: 28px;
    vertical-align: top;
    font-size: 90%;
  }
  .gform_wrapper li.gfield.gf_list_2col ul.gfield_checkbox li label, .gform_wrapper li.gfield.gf_list_2col ul.gfield_radio li label, .gform_wrapper li.gfield.gf_list_3col ul.gfield_checkbox li label, .gform_wrapper li.gfield.gf_list_3col ul.gfield_radio li label, .gform_wrapper li.gfield.gf_list_4col ul.gfield_checkbox li label, .gform_wrapper li.gfield.gf_list_4col ul.gfield_radio li label {
    max-width: 75%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
  }
  .gform_wrapper li.gfield.gf_list_4col ul.gfield_checkbox li, .gform_wrapper li.gfield.gf_list_4col ul.gfield_radio li {
    width: 25%;
    display: -moz-inline-stack;
    display: inline-block;
    margin: 0;
    padding-right: 16px;
    min-height: 28px;
    vertical-align: top;
    font-size: 90%;
  }
  .gform_wrapper li.gfield.gf_list_5col ul.gfield_checkbox li, .gform_wrapper li.gfield.gf_list_5col ul.gfield_radio li {
    width: 20%;
    display: -moz-inline-stack;
    display: inline-block;
    margin: 0;
    padding-right: 16px;
    min-height: 28px;
    vertical-align: top;
    font-size: 90%;
  }
  .gform_wrapper li.gfield.gf_list_2col ul.gfield_checkbox, .gform_wrapper li.gfield.gf_list_2col ul.gfield_radio, .gform_wrapper li.gfield.gf_list_3col ul.gfield_checkbox, .gform_wrapper li.gfield.gf_list_3col ul.gfield_radio, .gform_wrapper li.gfield.gf_list_4col ul.gfield_checkbox, .gform_wrapper li.gfield.gf_list_4col ul.gfield_radio, .gform_wrapper li.gfield.gf_list_5col ul.gfield_checkbox, .gform_wrapper li.gfield.gf_list_5col ul.gfield_radio {
    overflow: hidden;
  }
  .gform_wrapper ul.gform_fields:not(.top_label) li.gfield.gf_list_2col label.gfield_label, .gform_wrapper ul.gform_fields:not(.top_label) li.gfield.gf_list_3col label.gfield_label, .gform_wrapper ul.gform_fields:not(.top_label) li.gfield.gf_list_4col label.gfield_label, .gform_wrapper ul.gform_fields:not(.top_label) li.gfield.gf_list_5col label.gfield_label, .gform_wrapper ul.gform_fields:not(.top_label) li.gfield.gf_list_inline label.gfield_label {
    margin: 0 0 10px 0;
  }
  .gform_wrapper li.gf_list_2col_vertical .ginput_container_checkbox ul.gfield_checkbox, .gform_wrapper li.gf_list_3col_vertical .ginput_container_checkbox ul.gfield_checkbox, .gform_wrapper li.gf_list_4col_vertical .ginput_container_checkbox ul.gfield_checkbox, .gform_wrapper li.gf_list_5col_vertical .ginput_container_checkbox ul.gfield_checkbox {
    -webkit-column-gap: 16px;
    -moz-column-gap: 16px;
    column-gap: 16px;
  }
  .gform_wrapper ul.gform_fields:not(.top_label) li.gf_list_2col_vertical label.gfield_label, .gform_wrapper ul.gform_fields:not(.top_label) li.gf_list_2col_vertical label.gfield_label, .gform_wrapper ul.gform_fields:not(.top_label) li.gf_list_2col_vertical label.gfield_label, .gform_wrapper ul.gform_fields:not(.top_label) li.gf_list_2col_vertical label.gfield_label {
    margin: 0 0 10px 0;
  }
  .gform_wrapper li.gf_list_2col_vertical .ginput_container_checkbox ul.gfield_checkbox, .gform_wrapper li.gf_list_2col_vertical .ginput_container_radio ul.gfield_radio {
    width: calc(100% - 16px);
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
  .gform_wrapper li.gf_list_3col_vertical .ginput_container_checkbox ul.gfield_checkbox, .gform_wrapper li.gf_list_3col_vertical .ginput_container_radio ul.gfield_radio {
    width: calc(100% - 8px);
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }
  .gform_wrapper li.gf_list_4col_vertical .ginput_container_checkbox ul.gfield_checkbox, .gform_wrapper li.gf_list_4col_vertical .ginput_container_radio ul.gfield_radio {
    width: calc(100% - 8px);
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
  }
  .gform_wrapper li.gf_list_5col_vertical .ginput_container_checkbox ul.gfield_checkbox, .gform_wrapper li.gf_list_5col_vertical .ginput_container_radio ul.gfield_radio {
    width: calc(100% - 8px);
    -webkit-column-count: 5;
    -moz-column-count: 5;
    column-count: 5;
  }
  .gform_wrapper li.gf_list_2col_vertical .ginput_container_checkbox ul.gfield_checkbox li label, .gform_wrapper li.gf_list_2col_vertical .ginput_container_radio ul.gfield_radio li label, .gform_wrapper li.gf_list_3col_vertical .ginput_container_checkbox ul.gfield_checkbox li label, .gform_wrapper li.gf_list_3col_vertical .ginput_container_radio ul.gfield_radio li label, .gform_wrapper li.gf_list_4col_vertical .ginput_container_checkbox ul.gfield_checkbox li label, .gform_wrapper li.gf_list_4col_vertical .ginput_container_radio ul.gfield_radio li label, .gform_wrapper li.gf_list_5col_vertical .ginput_container_checkbox ul.gfield_checkbox li label, .gform_wrapper li.gf_list_5col_vertical .ginput_container_radio ul.gfield_radio li label {
    max-width: 75%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .gform_wrapper li.gfield.gf_list_height_25 ul.gfield_checkbox li, .gform_wrapper li.gfield.gf_list_height_25 ul.gfield_radio li {
    height: 25px;
  }
  .gform_wrapper li.gfield.gf_list_height_50 ul.gfield_checkbox li, .gform_wrapper li.gfield.gf_list_height_50 ul.gfield_radio li {
    height: 50px;
  }
  .gform_wrapper li.gfield.gf_list_height_75 ul.gfield_checkbox li, .gform_wrapper li.gfield.gf_list_height_75 ul.gfield_radio li {
    height: 75px;
  }
  .gform_wrapper li.gfield.gf_list_height_100 ul.gfield_checkbox li, .gform_wrapper li.gfield.gf_list_height_100 ul.gfield_radio li {
    height: 100px;
  }
  .gform_wrapper li.gfield.gf_list_height_125 ul.gfield_checkbox li, .gform_wrapper li.gfield.gf_list_height_125 ul.gfield_radio li {
    height: 125px;
  }
  .gform_wrapper li.gfield.gf_list_height_150 ul.gfield_checkbox li, .gform_wrapper li.gfield.gf_list_height_150 ul.gfield_radio li {
    height: 150px;
  }
  .gform_wrapper li.gf_list_inline ul.gfield_checkbox li, .gform_wrapper li.gf_list_inline ul.gfield_radio li {
    width: auto !important;
    float: none !important;
    margin: 0 8px 10px 0;
    display: -moz-inline-stack;
    display: inline-block;
  }
  html[dir="rtl"] .gform_wrapper li.gf_list_inline ul.gfield_checkbox li, html[dir="rtl"] .gform_wrapper li.gf_list_inline ul.gfield_radio li {
    padding-left: 16px !important;
    padding-right: 0 !important;
  }
  .gform_wrapper li.gf_hide_ampm div.gfield_time_ampm {
    display: none !important;
  }
  .gform_wrapper li.gsection.gf_scroll_text {
    height: 240px;
    width: calc(100% - 16px);
    padding: 16px;
    background-color: #fff;
    overflow-y: scroll;
    overflow-x: hidden;
    border: 1px solid #ccc;
    border-bottom: 1px solid #ccc !important;
  }
  .gform_wrapper .top_label li.gsection.gf_scroll_text h2.gsection_title {
    margin: 10px 10px 0 8px !important;
  }
  .gform_wrapper.gf_browser_gecko .top_label li.gsection.gf_scroll_text h2.gsection_title, .gform_wrapper.gf_browser_chrome .top_label li.gsection.gf_scroll_text h2.gsection_title {
    margin: 0 10px 0 8px !important;
  }
  .gform_wrapper .top_label li.gsection.gf_scroll_text .gsection_description {
    margin: 10px;
    font-size: 12px;
  }
  .gform_wrapper div.gform_ul.gform_fields .top_label li.gfield.gsection.gf_scroll_text div.gsection_description ul li, .gform_wrapper form div.gform_ul.gform_fields .top_label li.gfield.gsection.gf_scroll_text div.gsection_description ul li {
    list-style-type: disc !important;
    margin: 0 0 8px;
    overflow: visible;
    padding-left: 0;
  }
  .gform_wrapper div.gform_ul.gform_fields .top_label li.gfield.gsection.gf_scroll_text div.gsection_description ul, .gform_wrapper form div.gform_ul.gform_fields .top_label li.gfield.gsection.gf_scroll_text div.gsection_description ul {
    list-style-type: disc !important;
    margin: 16px 0 16px 18px;
    padding-left: 0;
  }
  .gform_wrapper div.gform_ul.gform_fields .top_label li.gfield.gsection.gf_scroll_text div.gsection_description ol li, .gform_wrapper form div.gform_ul.gform_fields .top_label li.gfield.gsection.gf_scroll_text div.gsection_description ol li {
    list-style-type: decimal !important;
    overflow: visible;
    margin: 0 0 8px;
    padding-left: 0;
  }
  .gform_wrapper div.gform_ul.gform_fields .top_label li.gfield.gsection.gf_scroll_text div.gsection_description ol, .gform_wrapper form div.gform_ul.gform_fields .top_label li.gfield.gsection.gf_scroll_text div.gsection_description ol {
    list-style-type: decimal !important;
    margin: 16px 0 18px 32px;
    padding-left: 0;
  }
  .gform_wrapper div.gform_ul.gform_fields .top_label li.gfield.gsection.gf_scroll_text div.gsection_description ol li ul, .gform_wrapper form div.gform_ul.gform_fields .top_label li.gfield.gsection.gf_scroll_text div.gsection_description ol li ul li {
    list-style-type: disc !important;
    padding-left: 0;
  }
  .gform_wrapper div.gform_ul.gform_fields .top_label li.gfield.gsection.gf_scroll_text div.gsection_description ol li ul {
    margin: 16px 0 16px 18px;
  }
  .gform_wrapper form div.gform_ul.gform_fields .top_label li.gfield.gsection.gf_scroll_text div.gsection_description ol li ul li {
    margin: 0 0 8px;
  }
  .gform_wrapper div.gform_ul.gform_fields .top_label li.gfield.gsection.gf_scroll_text div.gsection_description dl {
    margin: 0 0 18px 0;
    padding-left: 0;
  }
  .gform_wrapper div.gform_ul.gform_fields .top_label li.gfield.gsection.gf_scroll_text div.gsection_description dl dt {
    font-weight: 700;
  }
  .gform_wrapper div.gform_ul.gform_fields .top_label li.gfield.gsection.gf_scroll_text div.gsection_description dl dd {
    margin: 0 0 16px 18px;
  }
  .gform_wrapper li.gfield.gfield_html.gf_alert_green, .gform_wrapper li.gfield.gfield_html.gf_alert_red, .gform_wrapper li.gfield.gfield_html.gf_alert_yellow, .gform_wrapper li.gfield.gfield_html.gf_alert_gray, .gform_wrapper li.gfield.gfield_html.gf_alert_blue {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    margin: 20px 0 !important;
    padding: 20px !important;
  }
  .gform_wrapper li.gfield.gfield_html.gf_alert_green {
    border: 1px solid #97b48a;
    background-color: #cbeca0;
    text-shadow: #dfb 1px 1px;
    color: #030;
  }
  .gform_wrapper li.gfield.gfield_html.gf_alert_red {
    border: 1px solid #cfadb3;
    background-color: #faf2f5;
    text-shadow: #fff 1px 1px;
    color: #832525;
  }
  .gform_wrapper li.gfield.gfield_html.gf_alert_yellow {
    border: 1px solid #e6db55;
    background-color: #fffbcc;
    text-shadow: #fcfaea 1px 1px;
    color: #222;
  }
  .gform_wrapper li.gfield.gfield_html.gf_alert_gray {
    border: 1px solid #ccc;
    background-color: #eee;
    text-shadow: #fff 1px 1px;
    color: #424242;
  }
  .gform_wrapper li.gfield.gfield_html.gf_alert_blue {
    border: 1px solid #a7c2e7;
    background-color: #d1e4f3;
    text-shadow: #e0f1ff 1px 1px;
    color: #314475;
  }
  div.gform_confirmation_wrapper.gf_confirmation_simple_yellow {
    margin: 30px 0;
    max-width: 99%;
    border-top: 1px solid #e6db55;
    border-bottom: 1px solid #e6db55;
    padding: 32px;
    background-color: #fffbcc;
    color: #424242;
    font-size: 25px;
  }
  div.gform_confirmation_wrapper.gf_confirmation_simple_gray {
    margin: 30px 0;
    max-width: 99%;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 32px;
    background-color: #eaeaea;
    color: #424242;
    font-size: 25px;
  }
  div.gform_confirmation_wrapper.gf_confirmation_yellow_gradient {
    position: relative;
    background-color: #fffbd2;
    margin: 30px 0;
    border: 1px solid #e6db55;
    -webkit-box-shadow: 0px 0px 5px rgba(221, 215, 131, 0.75);
    -moz-box-shadow: 0px 0px 5px rgba(221, 215, 131, 0.75);
    box-shadow: 0px 0px 5px rgba(221, 215, 131, 0.75);
  }
  div.gform_confirmation_wrapper.gf_confirmation_yellow_gradient div.gforms_confirmation_message {
    margin: 0;
    padding: 40px;
    max-width: 99%;
    font-size: 28px;
    border-top: 2px solid #fff;
    border-bottom: 1px solid #e6db55;
    background-color: #fffbcc;
    color: #424242;
    background: #fffce5;
    background: -moz-linear-gradient(top, #fffce5 0%, #fff9bf 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fffce5), color-stop(100%, #fff9bf));
    background: -webkit-linear-gradient(top, #fffce5 0%, #fff9bf 100%);
    background: -o-linear-gradient(top, #fffce5 0%, #fff9bf 100%);
    background: -ms-linear-gradient(top, #fffce5 0%, #fff9bf 100%);
    background: linear-gradient(to bottom, #fffce5 0%, #fff9bf 100%);
  }
  div.gform_confirmation_wrapper.gf_confirmation_green_gradient {
    position: relative;
    background-color: #f1fcdf;
    margin: 30px 0;
    border: 1px solid #a7c37c;
    -webkit-box-shadow: 0px 0px 5px rgba(86, 122, 86, 0.4);
    -moz-box-shadow: 0px 0px 5px rgba(86, 122, 86, 0.4);
    box-shadow: 0px 0px 5px rgba(86, 122, 86, 0.4);
  }
  div.gform_confirmation_wrapper.gf_confirmation_green_gradient div.gforms_confirmation_message {
    margin: 0;
    padding: 40px;
    max-width: 99%;
    font-size: 28px;
    border-top: 2px solid #effade;
    border-bottom: 1px solid #a7c37c;
    background-color: #fffbcc;
    text-shadow: #dfb 1px 1px;
    color: #030;
    background: #dbf2b7;
    background: -moz-linear-gradient(top, rgba(219, 242, 183, 1) 0%, rgba(180, 208, 136, 1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(219, 242, 183, 1)), color-stop(100%, rgba(180, 208, 136, 1)));
    background: -webkit-linear-gradient(top, rgba(219, 242, 183, 1) 0%, rgba(180, 208, 136, 1) 100%);
    background: -o-linear-gradient(top, rgba(219, 242, 183, 1) 0%, rgba(180, 208, 136, 1) 100%);
    background: -ms-linear-gradient(top, rgba(219, 242, 183, 1) 0%, rgba(180, 208, 136, 1) 100%);
    background: linear-gradient(to bottom, rgba(219, 242, 183, 1) 0%, rgba(180, 208, 136, 1) 100%);
  }
  div.gform_confirmation_wrapper.gf_confirmation_yellow_gradient:before, div.gform_confirmation_wrapper.gf_confirmation_yellow_gradient:after, div.gform_confirmation_wrapper.gf_confirmation_green_gradient:before, div.gform_confirmation_wrapper.gf_confirmation_green_gradient:after {
    z-index: -1;
    position: absolute;
    content: "";
    bottom: 15px;
    left: 10px;
    width: 50%;
    top: 80%;
    max-width: 40%;
    background: rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 15px 10px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 15px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 15px 10px rgba(0, 0, 0, 0.2);
    -webkit-transform: rotate(-3deg);
    -moz-transform: rotate(-3deg);
    -o-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    transform: rotate(-3deg);
  }
  div.gform_confirmation_wrapper.gf_confirmation_yellow_gradient:after, div.gform_confirmation_wrapper.gf_confirmation_green_gradient:after {
    -webkit-transform: rotate(3deg);
    -moz-transform: rotate(3deg);
    -o-transform: rotate(3deg);
    -ms-transform: rotate(3deg);
    transform: rotate(3deg);
    right: 10px;
    left: auto;
  }
  .gform_wrapper.gf_simple_horizontal_wrapper.centered_wrapper {
    width: auto;
    margin: 0 auto;
    display: table;
  }
  .gform_wrapper form.gf_simple_horizontal {
    width: calc(100% - 16px);
    margin: 0 auto;
  }
  .gform_wrapper form.gf_simple_horizontal div.gform_body, .gform_wrapper form.gf_simple_horizontal div.gform_footer.top_label {
    display: table-cell;
    vertical-align: middle;
    margin: 0;
    padding: 0;
    position: relative;
  }
  .gform_wrapper form.gf_simple_horizontal div.gform_body {
    width: auto;
    max-width: 75%;
  }
  .gform_wrapper form.gf_simple_horizontal div.ginput_container, .gform_wrapper form.gf_simple_horizontal ul li.gfield {
    margin-top: 0 !important;
  }
  .gform_wrapper form.gf_simple_horizontal div.gform_footer.top_label {
    width: auto;
    max-width: 25%;
    padding: 0;
    margin: 0;
  }
  body:not(rtl) .gform_wrapper form.gf_simple_horizontal div.gform_footer.top_label {
    text-align: left;
  }
  .gform_wrapper form.gf_simple_horizontal div.gform_body ul.top_label {
    display: table;
    width: 100%;
  }
  .gform_wrapper form.gf_simple_horizontal div.gform_body ul.top_label li.gfield {
    display: table-cell;
    padding-right: 1em;
    height: auto;
  }
  .gform_wrapper form.gf_simple_horizontal label.gfield_label, .gform_wrapper form.gf_simple_horizontal .ginput_complex label, .gform_wrapper form.gf_simple_horizontal .gfield_description:not(.validation_message) {
    display: block;
    height: 1px;
    width: 1px;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: -9000px;
  }
  .gform_wrapper form.gf_simple_horizontal div.gform_body ul.top_label.form_sublabel_below li.gfield {
    vertical-align: middle;
  }
  .gform_wrapper form.gf_simple_horizontal div.gform_body ul.top_label.form_sublabel_above li.gfield {
    vertical-align: middle;
  }
  .gform_wrapper form.gf_simple_horizontal div.gform_body ul.top_label li.gfield input.small, .gform_wrapper form.gf_simple_horizontal div.gform_body ul.top_label li.gfield input.medium, .gform_wrapper form.gf_simple_horizontal div.gform_body ul.top_label li.gfield input.large {
    width: 100%;
  }
  .gform_wrapper form.gf_simple_horizontal div.gform_body ul.top_label li.gfield select.small, .gform_wrapper form.gf_simple_horizontal div.gform_body ul.top_label li.gfield select.medium, .gform_wrapper form.gf_simple_horizontal div.gform_body ul.top_label li.gfield select.large {
    width: 100%;
  }
  .gform_wrapper form.gf_simple_horizontal div.gform_footer.top_label input[type="submit"], .gform_wrapper form.gf_simple_horizontal div.gform_footer.top_label input[type="button"], .gform_wrapper form.gf_simple_horizontal div.gform_footer.top_label input[type="image"] {
    height: auto;
  }
  .gform_wrapper form.gf_simple_horizontal .top_label .gfield_error {
    margin-bottom: 0;
  }
  .gform_wrapper form.gf_simple_horizontal ul li.gfield .ginput_container_checkbox ul li, .gform_wrapper form.gf_simple_horizontal ul li.gfield .ginput_container_radio ul li {
    display: inline-block;
    margin-right: 0.5em;
  }
  html[dir="rtl"] .gform_wrapper form.gf_simple_horizontal div.ginput_complex.ginput_container.gf_name_has_2 span {
    width: 48.5%;
  }
  html[dir="rtl"] .gform_wrapper form.gf_simple_horizontal div.ginput_complex.ginput_container.gf_name_has_3 span {
    width: 33%;
  }
  html[dir="rtl"] .gform_wrapper form.gf_simple_horizontal div.ginput_complex.ginput_container.gf_name_has_4 span {
    width: 24.5%;
  }
  html[dir="rtl"] .gform_wrapper form.gf_simple_horizontal div.ginput_complex.ginput_container.gf_name_has_5 span {
    width: 19.5%;
  }
}
/* add equal padding to form for better centering */
body .gform_wrapper.gf_form_center_wrapper {
  padding: 16px 0 16px 16px;
}
.gform_wrapper form {
  max-width: 700px;
  margin: 0 auto;
}
.gform_wrapper ul.gform_fields li {
  display: block;
}
.gfield_visibility_, abbr.required {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
/* ------ Forms ----*/
.login-username label, .login-password label {
  display: block;
  font-weight: bold;
}
.login-username input, .login-password input {
  width: 100%;
}
.input-wrap > input {
  display: block;
  width: 100%;
}
.input-wrap > label {
  display: block;
  font-weight: bold;
  padding: 4px 0 6px;
  font-size: 1.1em;
}
.input-wrap > label > .form-optional {
  font-weight: normal;
}
.gform_wrapper .gfield_checkbox li, .gform_wrapper .gfield_radio li {
  margin-bottom: 4px;
}
.gform_wrapper .top_label .gfield_label {
  display: block;
}
.gform_wrapper .gform_body {
  max-width: 768px;
}
.input-text, input[type="email"], input[type="password"], input[type="search"], input[type="text"], input[type="url"], textarea, input[type="tel"], .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), .modal .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), .gform_wrapper .StripeElement {
  background-color: #fff;
  border: 1px solid #9b9b9b;
  border-radius: 1px;
  padding: 0.5em 0.75em;
  font-size: 1.1em;
  box-shadow: none;
}
@media only screen and (min-width: 641px) {
  .input-text, input[type="email"], input[type="password"], input[type="search"], input[type="text"], input[type="url"], textarea, input[type="tel"], .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), .modal .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]), .gform_wrapper .StripeElement {
    padding: 0.75em 1em;
  }
}
.input-text:hover, input[type="email"]:hover, input[type="password"]:hover, input[type="search"]:hover, input[type="text"]:hover, input[type="url"]:hover, textarea:hover, input[type="tel"]:hover, .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):hover, .modal .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):hover, .gform_wrapper .StripeElement:hover {
  border-color: #4b4b4b;
  box-shadow: 0 1px 4px rgba(100, 100, 100, .125);
}
.input-text:focus, input[type="email"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="text"]:focus, input[type="url"]:focus, textarea:focus, input[type="tel"]:focus, .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus, .modal .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):focus, .gform_wrapper .StripeElement:focus, .input-text:hover:focus, input[type="email"]:hover:focus, input[type="password"]:hover:focus, input[type="search"]:hover:focus, input[type="text"]:hover:focus, input[type="url"]:hover:focus, textarea:hover:focus, input[type="tel"]:hover:focus, .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):hover:focus, .modal .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]):hover:focus, .gform_wrapper .StripeElement:hover:focus {
  border: 1px solid #62c646;
  outline: none;
  background-color: #fff;
}
.input-text.StripeElement--focus, input[type="email"].StripeElement--focus, input[type="password"].StripeElement--focus, input[type="search"].StripeElement--focus, input[type="text"].StripeElement--focus, input[type="url"].StripeElement--focus, textarea.StripeElement--focus, input[type="tel"].StripeElement--focus, .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]).StripeElement--focus, .modal .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]).StripeElement--focus, .gform_wrapper .StripeElement.StripeElement--focus {
  border: 1px solid #62c646;
  outline: none;
  background-color: #fff;
}
select, .modal select.medium.gfield_select, .modal .gform_wrapper .top_label select.medium {
  border: 1px solid #9b9b9b;
  border-radius: 1px;
  padding: 1em 0.25em;
  display: block;
  width: 100%;
}
select:hover, .modal select.medium.gfield_select:hover, .modal .gform_wrapper .top_label select.medium:hover {
  border-color: #4b4b4b;
  box-shadow: 0 1px 4px rgba(100, 100, 100, .125);
}
select:focus, .modal select.medium.gfield_select:focus, .modal .gform_wrapper .top_label select.medium:focus, select:hover:focus, .modal select.medium.gfield_select:hover:focus, .modal .gform_wrapper .top_label select.medium:hover:focus {
  border: 1px solid #62c646;
}
.modal .gform_wrapper ul.gform_fields li.gfield {
  padding-right: 0;
  margin-right: 0;
}
[placeholder]:focus::-webkit-input-placeholder {
  -webkit-transition: color 0.5s;
  -moz-transition: color 0.5s;
  transition: color 0.5s;
  opacity: 1;
}
/*
 .gfield_visibility_visible {
 ::placeholder{
 opacity: 0;
 }
 ::-webkit-input-placeholder{opacity: 0;}
 ::-moz-placeholder{opacity: 0;}
 :-ms-input-placeholder{opacity: 0;}
 :focus::placeholder{opacity: 0;}
 :focus::-webkit-input-placeholder{opacity: 0;}
 :focus::-moz-placeholder{opacity: 0;}
 :focus:-ms-input-placeholder{opacity: 0;}
 }
 */
.hidden_label.gfield_visibility_visible ::placeholder {
  color: #888;
  opacity: 1;
}
.hidden_label.gfield_visibility_visible ::-webkit-input-placeholder {
  color: #888;
  opacity: 1;
}
.hidden_label.gfield_visibility_visible ::-moz-placeholder {
  color: #888;
  opacity: 1;
}
.hidden_label.gfield_visibility_visible :-ms-input-placeholder {
  color: #888;
  opacity: 1;
}
.hidden_label.gfield_visibility_visible :focus::placeholder {
  color: #ccc;
  opacity: 1;
}
.hidden_label.gfield_visibility_visible :focus::-webkit-input-placeholder {
  color: #ccc;
  opacity: 1;
}
.hidden_label.gfield_visibility_visible :focus::-moz-placeholder {
  color: #ccc;
  opacity: 1;
}
.hidden_label.gfield_visibility_visible :focus:-ms-input-placeholder {
  color: #ccc;
  opacity: 1;
}
::placeholder {
  color: #888;
  opacity: 1;
}
::-webkit-input-placeholder {
  color: #888;
  opacity: 1;
}
::-moz-placeholder {
  color: #888;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #888;
  opacity: 1;
}
:focus::placeholder {
  color: #ccc;
  opacity: 1;
}
:focus::-webkit-input-placeholder {
  color: #ccc;
  opacity: 1;
}
:focus::-moz-placeholder {
  color: #ccc;
  opacity: 1;
}
:focus:-ms-input-placeholder {
  color: #ccc;
  opacity: 1;
}
.gform_wrapper {
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
.gform_anchor {
  position: absolute;
  position: absolute;
  top: -220px;
}
.gfield_error input, .gfield_error select, .gfield_error textarea {
  border: 1px solid #da385f;
}
.gfield_error ::placeholder {
  color: rgba(0, 0, 0, 0.2);
}
.gfield_error ::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.2);
}
.gfield_error ::-moz-placeholder {
  color: rgba(0, 0, 0, 0.2);
}
.gfield_error :-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.2);
}
.gfield_error :focus::placeholder {
  color: rgba(0, 0, 0, 0.1);
}
.gfield_error :focus::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.1);
}
.gfield_error :focus::-moz-placeholder {
  color: rgba(0, 0, 0, 0.1);
}
.gfield_error :focus:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.1);
}
.notice-error {
  color: #da385f;
  padding: 4px 0 6px;
  font-size: 0.8em;
}
.gform_wrapper .validation_message {
  color: #da385f;
}
.gform_wrapper li.gfield_error input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]), .gform_wrapper li.gfield_error textarea {
  border: 1px solid #da385f;
}
.gform_wrapper li.gfield.gfield_error, .gform_wrapper li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
  background-color: transparent;
  margin-bottom: 6px !important;
  border-top: 0;
  border-bottom: 0;
  padding-bottom: 0;
  padding-top: 0;
  box-sizing: border-box;
}
.gform_wrapper div.validation_error {
  background-color: #f4e9e6;
  color: #da385f;
  font-size: 1em;
  font-weight: 700;
  margin-bottom: 25px;
  border: 2px solid #da385f;
  border-radius: 1px;
  padding: 8px 12px;
  clear: both;
  width: 100%;
  text-align: left;
  max-width: 768px;
  box-sizing: border-box;
}
.gform_wrapper.gform_validation_error .gform_body ul > li.gfield.gfield_error:not(.gf_left_half):not(.gf_right_half) {
  max-width: 100% !important;
}
.gform_wrapper .gfield_error .gfield_label {
  color: #da385f;
}
.gform_wrapper ul.gform_fields li.gfield {
  padding-right: 0;
}
@media only screen and (min-width: 641px) {
  .gform_wrapper ul.gform_fields li.gfield {
    padding-right: 0;
  }
}
.gform_wrapper.gf_browser_chrome .gfield_checkbox li input, .gform_wrapper.gf_browser_chrome .gfield_checkbox li input[type=checkbox], .gform_wrapper.gf_browser_chrome .gfield_radio li input[type=radio] {
  margin: 6px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 64px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 60px;
}
.select2-container .select2-selection--single {
  height: auto;
  min-height: 60px;
}
/* -------- Checkout ----- */
.gform_wrapper ul.gform_fields li.gfield {
  margin: 12px 0;
}
@media only screen and (min-width: 768px) {
  .gform_wrapper ul.gform_fields li.gfield {
    margin: 18px 0;
  }
}
.gform_wrapper .gf_progressbar_percentage {
  background: repeating-linear-gradient(-45deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, 0.15) 10px, rgba(255, 255, 255, 0.2) 10px, rgba(255, 255, 255, 0.05) 20px), linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2));
}
.gform_wrapper .gf_progressbar:after {
  height: 6px;
  margin-top: 0;
  background-color: transparent;
  box-shadow: none;
  box-shadow: inset 0px 1px 9px -4px rgba(0, 0, 0, 0.52);
  border-top-left-radius: 1px;
  border-bottom-left-radius: 1px;
  border-top-right-radius: 1px;
  border-bottom-right-radius: 1px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
@media only screen and (min-width: 768px) {
  .gform_wrapper .gf_progressbar:after {
    box-shadow: inset 0px 1px 9px -4px rgba(0, 0, 0, 0.52);
    height: 6px;
    margin-top: 0;
  }
}
.gform_wrapper .gf_progressbar_percentage {
  background-color: #da385f;
  border-radius: 1px;
}
.gform_wrapper .gf_progressbar {
  border-radius: 1px;
  background-color: #f0f0f0;
  padding: 1px;
  box-shadow: none;
  position: relative;
}
@media only screen and (min-width: 641px) {
  .gform_wrapper .gf_progressbar {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .gform_wrapper .gf_progressbar {
    box-shadow: none;
  }
}
.gform_wrapper .gf_progressbar_percentage span {
  text-shadow: none;
  color: #222;
  position: relative;
  bottom: -10px;
  display: none;
}
.gform_wrapper .gf_progressbar_percentage {
  height: 6px;
}
.gform_wrapper .gf_progressbar_wrapper {
  margin-top: 25px;
}
@media only screen and (min-width: 768px) {
  .gform_wrapper .gf_progressbar_wrapper {
    margin-top: 40px;
  }
}
.gform_wrapper .gf_progressbar_wrapper h3.gf_progressbar_title {
  margin-left: 0 !important;
  color: #666;
  text-transform: uppercase;
}
.gform_wrapper .gf_progressbar_wrapper h3.gf_progressbar_title {
  filter: none;
  opacity: 1;
}
.gform_wrapper .top_label .gfield_label {
  font-size: 1.1em;
  font-weight: bold;
  line-height: 1.2;
  text-transform: none;
}
@media only screen and (min-width: 768px) {
  .gform_wrapper .top_label .gfield_label {
    font-size: 1.1em;
  }
}
.control-name .name_first > label, .control-name .name_last > label {
  color: #404040 !important;
  font-size: 1.1em !important;
  font-weight: bold !important;
  line-height: 1.2 !important;
  text-transform: none !important;
  letter-spacing: normal !important;
}
@media only screen and (min-width: 768px) {
  .control-name .name_first > label, .control-name .name_last > label {
    font-size: 1.1em !important;
  }
}
.gform_wrapper .description, .gform_wrapper .gfield_description, .gform_wrapper .gsection_description {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .gform_wrapper .description, .gform_wrapper .gfield_description, .gform_wrapper .gsection_description {
    font-size: 16px;
    margin-bottom: 0;
  }
}
.gform_wrapper .field_sublabel_above .description, .gform_wrapper .field_sublabel_above .gfield_description, .gform_wrapper .field_sublabel_above .gsection_description {
  margin-top: 0;
}
.gform_wrapper ul.gfield_radio li label, .gform_wrapper ul.gfield_checkbox li label {
  font-size: 15px;
  line-height: 1.2;
}
@media only screen and (min-width: 768px) {
  .gform_wrapper ul.gfield_radio li label, .gform_wrapper ul.gfield_checkbox li label {
    font-size: 17px;
  }
}
button.gform_next_button, input[type="button"].gform_next_button, input[type="reset"].gform_next_button, input[type="submit"].gform_next_button, .content-signup .gform_wrapper .gform_page_footer .button.gform_next_button, .content-signup .gform_wrapper .gform_page_footer .button.gform_button {
  background-color: #da385f;
  box-shadow: 0 2px 8px -3px rgba(0, 0, 0, 0.2);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  color: #fff;
  padding: 10px 20px;
  font-size: 18px !important;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  button.gform_next_button, input[type="button"].gform_next_button, input[type="reset"].gform_next_button, input[type="submit"].gform_next_button, .content-signup .gform_wrapper .gform_page_footer .button.gform_next_button, .content-signup .gform_wrapper .gform_page_footer .button.gform_button {
    padding: 20px 30px;
    font-size: 24px !important;
  }
}
button.gform_next_button:hover, input[type="button"].gform_next_button:hover, input[type="reset"].gform_next_button:hover, input[type="submit"].gform_next_button:hover, .content-signup .gform_wrapper .gform_page_footer .button.gform_next_button:hover, .content-signup .gform_wrapper .gform_page_footer .button.gform_button:hover {
  box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.4);
}
.gform_wrapper .gform_page_footer .button.gform_previous_button, .gform_previous_button {
  cursor: pointer;
  background-color: #f5f5f5;
  border-color: #dedede;
}
.gform_wrapper .ginput_complex .ginput_left, .gform_wrapper .ginput_complex .ginput_right {
  width: 100%;
}
@media only screen and (min-width: 641px) {
  .gform_wrapper .ginput_complex .ginput_left {
    padding-right: 0;
    margin: 0;
  }
}
.gform_wrapper .ginput_container_password .ginput_right {
  padding-left: 0;
  margin: 0;
}
.gform_wrapper .top_label input.medium, .gform_wrapper .top_label select.medium {
  width: 100%;
}
.gform_wrapper .top_label input.medium, .gform_wrapper .top_label select.medium, .gform_wrapper.gform_validation_error .top_label input.medium, .gform_wrapper.gform_validation_error .top_label select.medium {
  width: 100%;
}
@media only screen and (min-width: 641px) {
  .gform_wrapper .top_label input.medium, .gform_wrapper .top_label select.medium, .gform_wrapper.gform_validation_error .top_label input.medium, .gform_wrapper.gform_validation_error .top_label select.medium {
    width: 100%;
  }
}
.gform_wrapper .gform_page_footer {
  text-align: center;
}
.gform_wrapper .gform_page_footer {
  border-top: 0;
}
.gform_wrapper.gf_browser_chrome ul.gform_fields li.gfield div.ginput_complex span.ginput_left select, .gform_wrapper.gf_browser_chrome ul.gform_fields li.gfield div.ginput_complex span.ginput_right select, .gform_wrapper.gf_browser_chrome ul.gform_fields li.gfield select {
  padding: 17px 5px;
  margin: 0;
}
.gform_wrapper .field_sublabel_above .ginput_complex.ginput_container label, .gform_wrapper .field_sublabel_above div[class*="gfield_time_"].ginput_container label {
  margin: 5px 0 6px 1px;
  text-transform: uppercase;
  color: #777;
  letter-spacing: 1px;
  font-size: 14px;
}
.gform_wrapper #gf_coupon_info .gf_coupon_item td {
  border-bottom: 0;
}
.gform_wrapper #gf_coupon_info table {
  background-color: #efefef;
  border-radius: 32px;
  padding: 0 10px;
}
.gform_wrapper #gf_coupon_info .gf_coupon_item .gf_coupon_name_container {
  padding: 3px 16px 3px 4px;
}
.gform_wrapper #gf_coupon_info .gf_coupon_item .gf_coupon_name_container span.gf_coupon_name {
  margin-bottom: 0;
}
.gform_wrapper #gf_coupon_info .gf_coupon_item .gf_coupon_discount_container {
  padding: 3px 2px 3px 0;
}
.gform_wrapper #gf_coupon_info .gf_coupon_item .gf_coupon_discount_container span.gf_coupon_discount {
  margin-bottom: 0;
}
.gform_wrapper input.gf_coupon_code {
  width: 75%;
}
@media only screen and (min-width: 641px) {
  .gform_wrapper input.gf_coupon_code {
    width: auto;
    min-width: 250px;
  }
}
.control-coupon {
  margin-bottom: 30px !important;
}
@media only screen and (min-width: 641px) {
  .control-coupon {
    margin-bottom: 38px !important;
  }
}
.gform_wrapper input#gf_coupon_button.button {
  cursor: pointer;
  width: 22%;
  margin-left: 3%;
  min-height: 55px;
  background-color: #f5f5f5;
  border-color: #bababa;
  color: #777;
  font-size: 14px;
  border-radius: 1px;
}
.gform_wrapper input#gf_coupon_button.button:hover {
  background-color: #efefef;
  border-color: #4b4b4b;
}
@media only screen and (min-width: 641px) {
  .gform_wrapper input#gf_coupon_button.button {
    width: auto;
    min-width: 75px;
    margin-left: 10px;
  }
}
.ginput_container_name {
  display: flex;
  justify-content: space-between;
}
.top_label div.ginput_complex.ginput_container.gf_name_has_1, .top_label div.ginput_complex.ginput_container.gf_name_has_2, .top_label div.ginput_complex.ginput_container.gf_name_has_3 {
  width: 100%;
}
.gform_wrapper.gf_browser_chrome ul.gform_fields li.gfield span.name_first, .gform_wrapper.gf_browser_chrome ul.gform_fields li.gfield span.name_middle, .gform_wrapper.gf_browser_chrome ul.gform_fields li.gfield span.name_last {
  width: 49%;
  padding-right: 0;
  padding-top: 0;
  margin-right: 0;
  box-sizing: border-box;
}
body .gform_wrapper .top_label div.ginput_container {
  margin-top: 6px;
}
body .gform_wrapper .top_label div.ginput_container.ginput_container_password {
  margin-top: 0;
}
body .gform_wrapper .top_label div.ginput_container.ginput_container_password > span:first-child > label {
  margin-top: 0;
}
.gform_wrapper .top_label input.medium, .gform_wrapper .top_label select.medium {
  width: 100%;
}
@media only screen and (min-width: 641px) {
  .gform_wrapper .top_label input.medium, .gform_wrapper .top_label select.medium {
    width: 100%;
  }
}
.gform_wrapper ul.gform_fields li.gfield.control-terms {
  margin-top: 25px;
}
@media only screen and (min-width: 641px) {
  .gform_wrapper ul.gform_fields li.gfield.control-terms {
    margin-top: 35px;
  }
  .gform_wrapper ul.gform_fields li.gfield.control-terms label {
    font-size: 19px;
    margin-left: 3px;
    margin-top: 2px;
  }
}
.gform_wrapper ul.gform_fields li.gfield.control-terms input {
  vertical-align: top;
}
.gform_wrapper .control-terms ul.gfield_checkbox li input[type="checkbox"]:checked + label {
  font-weight: normal;
}
.gform_wrapper .control-terms input {
  margin: 4px 20px 5px 5px;
}
.gfield_required {
  display: none;
}
.gform_wrapper .gfield_error .ginput_complex .ginput_left, .gform_wrapper .gfield_error .ginput_complex .ginput_right {
  width: 100%;
}
@media only screen and (min-width: 641px) {
  .gform_wrapper .gfield_error .ginput_complex .ginput_left, .gform_wrapper .gfield_error .ginput_complex .ginput_right {
    width: 100%;
  }
}
.gform_wrapper li.gfield.gfield_error.gfield_contains_required label.gfield_label, .gform_wrapper li.gfield.gfield_error.gfield_contains_required div.ginput_container {
  margin-top: 6px;
}
.control-optional > label:after {
  display: inline;
  content: ' (optional)';
  font-weight: normal;
  color: #777;
}
/* --------------------- STRIPE --------------------*/
.gform_wrapper .StripeElement {
  height: 56px;
  padding: 18px 10px;
  border-radius: 2px;
  border: 1px solid #9b9b9b;
  max-width: 460px;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  transition: 0.2s background-color linear;
  background-color: #fff;
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.2);
}
.home .header {
  background-color: transparent;
  box-shadow: none;
}
.home .header.white {
  background-color: #fff;
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.2);
}
.header .logo .logo-sun path {
  fill: #00a6e7 !important;
}
.header .logo .logo-sun line {
  stroke: #00a6e7 !important;
}
.home .header .logo .logo-sun path {
  fill: #fff !important;
}
.home .header .logo .logo-sun line {
  stroke: #fff !important;
}
.home .header.white .logo .logo-sun path {
  fill: #00a6e7 !important;
}
.home .header.white .logo .logo-sun line {
  stroke: #00a6e7 !important;
}
.admin-bar .header {
  top: 32px;
}
.header-content {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 0;
}
.logo {
  width: 220px;
  height: 54px;
}
.logo-link {
  line-height: 0;
}
@media only screen and (min-width: 768px) {
  .logo {
    width: 252px;
    height: 54px;
  }
}
.logo-link {
  display: inline-block;
  padding: 6px 2px 6px 6px;
}
@media only screen and (min-width: 768px) {
  .logo-link {
    padding: 10px;
  }
}
.menu {
  margin: 0;
  padding: 0;
  display: flex;
}
.menu > li {
  padding: 0;
  margin: 0;
}
.menu > li > a {
  padding: 10px 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  display: inline-block;
}
@media only screen and (min-width: 768px) {
  .menu > li > a {
    font-size: 16px;
  }
}
.menu > li.menu-item-120 > a {
  margin-left: 10px;
  padding: 8px 5px;
  font-size: 13px;
  margin-right: 5px;
  display: inline-block;
  border-radius: 2px;
}
@media only screen and (min-width: 360px) {
  .menu > li.menu-item-120 > a {
    font-size: 14px;
    padding: 8px 9px;
  }
}
@media only screen and (min-width: 768px) {
  .menu > li.menu-item-120 > a {
    font-size: 16px;
    padding: 8px 14px;
  }
}
.nav-main .menu-item {
  display: none;
}
.nav-main .menu-item.menu-item-120 {
  display: list-item;
}
@media only screen and (min-width: 768px) {
  .nav-main .menu-item {
    display: list-item;
  }
}
/* ------- BT Logo Centered Only Header ------ */
.header-plain {
  position: static;
  background: transparent;
  box-shadow: none;
}
.header-plain .header-content {
  justify-content: center;
}
.header-plain .logo-link {
  display: inline-block;
  padding: 8px 6px 8px 4px;
}
@media only screen and (min-width: 768px) {
  .header-plain .logo-link {
    padding: 15px 15px 12px;
  }
}
.site-footer {
  background: #312644;
  text-align: center;
  padding: 40px 0 80px;
}
.site-footer a {
  color: #fff;
  opacity: 0.8;
  text-decoration: none;
}
.site-footer a:hover {
  opacity: 1;
}
footer .menu {
  justify-content: center;
  flex-wrap: wrap;
}
.home .site-content {
  padding-top: 0;
}
.home .entry-content {
  padding-left: 0;
  padding-right: 0;
}
ul.feature-list {
  list-style-type: none;
}
.row-sessions {
  margin: 1em 0;
}
@media only screen and (min-width: 768px) {
  .row-sessions {
    margin: 2em 0;
  }
}
.row-sessions .md-col-1-3 {
  width: 50%;
}
@media only screen and (min-width: 768px) {
  .row-sessions .md-col-1-3 {
    width: 33.3%;
  }
}
.title-earlybird {
  text-transform: uppercase;
  color: #da385f;
}
.session {
  margin: 5px;
  padding: 15px 5px;
  border-radius: 2px;
  box-shadow: 0 2px 8px -3px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.2);
  transition: 0.1s border;
  position: relative;
}
.session:hover {
  border: 1px solid rgba(0, 0, 0, 0.4);
  box-shadow: 0 2px 10px -3px rgba(0, 0, 0, 0.3);
}
.session .btn {
  margin: 8px 0;
}
@media only screen and (min-width: 768px) {
  .session {
    padding: 25px 15px;
  }
}
.session-pretitle {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  color: #999;
  margin: 0;
}
.session-title {
  font-family: 'Cabrito', Georgia, serif;
  font-weight: 700;
  font-size: 24px;
  margin: 0.2em 0;
}
@media only screen and (min-width: 768px) {
  .session-title {
    font-size: 34px;
    margin: 0.4em 0;
  }
}
.session-price {
  color: #da385f;
  font-family: 'Cabrito', Georgia, serif;
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 5px;
}
@media only screen and (min-width: 768px) {
  .session-price {
    font-size: 28px;
    margin: 0 0 5px;
  }
}
.session-price-discount, .session-price-discounted {
  font-size: 22px;
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  .session-price-discount, .session-price-discounted {
    font-size: 28px;
    font-weight: bold;
    margin: 0 0 15px;
  }
}
.session-period {
  font-size: 20px;
  margin-bottom: 0.7em;
}
.btn, .gform_button.button, .modal .gform_wrapper .gform_footer input.button, li.menu-item-120 > a {
  background-color: #da385f;
  box-shadow: 0 2px 8px -3px rgba(0, 0, 0, 0.2);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  color: #fff;
  padding: 5px 10px;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  font-weight: bold;
}
.btn:hover, .gform_button.button:hover, .modal .gform_wrapper .gform_footer input.button:hover, li.menu-item-120 > a:hover {
  box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.4);
  color: #fff;
}
@media only screen and (min-width: 768px) {
  .btn, .gform_button.button, .modal .gform_wrapper .gform_footer input.button, li.menu-item-120 > a {
    padding: 14px 20px;
  }
}
@media only screen and (min-width: 768px) {
  .modal .modal .gform_wrapper .gform_footer input.button {
    font-size: 18px;
  }
}
.modal .gform_button.button, .modal .gform_wrapper .gform_footer input.button {
  display: block;
  width: 100%;
}
.modal-reserve {
  max-width: 500px;
}
.modal-header-sun {
  background-color: #f7d56b;
  height: 100px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  overflow: hidden;
}
.modal-header-sun .svg-icon.bg-sun {
  height: 300px;
  width: 300px;
  bottom: -152px;
}
.modal-close {
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  border: none;
  padding: 1em 1.2em;
  z-index: 9999;
}
.modal-close svg path {
  fill: #787d8b;
}
.modal-close:hover svg path {
  fill: #292c34;
}
@media only screen and (min-width: 768px) {
  .home .entry-content .section-signup h2 {
    max-width: 560px;
  }
}
@media only screen and (min-width: 992px) {
  .home .entry-content .section-signup h2 {
    max-width: 560px;
  }
}
.txt-guarantee {
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 1em 0 1.5em;
  font-weight: bold;
}
.txt-guarantee > a {
  text-decoration: none;
}
@media only screen and (min-width: 768px) {
  .txt-guarantee {
    font-size: 1.4em;
  }
}
.entry-meta, .entry-footer {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
/*
 #wpcomm .wc_social_plugin_wrapper .wp-social-login-connect-with_by_the_champ {
 display: none;
 }
 #wpcomm .wc_social_plugin_wrapper .wp-social-login-provider-list:before {
 visibility: visible;
 display: block;
 content: 'Log In with:';
 text-transform: uppercase;
 margin-right: 10px;
 padding: 2px 2px 5px 0;
 float: left;
 }
 */
h2 .pretitle {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: normal;
  color: #777;
}
@media only screen and (min-width: 768px) {
  h2 .pretitle {
    font-size: 17px;
  }
}
h2 .title {
  display: block;
}
.pull-right-blog-image .entry-content .pull-right-blog-image {
  float: none;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 6px;
}
@media only screen and (min-width: 768px) {
  .pull-right-blog-image .entry-content .pull-right-blog-image {
    margin-left: 0;
    margin-right: 15px;
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 1180px) {
  .pull-right-blog-image .entry-content .pull-right-blog-image {
    margin-right: 20px;
    margin-bottom: 20px;
  }
}
.pull-right-blog-image, .entry-content .pull-right-blog-image {
  float: none;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 6px;
}
@media only screen and (min-width: 768px) {
  .pull-right-blog-image, .entry-content .pull-right-blog-image {
    float: right;
    margin-right: 0;
    margin-left: 15px;
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 1180px) {
  .pull-right-blog-image, .entry-content .pull-right-blog-image {
    margin-left: 20px;
    margin-bottom: 20px;
    padding: 5px 15px;
  }
}
@media only screen and (min-width: 768px) {
  .entry-content .blog-pin {
    max-width: 290px;
  }
}
@media only screen and (min-width: 1180px) {
  .entry-content .blog-pin {
    max-width: 360px;
  }
}
.comments-area {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}
@media only screen and (min-width: 768px) {
  .comments-area {
    padding-left: 0;
    padding-right: 0;
  }
}
.post-thumbnail {
  display: flex;
  align-items: center;
  max-height: 55vh;
  overflow: hidden;
}
.entry-footer {
  padding-left: 10px;
  padding-right: 10px;
}
@media only screen and (min-width: 700px) {
  .entry-footer {
    padding-left: 0;
    padding-right: 0;
  }
}
.cat-links, .tags-links {
  margin-right: 10px;
}
.page .site-content {
  min-height: 80vh;
}
.home .site-content {
  padding-top: 0;
}
@media only screen and (min-width: 768px) {
  .home .site-content {
    padding-top: 0;
  }
}
.entry-header {
  padding-top: 1em;
  padding-left: 10px;
  padding-right: 10px;
}
@media only screen and (min-width: 768px) {
  .entry-header {
    padding-top: 4em;
  }
  .entry-header .entry-meta {
    text-align: center;
  }
}
.entry-header h1 {
  text-align: left;
}
@media only screen and (min-width: 768px) {
  .entry-header h1 {
    text-align: center;
  }
}
.site-main .comment-navigation, .site-main .posts-navigation, .site-main .post-navigation {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.entry-content {
  padding-left: 10px;
  padding-right: 10px;
}
.entry-content p, .entry-content ul, .entry-content ol, .entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6, .entry-content nav {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
.entry-content p, .entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content ul, .entry-content ol, .entry-content nav {
  max-width: 700px;
}
.entry-content > section, .entry-content > div {
  padding-left: 10px;
  padding-right: 10px;
}
.entry-content h2 {
  font-size: 20px;
}
@media only screen and (min-width: 768px) {
  .entry-content h2 {
    font-size: 24px;
  }
}
.entry-content .feature-list {
  max-width: 1120px;
}
section p, section ul, section h2, section h3, section h4, section h5 {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
.img-student-results {
  max-width: 780px;
  margin: 0 auto;
}
.cover-image-basic {
  background-size: cover;
  background-position: center;
  margin: 3em 0;
}
@media only screen and (min-width: 768px) {
  .content-area--srp {
    margin-left: 210px;
  }
}
.srp-lesson .entry-header {
  max-width: none;
  margin: 0;
  text-align: left;
  padding: 40px 0 20px;
  border-bottom: 1px solid #efefef;
  box-shadow: inset 0 -5px 10px -10px rgba(0, 0, 0, 0.2);
}
.srp-lesson .entry-header h1 {
  text-align: left;
  margin-left: 12px;
  margin-right: 12px;
}
@media only screen and (min-width: 768px) {
  .srp-lesson .entry-header h1 {
    margin-left: 40px;
    margin-right: 40px;
  }
}
.srp-lesson .entry-title {
  display: flex;
  justify-content: space-between;
}
.srp-lesson .entry-title .next-link {
  padding: 15px;
}
.srp-lesson .entry-content {
  padding: 0;
  margin: 0;
}
.srp-lesson .entry-content h2 {
  font-size: 24px;
  font-weight: normal;
}
@media only screen and (min-width: 768px) {
  .srp-lesson .entry-content h2 {
    font-size: 32px;
  }
}
.srp-lesson div {
  padding: 0;
  max-width: none;
}
.name-child {
  text-align: center;
}
a .name-child-text {
  color: #222;
  font-weight: bold;
  text-decoration: none;
}
.pdf-text-link {
  display: inline;
  text-decoration: none;
}
.pdf-text-link .title-text {
  text-decoration: underline;
}
.emoji {
  font-size: 130%;
  vertical-align: middle;
}
.learndash_content > p, .learndash_content > ul, .learndash_content > ol, .learndash_content > h2, .learndash_content > h3, .learndash_content > h4, .learndash_content > h5, .learndash_content > div {
  max-width: none;
  margin-left: 12px;
  margin-right: 12px;
}
@media only screen and (min-width: 768px) {
  .learndash_content > p, .learndash_content > ul, .learndash_content > ol, .learndash_content > h2, .learndash_content > h3, .learndash_content > h4, .learndash_content > h5, .learndash_content > div {
    margin-left: 40px;
    margin-right: 40px;
  }
}
.learndash_content .srp-plyr-container {
  margin-left: 0;
  margin-right: 0;
}
@media only screen and (min-width: 768px) {
  .learndash_content .srp-plyr-container {
    margin-left: 0;
    margin-right: 0;
  }
}
.learndash_content > ol {
  padding-left: 12px;
}
.learndash_content > ol > li > ol {
  list-style-type: lower-alpha;
  padding-left: 12px;
}
.learndash_content p, .learndash_content ul, .learndash_content ol, .learndash_content h2, .learndash_content h3, .learndash_content h4, .learndash_content h5, .learndash_content div {
  max-width: none;
}
.learndash_content > .listwrap--lesson-overview {
  max-width: 800px;
}
.listwrap--lesson-overview {
  border-radius: 8px;
  border: 1px solid #efefef;
  box-shadow: 0 2px 26px -4px rgba(0, 0, 0, 0.1);
  margin: 10px 0;
}
.listwrap--lesson-overview h3 {
  background-color: #d4dee6;
  color: #4d6573;
  padding: 15px 15px 12px;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  margin-bottom: 0;
  border-radius: 8px 8px 0 0;
  border-bottom: 1px solid #efefef;
}
.listwrap--lesson-overview ol {
  max-width: none;
}
.listwrap--lesson-overview > ol {
  padding: 10px 40px;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .listwrap--lesson-overview > ol {
    padding: 15px 50px;
  }
}
.listwrap--lesson-overview > ol > li {
  margin: 10px 0;
}
@media only screen and (min-width: 768px) {
  .listwrap--lesson-overview > ol > li {
    margin: 15px 0;
  }
}
.listwrap--lesson-overview > ol > li > ol {
  list-style-type: lower-alpha;
  padding-left: 20px;
  margin: 5px 0 0;
}
.listwrap--lesson-overview > ol > li > ol li {
  margin: 2px 0;
}
.listwrap--printouts {
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
  background-color: #f5f5f8;
  padding: 20px;
  margin: 15px 0 !important;
}
@media only screen and (min-width: 768px) {
  .listwrap--printouts {
    margin: 25px 0 !important;
  }
}
.listwrap--printouts h4 {
  margin-left: 10px;
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}
.listwrap--printouts .listwrap--header {
  margin-left: 10px;
}
.listwrap--printouts .inner {
  padding: 10px 10px;
}
@media only screen and (min-width: 768px) {
  .listwrap--printouts .inner {
    padding: 10px 30px;
  }
}
.listwrap--printouts .row--group {
  display: flex;
  flex-wrap: wrap;
}
.listwrap--printouts .group--print {
  margin-bottom: 10px;
  margin-right: 10px;
}
.listwrap--printouts .group--print-items {
  display: flex;
  flex-wrap: wrap;
}
.listwrap--printouts, .listwrap--lesson-overview {
  margin: 10px 0;
}
.listwrap--printouts h3, .listwrap--lesson-overview h3 {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px;
}
/*--------------------------------------------------------------
 # FOR header-style.css
 --------------------------------------------------------------*/
.header-content--lesson {
  max-width: none;
  height: 66px;
}
@media only screen and (min-width: 768px) {
  .header-content--lesson {
    height: 74px;
  }
}
.subscribed-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 2px;
}
@media only screen and (min-width: 768px) {
  .subscribed-logo-link {
    padding: 4px 10px 4px 10px;
  }
}
.header-title--lesson {
  font-family: 'Cabrito', Georgia, serif;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  color: #222;
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
}
@media only screen and (min-width: 768px) {
  .header-title--lesson {
    font-size: 24px;
    margin-left: 14px;
  }
}
.ic-program--lesson {
  width: 48px !important;
  height: 48px !important;
  vertical-align: middle;
  border-radius: 8px;
}
.account {
  align-items: center;
  display: flex;
  position: relative;
  height: 100%;
}
.account-link {
  padding: 8px 15px;
}
.arrow-down {
  display: inline-block;
}
.account-dropdown {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #fff;
  box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.2);
}
.account-dropdown.show {
  display: block;
  position: absolute;
  top: 66px;
}
@media only screen and (max-width: 768px) {
  .account-dropdown.show {
    top: 76px;
  }
}
.account-dropdown li {
  margin: 0;
}
.account-dropdown a {
  padding: 4px 15px;
}
/*--------------------------------------------------------------
 # FOR sidebar-style.css
 --------------------------------------------------------------*/
#sidebar-toggle {
  position: absolute;
  right: -20px;
}
#lesson-sidebar-container {
  background: #191a30;
  position: fixed;
  left: 0;
  bottom: 0;
  transform: translateX(-100%);
  width: 210px;
}
@media only screen and (min-width: 768px) {
  #lesson-sidebar-container {
    top: 74px;
    transform: translateX(0);
  }
}
#lesson-sidebar-container.open {
  transform: translateX(0);
}
.admin-bar #lesson-sidebar-container {
  top: 106px;
}
.sidebar-lesson {
  position: static;
  transform: none;
  z-index: inherit;
  height: auto;
  transition: 1s;
  background: #191a30;
  /*
   &.open{
   transform: translateX(0);
   }
   */
}
.sidebar-lesson .main-link a {
  display: block;
  margin: 10px 10px 0 10px;
  padding: 5px 0 5px 10px;
  border-radius: 3px;
}
.sidebar-lesson .main-link.active a {
  font-weight: bold;
  background: #d83b60;
}
.sidebar-lesson .schedule-dropdowns {
  margin-top: 20px;
}
.sidebar-lesson a {
  color: #fff;
}
.sidebar-lesson li {
  position: relative;
  margin: 0;
}
.sidebar-lesson li .arrow-right {
  position: absolute;
  left: 12px;
  top: 11px;
  transition: 0.3s;
}
.sidebar-lesson li .arrow-right.open {
  transform: rotate(90deg);
}
.sidebar-lesson li .arrow-right.inactive {
  border-left-color: #c5c5c5;
}
@media only screen and (max-width: 768px) {
  .sidebar-lesson {
    position: fixed;
    z-index: 100;
    height: 100vh;
  }
}
.lessons-list--days {
  padding: 5px 0;
}
.lessons-link--week, .lessons-link--day, .lessons-link--week_disabled, .lessons-link--day_disabled {
  cursor: pointer;
  padding: 8px 8px 8px 30px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  display: block;
}
.lessons-link--week.inactive, .lessons-link--day.inactive, .lessons-link--week_disabled.inactive, .lessons-link--day_disabled.inactive {
  color: #c5c5c5;
  cursor: auto;
}
.lessons-link--week:hover, .lessons-link--day:hover, .lessons-link--week_disabled:hover, .lessons-link--day_disabled:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}
.lessons-link--week_disabled:hover {
  background-color: transparent;
}
.lessons-link--day {
  text-transform: none;
}
.lessons-link--day_disabled {
  color: #b2adb7;
  cursor: default;
  text-transform: none;
}
.lessons-link--day_disabled:hover {
  background-color: transparent;
}
.weekly-dropdown-container {
  display: none;
  background: #4f4e6f;
}
.weekly-dropdown-container ul {
  margin: 0;
  list-style: none;
}
.open .weekly-dropdown-container {
  display: block;
}
.day-link {
  display: block;
  padding: 4px 8px 4px 40px;
}
/*--------------------------------------------------------------
 # FOR plyr videos
 --------------------------------------------------------------*/
.srp-plyr-container {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  background: #f5f5f9;
}
.srp-lesson .plyr__video-embed, .srp-lesson .plyr__video-wrapper--fixed-ratio {
  padding-bottom: 56.25%;
}
.video-wrap-aspect {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
  padding-top: 56.25%;
}
.video-wrap-aspect.aspect-16-9 {
  padding-top: 56.25%;
}
.video-wrap-aspect .video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}
.srp-lesson .video-wrap-aspect {
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
}
/*--------------------------------------------------------------
 # Icons
 --------------------------------------------------------------*/
.arrow-right {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #fff;
  margin: 3px;
}
.arrow-down {
  width: 0;
  height: 0;
  border-top: 5px solid #000;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  margin: 3px;
}
/*--------------------------------------------------------------
 # FOR pdf viewer
 --------------------------------------------------------------*/
.pdf-thumbnail-container {
  margin: 10px;
  display: inline-block;
  text-align: center;
}
.pdf-thumbnail-container .pdf-image {
  display: block;
}
.pdf-thumbnail-container a {
  display: block;
  font-size: 15.5px;
  text-decoration: none;
}
.pdf-thumbnail-container a .pdf-title > span {
  font-size: 11px;
  text-transform: uppercase;
  display: block;
  text-decoration: none;
  color: #999;
  letter-spacing: 0.5px;
}
.pdf-thumbnail-container a:hover .pdf-title > span {
  color: #666;
}
.pdf-thumbnail-container img {
  max-width: 180px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid #e3e3e3;
}
@media only screen and (min-width: 768px) {
  .landscape img {
    max-height: 230px;
    width: auto;
    max-width: none;
  }
}
#learndash_next_prev_link {
  text-align: center;
}
.site-main.course-main {
  padding: 0;
}
.site-main.course-main h2, .site-main.course-main h4 {
  margin: 0;
}
.site-main.course-main #home-sidebar-container {
  background: #191a30;
}
.site-main.course-main #progress-sidebar {
  position: static;
  transform: none;
  z-index: inherit;
  height: auto;
}
.site-main.course-main #progress-sidebar #sidebar-toggle {
  display: none;
}
.site-main.course-main .entry-header {
  padding: 0;
}
.site-main.course-main .entry-title {
  display: none;
}
.site-main.course-main .title {
  float: left;
}
.site-main.course-main .subheader {
  padding: 20px 25px;
}
.site-main.course-main .next-lesson {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.site-main.course-main .next-lesson a {
  color: #d83b60;
  margin-right: 15px;
  font-size: 20px;
}
.site-main.course-main .next-lesson .arrow-right {
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 13px solid #d83b60;
}
/* ---- Sign Up ------ */
.page-template-single-signup {
  background-color: #ebedef;
}
.page-template-single-signup .site-content {
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .page-template-single-signup .site-content {
    padding: 0;
  }
}
.page-template-single-signup .modal-header-sun {
  display: none;
}
@media only screen and (min-width: 641px) {
  .page-template-single-signup .modal-header-sun {
    display: flex;
  }
}
.site-content-signup .entry-content {
  padding: 0;
}
.site-content-signup .entry-content > section, .site-content-signup .entry-content > div {
  padding: 0;
}
.content-signup {
  max-width: 750px;
  border-radius: 2px;
  box-shadow: 0 4px 50px -10px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  margin: 0 auto 25px;
}
.content-signup .entry-content {
  margin-top: 0;
  padding: 20px;
}
@media only screen and (min-width: 641px) {
  .content-signup .entry-content {
    padding: 40px 50px;
  }
}
.content-signup .gform_wrapper {
  margin-top: 0;
}
.content-signup .gform_wrapper .gform_page_footer {
  border-top: 0;
  display: flex;
  flex-wrap: wrap;
}
.content-signup .gform_wrapper .gform_page_footer .button.gform_previous_button, .content-signup .gform_previous_button {
  order: 1;
  width: 100%;
  margin: 5px 0;
}
.content-signup .gform_wrapper .gform_page_footer .button.gform_next_button, .content-signup .gform_wrapper .gform_page_footer .button.gform_button {
  order: 0;
  width: 100%;
  margin: 5px 0;
}
.row-pretitle {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3px;
}
@media only screen and (min-width: 641px) {
  .row-pretitle {
    margin-bottom: 0;
  }
}
.row-pretitle-signup .pretitle {
  display: block;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media only screen and (min-width: 641px) {
  .row-pretitle-signup .pretitle {
    font-size: 15px;
  }
}
.row-pretitle-signup .pretitle-secure .pretitle-secure-text {
  color: #7b7b7b;
  font-size: 12px;
  display: inline-block;
  vertical-align: middle;
  line-height: 1.7;
  margin-left: 4px;
  margin-bottom: 2px;
}
.row-title {
  display: flex;
  align-items: center;
}
.row-title .title-wrap {
  margin-left: 10px;
}
@media only screen and (min-width: 641px) {
  .row-title .title-wrap {
    margin-left: 20px;
  }
}
.row-title .title-wrap .title-program {
  display: block;
  font-family: 'Cabrito', Georgia, serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
}
@media only screen and (min-width: 641px) {
  .row-title .title-wrap .title-program {
    font-size: 24px;
  }
}
.row-title .title-wrap .subtitle {
  display: block;
}
.row-title .ic-program {
  width: 56px !important;
  height: 56px !important;
}
@media only screen and (min-width: 768px) {
  .row-title .ic-program {
    width: 72px !important;
    height: 72px !important;
  }
}
.ginput_container .button {
  min-height: 56px;
}
.page-template-single-signup .gform_wrapper .gsection {
  border-bottom: 0;
  border-top: 2px solid #efefef;
}
.gform_wrapper h2.gsection_title {
  font-weight: 700;
  font-size: 1em;
  text-transform: uppercase;
  color: #795baf;
  letter-spacing: 1.5px;
}
.gform_wrapper .gsection {
  border-bottom: 0;
  border-top: 2px solid #efefef;
  border-bottom: 0;
  padding: 20px 0 0 !important;
}
.gform_wrapper .top_label .gfield_total .gfield_label {
  font-size: 15px;
}
body .gform_wrapper .top_label .gfield_total div.ginput_container {
  margin-top: 0;
}
.gform_wrapper .top_label .gfield_total span.ginput_total {
  margin: 0;
}
.gform_wrapper .description_above .gfield_total .gfield_description {
  color: #777;
  letter-spacing: 0.5px;
  font-size: 12px;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  .gform_wrapper .description_above .gfield_total .gfield_description {
    font-size: 15px;
  }
}
.gform_wrapper span.ginput_total {
  font-size: 24px;
  font-weight: bold;
  color: #222;
}
.pretitle-login {
  text-transform: uppercase;
  text-align: center;
  margin: 0 auto 5px;
  font-weight: normal;
  font-size: 15px;
  color: #999;
  letter-spacing: 0.75px;
}
@media only screen and (min-width: 768px) {
  .pretitle-login {
    margin: 0 auto 10px;
  }
}
.page-template-single-login {
  background-color: #ebedef;
}
@media only screen and (min-width: 768px) {
  .page-template-single-login .entry-header {
    padding-top: 2em;
  }
}
.page-template-single-login .entry-header .entry-title {
  text-align: center;
  margin-bottom: 0;
}
.page-template-single-login .content-signup .entry-content {
  padding: 15px 20px;
}
@media only screen and (min-width: 768px) {
  .page-template-single-login .content-signup .entry-content {
    padding: 20px;
  }
}
.page-template-single-login .site-footer {
  margin-top: 10px;
}
#access_form .btn-back-wrap {
  text-align: left;
  padding: 15px 0 0 20px;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
}
#access_form .btn-back-wrap button {
  background-color: #fff;
}
#access_form .gform_wrapper .gform_heading h3.gform_title {
  margin: 0;
}
#access_form .gform_wrapper .gform_heading .gform_description {
  margin: 0;
}
#access_form .gform_wrapper .gfield_price {
  line-height: 28px;
}
#access_form .gform_wrapper .gfield_price .gfield_label {
  display: block;
}
#access_form .gform_wrapper .gfield_price .ginput_container_total {
  float: left;
}
#access_form .gform_wrapper .gfield_price .ginput_total {
  color: #000;
  font-size: 24px;
  line-height: 28px;
}
#access_form .gform_wrapper .gfield_price .gfield_description {
  padding: 0;
  float: left;
  font-size: 16px;
  clear: none;
  line-height: 30px;
  padding-left: 5px;
  max-width: 70%;
}
#access_form .gform_wrapper .gform_card_icon_container {
  margin: 0;
}
#access_form .gform_wrapper .input-text, #access_form .gform_wrapper input[type="email"], #access_form .gform_wrapper input[type="password"], #access_form .gform_wrapper input[type="search"], #access_form .gform_wrapper input[type="text"], #access_form .gform_wrapper input[type="url"], #access_form .gform_wrapper textarea, #access_form .gform_wrapper input[type="tel"], #access_form .gform_wrapper input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]), #access_form .gform_wrapper select, #access_form .gform_wrapper input.button {
  padding: 0.5em 0.75em;
}
#access_form .gform_wrapper input#gf_coupon_button.button {
  min-height: 46px;
  vertical-align: top;
}
#access_form .gform_wrapper .gform_footer input.button, #access_form .gform_wrapper .gform_footer .gform_wrapper .gform_footer input[type="submit"] {
  margin: 15px 0 15px;
  padding: 1.25em 0.5em;
}
.sw--pricing {
  position: relative;
}
.sw--pricing--hero {
  position: relative;
  padding: 5.5em 12px 2em;
}
@media only screen and (min-width: 768px) {
  .sw--pricing--hero {
    padding: 10em 12px 3em;
  }
}
.sw--pricing--hero h1 {
  font-size: 2.2em;
}
@media only screen and (min-width: 768px) {
  .sw--pricing--hero h1 {
    font-size: 3.5em;
  }
}
.sw--pricing--hero h1, .sw--pricing--hero p {
  color: #000;
  margin: 0 auto;
  text-align: center;
  letter-spacing: 1px;
}
.sw--pricing--hero p.pretitle {
  font-size: 1.1em;
  margin-bottom: 6px;
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  .sw--pricing--hero p.pretitle {
    font-size: 1.25em;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
  }
}
.sw--pricing--background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 527px;
  background: radial-gradient(at center bottom, #fff 0%, #fffbde 20%, #fbfae3 40%, #fff0ab 80%, #ffe07e 100%);
  border-bottom: 1px solid rgba(100, 100, 100, .1);
}
.site-content.sw--content--default {
  padding-top: 0;
}
@media only screen and (min-width: 768px) {
  .site-content.sw--content--default {
    padding-top: 0;
  }
}
.sw--plans, .sw--login {
  position: relative;
  background: #fff;
  box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.2);
  max-width: 840px;
  margin: 0 auto 5em;
}
.sw--plans .sw--plans--option, .sw--login .sw--plans--option, .sw--plans .sw--login--wrap, .sw--login .sw--login--wrap {
  padding: 0.5em 12px 0.5em;
}
.sw--plans h3, .sw--login h3, .sw--plans p, .sw--login p {
  margin: 0 auto;
}
.sw--plans h3, .sw--login h3 {
  text-align: center;
  font-weight: 500;
  font-size: 1.3em;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.sw--plans .sw--plans--header, .sw--login .sw--plans--header, .sw--plans .sw--login--header, .sw--login .sw--login--header {
  margin: 1em auto;
}
.sw--plans p, .sw--login p {
  text-align: center;
  font-size: 1em;
  line-height: 1.2;
}
@media only screen and (min-width: 768px) {
  .sw--plans p, .sw--login p {
    font-size: 1.125em;
  }
}
@media only screen and (min-width: 768px) {
  .sw--plans, .sw--login {
    border-radius: 2em;
  }
}
.sw--plans .sw--fieldgroup, .sw--login .sw--fieldgroup {
  border: none;
  text-align: center;
  display: flex;
  position: relative;
  justify-content: center;
  margin: 1em auto;
}
@media only screen and (min-width: 768px) {
  .sw--plans .sw--fieldgroup, .sw--login .sw--fieldgroup {
    margin: 1.5em auto;
  }
}
@media only screen and (min-width: 768px) {
  .sw--plans #plans_startdate, .sw--login #plans_startdate {
    flex-wrap: wrap;
  }
}
.sw--plans .sw--fieldgroup--wrap, .sw--login .sw--fieldgroup--wrap {
  overflow-x: scroll;
}
.sw--plans .sw--fieldgroup--wrap .sw--fieldgroup, .sw--login .sw--fieldgroup--wrap .sw--fieldgroup {
  padding-left: 12px;
  padding-right: 12px;
}
@media only screen and (min-width: 768px) {
  .sw--plans .sw--fieldgroup--wrap, .sw--login .sw--fieldgroup--wrap {
    overflow-x: visible;
  }
}
.sw--plans .sw--plans--option--startdate, .sw--login .sw--plans--option--startdate {
  padding-left: 0;
  padding-right: 0;
}
.sw--plans .sw--plans--option--startdate .sw--plans--header, .sw--login .sw--plans--option--startdate .sw--plans--header {
  padding-left: 12px;
  padding-right: 12px;
}
.sw--plans .sw--plans--option--startdate .sw--fieldgroup, .sw--login .sw--plans--option--startdate .sw--fieldgroup {
  justify-content: flex-start;
  max-width: 700px;
}
@media only screen and (min-width: 768px) {
  .sw--plans .sw--plans--option--startdate .sw--fieldgroup, .sw--login .sw--plans--option--startdate .sw--fieldgroup {
    justify-content: center;
  }
}
@media only screen and (max-width: 767px) {
  .sw--plans .sw--plans--option--startdate .hide-mobile, .sw--login .sw--plans--option--startdate .hide-mobile {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
  }
}
@media only screen and (min-width: 768px) {
  .sw--plans .sw--plans--option--startdate .hide-desktop, .sw--login .sw--plans--option--startdate .hide-desktop {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px 1px 1px 1px);
    clip: rect(1px, 1px, 1px, 1px);
  }
}
.sw--plans .sw--plans--option--program, .sw--login .sw--plans--option--program {
  background-color: #e4e6ea;
  border-top: 1px solid #c8cacc;
  border-bottom: 1px solid #c8cacc;
}
.sw--plans .sw--plans--option--program .sw--fieldgroup, .sw--login .sw--plans--option--program .sw--fieldgroup {
  text-align: left;
  display: block;
}
@media only screen and (min-width: 768px) {
  .sw--plans .sw--plans--option--program .sw--fieldgroup, .sw--login .sw--plans--option--program .sw--fieldgroup {
    display: flex;
  }
}
.sw--plans .sw--plans--option--program .sw--checkbox, .sw--login .sw--plans--option--program .sw--checkbox {
  position: absolute;
  top: 33px;
  left: 12px;
}
@media only screen and (min-width: 768px) {
  .sw--plans .sw--plans--option--program .sw--checkbox, .sw--login .sw--plans--option--program .sw--checkbox {
    top: 37px;
    left: 20px;
  }
}
.sw--plans .sw--plans--option--program .sw--plans--program--header, .sw--login .sw--plans--option--program .sw--plans--program--header {
  margin-left: 46px;
  font-size: 0.9em;
}
@media only screen and (min-width: 768px) {
  .sw--plans .sw--plans--option--program .sw--plans--program--header, .sw--login .sw--plans--option--program .sw--plans--program--header {
    margin-left: 46px;
    font-size: 1em;
  }
}
.sw--plans .sw--plans--option--program .sw--plans--program--body, .sw--login .sw--plans--option--program .sw--plans--program--body {
  margin-left: 46px;
}
.sw--plans .sw--plans--option--program .sw--plans--program--body ul, .sw--login .sw--plans--option--program .sw--plans--program--body ul {
  margin-bottom: 0;
  margin-top: 0.5em;
}
@media only screen and (min-width: 768px) {
  .sw--plans .sw--plans--option--program .sw--plans--program--body, .sw--login .sw--plans--option--program .sw--plans--program--body {
    margin-left: 46px;
  }
}
.sw--plans .sw--plans--option--program .sw--labelbutton--title, .sw--login .sw--plans--option--program .sw--labelbutton--title {
  font-size: 1.6em;
}
.sw--plans .sw--plans--option--program .sw--labelbutton, .sw--login .sw--plans--option--program .sw--labelbutton {
  border-color: #cfd0d2;
}
.sw--plans .sw--labelbutton, .sw--login .sw--labelbutton {
  background-color: #fff;
  padding: 1.2em 0.25em 1.2em 0.25em;
  border: 3px solid #e0e0e0;
  border-radius: 1em;
  font-weight: bold;
  display: block;
  margin-right: 3px;
  margin-left: 3px;
  position: relative;
  min-width: 115px;
  cursor: pointer;
  margin-bottom: 10px;
}
.sw--plans .sw--labelbutton:hover, .sw--login .sw--labelbutton:hover, .sw--plans .sw--labelbutton:focus, .sw--login .sw--labelbutton:focus {
  border-color: #9e9e9e;
}
@media only screen and (min-width: 400px) {
  .sw--plans .sw--labelbutton, .sw--login .sw--labelbutton {
    min-width: 125px;
    margin-right: 4px;
    margin-left: 4px;
  }
}
@media only screen and (min-width: 768px) {
  .sw--plans .sw--labelbutton, .sw--login .sw--labelbutton {
    min-width: 150px;
    padding: 1.2em 1.4em 1.2em 1.2em;
  }
}
.sw--plans .sw--labelbutton.sw--labelbutton--program, .sw--login .sw--labelbutton.sw--labelbutton--program {
  margin-bottom: 10px;
}
@media only screen and (min-width: 768px) {
  .sw--plans .sw--labelbutton.sw--labelbutton--program, .sw--login .sw--labelbutton.sw--labelbutton--program {
    margin-right: 5px;
    margin-left: 5px;
  }
}
.sw--plans .sw--plans--option--startdate .sw--labelbutton, .sw--login .sw--plans--option--startdate .sw--labelbutton {
  padding-bottom: 0.2em;
}
.sw--plans .sw--labelbutton.selected, .sw--login .sw--labelbutton.selected {
  border-color: #28aae1;
}
.sw--plans .sw--labelbutton--title, .sw--login .sw--labelbutton--title {
  font-weight: bold;
  line-height: 1;
  margin-top: 4px;
  margin-bottom: 4px;
}
.sw--plans .sw--labelbutton--title--now, .sw--login .sw--labelbutton--title--now {
  line-height: 3;
}
.sw--plans .sw--labelbutton--title--startdate, .sw--login .sw--labelbutton--title--startdate {
  margin-bottom: 0;
}
.sw--plans .sw--checkbox, .sw--login .sw--checkbox {
  display: block;
  margin: 0 auto 16px;
  border-radius: 14px;
  height: 28px;
  width: 28px;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px rgba(200, 200, 200, 0.8);
}
.sw--plans .selected .sw--checkbox, .sw--login .selected .sw--checkbox {
  background-color: #20a3dc;
  background-image: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" style="width:16px; height: 16px;" class="ic-check"><polyline style="fill:none;stroke:%23FFFFFF;stroke-width:2;stroke-miterlimit:10;" points="4.59,7.59 7.05,10.05 11.95,5.14 "/></svg>');
  box-shadow: 0 0 0 2px rgba(200, 200, 200, 0.8), 0 0 4px 2px rgba(200, 200, 200, 0.6);
}
.sw--plans .btn.btn-secondary, .sw--login .btn.btn-secondary {
  border-radius: 4px;
}
.sw--plans--program--price--strikethrough {
  display: inline;
  text-decoration: line-through;
  font-weight: normal;
  font-size: 0.8em;
  color: #6e6e6e;
}
.sw--labelbutton--pill {
  border-radius: 15px;
  background-color: #808080;
  color: #fff;
  font-weight: bold;
  padding: 1px 11px;
  display: inline-block;
  font-size: 0.9em;
  margin: 4px 0;
}
.selected .sw--labelbutton--pill {
  background: #20a3dc;
}
.sw--labelbutton--title {
  font-size: 1.1em;
  display: block;
}
@media only screen and (min-width: 768px) {
  .sw--labelbutton--title {
    font-size: 1.3em;
  }
}
.sw--labelbutton--price {
  display: block;
  font-size: 1.3em;
  margin-top: 15px;
  margin-bottom: 15px;
  position: absolute;
  top: 8px;
  right: 8px;
  text-align: right;
  max-width: 80px;
  line-height: 1.1;
}
@media only screen and (min-width: 768px) {
  .sw--labelbutton--price {
    font-size: 1.6em;
    text-align: left;
    position: static;
    max-width: none;
  }
}
.sw--labelbutton--pretitle {
  font-weight: normal;
  display: block;
  line-height: 1;
  color: #505050;
  font-size: 0.9em;
}
@media only screen and (min-width: 768px) {
  .sw--labelbutton--pretitle {
    font-size: 1em;
  }
}
.sw--labelbutton--subtitle {
  font-weight: normal;
  color: #7e7e7e;
  font-size: 0.9em;
  line-height: 1;
}
.sw--plans--program--body li {
  font-size: 1em;
  list-style-type: none;
  background-image: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" style="width:16px; height: 16px;" class="ic-check"><ellipse style="fill:%23979797;" cx="8" cy="8" rx="7.17" ry="7.17"/><polyline style="fill:none;stroke:%23FFFFFF;stroke-width:2;stroke-miterlimit:10;" points="4.59,7.59 7.05,10.05 11.95,5.14 "/></svg>');
  background-position: left 48%;
  background-repeat: no-repeat;
  background-size: 16px 16px;
  padding-left: 22px;
  line-height: 1.7;
  font-weight: 500;
  margin-left: 0;
  color: #505050;
}
.sw--plans--actions {
  text-align: center;
  padding: 40px 15px 80px;
}
.sw--plans--actions button.btn.btn-primary {
  border-radius: 40px;
  font-size: 1.3em;
  padding: 16px 40px;
  text-align: center;
  margin: 0 auto;
  width: 300px;
}
@media only screen and (min-width: 768px) {
  .sw--plans--actions button.btn.btn-primary {
    width: 420px;
  }
}
.sw--plans--actions .btn.btn-primary:focus {
  outline: 0;
  box-shadow: 0 1px 2px 2px rgba(0, 0, 0, 0.2);
}
.sw--login .wrap-login {
  max-width: 360px;
  padding: 1em 0 3em;
}
.sw--login input[type=text], .sw--login input[type=email], .sw--login input[type=password] {
  width: 100%;
}
.sw--login #privacy_policy_registration {
  float: left;
}
.sw--login .privacy-consent {
  display: block;
  margin-left: 28px;
}
.sw--login button[type=submit] {
  width: 100%;
  border-radius: 30px;
}
.sw--login button[type=submit]:focus {
  outline: 0;
  box-shadow: 0 1px 2px 2px rgba(0, 0, 0, 0.2);
}
.modal-signup label {
  text-align: left;
}
