.ar500-bundle-options *{
    box-sizing: border-box;
}

.ar500-bundle-options .legend.title {
    display: inline-block;
    width: 100%;
    margin: 0;
    padding: 20px 0px;
    margin-bottom: 0px;
    font-size: 20px;
    font-weight: bold;
}

.ar-bopt-container {
    margin-bottom: 30px;
}

.ar-bopt-container > .label {
    display: block;
    font-size: 20px;

    padding-bottom: 0px;
    margin-bottom: 10px;

    border-bottom: 1px solid #888;
}

/*
    ar-bopt-property
    ar-bopt-properties
*/

.ar-bopt-property {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.ar-bopt-property-name {
    font-weight: bold;
    min-width: 150px;
    padding-right: 20px;
}
.ar-bopt-property-values {
    white-space: normal;
    flex-grow: 1;
}
.ar-bopt-property-value {
    border: 1px solid #ccc;
    background: #efefef;
    border-radius: 9px;
    cursor: pointer;
    padding: 5px 10px;
    margin-right: 10px;
    white-space: nowrap;
    line-height: 40px;
}

.ar-bopt-property-value:hover{
    background: #f8f8f8;
}

.ar-bopt-property-value.active, .ar-bopt-property-value.active:hover {
    background: #c5420e;
    color: #fff;
}

.ar-bopt-property-value.unavailable, .ar-bopt-property-value.unavailable:hover {
    background: #efefef !important;
    color: #aaa !important;
    cursor: default !important;
}


.ar-bopt-container.is-child {
    display: none;
}

/* this is a pass through option.  It doesn't show up until all passthrough properties other than this one have been set. */
.ar-bopt-property.child_filter_only {
    display: none;
}


/* hide selections by default (they only get shown at the end */
.ar-bopt-selections {
    display: none;
}
.ar-bopt-selections .field.choice {
    display: none;
}

.ar-bopt-container .qty-holder {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    padding-top: 20px;
}
.ar-bopt-container .qty-holder .label{
    font-weight: bold;
    margin-right: 20px;
}
.ar-bopt-container .qty-holder .label:after{
    content: ':';
}
.ar-bopt-container .qty-holder .input-text {
    width: 40px;
}


p.required, span.required {
    color: #f00;
}