/* conditionally hide/show languages */
body.en-us .fr-ca {
  display: none;
}
body.fr-ca .en-us {
  display: none;
}

.hidden {
  display: none;
}

.br-container {
  padding-top: 32px;
}

/* stepper */
.stepper {
  position: relative;
  background-color: #fff;
  width: 100%;
  max-width: 644px;
  background: #FFFFFF;
  height: 64px;
  margin: 8px auto;
  border-radius: 5px;
  box-shadow: 0 1px 3px 0 rgba(0,0,0,0.15);
}


.stepper.result {
  margin-bottom: 24px;
}

/* stepper left */
.br-logo {
  position: absolute;
  z-index: 2;
  top: -8px;
  left: 18px;
}

/* stepper center */
.stepper-text {
  text-align: center;
  margin: auto;
  width: 100%;
  padding-top: 12px;
}
.stepper-text span {
  display: block;
} 
.stepper-text span.hidden {
  display: none;
} 
.stepper-text .eyebrow {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 1px;
  font-weight: 500;
  color: #909090;
  text-transform: uppercase;
}

.stepper-text .stepper-step {
  color: #333F48;
  font-size: 16px;
  font-weight: 500;
}

/* stepper right */
.your-vitamix {
  position: absolute;
  z-index: 2;
  right: 0;
  top: 0;
  padding: 10px 20px;
}
.your-vitamix svg {
  opacity: .25;
  display: block;
  margin: auto;
}

.your-vitamix span {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 500;
  color: #808080;
}

.stepper .progress-bar {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: #333F48;
  width: 0;
  transition: width 1s ease;
}

.stepper.first-question .progress-bar {
  width: 33%;
}

.stepper.second-question .progress-bar {
  width: 66%;
}

.stepper.last-question .progress-bar {
  width: 100%;
}

.stepper.result .progress-bar {
  width: 100%;
  transition: none;
}

.stepper .result-link {
  color: #1b6ab4;
  font-size: 14px;
}

/* question container */
.br-question {
  text-align: center;
  width: 100%;
  margin: 30px auto;
  max-width: 566px;
}

.br-question-headline {
  font-size: 28px;
  line-height: 32px;
  font-weight: 400;
  color: #333F48;
}

.br-question-description {
  font-size: 16px;
}

/* question container */
.br-choice-container {
  display: flex;
  justify-content: center;
}

.br-choice {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.br-choice:first-child {
  margin-right: 20px;
}

.br-choice img {
  background: #fff;
  border-radius: 200px;
  box-shadow: 0 1px 1px rgba(0,0,0,0.2);  
}

.br-btn {
  margin-top: 20px;
  width: 100%;
  max-width: 250px;
  min-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 9px 8px;
  flex: 1;
}


@media (max-width: 640px) {
  
  
  .br-container {
    padding: 40px 10px 0;
    min-height: 650px;
  }
  
  .br-logo {
    left: calc(50% - 35px);
    top: -32px;
  }
  
  .br-logo svg {
    width: 70px;
    height: 70px;
  }
  
  .stepper {
    padding-top: 31px;
    height: 92px;
  }
  
  .your-vitamix {
    display: none;
  }
  
  .br-question-headline {
    margin-top: -8px;
    font-size: 22px;
    line-height: 25px;
  }
  
  .br-question-description {
    font-size: 15px;
  }
  
  .br-choice img {
    width: 140px;
  }
  
  .br-choice:first-child {
    margin-right: 10px;
  }
  
}

