.br-wizard {
  /*height: 100%;*/
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
}
.br-wizard[vertical] .wizard-progress {
  float: left;
  grid-template-columns: 1fr;
  height: 100%;
  max-width: 260px;
  overflow-x: hidden;
  padding-top: 0;
  position: relative;
  text-align: right;
}
.br-wizard[vertical] .wizard-progress .wizard-progress-btn {
  height: 100%;
  line-height: 100%;
  max-height: 100%;
  padding-bottom: 0;
  padding-right: 70px;
  padding-top: 0;
  text-align: right;
}
.br-wizard[vertical] .wizard-progress .wizard-progress-btn::before {
  left: calc(100% - 32px);
  line-height: 26px;
  margin-top: calc(var(--spacing-scale-2x) * -1);
  position: absolute;
  text-align: center;
  top: 50%;
}
.br-wizard[vertical] .wizard-progress .wizard-progress-btn::after {
  height: calc(100% - 34px);
  left: calc(100% - 33px);
  position: absolute;
  top: calc(-50% + 18px);
  width: 1px;
}
.br-wizard[vertical] .wizard-progress .wizard-progress-btn[active]::after {
  width: 1px;
}
.br-wizard[vertical][scroll] .wizard-progress {
  overflow-x: hidden;
  overflow-y: auto;
}
.br-wizard[vertical][scroll] .wizard-progress .wizard-progress-btn {
  min-height: 100px;
}
.br-wizard[vertical] .wizard-form {
  float: left;
  height: 100%;
  width: calc(100% - 260px);
}
.br-wizard[vertical] .wizard-form .wizard-panel .wizard-panel-content {
  border-top: 0;
}
@media (max-width: 991px) {
  .br-wizard .wizard-progress {
    
    overflow-y: hidden;
    padding-top: var(--spacing-scale-3x);
    position: relative;
    transition-delay: 0s;
    transition-duration: 0.25s;
    transition-property: all;
    transition-timing-function: linear;
  }
    .br-wizard .wizard-progress .wizard-progress-btn .info {
        font-size: var(--font-size-scale-up-02, 9.716px);
        line-height: 1em;
        text-align: center;
    }
  .br-wizard .wizard-progress::after {
   
  }
  .br-wizard .wizard-form {
    height: calc(100% - 100px);
  }
  .br-wizard .wizard-form .wizard-panel {
    border-top: 0;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
    max-height: 100%;
  }
  .br-wizard .wizard-form .wizard-panel .wizard-panel-content {
    height: auto;
    max-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding: var(--spacing-scale-half) var(--spacing-scale-base);
    transition-delay: 0s;
    transition-duration: 0.25s;
    transition-property: all;
    transition-timing-function: linear;
  }
  .br-wizard .wizard-form .wizard-panel .wizard-panel-content::-webkit-scrollbar {
    height: var(--spacing-scale-base);
    width: var(--spacing-scale-base);
  }
  .br-wizard .wizard-form .wizard-panel .wizard-panel-content::-webkit-scrollbar-track {
    background: var(--gray-10);
  }
  .br-wizard .wizard-form .wizard-panel .wizard-panel-content::-webkit-scrollbar-thumb {
    background: var(--gray-30);
  }
  .br-wizard .wizard-form .wizard-panel .wizard-panel-btn {
    align-items: flex-end;
    background-color: var(--background-alternative);
    display: flex;
    flex-wrap: wrap;
    height: fit-content;
    justify-content: center;
    padding: 0 !important;
    position: absolute;
    width: calc(100% - var(--spacing-scale-half));
  }
  .br-wizard .wizard-form .wizard-panel .wizard-panel-btn .br-button {
    float: none;
    margin: var(--spacing-scale-base) 5%;
    width: 90%;
  }
  .br-wizard .wizard-form .wizard-panel .wizard-panel-btn .wizard-btn-next,
.br-wizard .wizard-form .wizard-panel .wizard-panel-btn .wizard-btn {
    order: 1;
  }
  .br-wizard[collapsed] .wizard-progress {
    
    padding-bottom: var(--spacing-scale-3x);
    padding-top: var(--spacing-scale-3x);
  }
   
  .br-wizard[vertical] .wizard-form .wizard-panel {
    height: 100%;
    max-height: 100%;
  }
  .br-wizard[vertical][collapsed] .wizard-progress {
    max-width: 60px;
    padding-bottom: 0;
    padding-top: 0;
  }
  .br-wizard[vertical][collapsed] .wizard-progress .wizard-progress-btn {
    padding-right: 0;
  }
  .br-wizard[vertical][collapsed] .wizard-progress .wizard-progress-btn .info {
    display: none;
  }
  .br-wizard[vertical][collapsed] .wizard-form {
    max-width: calc(100% - 60px);
    min-width: calc(100% - 60px);
  }
}
.br-wizard .wizard-progress {
  
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  grid-template-rows: none;
 
  overflow-x: auto;
  overflow-y: hidden;
  padding-top: var(--spacing-scale-7x);
  width: 100%;
}
    .br-wizard .wizard-progress .wizard-progress-btn {
        background-color: transparent;
        border: 0;
        box-shadow: none !important;
        color: #9f9f9f;
        font-size: larger;
        text-align: center;
        padding-bottom: 0;
        padding-top: var(--spacing-scale-2x);
        position: relative;
        text-indent: 0;
        transition-delay: 0s;
        transition-duration: 0.15s;
        transition-property: all;
        transition-timing-function: linear;
        padding-top: 35px;
    }
