/*------------------------------------*\
	FORMS
\*------------------------------------*/

.frm_forms form{
  font-size: 16px !important;
}

.frm_loading_form{
  position: relative;
}

.frm_loading_form:before{
  content: '';
  position: absolute;
  z-index: 20;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(255,255,255,0.75) center no-repeat url('../images/loading.gif');
}

.frm_forms h3{
  font-family: 'GothBold', sans-serif;
  font-size: 24px;
  text-transform: uppercase;
}

.frm_forms form select,
.frm_forms form input,
.frm_forms form textarea{
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  box-sizing: border-box;
  margin: 0;
}

.frm_forms form input[readonly]{
  background: rgba(0,0,0,0.1);
  border-color: transparent;
}

.frm_forms form .frm_readonly .frm_total_formatted{
  background: rgba(0,0,0,0.1);
  display: block;
  border-color: transparent;
  border-radius: 6px;
  padding: 15px 20px;
  line-height: 1em;
}

.frm_form_fields{
  overflow: hidden;
  position: relative;
}

.frm_rootline_group{
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100px;
  width: 100%;
}

ul.frm_page_bar{
  justify-content: center;
}

ul.frm_page_bar li{
  flex: none;
  margin: 0 5px;
}

.frm_forms .frm_page_bar input, .frm_forms .frm_page_bar input:disabled{
  border: 0;
}

.frm_forms .frm_rootline input{
  height: 12px;
  width: 12px;
  border-radius: 100%;
  background: rgba(0,0,0,0.1);
}

.frm_forms .frm_rootline .frm_current_page input[type="button"]{
  background: black;
}

.frm_forms .frm_top_container,
.frm_forms .frm_section_heading,
.frm_submit{
  clear: both;
  overflow: hidden;
}

.frm_forms .frm_top_container.frm_half{
  clear: none;
}

.frm_forms .frm_primary_label{
  margin-top: 20px;
}

.frm_forms form select{
  background: #FFCC00 right 20px center no-repeat url('../images/arrow-select.svg');
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  padding: 15px 20px;
  height: auto;
  margin-bottom: 10px;
}

.frm_forms form .frm_third select,
.frm_forms form .normalized select{
  background-color: white;
  font-weight: 300;
  border-color: black;
}

.frm_forms form fieldset{
  margin: 0;
  padding: 0;
}

.frm_forms form .frm_section_heading + .frm_section_heading h3{
  font-size: 1.25em;
  margin-top: 30px;
}

.frm_forms form h3{
  font-size: 1.75em;
  margin-bottom: 15px;
}

.frm_forms form .frm_form_field .frm_primary_label{
  font-family: inherit;
  font-size: 1em;
  font-weight: 600;
  text-transform: inherit;
  margin: 10px 0;
  margin-top: 20px;
}

.frm_forms form .frm_form_field.vertical_radio .frm_primary_label{
  font-family:'GothBold';
  font-size: 1.2em;
  text-transform: uppercase;
  margin: 10px 0;
  margin-top: 20px;
}

