.order_heading {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    width: fit-content;
    height: 1.5em;
    border-bottom: 5px solid #f00;
}
.order_simulator {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    gap: 1em;
}
.input_container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.label {
    width: fit-content;
}
.price {
    width: 5em;
    text-align: right;
}
.print_price tr {
    font-size: clamp(0.7rem,3vw,1rem);
}
.head_color {
    color: #555 !important;
    font-weight: bold;
    background-color: #f2ad35;
}
.order_num {
    width: 6em;
}
.print_type {
    width: 8em;
    min-width: fit-content;
}
.postage {
    width: 5em;
}
    @media (max-width:480px) {
        .order_simulator {
            margin-left: 0 !important;
        }
    }