/*** PI Stats Widgets ***/

.pi-stats-widget {
    color: #fff;
    background-color: #000;
    padding: 18px;
    border-radius: 25px;
    /*margin-bottom: 25px;*/
    /*min-height: 190px;*/
}
.pi-stats-widget h3 {
    text-align: center;
}
.pi-stats-data-horiz {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-evenly;
    text-align: center;
    margin: auto;
}
.pi-stats-data-vert {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    text-align: left;
}
.pi-stats-widget-total > div > span {
    font-size: 60px;
}


/** Timer Widget **/

#pi-stats-timer h3 {
    color: #6AB8EB;
}
#pi-stats-timer .pi-stats-timer-unit > span:nth-child(1) {
    font-size: 40px;
    color: #6AB8EB;
}
#pi-stats-timer .pi-stats-timer-unit > span:nth-child(2) {
    display:block;
    font-size: 14px;
    color: #6AB8EB;
    text-transform: uppercase;
}


/** Total Inj Widget **/

#pi-stats-total-inj h3, #pi-stats-total-inj > div > span {
    color: #9EC54C;
}


/** Current Inj Widget **/

#pi-stats-current-inj h3, #pi-stats-current-inj > div > span {
    color: #A05FEF;
}

/** New Monthly Inj Widget **/

#pi-stats-monthly-inj h3 {
    color: #9EC54C;
}

/** New Monthly Inj Widget **/

#pi-stats-total-abs-doughnut, #pi-stats-total-abs-doughnut h3 {
    color: #6AB8EB;
}


/** Total Abs Doughnut Widget **/

#pi-stats-total-abs-doughnut > div {
    position: relative;
}

.pi-stats-doughnut-total {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    padding-top: 60px;
    font-size: 40px;
}

/** Responsive **/

@media (min-width: 1024px) {
    .pi-stats-widget {
        min-height: 190px;
    }
}

@media (max-width: 1023px) {
    
    .pi-stats-widget-total > div > span, .pi-stats-doughnut-total {
        font-size: 50px;
    }
        
    .pi-stats-doughnut-total {
        padding-top: 57px;
    }
    
    #pi-stats-timer .pi-stats-timer-unit > span:nth-child(1) {
        font-size: 30px;
    }
    #pi-stats-timer .pi-stats-timer-unit > span:nth-child(2) {
        font-size: 12px;
    }
    /*
    #pi-stats-box-season { order: 4; }
    #pi-stats-box-total { order: 1; }
    #pi-stats-box-monthly { order: 3; }
    #pi-stats-box-current { order: 2; }
    #pi-stats-data-link { order: 5; }
*/

}