.frm_forms form .frm_opt_container{
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.frm_forms form .frm_description{
  font-style: italic;
  font-size: 0.9em;
  display: block;
  margin-bottom: 15px;
}

.frm_forms form .frm_radio{
  width: 100%;
  padding: 10px;
  min-height: 150px;
  flex-grow: 1;
}

.frm_forms form .frm_circle .frm_radio{
  min-height: inherit;
  position: relative;
  display: flex;
  justify-content: center;
  width: 50%;
  flex-grow: 0;
}

.frm_forms form .frm_radio label{
  line-height: 1.2em;
}

.frm_forms form .frm_circle .frm_radio label,
.frm_forms form .frm_circle.frm_numerical .frm_radio:last-child label{
  border-radius: 100%;
  font-size: 2em;
  width: 130px;
  height: 130px;
  flex-shrink: 0;
}

.frm_forms form .frm_circle .frm_radio:last-child label,
.frm_forms form .frm_circle.frm_text .frm_radio label{
  font-size: 1.5em;
}

.frm_forms form .frm_checkbox{
  padding: 0 10px;
}
.frm_forms form .frm_checkbox label{
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 1.25em;
  font-weight: 600;
  position: relative;
}

.frm_forms form .frm_checkbox label input{
  display: none;
}

.frm_forms form .frm_checkbox label:before{
  content: '';
  height: 30px;
  width: 30px;
  border: 2px solid black;
  display: inline-flex;
  margin-right: 10px;
  border-radius: 100%;
}

.frm_forms form .frm_checkbox label.checked:before{
  background: center no-repeat url('../images/checkmark.svg');
  background-color: #FFCC00;
}

.frm_forms form .frm_radio label{
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: 1.25em;
  font-weight: 600;
  padding: 25px;
  text-transform: inherit;
  background: rgba(0,0,0,0.1);
  border-radius: 10px;
}

.frm_forms form .frm_radio input{
  display: none;
}

.frm_forms form .frm_radio{
  position: relative;
  z-index: 1;
}

.frm_forms form .frm_radio label.checked{
  background: #FFCC00;
}

.frm_forms form input,
.frm_forms form textarea{
  border: 1px solid black;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 300;
  padding: 15px 20px;
  height: auto;
  margin-bottom: 10px;
}

.frm_forms form .frm_submit{
  margin: 30px 0;
  margin-top: 75px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.frm_forms form .frm_submit .frm_button_submit,
.frm_forms form .frm_submit button{
  background: #76BD3C;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600 !important;
  letter-spacing: normal;
  text-transform: uppercase;
  color: white;
  padding: 15px 20px;
  height: auto;
  min-width: calc(50% - 10px);
  margin: 5px;
}

.frm_forms form .frm_submit .frm_prev_page{
  background: rgba(0,0,0,0.2);
  color: black;
}

.frm_forms form .frm_error_style{
  border: 2px solid #FF5050;
  background: #FFE7E7;
  border-radius: 6px;
  margin-bottom: 20px;
  padding: 20px;
  text-align: center;
}

.frm_forms form .frm_error_style p{
  margin: 0;
  padding: 0;
}

.frm_forms form .frm_error{
  font-weight: 600;
  color: #FF5050;
}

.frm_forms form .frm_html_container,
.frm_forms .frm_message{
  background: #FFF8DE;
  border: 2px solid #FFCC00;
  border-radius: 6px;
  margin: 10px 0;
  padding: 10px;
  text-align: center;
}

.frm_forms form .frm_html_container.disclaimer{
  background: none;
  border: 0;
  text-align: left;
  padding: 0;
  margin-top: 25px;
  border-radius: 0;
}

.frm_forms form .frm_message{
  border-color: #76BD3C;
  background: #F9FFF3;
}
.frm_forms .frm_message p{
  margin: 0
}

.frm_forms .frm_message p + p{
  margin-top: 10px;
}

.frm_forms form .frm_tiny .frm_radio label,
.frm_forms form .frm_tiny .frm_radio {
  height: auto;
  min-height: auto;
}

.frm_forms form .frm_tiny .frm_radio label{
  padding: 15px;
}

.frm_forms .frm_switch_block.checked .frm_slider{
  background: #76BD3C !important;
}

.frm_forms .frm_switch{
  margin-bottom: 10px;
}

.frm_forms .frm_slider{
  background: rgba(0,0,0,0.2);
}

.frm_forms .frm_slider:before{
  transition: background-color 300ms ease;
}

.frm_forms input:checked + .frm_switch .frm_slider {
  background-color: #76BD3C;
}

.gform_heading{
  margin-bottom: 20px;
}

@media screen and (min-width:20em){
  .frm_forms form .frm_radio{
    width: 50%;
  }
}

@media screen and (min-width:40em){
  .frm_forms form .frm_radio{
    width: calc(100% / 3);
  }
  .frm_forms form .frm_circle .frm_radio{
    width: 25%;
  }
  .frm_forms form .frm_submit .frm_button_submit,
  .frm_forms form .frm_submit button{
    min-width: 200px;
  }
  .frm_forms .frm_form_field.frm_half{
    margin-left: 0;
  }
}

@media screen and (min-width:50em){
  .frm_forms form .frm_radio,{
    width: 25%;
  }
  .frm_forms form .frm_circle .frm_radio{
    width: 50%;
  }
}

@media screen and (min-width:60em){
  .frm_forms form .frm_circle .frm_radio{
    width: 25%;
  }
}

 /* Every Action Forms */

.ea-form label,
.ea-form input,
.ea-form select,
.ea-form a,
.ea-form button{
  font-family: "SourceSansPro", sans-serif !important;
}
.ea-form h5{
  font-family: 'GothBold', sans-serif;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
@media screen and (min-width:50em){
  .ea-form {
    padding: 2rem;
  }
  .page-template-template-fullpage
  .ea-form{
    padding: 0;
    margin-bottom: 2rem;
  }
  .custom-modal-contents .ea-form,
  .editor-content .ea-form,
  #newsletter-modal .ea-form{
    padding: 0;
  }
}
.ea-form .preamble .controls > label.checked{
  background-color: #FFCC00;
}
.ea-form .controls{
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: 1rem;
}

.ea-form .preamble .controls > label{
  width: 100%;
  text-transform: inherit;
  font-size: 1.15rem;
  margin: 10px;
  padding: 1rem;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  background-color: rgba(0,0,0,0.1);
  text-align: center;
  min-height: 5rem;
}
.ea-form .controls input[type='radio']{
  display: none;
}
.ea-form .membership-summary {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.ea-form .membership-summary div + div{
  margin-left: 1rem;
}
.ea-form .membership-summary button{
  margin: auto;
  margin-right: 0;
  padding: 0;
  text-indent: -9999px;
  flex-shrink: 0;
  border: 0;;
  height: 35px;
  width: 35px;
  background: center no-repeat url('../images//icon-reload.svg');
  background-color: rgba(0,0,0,0.1);
  border-radius: 100%;
  transition: all 300ms ease;
}
.ea-form .membership-summary button:hover{
  background-color: rgba(0,0,0,0.2);
  box-shadow: 0 0 1rem rgba(0,0,0,0.2);
}
.ea-form .multistep-layout .at-form-submit{
  padding: 0;
  margin: 0;
}
.ea-form .at .at-steps{
  background-color: rgba(0,0,0,0.05);
}
.ea-form .at-legend{
  font-family: 'GothBold',sans-serif;
  padding-top: 1rem;
}
.ea-form .at .at-step>*:before{
  background-color: rgba(0,0,0,0.2);
}
.ea-form .at .at-step.active.valid>*:before,
.ea-form .at .at-step.valid>*:before{
  background-color: #76BD3C;
}
.ea-form .at .radios{
  display: block;
  margin: 0;
  margin-top: 10px;
  margin-bottom: 20px;
  border: 1px solid black;
  padding: 10px;
  border-radius: 4px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.ea-form .at .radios label{
  display: flex;
  align-items: center;
}
.ea-form .at .radios input{
  margin: 0;
  margin-right: 10px;
}
.ea-form .at .radios input{
  accent-color:#76BD3C;
  border: 1px solid black;
}
.ea-form .at .radios input:checked{
  border-color: #76BD3C;
}
.ea-form .at .at-radios{
  margin: 0;
  margin-bottom: 1rem;
}
.ea-form .at-radios{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.ea-form .at-radios .label-amount{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5px;
  min-height: 5rem;
  padding: 10px;
}
.page-template-template-fullpage
.ea-form .at-radios .label-amount{
  min-height: 1rem;
  margin: 0;
  padding: 0 1rem;
  width: fit-content;
}
.page-template-template-fullpage
.ea-form .at-radios .label-amount
+ .label-amount{
  margin-left: 0.5rem;
}
@media screen and (max-width:434px) {
  .ea-form .at-radios .label-amount{
    width: calc(100% - 20px) !important;
  }
}

@media only screen and (max-width: 40em){
  .page-template-template-fullpage
  .ea-form .at form .label-amount {
      width: fit-content !important;
  }
}

.ea-form .at-radios .label-otheramount,
.ea-form .OtherAmount .at-radios .label-otheramount {
  width: calc(100% - 20px) !important;
  min-height: auto;
}

@media screen and (min-width:641px) {
  .ea-form .at-radios .label-amount {
    width: calc(100% / 3 - 20px);
    margin: 10px;
  }
  .ea-form .OtherAmount .at-radios .label-amount:first-child:nth-last-child(4),
  .ea-form .OtherAmount .at-radios .label-amount:first-child:nth-last-child(4) ~ .label-amount{
    width: calc(100% / 3 - 20px);
  }
  .ea-form .at-radios .label-amount:first-child:nth-last-child(4),
  .ea-form .at-radios .label-amount:first-child:nth-last-child(4) ~ .label-amount {
    width: calc(100% / 2 - 20px);
  }
  #NVContributionForm1205621-ContributionInformation-SelectAmount .label-amount{
    width: calc(50% - 20px);
  }
  .ea-form .at-radios .label-amount:nth-child(4n+4){
    margin: 10px;
  }
}

.ea-form .at .at-step.valid>*:before{
  background-color: #BEE3A0;
}
.ea-form .at form .label-amount{
  font-weight: 600;
  color: black;
  padding: 20px;
}
.ea-form .at form .label-amount input:required,
.ea-form .at form .label-amount input:focus::placeholder{
  color: black;
  font-weight: 600;
}
.ea-form  .at form .label-amount input::selection,
.ea-form .at form .label-amount input:required::selection{
  background-color: white;
}
.ea-form .at select{
  appearance: none;
}
.ea-form .at input[type="text"],
.ea-form .at input[type="number"],
.ea-form .at input[type="tel"],
.ea-form .at input[type="email"],
.ea-form .at select{
  border: 1px solid black;
  font-weight: 400;
  color: black;
  height: auto;
}
.ea-form .at label{
  font-weight: 600;
  font-size: 1rem;
  text-transform: inherit;
  color: black;
}
.ea-form .at label input,
.ea-form .at label input + span,
.ea-form .at label select,
.ea-form .at label textarea,
.ea-form .at .iti,
.ea-form .at-cc-number,
.ea-form .at-cc-expiration,
.ea-form .vgs-input-container{
  margin-top: 6px;
}
.ea-form .hidden,
.at-title,
.at-markup.HeaderHtml{
  display: none;
}
.membership-summary-value,
.contribution-summary-value {
  color: black;
  font-weight: 500;
}
.ea-form .at form .label-amount input:required+.label-otheramount-prefix,
.ea-form .at form .label-otheramount input:required::placeholder{
  color: black;
}
.ea-form .at form .label-amount>a{
  background-color: rgba(0,0,0,0.1);
  box-shadow: none;
  height: 100%;
  border-radius: 10px;
}
.ea-form .at-check input[type=checkbox] + span:before,
.ea-form .at-check.authorize-payment-label span:before{
  top: 0 !important;
  background-color: rgba(0,0,0,0.2);
  border: 0;
  border-radius: 50px;
  width: 45px;
  height: 24px;
  box-shadow: none !important;
}
.ea-form .at-check .at-checkbox-title-container:after,
.ea-form .at-check.authorize-payment-label span:after{
  content: "";
  display: inline-flex;
  width: 24px;
  height: 24px;
  background-color: white;
  border: 1px solid rgba(0,0,0,0.2);
  opacity: 1 !important;
  transform: none !important;
  top: 0 !important;
  left: 0;
  border-radius: 100%;
}
.ea-form .at-recurring label{
  line-height: normal;
}
.ea-form .at-check{
  display: block;
}
.ea-form .at-fieldset,
.ae-form .multistep-layout fieldset{
  margin: 0;
  padding: 0 !important;
  padding-top: 1rem !important;
}
.ea-form .at-checkbox-title-container{
  display: block;
  width: auto;
}
.ea-form .at-check input + span:before{
  background-color: rgba(0,0,0,0.2);
}
.ea-form .at-check input:checked:focus + span:before,
.ea-form .at-check input:checked:hover + span:before{
  border-color: #76BD3C;
}
.ea-form .at-check .at-checkbox-title-container{
  padding-left: 60px;
}
.ea-form .at-check input[type="checkbox"]:active + span:before{
  background-color: rgba(0,0,0,0.2);
}
.ea-form .at-check input[type="checkbox"]:checked + span:before,
.ea-form .at-check input[type="checkbox"]:checked + .at-checkbox-title-container:focus:before{
  background-color: #76BD3C;
}
.ea-form .at-check input:checked + .at-checkbox-title-container:after,
.ea-form .at-check.authorize-payment-label input:checked + span:after{
  background-color: white;
  border-color: #76BD3C;
  transform: translateX(21px) !important;
}
.ea-form .radio-description{
  width: 100%;
  font-size: 0.8rem;
  font-style: italic;
  margin-top: 0.25rem;
}
.ea-form .at form .label-amount input[type="radio"]:hover+a{
  background-color: rgba(0,0,0,0.2);
}
.ea-form .at-radios .label-amount input{
  padding-left: 2rem;
}
.ea-form .at form .label-amount input[type="radio"]:checked+a,
.ea-form .at form .label-amount input:required{
  background-color: #FFCC00;
  border-color: #FFCC00;
  box-shadow: none;
}
.ea-form .prevNext .btn-at{
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  background-color: rgba(0,0,0,0.1);
  border-radius: 6px;
}
.ea-form .prevNext .btn-at:hover,
.ea-form .prevNext .btn-at:active{
  background-color: rgba(0,0,0,0.1);
  color: inherit;
}
.ea-form .btn-at.btn-at-primary,
.ea-form .btn-at.btn-at-primary:hover,
.ea-form .prevNext .btn-at.btn-at-primary,
.ea-form .prevNext .btn-at.btn-at-primary:hover,
.ea-form .prevNext .btn-at.btn-at-primary:focus{
  background-color: #76BD3C;
  color: white;
}
.ea-form .prevNext + .prevNext{
  margin-right: 10px;
}
.ea-form .at-form-submit .at-submit{
  margin: 0;
}
.ea-form .step-prevNext{
  padding: 0;
}
.at-cover-costs-info{
  display: inline-block;
  font-weight: normal;
  border-bottom: 3px solid #76BD3C;
}

.ea-form .at .at-eft-accepted-here{
  display: grid;
}

.ea-form .at .at-eft-accepted-here input,
.ea-form .at .at-eft-accepted-here select{
  width: 100% !important;
}

.ea-form .at .at-row-half{
  width: 100%;
}

.ea-form .at .at-row-half.error input{
  border-color: #FF5050;
}

.ea-form .at .at-payment-method-buttons{
  margin-bottom: 1rem;
}

.ea-form .at .at-payment-method-buttons input[type=radio]+label.at-btn-radio{
  background-color: #E1E1E1;
  border-width: 0;
}
.ea-form .at .at-payment-method-buttons input[type=radio]:checked+label.at-btn-radio{
  background-color: #FFCC00;
  font-weight: 600;
}
.ea-form .at-check.authorize-payment-label{
  margin-bottom: 1rem;
}
.ea-form .at-check.authorize-payment-label span{
  padding-left: 60px;
}

.ea-form .at-check.authorize-payment-label.error{
  color: inherit;
}

.ea-form .at .at-whatsthis{
  color: inherit;
  font-weight: normal;
  font-size: 0.8em;
  border-bottom: 2px solid #E1E1E1;
}

.membership-form.standalone-form{
  margin:auto; 
  padding: 1rem;
  border-radius: 7px;
}

/* .at .at-radio-set-buttons input[type=radio]:checked+label.at-btn-radio */

@media screen and (min-width:35rem){
  .ea-form .at .at-eft-accepted-here{
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
  .ea-form .at-check.authorize-payment-label,
  .ea-form .at-eft-legal-disclaimer{
    grid-column: span 2;
  }
}
@media screen and (min-width:50rem){
  .ea-form .preamble .controls > label{
    width: calc(100% / 3 - 20px);
    flex-grow: 1;
  }
}