.sub-news-title {
    font-size: 24px;
  }


  a {
    text-decoration: none !important;
  }

  .referral-tabs {
    display: flex;
    justify-content: space-around;
    padding: 4px;
    background-color: #F9F9F9;
    border-radius: 60px;
    height: 42px;
    flex-wrap: wrap;
    align-content: space-around;

    a {
      color: #6B717B;
    }
  }

  .active {
    background-color: white;
    border-radius: 60px;
    padding: 5px;
  }

  a.tab.active {
    color: black;
  }

  .container a:hover {
    color: black;
  }

  .tab {
    width: 33%;
    text-align: center;
    padding: 5px;
  }

  .hide {
    display: none;
  }

  .accordion-content a.btn.btn-header-link {
    text-wrap: auto;
  }

  .referral-info-wrapper {
    min-height: 435px;
    display: flex;
    justify-content: center;
}

.referral-info-show-mobile {
    display: none;
}

.referral-info-show-desktop {
    width: 960px;
}

@media screen and (width < 900px) {
    .referral-info-show-desktop {
        display: none;
    }

    .referral-info-show-mobile {
        display: block;
    }
}

.referral-table {
    border-radius: 8px;
    border: solid 1px #F9F9F9;
}

.grid-row-3x {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 16px;
    gap: 16px;
}

.referral-table-header {
    background-color: #F8F4FF;
    font-size: 14px;
}

.referral-table-cell {
    display: flex;
    flex-direction: column;

    p {
        font-size: 14px;
        margin: 0;
    }

    i {
        font-size: 12px;
    }
}

.referral-table-row {
    padding: 16px;
}

.referral-table-row:nth-child(odd) {
    background-color: #F9F9F9;
}