.checkout-big-container {
    max-width: 1300px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin: 50px auto;
    overflow: hidden;
    position: relative;
}

.checkout-page-billing-detail-container {
    width: 60%;
    display: flex;
    flex-direction: column;
    margin: 0 20px;
}

.checkout-page-billing-detail-container .checkout-page-billing-detail-title {
    font-size: 24px;
     margin: 10px 0;
}

.checkout-page-billing-detail-input-field-container .billing-detail-full-name-contianer {
    display: flex;
    width: 97.5%;

}

.billing-detail-full-name-contianer .billing-detail-each-field {
    width: 100%;
    margin: 6px 0;
    display: flex;
    flex-direction: column;
}

.billing-detail-each-field label {
  font-size: 16px;
  margin: 5px 0;
}

.billing-detail-each-field input,
.billing-detail-each-field textarea  {
   width: 95%;
   padding: 9px 7px;
   border: 1.5px solid #e1e1e1;
   border-radius: 7px;
   outline: none;
}

.checkout-page-billing-detail-input-field-container .billing-detail-each-field {
  /* margin-top: 20px; */
}

.billing-detail-each-field #ShipToOtherLocation {
    margin-top: 10px;
    width: unset;
    height: auto !important;
    font-size: 20px;
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 20px;
    visibility: visible !important;
}

.ship-to-checkbox-text {
    font-weight: bold;
}

.billing-detail-each-field textarea {
    resize: vertical;
    margin-top: 10px;
    height: 150px;
}

.checkout-page-payment-container {
    width: 50%;
    padding: 20px;
    border: 2px solid #e4e4e4;
    border-radius: 8px;
    margin: 30px 20px;
}
    
.cart-payment-methods-list {
    list-style-type: none;
    padding: 0;
}

.cart-payment-methods-list li {
    margin: 10px 0;
}

.shipping-address-all-fields-container {
    display: none;
    transition: display 0.5s ease;
}

.billing-detail-each-field.country-region-select {
    display: flex;
    flex-direction: column;
    width: 96.5%;
    position: relative;
}

.billing-detail-each-field.country-region-select select {
    width: 100%;
    padding: 14px 10px;
    border: 1.5px solid #e1e1e1;
    border-radius: 7px;
    appearance: none;
    font-size: 16px;
}

.billing-detail-each-field.country-region-select select:focus {
    outline: none;
}

.billing-detail-each-field.country-region-select select option {
    padding: 10px;
}
.billing-detail-each-field.country-region-select i {
    position: absolute;
    right: 20px;
    top: 56%;
}

.checkout-page-each-cart-product-detail table tr td {
    border: none;
    font-size: 14px;
}

.checkout-page-each-cart-product-detail table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    border-bottom: 1px solid #e1e1e1;
}


.checkout-page-each-cart-product-detail table th {
    text-align: left;
    padding: 10px 0;
    border-bottom: 1px solid #e1e1e1;
}


.checkout-page-each-cart-product-detail table td {
    padding: 10px 0;

}


.checkout-page-each-cart-product-price {
    font-size: 14px;
    font-weight: bold;
    text-align: right;
}



.checkout-payment-method-container {
    display: none;
    flex-direction: column;
    gap: 10px;
}

.checkout-payment-method-container.active {
    display: flex;
}


.checkout-payment-method-container input,
.checkout-payment-method-container input {
    padding: 10px 7px;
    border: 1.5px solid #e1e1e1;
    border-radius: 7px;
    outline: none;
}

.checkout-payment-method-container .all-currency-bank-account-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
}


.all-currency-bank-account-list .each-currency-bank-account-item {
    width: 48%;
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 7px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin: 0;
}

.all-currency-bank-account-list .each-currency-bank-account-item h4 {
    font-size: 13px;
    background: #9f9f9f;
    padding: 7px;
    margin: 0;
    color: #fff;
    font-weight: 600;
}

.all-currency-bank-account-list .each-currency-bank-account-item p {
    padding: 4px 7px;
    font-size: 12px;
    margin: 0;
    border-top: 1px solid #e1e1e1;
}

.checkout-payment-method-container p {
    font-size: 14px;
    margin: 10px 0;
    font-weight: 600;
}


.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(240, 239, 239, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* HTML: <div class="loader"></div> */
.loader {
    --d:22px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    color: #f47621;
    box-shadow: 
      calc(1*var(--d))      calc(0*var(--d))     0 0,
      calc(0.707*var(--d))  calc(0.707*var(--d)) 0 1px,
      calc(0*var(--d))      calc(1*var(--d))     0 2px,
      calc(-0.707*var(--d)) calc(0.707*var(--d)) 0 3px,
      calc(-1*var(--d))     calc(0*var(--d))     0 4px,
      calc(-0.707*var(--d)) calc(-0.707*var(--d))0 5px,
      calc(0*var(--d))      calc(-1*var(--d))    0 6px;
    animation: l27 1s infinite steps(8);
  }
  @keyframes l27 {
    100% {transform: rotate(1turn)}
  }

@media screen and (max-width: 1024px) {
    .checkout-big-container {
        flex-direction: column;
        align-items: center;
        width: 95%;
        margin: auto;
    }
    .checkout-page-billing-detail-container {
        width: 100%;
        margin: 0 0;
    }

    .checkout-page-billing-detail-container .checkout-page-billing-detail-input-field-container{
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center; 
        align-self: center;
    }

    .checkout-page-billing-detail-input-field-container .billing-detail-each-field,
    .checkout-page-billing-detail-container .checkout-page-billing-detail-title {
        /* margin: 10px 20px; */
    }

    .checkout-page-billing-detail-input-field-container .billing-detail-each-field input,
    .checkout-page-billing-detail-input-field-container .billing-detail-full-name-contianer,
    .billing-detail-each-field textarea {
        width: 100%;
    }
    .billing-detail-each-field.country-region-select select {
        width: 98%;
    }
    .checkout-page-payment-container {
        width: 90.5%;
    }
    
}

@media screen and (max-width: 550px) {
    .all-currency-bank-account-list .each-currency-bank-account-item {
        width: 100%;
    }
}