/* Minification failed. Returning unminified contents.
(5,28): run-time error CSS1039: Token not allowed after unary operator: '-base-dark'
(13,17): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(27,28): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(33,17): run-time error CSS1039: Token not allowed after unary operator: '-white'
(61,17): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(69,17): run-time error CSS1039: Token not allowed after unary operator: '-white'
(77,17): run-time error CSS1039: Token not allowed after unary operator: '-primary'
(86,17): run-time error CSS1039: Token not allowed after unary operator: '-white'
 */
#statistic {
    float: right;
    width: 100%;
    padding: 100px 10%;
    background-color: var(--base-dark);
    background-image: url("../overlay.54db4bc9f1915e6374e6.png");
    background-position: center right;
    background-size: 70%;
}
#statistic > .title{
    float: right;
    width: 100%;
    color: var(--primary);
    position: relative;
    padding-right: 50px;
    font-weight: 700;
    font-size: 25px;
}

#statistic > .title:before{
    content: "";
    width: 35px;
    height: 2px;
    position: absolute;
    right: 0;
    top: calc((100% - 3px) / 2);
    background-color: var(--primary);
}

#statistic .description{
    float: right;
    width: 100%;
    color: var(--white);
    font-weight: 700;
    font-size: 35px;
    margin-bottom: 50px;
}

#statistic .items{
    float: right;
    width: 100%;
}

#statistic .items .item-con{
    float: right;
    width: calc(100% / 3);
    padding: 20px;
}

#statistic .items .item-con .item{
    float: right;
    width: 100%;
}

#statistic .items .item-con .item > i{
    float: right;
    width: 100%;
    text-align: center;
    height: 70px;
    line-height: 70px;
    color: var(--primary);
    font-size: 60px;
}

#statistic .items .item-con .item .value{
    float: right;
    width: 100%;
    text-align: center;
    color: var(--white);
    font-size: 40px;
    height: 55px;
    line-height: 80px;
    font-weight: 700;
    direction: ltr;
}
#statistic .items .item-con .item .value i{
    color: var(--primary);
    margin-left: 5px;
    font-size: 30px;
}

#statistic .items .item-con .item .title{
    float: right;
    width: 100%;
    text-align: center;
    color: var(--white);
    font-size: 18px;
    height: 40px;
    line-height: 40px;
    font-weight: 700;
}

@media (max-width: 799.98px) {
    #statistic .items .item-con{
        width: 100%;
    }
}

