/* #region font definitions */
@font-face {
    font-family: 'Inter';
    src: url(/Fonts/Inter/Inter-Regular.ttf);
    font-weight: 400; /* Regular */
  }
  @font-face {
    font-family: 'Inter';
    src: url(/Fonts/Inter/Inter_18pt-Medium.ttf);
    font-weight: 500; /* Medium */
  }
  @font-face {
    font-family: 'Inter';
    src: url(/Fonts/Inter/Inter_18pt-Bold.ttf);
    font-weight: 700; /* Bold */
  }

  .regular-text{
    font-family: 'Inter',sans-serif;
    font-weight: 400;
    font-size: 10px;
  }
  .medium-text{
    font-family: 'Inter',sans-serif;
    font-weight: 500;
    font-size: 12px;
  }
  .bold-text{
    font-family: 'Inter',sans-serif;
    font-weight: 700;
  }
  .desc-text{
    text-align: left;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
  }
  
  /* #endregion */
  
  