<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">tr.row:has(input[type="radio"][value="flatrate_flatrate"]) {
    display: none;
}

.table-checkout-shipping-method input[type="radio"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.table-checkout-shipping-method tr.row {
    pointer-events: none;
}

.dropshipment-toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.dropshipment-toggle {
    width: 40px;
    height: 20px;
    background-color: #ccc;
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dropshipment-toggle.toggle-on {
    background-color: #4caf50;
}

.toggle-knob {
    width: 16px;
    height: 16px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: transform 0.3s;
}

.dropshipment-toggle.toggle-on .toggle-knob {
    transform: translateX(20px);
}

.toggle-label {
    cursor: pointer;
    font-size: 14px;
}</pre></body></html>