:root {
    --br-survey-primary-color: #FFB624;
    --br-survey-secondary-color: #333333;
  }
  
  .survey .form-step-wrapper {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    background-color: #FFB624;
    padding: 15px;
  }
  .survey .form-step {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .survey .form-step > div {
    font-weight: bold;
    color: #000000;
    margin-right: 2px;
  }
  .survey .form-step > div:last-child {
    margin-right: 0;
  }
  .survey .card {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    background-color: #FFFFFF;
    max-width: 100%;
    margin: 0 auto;
    animation: fade 50ms ease-in-out forwards;
    user-select: none;
  }
  .survey .card:last-child {
    justify-content: center;
  }
  .survey .card.active {
    animation: slide 45ms ease-in-out both;
  }
  .survey .card.hide {
    display: none;
  }
  .survey .card .question-wrapper {
    width: 80%;
    margin: 30px auto;
  }
  .survey .card .question-wrapper label {
    margin-top: 0;
    text-align: center;
    font-size: 30px;
    font-weight: 700;
  }
  .survey .card .desc-wrapper {
    display: inline-block;
    width: 50%;
    margin: 0 auto 30px;
  }
  .survey .card .desc-wrapper div {
    float: left;
  }
  .survey .card .desc-wrapper div:last-child {
    float: right;
  }
  .survey .card .form-group-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    margin-bottom: 30px;
  }
  .survey .card .form-group {
    width: 50%;
    position: relative;
  }
  .survey .card .form-group .radio-btn-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-image: linear-gradient(#333333, #333333);
    background-size: calc(100% - 10px) 5px;
    background-position: center 7px;
    background-repeat: no-repeat;
  }
  .survey .card .form-group .radio-btn-wrapper .answer-value {
    font-weight: 400;
    color: #333333;
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
  }
  .survey .card .form-group .form-information-wrap {
    width: 80%;
    margin: 30px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .survey .card .form-group .form-information-wrap div {
    max-width: 300px;
    margin-bottom: 15px;
  }
  .survey .card .form-group .form-information-wrap button[type=submit] {
    background-color: #FFB624;
    border-radius: 0;
    border: 1px solid #FFB624;
    color: #FFFFFF;
  }
  .survey .card .form-group .form-information-wrap button[type=submit]:hover {
    background-color: #FFFFFF;
    color: #FFB624;
  }
  .survey .card .form-group input[type=radio] {
    /* Add if not using autoprefixer */
    -webkit-appearance: none;
    appearance: none;
    /* For iOS < 15 to remove gradient background */
    background-color: #fff;
    /* Not removed via appearance */
    margin: 0 0 10px 0;
    font: inherit;
    color: #333333;
    width: 1.15em;
    height: 1.15em;
    border-radius: 50%;
    background-color: #333333;
    cursor: pointer;
  }
  .survey .card .form-group input[type=radio]:checked {
    background-color: #FFB624;
  }
  .survey .btn-navigation-wrapper {
    padding: 15px;
    background-color: #333333;
    display: inline-block;
    width: 100%;
  }
  .survey .btn-navigation-wrapper .form-nav-btn {
    display: inline-flex;
    align-items: center;
    color: #FFFFFF;
    font-weight: bold;
    cursor: pointer;
    font-size: 18px;
  }
  .survey .btn-navigation-wrapper .form-nav-btn.btn-back {
    float: left;
  }
  .survey .btn-navigation-wrapper .form-nav-btn.btn-back .icon-wrap {
    margin-right: 10px;
  }
  .survey .btn-navigation-wrapper .form-nav-btn.btn-next {
    float: right;
    display: none;
  }
  .survey .btn-navigation-wrapper .form-nav-btn.btn-next .icon-wrap {
    margin-left: 10px;
  }
  .survey .btn-navigation-wrapper .form-nav-btn .icon-wrap {
    border-radius: 25px;
    background-color: #FFB624;
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .survey .btn-navigation-wrapper .form-nav-btn .icon-wrap i {
    color: #FFFFFF;
    font-weight: 400;
    font-size: 18px;
  }
  
  .survey-form {
    overflow: hidden;
    position: relative;
  }
  
  .step-title {
    margin: 0;
    margin-bottom: 1rem;
    text-align: center;
  }
  
  @keyframes slide {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes fade {
    0% {
      opacity: 1;
    }
    50% {
      opacity: 0;
    }
    100% {
      opacity: 0;
    }
  }
  