<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.form-tabs {
    display: grid;
    justify-content: center;
    grid-auto-flow: column;
    column-gap: 100px;
    padding: 40px 20px;
}

.form-tabs button {
    appearance: none !important;
    -webkit-appearance: none !important;
    font-size: 2rem;
    
    font-weight: 600;
    cursor: pointer;
    color: #000;
    text-decoration: none;
}

.form-tabs button.active {
    text-decoration: underline;
}

.order-form + .order-form-2 {
    display: none;
}

.order-form.hide {
    display: none;
}

.order-form.show {
    display: block;
}

.order-form-2.show {
    display: block;

    .order-form {
        display: block;
    }
}

.order-form-2.hide {
    display: none;
}

@media screen and (max-width: 768px) {
    .form-tabs {
        justify-content: space-around;
        column-gap: 0px;
    }
}
</pre></body></html>