@charset "UTF-8";

:root {
  --mainColor: #4b79bc;
  --secondColor: #f0f7fb;
  --thirdColor: #ee3124;
  --borderColor: #cacaca;
  --borderRadius: 12px;
  --fontColor: #333;
}

body,
input,
select,
p {
  font-family: "franklin-gothic-urw", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
}

img {
  width: 100%;
}

h1 {
  color: var(--secondColor);
  font-weight: 700;
}
h3 {
  color: var(--mainColor);
  font-weight: 900;
  max-width: 300px;
  margin: auto;
}
a {
  text-decoration: underline;
}

.logo {
  width: 139px;
  -o-object-fit: contain;
  object-fit: contain;
  margin: 15px auto auto;
  display: block;
}
.mobile-logo {
  display: none;
}
.content {
  width: 100%;
  position: absolute;
  background: url("../images/bg.jpg") no-repeat 0% center / cover;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 300px;
  overflow-y: auto;
}

form header {
  padding: 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

form header h1,
form header .reward {
  text-align: center;
}

form header h1 {
  max-width: 400px;
  width: 100%;
  margin: auto;
  color: var(--mainColor);
}
.form header ul {
  margin-left: 2em;
}
form header .reward {
  color: var(--mainColor);
  font-weight: 700;
}
.typewriter {
  display: inline-block;
  color: var(--thirdColor);
}
.typewriter::after {
  content: "";
  display: block;
  width: 100%;
  bottom: 0;
  border-bottom: 3px dotted var(--thirdColor);
}
form header p {
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}
form header p,
form header li {
  font-size: 16px;
  line-height: 22px;
}

form input,
form select,
form label {
  width: 100%;
}

form input[type="text"],
form input[type="email"],
form select {
  border-radius: 2px;
  background-color: #fcfcfc;
  border: 1px solid #c7c7c7;
  font-size: medium;
  padding: 0 10px 0;
}

.step-2 input,
.step-2 select,
.step-3 input,
.step-3 select {
  font-size: 16px !important;
  font-family: "Source Sans Pro", "Open Sans", Monsterrat, "Courier New", sans-serif;
  color: rgb(64, 64, 64);
  height: 40px;
  width: 100%;
  outline: none;
}

label:not(.accept-label) {
  height: 20px;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.24px;
  color: var(--fontColor);
  text-transform: uppercase;
  margin: 10px 0 0;
}
label.accept-label:not(.tcAgree):not(label[for="acceptFees"]) {
  font-size: 11px;
}
form input[type="text"]:not(.gift-amount-other),
form input[type="email"],
form select {
  height: 42px;
}
form input[type="checkbox"] {
  width: 15px;
  height: 15px;
  align-self: center;
  position: relative;
  top: 5px;
}

/* form select {
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: #fff url('../images/arrow-down.png') no-repeat 97% center / 15px;
    color: #707070;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
} */

form select:hover,
form input:not(.gift-amount-other):hover {
  outline: 3px solid #add8e6;
  border-radius: 2px;
  background-color: #fcfcfc;
}
.form-inner {
  background: #fff;
  position: relative;
  padding: 30px 20px 20px;
  display: none;
}

.form-inner.step-visible {
  display: block;
}

.step-counter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #1e1e23;
  border-radius: 50%;
  background-color: #1e1e23;
  color: #efefef;
  font-size: 28px;
  font-weight: 600;
  line-height: 50px;
}
.form-inner-spacer {
  height: 10px;
}
.logo-container img {
  max-width: 450px;
  margin: auto;
  display: block;
}
.logo-container,
.form-container {
  position: absolute;
  left: 30%;
  right: 0;
  margin: auto;
  display: -ms-flexbox;
  display: flex;
  min-width: 560px;
  max-width: 560px;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .logo-container,
  .form-container {
    left: 55% !important;
  }
  body,
  input,
  select {
    font-family: sans-serif !important;
  }
}
.form-container {
  top: 250px;
  background-color: #fefefe;
}

.donation-choice-container {
  padding: 0 10px 0 0;
}

.text-center {
  text-align: center;
}
body .donation-choice {
  margin: 10px 5px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-width: 70px;
  min-height: 80px;
  border: 1px solid var(--fontColor);
  background-color: white;
  color: var(--fontColor);
  border-radius: var(--borderRadius);
}
#gift {
  width: 100%;
  padding: 0 2%;
}
body .donation-choice:hover,
.donation-choice:focus {
  text-decoration: none;
  border-color: var(--mainColor);
  outline: 3px solid #add8e6;
  border-radius: 2px;
}

body .donation-selected,
.donation-selected:active {
  background-color: var(--secondColor);
  font-weight: 600;
  border: 3px solid var(--mainColor);
}

.donation-other .gift-amount-other {
  height: 33px;
  padding-left: 12px;
  color: var(--mainColor);
}

.donation-other {
  position: relative;
}

.donation-other input {
  width: 100%;
  align-self: flex-end;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.price-mark {
  left: 0px;
  font-weight: bold;
  top: 5px;
  left: 3px;
  font-size: 130%;
  color: var(--secondColor);
}

#gift {
  padding: 20px 12px;
}

#gift::before {
  content: "$";
  display: inline-block;
  color: var(--bodyColor);
  position: absolute;
  z-index: 99;
  margin: 10px 10px 0px;
}

#giftAmount {
  padding-left: 25px;
  color: var(--mainColor);
}