.br-wizard .wizard-progress .wizard-progress-btn[disabled] {
  color: rgba(var(--interactive-rgb), var(--disabled));
  opacity: 1;
}
.br-wizard .wizard-progress .wizard-progress-btn[disabled]::before {
  opacity: var(--disabled);
}
.br-wizard .wizard-progress .wizard-progress-btn:focus {
  outline: none;
}
.br-wizard .wizard-progress .wizard-progress-btn.focus-visible:not([disabled]):not(.disabled)::before, .br-wizard .wizard-progress .wizard-progress-btn:focus-visible:not([disabled]):not(.disabled)::before {
  outline-color: var(--focus-color);
  outline-offset: var(--focus-offset);
  outline-style: var(--focus-style);
  outline-width: var(--focus-width);
}
.br-wizard .wizard-progress .wizard-progress-btn:hover:not([disabled])::before {
  background-image: linear-gradient(rgba(var(--interactive-rgb), var(--hover)), rgba(var(--interactive-rgb), var(--hover)));
}
.br-wizard .wizard-progress .wizard-progress-btn:active:not([disabled])::before {
  background-image: linear-gradient(rgba(var(--interactive-rgb), var(--pressed)), rgba(var(--interactive-rgb), var(--pressed)));
}
        .br-wizard .wizard-progress .wizard-progress-btn::before {
            background-color: var(--background-light);
            border: 2px solid #a9a9a9;
            border-radius: 50%;
            box-sizing: border-box;
            color: var(--interactive);
            content: attr(step) !important;
            display: block;
            font-size: var(--font-size-scale-up-02, 20.16px);
            font-weight: var(--font-weight-semi-bold, 600);
            height: 36px;
            left: 50%;
            line-height: 29px;
            margin-top: -13px;
            position: absolute;
            top: 0;
            transform: translateX(-50%);
            transition: all 0.15s linear 0s, -webkit-transform 0.15s cubic-bezier(0.05, 1.09, 0.16, 1.4) 0s;
            transition: all 0.15s linear 0s, transform 0.15s cubic-bezier(0.05, 1.09, 0.16, 1.4) 0s;
            transition: all 0.15s linear 0s, transform 0.15s cubic-bezier(0.05, 1.09, 0.16, 1.4) 0s, -webkit-transform 0.15s cubic-bezier(0.05, 1.09, 0.16, 1.4) 0s;
            width: 36px;
            z-index: 3;
        }
        .br-wizard .wizard-progress .wizard-progress-btn::after {
            background-color: #a9a9a9;
            content: "";
            display: block;
            height: 4px;
            right: calc(-50% + 17px);
            position: absolute;
            top: 5px;
            transition-delay: 0s;
            transition-duration: 0.15s;
            transition-property: all;
            transition-timing-function: linear;
            width: calc(100% - 34px);
            z-index: 1;
        }
.br-wizard .wizard-progress .wizard-progress-btn:first-child::after {
  display: none;
}
    .br-wizard .wizard-progress .wizard-progress-btn[active] {
        /*color: #49bf4c;*/
        color:black;
        text-align: center;
        font-weight: var(--font-weight-semi-bold, 600);
    }
        .br-wizard .wizard-progress .wizard-progress-btn[active]::after {
            background-color: #49bf4c;
            height: 4px;
        }
        .br-wizard .wizard-progress .wizard-progress-btn[active]::before {
            background-color: #49bf4c;
            border: 2px solid #49bf4c;
            color: var(--background-light);
            font-weight: var(--font-weight-bold, 700);
        }
