

        #businessNew {
            max-width: 500px;
            background-color: #ffffff;
            /* margin: 10px auto; */
            padding: 20px;
            box-shadow: 0px 6px 18px rgb(0 0 0 / 9%);
            border-radius: 12px;
        }

        #businessNew .form-header {
            gap: 5px;
            text-align: center;
            font-size: .9em;
        }

        #businessNew .form-header .stepIndicator {
            position: relative;
            flex: 1;
            padding-bottom: 30px;
        }

        #businessNew .form-header .stepIndicator.active {
            font-weight: 600;
        }

        #businessNew .form-header .stepIndicator.finish {
            font-weight: 600;
            color: #009688;
        }

        #businessNew .form-header .stepIndicator::before {
            content: "";
            position: absolute;
            left: 50%;
            bottom: 0;
            transform: translateX(-50%);
            z-index: 9;
            width: 20px;
            height: 20px;
            background-color: #d5efed;
            border-radius: 50%;
            border: 3px solid #ecf5f4;
        }

        #businessNew .form-header .stepIndicator.active::before {
            background-color: #a7ede8;
            border: 3px solid #d5f9f6;
        }

        #businessNew .form-header .stepIndicator.finish::before {
            background-color: #009688;
            border: 3px solid #b7e1dd;
        }

        #businessNew .form-header .stepIndicator::after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: 8px;
            width: 100%;
            height: 3px;
            background-color: #f3f3f3;
        }

        #businessNew .form-header .stepIndicator.active::after {
            background-color: #a7ede8;
        }

        #businessNew .form-header .stepIndicator.finish::after {
            background-color: #009688;
        }

        #businessNew .form-header .stepIndicator:last-child:after {
            display: none;
        }

        #businessNew input {
            /* padding: 10px 0px; */
            /* width: 100%; */
            font-size: 0.9em;
            /* border: 1px solid #e3e3e3; */
            border-radius: 5px;
        }

        #businessNew input:focus {
            border: 1px solid #009688;
            outline: 0;
        }

        #businessNew input.invalid {
            border: 1px solid #ffaba5;
        }

        #businessNew .step {
            display: none;
        }

        #businessNew .form-footer {
            overflow: auto;
            gap: 20px;
        }


        #businessNew .form-footer button:hover {
            opacity: 0.8;
        }

        #businessNew .form-footer #prevBtn {
            background-color: #fff;
            color: #009688;
        }