.line-container {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}
.line-1, .line-2 {
    margin-top: -1px;
    border-style: solid;
    border-color: #d1d5db;
    border-width: 1px 0 0 0;
    flex: 1;
    height: 0px;
    position: relative;
    transform-origin: 0 0;
    transform: rotate(0deg) scale(1, 1);
}
.line-text {
    font-size: 16px;
    line-height: 145%;
    font-weight: 400;
    position: relative;
    color: #74757A;
}
.disable-border-shadow{
    height:auto;
    border: none;
    box-shadow: none;
}

.processing-container {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.processing-content {
	width: 100%;
	text-align: center;
}

.processing-loader {
	width: 25%;
	max-width: 200px;
    margin-top: 50px !important;
}

.processing-update-icon {
	width: 20%;
	max-width: 200px;
    margin-top: 10px;
}

.processing-message,
.processing-result-message {
	margin-bottom: 75px;
    margin-top: 20px !important;
    color: var(--black, #222);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    width: 85%;
}

.processing-title,
.processing-update-title{
    color: var(--Essential-primary-colors-Black, #222);
    font-size: 27px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 42px */
}


#processing-update-confirm-successful,
#processing-update-confirm-failed {
    min-width: 120px;
}

.dynamic-height{
    height:430px;
}

.helper-text{
    margin-left:11px;
    color: #646464;
}

.payment-element-bg {
    background-color: #f6f6f6;
    border-radius: 6px;
    padding-bottom: 13px;
}
.invoice-total-text{
    color: var(--Essential-primary-colors-Black, #222);
    font-size: 40px;
    line-height: 48px;
}
.invoice-id-text{
    font-size: 16px;
    line-height: 20px;
}

.klarna-info-text,
.google-pay-info-text,
.apple-pay-info-text
{
    color: #222;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.56px;
}

@media (max-width: 768px) {
    .dynamic-height {
        height: 400px;
    }
}

/* Two-Panel Layout */
.invoice-panels-container {
    display: flex;
    overflow: hidden;
    height: auto;
}

 .modal-body-scrollable {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .left-invoice-form-panel {
      flex: 1 1 65%;
      padding: 20px;
      border-right: 1px solid #e0e0e0;
      z-index: 1;
      position: relative;
      display: flex;
      justify-content: space-around;
  }
  
  
   .right-invoice-payment-panel {
      flex: 1 1 35%;
      display: flex;
      flex-direction: column;
      background-color: #f8f9fa;
  }
 
  
  /* Responsive Adjustments */
  @media (max-width: 992px) {
      .invoice-panels-container {
          flex-direction: column;
          height: auto;
      }
      
  }

  @media (max-width: 768px) {

  }
  