table  {
    border-collapse: separate; /* show all borders so that you can tell which rows a merged table row cell applies to */
}

tbody tr:has(th) {
    border-top-color: rgba(0, 0, 0, .4);
}

/* CountUp ticker: up to 4 tickers */
.flex {
    display: flex;
    flex-wrap: wrap;
}

.tickers {
    margin: 0 0 15px 0;
}

.ticker {
    flex-direction: column;
    background-color: #000f3a;
    color: white;
    padding: 40px 20px;
    margin: 1%;
    text-align: center;
    width: 48%;
}

/* FOR 1 TICKER */
.tickers--one-item, .tickers--one-item .ticker {
    width: 100%;
}


/* FOR 3 TICKERS */
.tickers--three-items .ticker {
    width: 31.33%;
}

.ticker-title {
    font-size: 40px; font-size: 2.5rem;
}

.ticker-text { 
    font-size: 0.925rem;
    line-height: 1.5em;
    color: #e0ebf4;
    margin-top: 10px;
}

@media only screen and (max-width: 1180px) {

    .has_sidebar .tickers--three-items .ticker {
        width: 48%;
    }  
    .has_sidebar .tickers--three-items .ticker:nth-last-child(1):nth-child(odd) {
        width: 100%;
        padding: 40px 90px;
    }    
}

@media only screen and (max-width: 978px){
    
    .tickers--three-items .ticker {
        width: 48%;
    }  
    .tickers--three-items .ticker:nth-last-child(1):nth-child(odd) {
        width: 100%;
        padding: 40px 90px;
    }  
}

@media only screen and (max-width: 480px) {

    .ticker,
    .tickers--three-items .ticker,
    .has_sidebar .tickers--three-items .ticker,
    .tickers--three-items .ticker:nth-last-child(1):nth-child(odd),
    .has_sidebar .tickers--three-items .ticker:nth-last-child(1):nth-child(odd) {
        width: 100%;
        margin: 10px 0;
        padding: 40px;
    }
    
}