/**
 * Checkout and Cart Page Styles
 * All styles related to WooCommerce cart and checkout pages
 */

/* === CART & CHECKOUT PAGES === */

/* Cart Page Styles */


.incom-cart-header {
    text-align: center;
    margin-bottom: 3rem;
}

.mp-steps-congrats {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mp-details-pix{
    padding:20px;
}

.mp-details-title{
    margin-bottom:10px;
}

.incom-cart-header h1 {
    font-size: 2.5rem;
    color: var(--gcid-secondary-color, #333);
    margin-bottom: 0.5rem;
}

.incom-cart-header p {
    font-size: 1.1rem;
    color: #666;
}

/* Empty Cart */
.incom-empty-cart {
    text-align: center;
    padding: 4rem 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.empty-cart-icon {
    margin-bottom: 2rem;
    color: #ccc;
}

.incom-empty-cart h2 {
    color: var(--gcid-secondary-color, #333);
    margin-bottom: 1rem;
}

.incom-empty-cart p {
    color: #666;
    margin-bottom: 2rem;
}

.incom-continue-shopping {
    display: inline-block;
    background: var(--gcid-secondary-color, #007cba);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.incom-continue-shopping:hover {
    background: #005a87;
    color: #fff;
}

/* Cart Content */

.incom-cart-items {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.cart-items-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--incom-bg-medium-mix);
    font-weight: 600;
    color: var(--gcid-secondary-color, #333);
}

.incom-cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1.5rem;
    transition: background 0.3s ease;
}

.incom-cart-item:nth-child(even) {
    background: var(--incom-bg-light-mix);
}

.incom-cart-item:hover {
    background: var(--incom-hover-bg);
}

.item-product {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background: color-mix(in srgb, var(--gcid-secondary-color, #007cba) 6%, white);
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-details h4 {
    margin: 0 0 0.5rem 0;
    color: var(--gcid-secondary-color, #333);
    font-size: 1.1rem;
}

.item-price {
    font-weight: 600;
    color: var(--gcid-secondary-color, #333);
}

.item-quantity input {
    width: 60px;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
}

.item-total {
    font-weight: 600;
    color: var(--gcid-secondary-color, #333);
    font-size: 1.1rem;
}



.item-remove a:hover {
    background: #f8d7da;
}

.cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
}

.continue-shopping {
    color: var(--gcid-secondary-color, #007cba);
    text-decoration: none;
    font-weight: 500;
}

.continue-shopping:hover {
    text-decoration: underline;
}

.update-cart {
    background: var(--gcid-secondary-color, #007cba);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
}

.update-cart:hover {
    background: #005a87;
}

/* Cart Summary */
.incom-cart-summary {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.cart-totals {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.cart-totals h3 {
    margin: 0 0 1.5rem 0;
    color: var(--gcid-secondary-color, #333);
    font-size: 1.4rem;
}

.cart-totals-inner {
    background: var(--incom-bg-subtle);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
}

.cart-subtotal,
.cart-discount,
.fee,
.tax-rate,
.tax-total {
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

#shipping-calculator-form .address-field {
    display: flex;
    flex-direction: column;
}

.order-total {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gcid-secondary-color, #333);
    padding: 1rem;
    background: var(--incom-bg-medium-mix);
    border-radius: 8px;
    margin-top: 1rem;
}

.coupon-form {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
}

.coupon-form input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.cart-totals-inner .coupon-form button.apply-coupon {
    background: #e7f3ff;
    color: var(--gcid-secondary-color, #007cba) !important;
    padding: 0.4rem 0.6rem;
    border: 1px solid var(--gcid-secondary-color, #007cba);
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.cart-totals-inner .coupon-form button.apply-coupon:hover {
    background: var(--gcid-secondary-color, #007cba);
    border-color: var(--gcid-secondary-color, #007cba);
    color: #fff !important;
}

.checkout-button {
    display: block;
    width: 100%;
    background: var(--gcid-secondary-color, #007cba);
    color: #fff;
    padding: 1rem;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

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

/* Checkout Page Styles */
.incom-checkout-page {
    margin: 0 auto;
}

.incom-checkout-header {
    margin-bottom: 3rem;
}

.incom-checkout-header h1 {
    font-size: 2.5rem;
    color: var(--gcid-secondary-color, #333);
    margin-bottom: 0.5rem;
}

.incom-checkout-header p {
    font-size: 1.1rem;
    color: #666;
}

/* --- Checkout Fields --- */
.incom-checkout-fields {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width:65%;
}

.checkout-sections {
    display: flex;
    flex-direction: column;
}

.billing-section:nth-child(even),
.shipping-section:nth-child(even),
.additional-section:nth-child(even) {
    background: var(--incom-bg-light-mix);
}

.checkout-sections h3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    margin: 0;
    background: var(--incom-bg-medium-mix);
    color: var(--gcid-secondary-color, #333);
    font-size: 1.2rem;
}

.section-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--gcid-secondary-color, #007cba);
    color: #fff;
    border-radius: 50%;
    font-weight: 600;
    font-size: 1rem;
}

.checkout-section-content {
    padding: 2rem;
}

/* Order Review */
.incom-checkout-summary {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.order-review-section {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.order-review-section h3 {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    margin: 0;
    background: var(--incom-bg-medium-mix);
    color: var(--gcid-secondary-color, #333);
    font-size: 1.2rem;
}

.order-items {
    padding: 1.5rem 1rem;
    background: var(--incom-bg-light-mix);
}

.order-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    background: var(--incom-bg-subtle);
    border-radius: 6px;
    margin-bottom: 0.5rem;
    padding: 1rem;
    transition: background 0.3s ease;
}

.order-item:hover {
    background: var(--incom-hover-bg);
}

.order-item .item-image {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    background: var(--incom-bg-light-mix);
}

.order-totals {
    padding: 1.5rem 2rem;
    background: var(--incom-bg-light-mix);
}

.totals-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.totals-row:last-child {
    margin-bottom: 0;
}

.totals-row.total {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gcid-secondary-color, #333);
    padding: 1rem;
    background: var(--incom-bg-medium-mix);
    border-radius: 8px;
    margin-top: 1rem;
}

.payment-section {
    margin-top: 20px;
}

.payment-method-selection {
    padding: 0.75rem 1rem;
}

.payment-section h4 {
    margin: 0 0 1rem 0;
    color: var(--gcid-secondary-color, #333);
    font-size: 1.1rem;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.incom-checkout-footer {
    margin-top: 2rem;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.place-order-button {
    width: 100%;
    background: var(--gcid-secondary-color, #007cba);
    color: #fff;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.place-order-button:hover {
    background: #005a87;
}

/* === CHECKOUT CONTAINER LAYOUT (PRESERVE STRUCTURE) === */

/* The main checkout container grid layout - DO NOT MODIFY */
/* This uses grid-template-columns: 1fr 400px to create two-column layout */
/* .incom-checkout-container is defined above and should remain intact */

/* Safety rule to ensure checkout container layout is never overridden */
@media (min-width: 769px) {
    .incom-checkout-container {
        display: flex !important;
        grid-template-columns: 1fr 400px !important;
        gap: 3rem !important;
    }
}

/* Only change to single column on mobile */
@media (max-width: 768px) {
    .incom-checkout-container {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

/* === ENHANCED CHECKOUT FORM FIELD STYLES === */
/* These styles only affect form fields within the checkout, not the main container */

/* Force reset of Divi styles that might interfere with checkout */
.incom-checkout-page * {
    box-sizing: border-box !important;
}

/* Override Divi's form styles specifically for checkout */
.incom-checkout-page .form-row,
.incom-checkout-page .woocommerce-form-row {
    display: flex !important;
    flex-direction: column !important;
    margin-bottom: 1rem !important;
    padding: 0 10px !important;
}

.incom-checkout-page .form-row label {
    order: 1 !important;
    margin-bottom: 0.5rem !important;
    font-weight: 600 !important;
    color: #333 !important;
    font-size: 0.9rem !important;
}

.incom-checkout-page .form-row .input-text,
.incom-checkout-page .form-row select,
.incom-checkout-page .form-row textarea {
    order: 2 !important;
    width: 100% !important;
    padding: 12px !important;
    border: 1px solid #ddd !important;
    border-radius: 5px !important;
    font-size: 14px !important;
    transition: border-color 0.3s ease !important;
}

.incom-checkout-page .form-row .input-text:focus,
.incom-checkout-page .form-row select:focus,
.incom-checkout-page .form-row textarea:focus {
    border-color: var(--gcid-secondary-color, #007cba) !important;
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(0, 124, 186, 0.1) !important;
}

/* Enhanced field wrapper layouts */
.incom-checkout-page .woocommerce-billing-fields__field-wrapper,
.incom-checkout-page .woocommerce-shipping-fields__field-wrapper,
.incom-checkout-page .woocommerce-additional-fields__field-wrapper {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0 !important;
    margin: 0 -10px !important;
}

/* Form row sizing improvements */
.incom-checkout-page .form-row-wide {
    width: 100% !important;
    flex-basis: 100% !important;
}

.incom-checkout-page .form-row-first,
.incom-checkout-page .form-row-last {
    width: 50% !important;
    flex-basis: 50% !important;
}

.incom-checkout-page .form-row-first {
    clear: none !important;
}

/* Country/State field improvements */
.incom-checkout-page .form-row .select2-container {
    width: 100% !important;
    order: 2 !important;
}

.incom-checkout-page .select2-container .select2-selection--single {
    height: 46px !important;
    border: 1px solid #ddd !important;
    border-radius: 5px !important;
}

.incom-checkout-page .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 44px !important;
    padding-left: 12px !important;
    font-size: 14px !important;
}

.incom-checkout-page .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 44px !important;
    right: 10px !important;
}

/* Checkbox and radio field improvements */
.incom-checkout-page .form-row .woocommerce-input-wrapper {
    order: 2 !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.incom-checkout-page .form-row input[type="checkbox"],
.incom-checkout-page .form-row input[type="radio"] {
    width: auto !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
}

/* Field validation styling */
.incom-checkout-page .woocommerce-invalid .input-text,
.incom-checkout-page .woocommerce-invalid select {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.1) !important;
}

.incom-checkout-page .woocommerce-invalid label {
    color: #e74c3c !important;
}

/* Payment method section improvements */

.incom-checkout-page .payment-methods {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
}

.incom-checkout-page .payment-methods .wc_payment_method {
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    padding: 1rem !important;
    transition: all 0.3s ease !important;
}

.incom-checkout-page .payment-methods .wc_payment_method:hover {
    border-color: var(--gcid-secondary-color, #007cba) !important;
    background: rgba(0, 124, 186, 0.05) !important;
}

.incom-checkout-page .payment-methods .wc_payment_method input[type="radio"] {
    margin-right: 0.5rem !important;
}

.incom-checkout-page .payment-methods .wc_payment_method label {
    font-weight: 600 !important;
    margin-bottom: 0.5rem !important;
    cursor: pointer !important;
}

/* Terms and conditions styling */
.incom-checkout-page .checkout-terms {
    margin-bottom: 1.5rem !important;
    padding: 1rem !important;
    background: #f8f9fa !important;
    border-radius: 6px !important;
}

.incom-checkout-page .checkout-terms label {
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.5rem !important;
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
}

.incom-checkout-page .checkout-terms input[type="checkbox"] {
    margin-top: 0.2rem !important;
    flex-shrink: 0 !important;
}

/* Additional form field wrapper styles */
.incom-checkout-page .form-fields-wrapper {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0 !important;
    margin: 0 -10px !important;
}

/* Improved section styling */
.incom-checkout-page .checkout-form-section {
    position: relative !important;
    overflow: hidden !important;
}

.incom-checkout-page .checkout-form-section::after {
    content: "" !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 2rem !important;
    right: 2rem !important;
    height: 1px !important;
    background: linear-gradient(to right, transparent, #e0e0e0 20%, #e0e0e0 80%, transparent) !important;
}

.incom-checkout-page .checkout-form-section:last-child::after {
    display: none !important;
}

/* Enhanced input styling for better UX */
.incom-checkout-page .form-row .input-text,
.incom-checkout-page .form-row select,
.incom-checkout-page .form-row textarea {
    transition: all 0.3s ease !important;
    background: #fff !important;
}

.incom-checkout-page .form-row .input-text:hover,
.incom-checkout-page .form-row select:hover,
.incom-checkout-page .form-row textarea:hover {
    border-color: #bbb !important;
}

/* Required field indicator */
.incom-checkout-page .form-row .required {
    color: #e74c3c !important;
}

/* Loading state styles */
.incom-checkout-page .blockUI.blockOverlay {
    background: rgba(255, 255, 255, 0.8) !important;
}

.incom-checkout-page .blockUI.blockOverlay::before {
    content: "Processando..." !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    color: #333 !important;
    font-weight: 600 !important;
}

/* Enhanced place order button */
.incom-checkout-page .place-order-button {
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.incom-checkout-page .place-order-button::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent) !important;
    transition: left 0.5s ease !important;
}

.incom-checkout-page .place-order-button:hover::before {
    left: 100% !important;
}

/* Error message styling */
.incom-checkout-page .woocommerce-error,
.incom-checkout-page .woocommerce-message {
    padding: 1rem !important;
    margin-bottom: 1rem !important;
    border-radius: 6px !important;
    border-left: 4px solid #e74c3c !important;
    background: #ffeaea !important;
}

.incom-checkout-page .woocommerce-message {
    border-left-color: #27ae60 !important;
    background: #eafaf1 !important;
}

/* Address field improvements */
.incom-checkout-page .form-row input[type="text"]#billing_address_1,
.incom-checkout-page .form-row input[type="text"]#shipping_address_1 {
    font-weight: 600 !important;
}

.incom-checkout-page .form-row input[type="text"]#billing_address_2,
.incom-checkout-page .form-row input[type="text"]#shipping_address_2 {
    margin-top: 0.5rem !important;
    font-style: italic !important;
}

/* Postcode field specific styling */
.incom-checkout-page .form-row input[type="text"]#billing_postcode,
.incom-checkout-page .form-row input[type="text"]#shipping_postcode {
    text-transform: uppercase !important;
    font-family: monospace !important;
}

/* Phone field styling */
.incom-checkout-page .form-row input[type="tel"] {
    font-family: monospace !important;
}

/* Enhanced accessibility */
.incom-checkout-page .form-row .screen-reader-text {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* Focus indicators for better accessibility */
.incom-checkout-page .form-row input:focus,
.incom-checkout-page .form-row select:focus,
.incom-checkout-page .form-row textarea:focus {
    outline: 2px solid var(--gcid-secondary-color, #007cba) !important;
    outline-offset: 2px !important;
}

/* Better spacing for form sections */
.incom-checkout-page .checkout-form-section+.checkout-form-section {
    margin-top: 0 !important;
}

/* Improved responsive behavior for very small screens */
@media (max-width: 360px) {
    .incom-checkout-page .checkout-section-content {
        padding: 0.75rem !important;
    }

    .incom-checkout-page .form-row {
        margin-bottom: 0.75rem !important;
    }

    .incom-checkout-page .form-row .input-text,
    .incom-checkout-page .form-row select,
    .incom-checkout-page .form-row textarea {
        padding: 8px !important;
    }
}

/* === CHECKOUT PAGE RESPONSIVE ENHANCEMENTS === */

/* Ensure checkout container is responsive */
.incom-checkout-page {
    width: 100% !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
}

#ship-to-different-address,
.shipping_address {
    width: 100%;
}

.wc_payment_method {
    list-style: none !important;
}

/* Improved mobile layout */
@media (max-width: 768px) {
    .incom-checkout-page {
        padding: 1rem 0.5rem !important;
    }

    .incom-checkout-header h1 {
        font-size: 2rem !important;
    }

    .checkout-section-content {
        padding: 1rem !important;
    }

    .checkout-sections h3 {
        padding: 1rem 1.5rem !important;
        font-size: 1.1rem !important;
    }

    .section-number {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.9rem !important;
    }

    .order-review-section h3 {
        padding: 1rem 1.5rem !important;
        font-size: 1.1rem !important;
    }

    .order-items {
        padding: 1rem 0.5rem !important;
    }

    .order-totals {
        padding: 1rem 1.5rem !important;
    }


    .incom-checkout-footer {
        padding: 1rem !important;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .incom-checkout-page {
        padding: 0.5rem 0.25rem !important;
    }
    .incom-checkout-fields{
        width:100%;
    }
    .incom-checkout-summary{
        width:100%;
    }

    .incom-checkout-header h1 {
        font-size: 1.8rem !important;
    }

    .checkout-sections h3 {
        padding: 0.75rem 1rem !important;
        font-size: 1rem !important;
    }

    .section-number {
        width: 24px !important;
        height: 24px !important;
        font-size: 0.8rem !important;
    }

    .checkout-section-content {
        padding: 0.75rem !important;
    }

    .order-review-section h3 {
        padding: 0.75rem 1rem !important;
        font-size: 1rem !important;
    }

    .order-items,
    .order-totals {
        padding: 0.75rem 1rem !important;
    }

    .incom-checkout-footer {
        padding: 0.75rem !important;
    }

    .place-order-button {
        padding: 0.75rem !important;
        font-size: 1rem !important;
    }
}

/* Large screens optimization */
@media (min-width: 1200px) {

    .incom-checkout-container {
        gap: 4rem !important;
    }

    .incom-checkout-summary {
        top: 3rem !important;
        width:35%;
    }
}

/* Print styles for receipts */
@media print {
    .incom-checkout-page {
        max-width: none !important;
        margin: 0 !important;
        padding: 0 !important;
        box-shadow: none !important;
    }

    .incom-checkout-header,
    .incom-checkout-footer,
    .payment-section {
        display: none !important;
    }

    .incom-checkout-container {
        display: block !important;
    }

    .incom-checkout-summary {
        position: static !important;
        width: 100% !important;
        page-break-inside: avoid !important;
    }

    .order-review-section {
        box-shadow: none !important;
        border: 1px solid #000 !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {

    .incom-checkout-page .form-row .input-text,
    .incom-checkout-page .form-row select,
    .incom-checkout-page .form-row textarea {
        border: 2px solid #000 !important;
    }

    .incom-checkout-page .form-row .input-text:focus,
    .incom-checkout-page .form-row select:focus,
    .incom-checkout-page .form-row textarea:focus {
        border-color: #000 !important;
        box-shadow: 0 0 0 3px #000 !important;
    }

    .place-order-button {
        border: 2px solid #000 !important;
    }

    .section-number {
        border: 2px solid #000 !important;
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {

    .incom-checkout-page *,
    .incom-checkout-page *::before,
    .incom-checkout-page *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


.checkout-terms-payment,
.woocommerce-checkout-payment {
    padding: 0.75rem 1rem;
}

@media (max-width: 769px) {
    .incom-checkout-container {
        flex-direction: column!important;
    }
    .incom-checkout-page .form-row-first,
.incom-checkout-page .form-row-last {
    width: 100% !important;
    flex-basis: 100% !important;
}
.incom-checkout-fields{
    box-shadow:none;
}
}