
.step-content {
    display: none;
}
.step-content.active {
    display: block;
}
.billing-field-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.billing-field-group .billing-field {
    flex: 1 1 calc(33.33% - 10px);
    margin: 5px;
    box-sizing: border-box;
}
.stepper-buttons {	
    display: flex;
    width: 100%;
    justify-content: space-between;
}
.stepper {
    margin-top: 20px;
}

.stepper-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.stepper-header .step {
    flex: 1;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    border-bottom: 2px solid #ccc;
}

.stepper-header .step.active {
    font-weight: bold;
    border-bottom: 2px solid #007474;
    color: #007474;
}

.stepper-content .step-content {
    display: none;
}

.stepper-content .step-content.active {
    display: block;
}

.billing-field-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
}

.billing-field-group p {
    width: 45%;
    margin-right: 0px!important;
}
.billing-field-group p label{
    font-size: 14px;
}

.billing-field-group p input{
    font-size: 14px;
    font-weight: 400;
}

.billing-field-group .select2-container--default .select2-selection--single {

    border: 1px solid #ddd!important;
    color: #33333E;
}

.billing-field-group .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #33333E;
    font-size: 14px;
    padding: 0 0.75em!important;
    height: 32px;
    line-height: 34px
}

.billing-field-group  .form-row.woocommerce-validated input.input-text {
    box-shadow: unset;
}
.step-content .validation {
    color: red;
    width: 100%;
    text-align: center;
    font-weight: 600;
    display: none;
    margin-block: 2rem;
}

.payment-title h3 {
    font-size: 16px !important;
}

.woocommerce-checkout-payment li label{
    font-size: 14px!important;
    display: flex!important;
    gap:0.5rem;
}
.woocommerce-checkout-payment li b{
    font-size: 14px!important;
    display: flex;
}
.woocommerce-checkout-payment li div{
    padding: unset!important;
}
.woocommerce-checkout-payment li b span{
    font-size: 14px!important;
    display: flex!important;
    line-height: unset!important;
    margin-block-end: unset!important;
}

.order_review-section #order_review table.shop_table.woocommerce-checkout-review-order-table td,
.order_review-section #order_review table.shop_table.woocommerce-checkout-review-order-table th,
.order_review-section #order_review table.shop_table.woocommerce-checkout-review-order-table td dl dt, 
.order_review-section #order_review table.shop_table.woocommerce-checkout-review-order-table td span, 
.order_review-section #order_review table.shop_table.woocommerce-checkout-review-order-table td dl dt strong, 
.order_review-section #order_review table.shop_table.woocommerce-checkout-review-order-table td dd p
{
    text-align: center;
    font-size: 14px!important;

}
.order_review-section #order_review table.shop_table.woocommerce-checkout-review-order-table tr .product-name {
    text-align: start;
}

.order_review-section #order_review table.shop_table.woocommerce-checkout-review-order-table td {
    padding-inline: 0.6rem!important;
}

.order_review-section #order_review table.shop_table.woocommerce-checkout-review-order-table td dl {
    margin-block: 0px!important;
}
.shop_table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.shop_table th, .shop_table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.shop_table th {
    background-color: #f8f8f8;
    font-weight: bold;
}

.shop_table tbody tr:hover {
    background-color: #f1f1f1;
}

.product-name {
    width: 70%;
}

.product-total {
    width: 30%;
    text-align: right;
}

.cart-subtotal th, .order-total th {
    text-align: right;
}

.cart-subtotal td, .order-total td {
    text-align: right;
    font-weight: bold;
}

.button.alt {
    background-color: #0073aa;
    color: #fff;
    padding: 10px 20px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
}

.button.alt:hover {
    background-color: #005a87;
}

.wc_ssl_secure_pay {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.wc_ssl_secure_pay img {
    margin-right: 10px;
}

.billing-field-group #billing_email_field {
    display:none;
}

.loader-background  .loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #007474;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
    display: block;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.loader-background {
    position: fixed;
    inset: 0px;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100000;
}
@media (max-width: 768px) {
    .billing-field-group p{
        width: 100%;
    }
    .billing-field-group .select2-container--default .select2-selection--single {

       width:100%;
    }
    .prev-step {
        margin-block-start: 1rem;
    }
    
}
