.receipts_bg {
  width: 100%;
  height: 100%;
  background: #F6F6F9;
  border-radius: 32px 32px 0 0;
  display: flex;
  padding: 40px 20px 80px 20px;
  justify-content: center;
  /* align-items: center; */
  flex: 1;
}

.receipts__wrapper {
  max-width: 900px;
  width: 100%;
  padding: 32px 32px 20px;
  color: var(--Brand-Dark-blue, #1E1753);
  font-family: "Inter Variable";
  /* Body */
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.375rem;
  /* 129.412% */
  letter-spacing: -0.03125rem;
  border-radius: 24px;
  background: #FFF;
}

.receipts__header {
  color: var(--Brand-Dark-blue, #1E1753);
  /* Title3 */
  font-family: "Inter Variable";
  font-size: 2.875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 2.875rem;
  /* 100% */
}

.receipt_link {
  border-radius: 12px;
  background: var(--Blue-Blue, #3A18B5);
  display: flex;
  width: 38px;
  height: 38px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

@media (min-width:767.5px) {
  .receipts__list_mobile {
    display: none;
  }

  .receipt__row {
    height: 62px;
    display: flex;
    align-items: center;
  }

  .receipt__row:not(:last-child) {
    border-bottom: solid 1px var(--stroke-secondary, #E0E0EB);
  }

  .receipts__list {
    margin-top: 20px;
  }

  .receipts__list__header {
    opacity: 0.6;
  }

  .receipt_name {
    overflow: hidden;
    padding: 20px 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    height: 100%;
    padding: 20px 24px 20px 12px;
    flex-grow: 1;
  }

  .receipt_price {
    display: flex;
    width: 125px;
    padding: 20px 24px 20px 12px;
    flex-shrink: 0;
  }

  .receipt_date {
    display: flex;
    width: 170px;
    padding: 20px 24px 20px 12px;
    flex-shrink: 0;
    white-space: nowrap;
  }

  .receipt_link_header {
    width: 38px;
  }
}

@media (max-width:767.5px) {
  .receipts__wrapper {
    padding: 20px 16px 4px;
  }

  .receipts__header {
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: 2.125rem;
    letter-spacing: -0.04rem;
  }

  .receipts__list {
    display: none;
  }

  .receipts__list_mobile {
    margin-top: 12px;
  }

  .receipt {
    padding: 8px 0 12px 0;
  }

  .receipt:not(:last-child) {
    border-bottom: solid 1px var(--stroke-secondary, #E0E0EB);
  }

  .receipt_name {
    color: var(--Brand-Dark-blue, #1E1753);
    font-family: "Inter Variable";
    font-size: 1.0625rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.375rem;
    letter-spacing: -0.03125rem;
  }

  .receipt_date {
    color: var(--Brand-Dark-blue, #1E1753);
    font-family: "Inter Variable";
    font-size: 1.0625rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.375rem;
    letter-spacing: -0.03125rem;
    opacity: 0.6;
    margin-top: 6px;
  }

  .receipt_price_link {
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .receipt_price {
    color: var(--Brand-Dark-blue, #1E1753);
    font-family: "Inter Variable";
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.625rem;
  }
}