#bm-configurator
{
    width: 100%;
}

.flex
{
    display: flex;
}

.flex-col
{
    flex-direction: column;
}

.flex-wrap
{
    flex-wrap: wrap;
}

.item-center
{
    align-items: center;
}

.w-1-2
{
    width: 50%;
}

.gap-5
{
    gap:10px;
}

.gap-10
{
    gap: 40px;
}

.mb-20
{
    margin-bottom: 20px;
}

/* Color Input Style*/

.label-button
{
    display: flex;
    align-items: center;
    gap:10px;
    width: 100%;
    justify-content: space-between;
    font-size: 15px;
}

.label-button .antraciet
{
    background-color: #363d45;
    width: 100px;
    height: 60px;
}

.label-button .zwart
{
    background-color: black;
    width: 100px;
    height: 60px;
}

.label-button .creme
{
    background-color: #e5dece;
    width: 100px;
    height: 60px;
}

.radio-button
{
    height: 60px;
    border: 2px solid lightgray;
    border-radius: 5px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 10px;
}

input,
textarea
{
    border: 1px solid lightgray;
    outline: none;
    height: 35px;
    border-radius: 10px;
    padding: 0 15px;
}

textarea{
    height: 100px;
}

.offerForm {
    background-color: whitesmoke;
    margin: auto;
    padding: 40px;
    width: 100%;
    border-radius: 10px;
    display: flex;
    gap:40px;
}

.offerForm .left
{
    width: 75%;
}

.offerForm .right
{
    width: 25%;
}

.order-form-header {
    text-align: center;
}


/* Hide all steps by default: */
.tab {
    display: none;
}

.tab span
{
    display: block;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 20px;
}

.step-control {
    margin-top: 20px;
    overflow: auto;
}

.btn-step {
    display: flex;
    justify-content: flex-end;
}

.step-indicators {
    text-align: center;
    margin-top: 40px;
}

#prevBtn {
    margin-right: 0.5rem;
}

.step-control button {
    background-color: var(--bg-primary);
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 17px;
    cursor: pointer;
}

.step-control button:hover {
    opacity: 0.8;
}

#prevBtn {
    background-color: #bbbbbb;
}

.step {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbbbbb;
    border: none;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
}

.step.active {
    opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
    background-color: #4caf50;
}

output
{
    font-size: 15px;
}

.hidden
{
    display: none;
}

.w-1-2
{
    width: 50%;
}

@media only screen and (max-width: 600px) {
    .offerForm
    {
        flex-direction: column;
        padding: 10px !important;
        width: calc(100% - 20px) !important;
    }

    .left,
    .right{
        width: 100% !important;
    }

    .tab
    {
        overflow-y: scroll;
    }
}
