.payment-list {
  margin-top: 10px;
  margin-bottom: 12px;

  .payment-item {
    padding: 16px;

    .payment-type-icon-wrap {
      width: 27px;
      display: flex;
      align-items: center;
      justify-content: center;

      .payment-type-icon {
        font-size: 27px;
        color: var(--theme-color);
      }
    }



    .payment-type-image {
      width: 46px;
      height: 32px;
      object-fit: contain;
      border-radius: 0 !important;
      border: none !important;
      background: var(--Base-White, #FFF);
      padding: 0 !important;
      display: block;
    }

    .payment-name {
      flex-direction: column;
      display: flex;
      min-height: 44px;
      justify-content: center;

      .payment-name-text {
        color: var(--Gray-700, #101828);
        font-size: 14px;
        font-weight: 600;
        line-height: 20px;
      }

      .surcharge-wrap {
        display: inline;
        position: relative;
        z-index: 2;
        vertical-align: middle;

        .surcharge {
          color: var(--Gray-600, #667085);
          font-size: 14px;
          font-style: normal;
          font-weight: 400;
          line-height: 18px;
          margin-right: 6px;
          vertical-align: middle;
        }

        .icon {
          vertical-align: middle;
          // display: flex;
          // align-items: center;
          // justify-content: center;
          // width: 18px;
          // height: 18px;
          font-size: 18px;
          color: #475467;
        }
      }
    }

  }
}


.text-active-color {
  color: var(--theme-color) !important;
}

.payment-header {
  color: var(--Gray-900, #101828);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  margin-top: 20px;

}

.surcharge-modal-wrap {
  text-align: left;
  padding: 6px 4px;

  .surcharge-modal-title {
    color: var(--Gray-700, #344054);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
  }

  .surcharge-info {
    margin-top: 4px;
    color: var(--Gray-500, #667085);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
  }
}

.surcharge-tooltip-overlay-wrap{
  max-width: 92% !important;
  width: 92%;
  left: 4% !important;
  .pisell-lowcode-tooltip-inner{
    background: #F2F4F7 !important;
  }
}

.surcharge-modal-wrap-credit-card {
  .surcharge-modal-lists {
    display: flex;
    flex-direction: column;
    gap: 16px;
    .surcharge-modal-list-item {
      display: flex;
      flex-direction: column;
      gap: 8px;
      .surcharge-modal-list-item-header {
        display: flex;
        align-items: center;
        gap: 12px;
        color: #101828;
        font-size: 14px;
        font-weight: 600;
        line-height: 20px;
        .header-icon{
          width: 58px;
        }
      }
      .surcharge-modal-list-item-content {
        display: flex;
        gap: 12px;
        .content-item {
          display: flex;
          flex-direction: column;
          flex: 1;
          padding: 8px 12px;
          border-radius: 8px;
          box-shadow: 0px 2px 4px -2px rgba(16, 24, 40, 0.06);
          background: white;
          color: #475467;
          font-size: 12px;
          font-weight: 400;
          line-height: 18px;
          .item-fee {
            color: black;
            font-size: 24px;
            font-weight: 700;
            line-height: 32px;
          }
        }
      }
    }
  }
}
