/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3,
h4,
p {
  margin: 1em auto;
}

ul[role='list'],
ol[role='list'] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.4;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.body {
  font-size: 16px;
}

.container {
  padding-top: 1em;
  padding-bottom: 3em;
  max-width: 990px;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, .4);
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.overlay-content {
  position: relative;
  background-color: #fff;
  padding: 2rem 8% 2rem 5%;
  width: 990px;
  max-width: 94vw;
  height: 90vh;
  overflow-y: scroll;
}

.btn-overlay-close {
  position: absolute;
  top: 2rem;
  right: 5%;
  font-size: 42px;
  padding: 8px;
  border: none;
  outline: none;
  background-color: transparent;
  cursor: pointer;
}

@media screen and (max-width: 1100px) {
  .overlay-content {
    padding-right: 10%;
  }

  .btn-overlay-close {
    right: 3.5%;
    font-size: 32px;
  }
}

.recall-table {
  border-collapse: collapse;
}

.recall-table td,
.recall-table th {
  border: 1px solid #000;
  padding: 0.5rem;
  text-align: left;
  vertical-align: top;
}

.model_num {
  padding-right: .5rem;
  font-family: 'Courier New', Courier, monospace;
}

@media screen and (max-width: 1450px) {
  .container {
    padding-left: 5%;
    padding-right: 5%;
  }
}

@media screen and (min-width: 990px) {
  .btn--main {
    min-width: 250px;
    display: inline-block;
  }
}

.selector-steps {
  position: relative;
  width: 100%;
}

.selector-steps:before {
  content: '';
  position: absolute;
  top: 13px;
  left: 20px;
  width: calc(100% - 40px);
  height: 3px;
  z-index: 0;
  background-color: #000;
}

.selector-steps-ul {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  z-index: 2;
  font-size: 14px;
}

.selector-steps-ul li {
  display: block;
  text-align: center;
  line-height: 20px;
}

.selector-steps-ul a {
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .05rem;
}

.step-marker {
  display: block;
  margin: 0.05rem auto 0.5rem;
  border-radius: 75%;
  width: 28px;
  height: 28px;
  background-color: #000;
  transition: all .3s ease-in;
}

/* .selector-steps-ul [aria-current="step"] {
  font-weight: 500;
  font-size: 18px
}
.selector-steps-ul [aria-current="step"] .step_num {
  font-weight: 700;
} */
.selector-steps-ul [aria-current="step"] .step-marker {
  background-color: #E5A500;
}

.quiz-body {
  margin: 0 2%;
  padding: 1.5rem 5%;
  overflow: hidden;
}

/* @media screen and (min-width:1000px){
  .quiz-body{
    max-height:1500px;
  }
} */
@media screen and (max-width:768px) {
  .quiz-body {
    max-height: 2000px;
    margin:0;
    padding:0;
  }
}


.answer-item {
  position: relative;
  padding: .25rem 1rem;
  display: inline-block;
}

.quiz-radio {
  display: none;
}

.answer-item label {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 12px 35px;
  border-radius: 10px;
  border: #000 solid 2px;
  text-decoration: none;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 1rem !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  cursor: pointer;
}

.answer-item .quiz-radio:checked+label {
  background-color: #fff;
  color: #000;
}

.btn-list {
  margin-bottom: 1rem;
}
@media only screen and (max-width:769px){
  .btn-list {
    display:flex;
    flex-wrap:wrap;
    justify-content: center;
  }
}

.quiz-item {
  transition: all .65s ease-in;
  transform: translateX(100vw);
}

.quiz-item.current {
  transform: translateX(0);
  min-height: 300px;
}

.quiz-item.past {
  transform: translateX(-100vw);
}

.zero-height {
  height: 0;
}

.intro {
  transition: all .3s ease-in;
}

.hide {
  display: none;
}

.hdr-model-number {
  text-align: center;
}

.form-content {
  width: 770px;
  max-width: 100%;
  margin: 1em auto;
}

.error-message {
  color: red;
}

.hidden {
  display: none;
}

.btn-next-step {
  display: block;
  border: none;
  background-color: #000;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  width: 100%;
  padding: 12px 20px;
  cursor: pointer;
  margin-top: 1.5rem;
}

.btn-next-step[disabled] {
  cursor: default;
  border: rgba(0, 0, 0, .25) solid 1px;
  background-color: rgba(0, 0, 0, .1);
}


/*sr-only:not(:focus):not(:active)*/
.sr-only {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.file-upload {
  display: flex;
  padding: 6rem 5%;
  justify-content: center;
  align-items: center;
  width: 100%;
  border: #000 solid 1px;
  margin-bottom: 2rem;
  cursor: pointer;
}

.file-upload-2 {
  padding: 3rem 5%;
}

@media screen and (max-width: 749px) {
  .file-upload {
    padding: 2rem 5%;
  }

  .file-upload-2 {
    padding: 2rem 5%;
  }
}

.file-upload div {
  margin: 0 .5em;
}

.file-upload p {
  margin: 0;
}

.form-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 750px) {
  .form-line-split {
    width: 48%;
  }
}

@media screen and (max-width: 749px) {
  .form-line-split {
    width: 100%;
  }

  .form-line-split:first-of-type {

    margin-right:5px;
  }
  .form-line-split:nth-child(2){
    margin-left:5px;
  }
}

.req {
  color: #EF0000;
}

.current-photo {
  font-size: 13px;
}

.current-photo ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.current-photo li {
  margin: 0;
  padding: 0;
  font-style: italic;
}

.confirmation-message {
  text-align: center;
}

.confirmation-message h2 {
  text-transform: uppercase;
}

/** float container */
.float-container {
  border: solid 1px #ccc;
  box-sizing: border-box;
  margin-bottom: 8px;
  padding: 0 8px;
  position: relative;
  width: 100%;
}

.float-container input {
  border: none;
  font-size: 16px;
  outline: 0;
  padding: 20px 0 6px;
  width: 100%;
  background: transparent;
}

.float-container select {
  border: none;
  font-size: 16px;
  outline: 0;
  padding: 6px 0 6px;
  height: 48px;
  width: 100%;
  background-color: #fff;
  color:#000;
}


.float-container label {
  font-size: 16px;
  position: absolute;
  transform-origin: top left;
  transform: translate(0, 13px) scale(1);
  transition: all .1s ease-in-out;
}
@media only screen and (max-width:769px){
  .float-container label {
    font-size:14px;
  }

  .float-container .up {
    position:relative;
  }
}

/** active label */
.float-container.active label,
.float-container label.up {
  transform: translate(0, 2px) scale(.75);
}

.receipt-photo, .other-content {
  display: none;
}

.proof-purchase-wrapper {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.proof-purchase-wrapper .proof-purchase-desc {
  flex: 1;
  width: 70%;
}


.intro-text p{
  text-align:left;
}

.inner-photos, .labels {
  display:flex;
}
.quiz-item.basic-question {
 
}
footer ul {
  display: flex;
  text-decoration: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

footer ul li {
  margin-right:10px;
}

footer ul a {
  color:#000;
}

.amount-paid::-webkit-outer-spin-button,
.amount-paid::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.address-wrapper {
  padding: 1.5rem;
  padding-bottom: 0;
  margin-bottom: 1.5rem;
  border-radius: 10px;
  border: #000 solid 2px;
}

.error-message-container {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
  border: 1px solid transparent;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 10px;
}

.success-message-container {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
  border: 1px solid transparent;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 10px;
}