#gift-4 {
  padding: 2%;
}

.form-button,
button:not(.close) {
  height: 45px;
  width: 175px;
  border: 1px solid var(--mainColor);
  border-radius: 6px;
  background-color: var(--mainColor);
  line-height: 18px;
  font-weight: 600;
  color: #fefefe;
  outline: none;
  margin: 10px auto;
  display: block;
  font-size: inherit;
}

.payment-type {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 240px;
  min-height: 50px;
  width: 100%;
  background-color: #f4fbe6;
  color: var(--bodyColor);
  border-radius: 3px;
  font-weight: 600;
}

.payment-type i {
  content: url("../images/card.svg");
  width: 18px;
  height: 16px;
  margin-right: 5px;
}
.hidden {
  display: none;
  visibility: hidden;
}

.bold {
  font-weight: 700;
}

.submit-container {
  text-align: right;
}

body form .fw-normal {
  font-weight: normal;
}

.terms {
  background-color: #fcfcfc;
  border: 1px solid #c7c7c7;
  padding: 10px;
  height: 100px;
  overflow-y: scroll;
}

.email-opt-in {
  width: 15px;
  height: 15px;
  align-self: flex-end;
  display: flex;
}

.submit {
  background-color: #122a4a;
  font-weight: bolder;
  border-color: #1a58a3;
  text-transform: uppercase;
  color: #fff;
}

.step-2,
.step-3 {
  position: relative;
  margin-top: 10px;
  padding: 40px 20px 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
}

.step-3 {
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.mobile-hero {
  width: 100%;
  max-width: 90%;
  background: url("../images/bg-mobile.jpg") no-repeat center center / cover;
  min-height: 250px;
  border-radius: var(--borderRadius);
  margin: auto;
}

.footer-info {
  background: none repeat scroll 0 0 #242d3a;
  padding: 10px;
}

.footer-info p {
  color: #fff;
  margin: 0;
}

footer a {
  color: #fff;
}

footer a:focus,
footer a:hover {
  color: #fff;
}

.cc-img {
  max-width: 200px;
  margin-bottom: 5px;
}
.trust-marks {
  max-width: 250px;
  width: 80%;
  margin: 2em auto;
  display: block;
}
.donation-statement {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-top: 15px;
}

.total-donation-container {
  font-size: 100%;
  display: flex;
  margin-left: 10%;
  flex-direction: column;
  margin-top: -10px;
}

.total-donation {
  order: 2;
}

img[alt="CAPTCHA"] {
  max-width: 150px;
  height: auto;
}

/*///////ERRORS////////*/

.other-error {
  background-color: #f8f8f8;
  border-color: #c41e3a;
  color: #c41e3a;
}

.other-error #gift .donation-other input {
  border-color: #c41e3a;
}

.error-msg {
  color: #c41e3a;
  font-size: 100%;
}

label.error {
  color: #c41e3a;
}
input[type="checkbox"].error + div {
  background-color: red;
  padding: 2px;
}

.error label.accept-label {
  color: red;
}

/* .error + input {
    border: 2px solid #c41e3a;
} */

.error + img + input {
  border: 2px solid #c41e3a;
}

input.error,
select.error {
  border: 2px solid #c41e3a !important;
}

/* .error input, .error select{
    border: 2px solid
    #c41e3a !important;
} */

@media screen and (min-width: 48em) {
  .step-counter {
    position: absolute;
    left: 0;
    right: 0;
    top: -22px;
    margin: auto;
  }

  .show-mobile {
    display: none;
  }

  .hide-mobile {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .logo-container img {
    max-width: 350px;
    margin: auto;
    display: block;
  }
  body .content,
  body .content .form-container,
  body .content .logo-container {
    display: block;
    position: relative;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    left: 0;
    top: 0;
  }

  body form header {
    padding: 0 0 20px 0;
  }

  form header p {
    padding: 10px 20px 0;
    margin-bottom: 0;
  }

  form header ul {
    margin-top: 1em;
  }

  body .content .form-container {
    padding: 0;
  }

  /*  .logo-container img {
    margin: 10px auto;
    display: block;
  }*/

  body .content {
    background: none;
  }

  body .content,
  body form {
    padding: 0;
  }

  body form .form-container .form-inner {
    padding: 10px;
  }

  body form .step-counter {
    position: absolute;
    left: 0;
    right: 0;
    top: -22px;
    margin: auto;
  }

  body form .form-container .form-inner .row div {
    padding: 0;
  }
  .mobile-logo {
    display: block;
  }
  .desktop-logo {
    display: none;
  }
  .show-mobile {
    display: block;
  }

  .hide-mobile {
    display: none;
  }

  #container .row .p-0-on-small {
    padding: 0;
  }

  #donationAmount .row .col-12 {
    padding: 0;
  }

  /* #container .row > div {
		padding: 10px;
	} */

  body .price-mark {
    top: 8px;
  }

  .form-container {
    padding: 5px;
  }

  form input[type="text"],
  form input[type="email"],
  form select {
    margin: 0;
  }
}

.accept-fees-container {
  flex-wrap: wrap;
  padding-top: 1em;
}

.donation-grid-item label {
  font-size: 1rem;
}

.donation-grid-item:nth-of-type(4) {
  flex-basis: 100%;
}

.donation-grid-item:nth-of-type(4) label {
  font-size: 12px;
  font-weight: 600;
  padding-left: 10px;
}