.br-wizard .wizard-form {
  color: var(--color);
  height: calc(100% - 164px);
  position: relative;
}
.br-wizard .wizard-form .wizard-panel {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  left: 1%;
  margin-bottom: var(--spacing-scale-4x);
  opacity: 0;
  position: absolute;
  top: 0;
  visibility: hidden;
  width: 100%;
}
.br-wizard .wizard-form .wizard-panel[active] {
  height: 100%;
  left: 0 !important;
  opacity: 1;
  transition-delay: 0s;
  transition-duration: 0.5s;
  transition-property: all;
  transition-timing-function: linear;
  visibility: visible;
}
.br-wizard .wizard-form .wizard-panel .wizard-panel-content {
  border-top: 1px solid var(--border-color);
  flex-grow: 1;
  height: auto;
  max-height: calc(100% - 74px);
  overflow-x: hidden;
  overflow-y: auto;
  padding: var(--spacing-scale-base) var(--spacing-scale-2x);
}
.br-wizard .wizard-form .wizard-panel .wizard-panel-content > :last-child {
  margin-bottom: 220px;
}
.br-wizard .wizard-form .wizard-panel .wizard-panel-btn {
  align-self: flex-end;
  background-color: var(--background-alternative);
  border-top: 1px solid var(--border-color);
  height: fit-content;
  margin-top: 1px;
  padding: var(--spacing-scale-2x) 1.5%;
  width: 100%;
}
.br-wizard .wizard-form .wizard-panel .wizard-btn-next,
.br-wizard .wizard-form .wizard-panel .wizard-btn,
.br-wizard .wizard-form .wizard-panel .wizard-btn-prev {
  float: right;
  margin-left: var(--spacing-scale-2x);
}
.br-wizard .wizard-form .wizard-panel .wizard-btn-canc {
  float: left;
}
.br-wizard.inverted, .br-wizard.dark-mode {
  --color: var(--color-dark);
  --color-rgb: var(--color-dark-rgb);
  --text-color: var(--color);
  --interactive: var(--interactive-dark);
  --interactive-rgb: var(--interactive-dark-rgb);
  --visited: var(--visited-dark);
  --hover: var(--hover-dark);
  --pressed: var(--pressed-dark);
  --focus-color: var(--focus-color-dark);
  --focus: var(--focus-color);
}
.br-wizard.inverted .br-button.primary, .br-wizard.inverted .br-button[primary], .br-wizard.inverted .br-button.is-primary, .br-wizard.dark-mode .br-button.primary, .br-wizard.dark-mode .br-button[primary], .br-wizard.dark-mode .br-button.is-primary {
  --color: var(--color-light);
  --color-rgb: var(--color-light-rgb);
  --text-color: var(--color);
  --interactive: var(--interactive-light);
  --interactive-rgb: var(--interactive-light-rgb);
  --visited: var(--visited-light);
  --hover: var(--hover-light);
  --pressed: var(--pressed-light);
  --focus-color: var(--focus-color-light);
  --focus: var(--focus-color);
  --interactive-rgb: var(--background-dark-rgb);
  background-color: var(--interactive-dark);
  color: var(--background-dark);
}
.br-wizard.inverted .br-button.secondary, .br-wizard.inverted .br-button[secondary], .br-wizard.inverted .br-button.is-secondary, .br-wizard.dark-mode .br-button.secondary, .br-wizard.dark-mode .br-button[secondary], .br-wizard.dark-mode .br-button.is-secondary {
  background-color: var(--background-dark);
}
.br-wizard.inverted .wizard-progress, .br-wizard.dark-mode .wizard-progress {
  background-color: transparent;
}
.br-wizard.inverted .wizard-panel .wizard-panel-btn, .br-wizard.dark-mode .wizard-panel .wizard-panel-btn {
  background-color: transparent;
}
.br-wizard.inverted .wizard-progress-btn[active], .br-wizard.dark-mode .wizard-progress-btn[active] {
  color: var(--color);
}
.br-wizard.inverted .wizard-progress-btn[active]::before, .br-wizard.dark-mode .wizard-progress-btn[active]::before {
  --interactive-rgb: var(--active-rgb);
  background-color: var(--color);
  color: var(--active);
}

/*# sourceMappingURL=wizard.css.map*/