

/* PAYMENT METHOD */
ul.wc_payment_methods {
    display: flex !important;
    justify-content: space-between;
    border: none !important;
    padding: 0 !important;
}

ul.wc_payment_methods li {
    padding: 1rem;
    
}

ul.wc_payment_methods li label {
    /* background-color: #f8f9fa; */
    background-color: #eee;
    font-size: 1.5rem;
    border-radius: 20px;
    padding: 2rem 0;
}


ul.wc_payment_methods li,
ul.wc_payment_methods li label {
    display: block;
    width: 100%;
    text-align: center;
}

ul.wc_payment_methods li.payment_method_pap_counter label,
ul.wc_payment_methods li.payment_method_pap_tpe label {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

ul.wc_payment_methods li:first-child {
    padding-left: 0;
    padding-right: 10px !important;
}

ul.wc_payment_methods li:last-child {
    padding-right: 0;
    padding-left: 10px !important;
}

ul.wc_payment_methods li input {
    display: none
}

li.payment_method_pap_tpe label::before,
li.payment_method_pap_counter label::before {
    content: '';
    background-size: 60px;
    display: block;
    width: 60px;
    height: 60px;
    margin: 0 auto;
}

li.payment_method_pap_tpe label::before {
    background-image: url(/wp-content/plugins/pay-and-print/assets/img/cb.png);
}

li.payment_method_pap_counter label::before {
    background-image: url(/wp-content/plugins/pay-and-print/assets/img/cash.png);
}

.tpe-payment-error {
    font-size: 1.5rem;
    text-align: center;
    background-color: #f16464;
    padding: 1rem 2rem;
    color: #fff;
    z-index: 9999;
}


/* Input submit checkout form */
.place-order {
    position: absolute;
    width: 0;
    height: 0;
    left: -99999px;
    visibility: hidden;
    overflow: hidden;
}

/* Order confirmation */
body.woocommerce-order-received .main-content .woocommerce {
    position: inherit !important;
    min-width: inherit !important;
    max-width: inherit !important;
    transform: none !important;
}

.pap-thankyou {
background-color: #ffffff;
position: fixed;
top: 0;
left: 50%;
width: 1080px;
height: 1920px;
z-index: 99;
transform: translateX(-50%);
}

.pap-thankyou .content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pap-thankyou .content img {
    width: 250px;
    margin-bottom: 3rem;
}

.pap-thankyou h1 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
}

.pap-thankyou h2 {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 36px;
    color: #59b259;
    margin-bottom: 4rem;
}

.pap-thankyou h2 span {
    display: block;
    font-size: 4rem;
    margin-top: 2rem;
}

/* TPE */
.pap-thankyou .ticket-request-content {
    width: 750px;
    margin: 0 auto;
    background-color: #F9F9F9;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 20px;
    padding: 4rem;
}

.pap-thankyou .ticket-request-content h3 {
    font-size: 1.5rem;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.pap-thankyou ul {
    margin-bottom: 2rem;
}

.pap-thankyou ul li {
    font-size: 1.5rem;
    line-height: 40px;
}

.pap-thankyou button {
    position: relative;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    background-color: #ffffff;
    border: 2px solid #6a92ce;
    color: #6a92ce;
    padding: 2rem 5rem;
    transition: ease-in-out .5s;
}

.pap-thankyou button:focus {
    background-color: #6a92ce;
    color: #ffffff;
    transform: scale(1.05);
}

/* Counter */
.pap-thankyou p {
    width: 750px;
    margin: 0 auto;
    font-size: 1.7rem;
    background-color: #F9F9F9;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 20px;
    padding: 4rem;
}