﻿html, body {
  background: #4A529B;
  min-height: 100%;
  font-size: 16px;
  line-height: 1.1;
}
html .hide, body .hide {
  display: none;
}
html h1, html h2, html h3, body h1, body h2, body h3 {
  font-weight: bold;
}
html h1, html h2, html h3, html p, html span, html a, html label, body h1, body h2, body h3, body p, body span, body a, body label {
  color: #fff;
}
@media (max-width: 768px) {
  html .desktop-only, body .desktop-only {
    display: none;
  }
}
html .mobile-only, body .mobile-only {
  display: none;
}
@media (max-width: 768px) {
  html .mobile-only, body .mobile-only {
    display: block;
  }
}

.btn {
  font-family: "MINISans";
  text-align: center;
  padding: 16px 24px;
  border: 2px solid RGBA(0, 0, 0, 0);
  font-size: 14px;
  min-width: 260px;
}
.btndisabled {
  cursor: not-allowed;
}
.btn.btn-outline-primary {
  background: #fff;
  color: #000;
}

.sans {
  font-family: "MINISans";
}

.form-control, .form-select {
  font-family: "MINISans";
  border-radius: 0;
  height: 50px;
  background-color: #fff;
  font-size: 14px;
  border: 2px solid #000;
  margin: 0 0 14px;
}
.form-control.form-select, .form-select.form-select {
  -moz-appearance: none;
  -webkit-appearance: none;
  background-image: url(/Public/img/select-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 100% center;
  padding: 6px 45px 6px 12px;
}

form {
  max-width: 760px;
  margin: 0px auto;
  padding: 50px 20px;
}
form .step {
  display: none;
  position: relative;
}
form .step.active {
  display: block;
}
form .step .logo-img {
  display: block;
  margin: 0 0 0 auto;
}
form .step .step-title {
  margin: 25px auto 30px;
  font-weight: bold;
  font-size: 50px;
  line-height: 1;
  border: 10px solid #F6E65D;
  padding: 35px 40px;
}
@media (max-width: 768px) {
  form .step .step-title {
    font-size: 30px;
    padding: 25px 20px;
  }
}
form .step .step-subtitle {
  font-size: 18px;
  line-height: 1.4;
  margin: 0px auto 20px;
}
form .step .contact-retailer .btn {
  min-width: auto;
  width: 100%;
}
form .step .stay-informed-disclaimer {
  margin: 30px 0 35px;
  font-size: 16px;
  line-height: 1.2;
}
form .step .custom-toggle-group {
  text-align: left;
  margin: 10px auto;
  cursor: pointer;
}
form .step .custom-toggle-group > div, form .step .custom-toggle-group > p {
  display: inline-block;
  vertical-align: middle;
}
form .step .custom-toggle-group > p {
  font-family: "MINISans";
  font-size: 14px;
  line-height: 1.1;
  max-width: calc(100% - 40px);
  margin: 0 0 0 10px;
}
form .step .custom-toggle-group .custom-toggle {
  position: relative;
  width: 22px;
  height: 22px;
  border: 2px solid #000;
  border-radius: 50%;
  cursor: pointer;
  margin: 0px auto;
}
form .step .custom-toggle-group .custom-toggle.active-check:before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background-color: #000;
  border-radius: 50%;
}
form .step .custom-toggle-group .custom-toggle.custom-checkbox {
  border-radius: 4px;
  width: 25px;
  height: 25px;
  background-color: #fff;
}
form .step .custom-toggle-group .custom-toggle.custom-checkbox:before {
  border-radius: 4px;
}
form .step .custom-toggle-group .custom-toggle.custom-checkbox.active-check:before {
  background-image: url("/Public/img/checkmark.png") !important;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-color: #fff;
}
form .step .error-message {
  display: none;
  text-align: center;
  font-size: 14px;
  line-height: 1.3;
  color: red;
  margin: 25px auto;
}
form .step .continue-btn {
  display: block;
  margin: 20px auto 15px;
  background: #F6E65D !important;
  color: #000 !important;
}
form .step .form-legal {
  margin: 40px auto 20px;
  font-size: 12px;
  line-height: 1.3;
}
form .step .banner img {
  max-width: 100%;
}
form .step .banner .copy {
  margin-top: 20px;
}
form .step .banner .copy h1 {
  font-size: 42px;
  line-height: 1.1;
}
@media (max-width: 768px) {
  form .step .banner .copy h1 {
    font-size: 30px;
  }
}
form .step .banner .copy p {
  font-weight: bold;
  font-size: 30px;
  line-height: 1.1;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  form .step .banner .copy p {
    font-size: 18px;
  }
}
form .step.step-intro .form-select {
  max-width: 400px;
  margin: 0px auto;
}
form .step.step-success {
  text-align: center;
}
form .step.step-success p {
  font-size: 20px;
}
form .step.step-success a {
  color: #fff !important;
}

.error {
  border-color: red;
}
