/* === WooCommerce + Materialize Radios / Checkboxes === */

/*.woocommerce input[type="radio"],
.woocommerce input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}*/

.woocommerce input[type="radio"] {
    position: absolute !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.woocommerce input[type="radio"] + label > span {
    position: relative !important;
    padding-left: 35px !important;
    cursor: pointer !important;
    display: inline-block !important;
    line-height: 25px !important;
}

.woocommerce label > span::before,
.woocommerce label > span::after {
    content: "";
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
}

.woocommerce input[type="radio"] + label > span::before {
    width: 16px !important;
    height: 16px !important;
    border: 2px solid var(--amoksys-color-on-surface) !important;
    border-radius: 50% !important;
    margin: 4px !important;
}

.woocommerce input[type="radio"]:checked + label > span::before {
    border: 0px !important;
}

.woocommerce input[type="radio"]:checked + label > span::after {
    width: 16px !important;
    height: 16px !important;
    background-color: var(--amoksys-color-secondary) !important;
    border-radius: 50% !important;
    margin: 4px !important;
}

/* checkboxes */
/*.woocommerce input[type="checkbox"] + label > span::before {
    width: 16px;
    height: 16px;
    border: 2px solid #5a5a5a;
}*/

/*.woocommerce input[type="checkbox"]:checked + label > span::after {
    width: 6px;
    height: 12px;
    border: solid #26a69a;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    left: 7px;
    top: 3px;
}*/
