#statistic-boxes-area
{
    border-top: 1px solid #e3eaf3;
    border-bottom: 1px solid #e3eaf3;
    padding-top: 30px;
    padding-bottom: 40px;
    margin: 20px 40px;

    display: flex;
}

#statistic-boxes-area > .row
{
    width: 100%;
}

.statistic-boxes
{
    display: flex;
    flex-direction: column;
    justify-content: center;

    flex: 1 0 0;
    height: 125px;
    padding: 27px 70px 27px 110px;

    position: relative;

    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;

    background: #FFF;

    -webkit-box-shadow: 0 0 15px -5px rgba(0,0,0,0.10);
    -moz-box-shadow: 0 0 15px -5px rgba(0,0,0,0.10);
    box-shadow: 0 0 15px -5px rgba(0,0,0,0.10);
}

.statistic-boxes:not(:first-child)
{
    margin-left: 20px;
}

.statistic-boxes:after
{
    content: ' ';
    position: absolute;
    bottom: -10px;
    height: 10px;
    left: 0;
    width: 100%;
    background: #FFF;
    background-image: url("../../../Base/assets/images/bottom_dashed.png");
}

.box-icon-div
{
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    height: 63px;
    margin: auto;
}

.box-number-div
{
    color: #292D32;
    font-size: 1.5vw;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: -9px;
    white-space: nowrap;
}
@media only screen and (max-width: 992px)
{
    .box-number-div
    {
        font-size: 3vw;
    }
}
@media only screen and (max-width: 480px)
{
    .box-number-div
    {
        font-size: 6vw;
    }
}

.box-title-div
{
    color: #828F9A;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}


.rtl .statistic-boxes
{
    text-align: right;
    padding: 27px 110px 27px 110px;
}


.rtl .box-icon-div
{
    left: unset;
    right: 20px;
}