
    .multisteps-form__progress {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    }
    .multisteps-form__progress-btn {
    transition-property: all;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    transition-delay: 0s;
    position: relative;
    padding-bottom: 30px; /* Add some padding to the bottom for space */
    padding-top: 40px;
    color: rgba(231, 76, 60, 1.0);
    text-indent: -9999px;
    border: none;
    background-color: transparent;
    outline: none !important;
    cursor: default;
    font-size: 1.3rem;
    font-weight: 600;
    text-indent: 0;
    }
    @media (max-width: 767px) {
    .multisteps-form__progress-btn {
    font-size: 1rem;
    padding-bottom: 25px; /* Add some padding to the bottom for space */
    }
    }
    @media (max-width: 425px) {
    .multisteps-form__progress-btn {
    font-size: 0.7rem;
    padding-bottom: 15px; /* Add some padding to the bottom for space */
    }
    }
    .multisteps-form__progress-btn:before {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 24px;
    height: 24px;
    content: '';
    -webkit-transform: translateX(-50%);
    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;
    border: 2px solid currentColor;
    border-radius: 50%;
    background-color: rgba(231, 76, 60, 1.0);
    box-sizing: border-box;
    z-index: 3;
    }
    .multisteps-form__progress-btn:after {
    position: absolute;
    top: 11px;
    left: calc(-50% - 25px / 2);
    transition-property: all;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    transition-delay: 0s;
    display: block;
    width: 100%;
    height: 3px;
    content: '';
    background-color: currentColor;
    z-index: 1;
    }
    .multisteps-form__progress-btn:first-child:after {
    display: none;
    }
    .multisteps-form__progress-btn.js-active {
    color: rgba(39, 174, 96,1.0)
    }
    .multisteps-form__progress-btn.js-proses {
    color: rgba(241, 196, 15,1.0)
    }
    .multisteps-form__progress-btn.js-active:before {
    -webkit-transform: translateX(-50%) scale(1.2);
    transform: translateX(-50%) scale(1.2);
    background-color: currentColor;
    }
    .multisteps-form__progress-btn.js-proses:before {
        -webkit-transform: translateX(-50%) scale(1.2);
        transform: translateX(-50%) scale(1.2);
        background-color: currentColor;
    }
    .multisteps-form__form {
    position: relative;
    }
    .multisteps-form__panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    opacity: 0;
    visibility: hidden;
    }
    .multisteps-form__panel.js-active {
    height: auto;
    opacity: 1;
    visibility: visible;
    }
    .badge-bottom {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }
