/*!
Theme Name: skinsuae


 */
 
.woocommerce-checkout .shipping_method + label .custom-radio-label,
.woocommerce-cart .shipping_method + label .custom-radio-label {
    display: inline-flex;
    align-items: center;
}

.woocommerce-checkout .shipping_method + label .custom-radio-label::before,
.woocommerce-cart .shipping_method + label .custom-radio-label::before {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid #000;
    border-radius: 50%;
    margin-right: 8px;
    display: inline-block;
    background: #fff;
}

.woocommerce-checkout .shipping_method:checked + label .custom-radio-label::before,
.woocommerce-cart .shipping_method:checked + label .custom-radio-label::before {
    background: #000;
}

/* Hide the radio input and label for Free Shipping */
.shipping_method[value*="free_shipping"] {
    display: none !important;
}

