.woocommerce-page.woocommerce-checkout #payment .payment_box.payment_method_fatoripay-gateway{
    background-color: #f3f3f5;
}

.woocommerce #payment ul.payment_methods .wc_payment_method fieldset.fatoripay_payment_methods {
    padding: 20px;
    & legend{
        margin-bottom: 0;
    }
    & #fatoripay_payment_methods{
        display: flex;
        flex-direction: row;
        gap: 10px;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    & #fatoripay_payment_methods:has(> :last-child:nth-child(1)) .fatoripay_payment_method{
        width: 100%;
    }
    & #fatoripay_payment_methods:has(> :last-child:nth-child(2)) .fatoripay_payment_method{
        width: calc((100% - 20px)/2);
    }
    & .fatoripay_payment_method{
        width: calc((100% - 20px)/3);
        margin: 0!important;
    }
    
    & input[name="fatoripay_payment_method"]{
        display: none;
    }
    & .fatoripay_payment_method label.method{
        padding: 10px;
        border: solid 2px #e2e2e2;
        border-radius: 3px;
        opacity: 1 !important;
        display: flex;
        flex-direction: column;
        width: 100%;

    }
    & .method:hover{
        cursor: pointer;
    }
    & .method img{
        margin: 0!important;
    }
    & input[name="fatoripay_payment_method"]:checked ~ .method {
        border-color: #045CB4 ;
        color: #045CB4;
        fill: #045CB4;
    }
}