#bevquiz {
    padding: 0 10px;
    min-height: calc(100vh - 468px);
  }
  
  #bevquiz .hidden {
    display: none !important;
  }
  
  .bevquiz-banner {
    background: #323F48;
    text-align: center;
    padding: 40px 20px;
    color: #fff;
    margin: 0 -10px;
  }
  
  .bevquiz-banner span {
    font-size: 15px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.6;
  }
  
  .bevquiz-banner h1 {
    color: #fff;
    font-size: 36px;
    font-family: Sentinel A, Sentinel B, Georgia, serif;
    line-height: 1;
  }
  
  .bevquiz-box {
    background: #fff;
    margin: -32px auto 32px;
    width: 100%;
    max-width: 768px;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.16);
    border-radius: 6px;
    padding: 32px 32px 0;
  }
  
  .bevquiz-intro {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-bottom: 32px;
    font-size: 18px;
  }
  
  .bevquiz-intro img,
  .bevquiz-box .exit-article img {
    min-width: 264px;
  }
  
  .bevquiz-intro div p:last-child {
    margin-bottom: 0;
  }
  
  .bevquiz-box h2, .bevquiz-box label {
    font-size: 18px;
    font-weight: normal;
    margin-top: 0;
  }
  
  .bevquiz-box div.form {
    margin-bottom: 25px;
  }
  
  .bevquiz-box label {
    display: inline-flex;
    padding: 5px 15px;
    gap: 8px;
    align-items: center;
    cursor: pointer;
  }
  
  .bevquiz-box input[type="checkbox"],
  .bevquiz-box input[type="radio"] {
    width: 20px;
    min-width: 20px;
    height: 16px;
  }
  
  .bevquiz-box .response {
    padding: 12px;
    margin-top: -10px;
    margin-bottom: 30px;
    font-size: 15px;
    color: #000;
    background: #F4F9FF;
    border: 1px solid #DEEAF9;
    border-radius: 5px;
  }
  
  .bevquiz-box .response p:last-child {
    margin-bottom: 0;
  }
  
  .bevquiz-stepper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    min-height: 68px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    margin: 0 -32px;
    background: #F7F7F7;
    border-top: 1px solid #E9E9E9;
    font-size: 15px;
  }
  
  .bevquiz-stepper .progress-bar {
    position: absolute;
    top: -1px;
    left: 0;
    display: block;
    width: 0;
    height: 2px;
    background: #323F48;
    transition: width 0.3s ease;
  }
  
  .bevquiz-stepper .progress-bar[data-step="1"] { width: 10%; }
  .bevquiz-stepper .progress-bar[data-step="2"] { width: 20%; }
  .bevquiz-stepper .progress-bar[data-step="3"] { width: 30%; }
  .bevquiz-stepper .progress-bar[data-step="4"] { width: 40%; }
  .bevquiz-stepper .progress-bar[data-step="5"] { width: 50%; }
  .bevquiz-stepper .progress-bar[data-step="6"] { width: 60%; }
  .bevquiz-stepper .progress-bar[data-step="7"] { width: 70%; }
  .bevquiz-stepper .progress-bar[data-step="8"] { width: 80%; }
  .bevquiz-stepper .progress-bar[data-step="9"] { width: 90%; }
  .bevquiz-stepper .progress-bar[data-step="10"] { width: 100%; }
  
  
  .bevquiz-stepper .bevquiz-buttons,
  .bevquiz-box .retake-quiz {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: normal;
    font-size: 15px;
  }
  
  .bevquiz-stepper .previous,
  .bevquiz-box .retake-quiz {
    padding: 11px 2px;
    line-height: 1;
  }
  
  .bevquiz-stepper .next {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: normal;
  }
  
  .bevquiz-stepper .next[disabled] {
    pointer-events: none;
    cursor: default;
    opacity: 0.3;
    transition: none;
  }
  
  .bevquiz-box .scoring {
    font-size: 18px !important;
    text-align: center;
  }
  
  .bevquiz-box .score-header {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 0 auto;
    text-align: left;
  }
  
  .bevquiz-box .score {
    text-align: center;
  }
  
  .bevquiz-box .exit-article {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 32px;
    min-height: 68px;
    text-align: left;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    margin: 32px -32px 0;
    background: #F7F7F7;
    border-top: 1px solid #E9E9E9;
    font-size: 18px;
  }
  
  @media (max-width: 640px) {
    
    .bevquiz-banner h1 {
      font-size: 28px;
    }
    
    .bevquiz-box {
      padding: 24px 16px 0;
    }
    
    .bevquiz-stepper,
    .bevquiz-box .exit-article {
      margin: 0 -16px;
    }
    
    .bevquiz-intro {
      flex-direction: column;
    }
    
    .bevquiz-box .score-header h2 {
      font-size: 17px;
    }
    
    .bevquiz-box .score {
      font-size: 16px;
    }
    
    .bevquiz-box .exit-article {
      flex-direction: column-reverse;
      padding: 24px;
      font-size: 16px;
      margin-top: 24px;
    }
    
    .bevquiz-intro img,
    .bevquiz-box .exit-article img {
      width: 100%;
      min-width: 100%;
    }
    
  }