._available_cards {
    display: grid;
    place-items: center;
    margin-top: 20px;
    padding-top: 20px;
    background-color: #fff;
    border-radius: 4px;
    p {
      text-align: center;
      span {
        display: inline-block;
      }
    }
    ._card_image {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 25px;
      margin-top: 16px;
      img {
        min-width: 56px;
        width: 10%;
      }
    }
  }