.appointment-deposit-bottom {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;

  .title {
    color: var(--Text-Text_1, #1b1b1b);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
  }

  .tip {
    color: var(--Base-Black, #000);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;

    .amount {
      font-weight: 600;
      margin-right: 2px;
    }
  }

  .checkbox-wrap {
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 100%;

    .policy-box {
      padding-left: 6px;
      cursor: pointer;
      font-size: 14px;
      font-style: normal;
      font-weight: 400;
      line-height: 20px;
      color: var(--Base-Black, #000);
      flex: 1;
    }

    .policy-wrap {
      color: var(--theme-color, #7f56d9);
      display: inline;
      word-break: break-word;

      .symbol {
        color: var(--Base-Black, #000);
      }
    }
  }
}