.step {
    display: none;
}
.step.active {
    display: block;
}
#multistep-form input, #multistep-form textarea {
    display: block;
    margin-bottom: 10px;
    width: 100%;
    padding: 8px;
}
button {
    margin-right: 10px;
}

#car_number_input {
    width: 200px;
    padding: 10px;
    font-size: 18px;
    border: 1px solid #ccc;
    border-radius: 6px;
}
#car_number_input.error,
#email.error,
#phone.error{
    border-color: red;
}
input.error{
    border-color: red;
}
select.error{
    border-color: red;
}
.sub_types{
    display: flex;
    justify-content: space-between;
}
.sub_type{
    text-transform: uppercase;
}
.tabs {
    display: flex;
    border-bottom: 2px solid #ccc;
    margin-bottom: 10px;
}
.tab {
    padding: 5px 12px;
    cursor: pointer;
    border: 1px solid #ccc;
    border-bottom: none;
    background: #f9f9f9;
}
.tab.active {
    background: #fff;
    font-weight: bold;
}
.tab-content {
    display: none;
    padding: 15px;
    border: 1px solid #ccc;
}
.tab-content.active {
    display: block;
}
.tab-content-wrapper{
    display: flex;
    gap: 10px;
}
.sub_type_item{
    cursor: pointer;
}
.sub_type_item.active{
    font-weight: bold;
}










/*///////////////////////////////*/
.step-form-wrapper{
    margin: 20px;
}
.step-form-wrapper h3{
    margin-bottom: 15px;
}
.step-form {
    box-sizing: content-box;
    width: 100%;
    max-width: 500px;
    position: relative;
    overflow: hidden;
    border: 1px solid #ccc;
    padding: 20px;
    transition: height 0.4s ease;
}

.step {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.step.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
}

.controls {
    margin-top: 15px;
}

button {
    margin-right: 10px;
}

.tabs { display: flex; gap: 5px; margin-bottom: 10px; }
.tab-btn {
    padding: 6px 12px;
    border: 1px solid #ccc;
    background: #f9f9f9;
    cursor: pointer;
}
.tab-btn.active {
    background: #fff;
    border-bottom: 2px solid #000;
    font-weight: bold;
}
.tab-content {
    display: none;
    border: 1px solid #ccc;
    padding: 10px;
    background: #fefefe;
}
.tab-content.active { display: block; }
.sub-options span {
    margin-right: 15px;
    cursor: pointer;
    color: #666;
}
.sub-options span.active {
    font-weight: bold;
    color: #000;
}