/* Shipping & Payment methods */
#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment{
    background-color: transparent;
    border: 2px solid var(--color-background-blue);
    border-radius: 0;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
}

.woocommerce #order_review tfoot tr.shipping td{
	position: relative;
}

.shipping-title{
	position: absolute;
    top: 15px;
    margin: 0;
    left: 12px;
    color: var(--color-text);
}

.woocommerce ul#shipping_method{
	padding-left: 100px;
}

.woocommerce ul#shipping_method li, 
.woocommerce ul.payment_methods li,
.woocommerce-checkout #payment ul.payment_methods li{
	padding-block: 10px;
    margin: 0;
    position: relative;
    cursor: pointer;
    line-height: 1rem;
}
.woocommerce-checkout #payment ul.payment_methods li label{
    line-height: 1rem;
}

.woocommerce ul#shipping_method li label {
    display: flex;
    width: 100%;
    justify-content: space-between;
    cursor: pointer;
	gap: 8px;
    line-height: 1rem;
    align-items: center;
}

.woocommerce ul#shipping_method li input:checked + label{
	color: var(--color-text);
}

.woocommerce ul#shipping_method li .tax_label{
	display: none;
}

.shipping-method__label{
	display: flex;
    flex-direction: column;
}

.shipping-method__desc{
	font-size: 0.75em;
}

.shipping-method--isfree{
	color: var(--color-green);
}

/* WPdesk Inpost */
.woocommerce ul#shipping_method li .paczkomat_id_wrapper label{
	display: none;
}

input.select2-search__field{
	height: auto;
}

@media screen and (max-width: 480px){
    .woocommerce ul#shipping_method{
        padding-left: 80px;
    }
}