.woocommerce #order_review .donation-row{
    margin: 20px 0;
    padding: 12px;
    border-radius: 4px;
    background: #b3ece8;

    input[type="radio"] {
        opacity: 0;
        position: absolute;
        width: 0;
        height: 0;
        margin: 0;
        padding: 0;
    }

    label.switch {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: fit-content;
        border-radius: 8px;
        position: relative;
        overflow: hidden;

        input {
            position: absolute;
            opacity: 0;
            left: 0;
            top: 0;
            width: 0;
            height: 0;
            z-index: -1;

            & + .slider {
                padding: 0;
                margin: 0;
                width: 100%;
                height: 100%;
                background: rgba(0, 0, 0, 0.1);
                user-select: none;
                cursor: pointer;
                position: absolute;

                &::after {
                    content: "";
                    position: absolute;
                    top: 3px;
                    left: 3px;
                    width: calc( 50% - 6px );
                    height: calc( 100% - 6px );
                    background-color: white;
                    transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out;
                    border-radius: 6px;
                    z-index: 4;
                }
            }

            &:checked {
                & ~ .label-text {
                    color: white;
                }

                & + .slider {
                    background-color: #e81140;

                    &::after {
                        transform: translateX(calc(100% + 6px));
                    }
                }
            }
        }

        .label-text {
            padding: 8px 12px;
            text-align: center;
            z-index: 2;
        }
    }
}