
.pofw-product-options-wrapper {margin-bottom: 20px;}
.pofw-product-options-wrapper .field {margin-bottom: 10px;}
.pofw-product-options-wrapper .field > label {font-weight: bold;}
.pofw-product-options-wrapper .field.pofw-required > label > span:first-child:after {
    color: #e32;
    content: ' *';
    display:inline;
}
.pofw-product-options-wrapper .field > label span.pofw-price {font-weight: normal;}

.pofw-product-options-wrapper .field .control select {height:initial; line-height: inherit;}
.pofw-product-options-wrapper .field .control input[type="text"] {width: initial; padding:initial; line-height: inherit;}
.pofw-product-options-wrapper .field .control .choice {display: inline-flex; align-items: center; gap: 5px; border: 1px solid #6D4E2E; padding: 10px; }
.pofw-product-options-wrapper .field .control .choice label {display:inline; padding-left: 3px;}
.pofw-product-options-wrapper .field .control .choice input[type="radio"],
.pofw-product-options-wrapper .field .control .choice input[type="checkbox"] {width: auto;}
.pofw-product-options-wrapper .field .control .choice .pofw-image {vertical-align: middle; margin-right: 3px; width: 60px; height: 45px; object-fit: cover; object-position: center; }

.pofw-product-options-wrapper .field.pofw-required.pofw-not-valid .control input[type="text"],
.pofw-product-options-wrapper .field.pofw-required.pofw-not-valid .control .options-list {border: 1px dotted red;}
.pofw-product-options-wrapper .field.pofw-required.pofw-not-valid .pofw-required-text {color: red; font-style: italic;}

.pofw-product-options-wrapper .pofw-image {display:inline;}
.pofw-product-options-wrapper .pofw-image.pofw-popup {cursor:pointer;}
.pofw-option[type="checkbox"] {
    appearance: none;
    background-color: #fff;
    border: 1px solid 
    color-mix(in srgb, currentColor 48%, transparent);
    border-radius: 4px;
    box-sizing: border-box;
    height: 20px;
    margin: 0;
    min-width: 20px;
    overflow: hidden;
    position: static;
    width: 20px;
}

.pofw-option[type="radio"] {
    /* appearance: none; */
    accent-color: black;
    background-color: #fff;
    border: 1px solid 
    color-mix(in srgb, currentColor 48%, transparent);
    box-sizing: border-box;
    height: 20px;
    margin: 0;
    min-width: 20px;
    overflow: hidden;
    position: static;
    width: 20px;
}

.pofw-option[type="checkbox"]:not(:checked) + .pofw-checkbox__mark {
    display: none;
}

.pofw-option[type="checkbox"]:checked + .pofw-checkbox__mark {
    display: block;
    fill: #000;
    height: 15px;
    margin-left: 3px;
    margin-top: -3px;
    pointer-events: none;
    position: absolute;
    width: 15px;
}

