#jifiti_place_order {
    width: 100%;
    text-transform: uppercase;
}
.hide-element {
    display: none !important;
}

.payment_method_jifitipayment img {
    width: auto;
    height: auto;
    max-width: 115px;
    max-height: 34.5px;
    vertical-align: middle;
    margin-bottom: 0.3rem;
}

/* Blocks checkout: injected place-order spinner (React does not mount Spinner when click is captured). */
.wc-block-components-spinner[data-jifiti-blocks-loader="1"] {
    box-sizing: content-box;
    color: inherit;
    font-size: 1.25em;
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    text-align: center;
    top: 0;
    visibility: visible;
    width: 100%;
}

.wc-block-components-spinner[data-jifiti-blocks-loader="1"]::after {
    animation: jifiti-blocks-spinner 1s linear infinite;
    backface-visibility: hidden;
    border: 0.2em solid;
    border-left-color: transparent;
    border-radius: 50%;
    box-sizing: border-box;
    content: " ";
    height: 1em;
    left: 50%;
    margin: -0.5em 0 0 -0.5em;
    position: absolute;
    top: 50%;
    transform: translateZ(0) scale(0.5) rotate(0deg);
    transform-origin: 50% 50%;
    width: 1em;
}

@keyframes jifiti-blocks-spinner {
    to {
        transform: translateZ(0) scale(0.5) rotate(360deg);
    }
}