.simple-summary-box-holder {
    background-color: #fff;
    border-radius: 5px;
    margin: 30px 0;
    align-items: center; 
    clear: both;
    overflow-x: auto;
    padding: 8px 0;
    scrollbar-width: thin;
    display: grid;
    grid-auto-columns: 1fr;
    grid-auto-flow: column;
    max-width: 950px;
}
.simple-summary-box-button {
    padding: 0px 3px;
    position: relative;
}
.simple-summary-box-holder > div:after {
    content: '';
    width: 1px;
    height: 90px;
    background: #e5e5e5;
    position: absolute;
    right: 0;
    /* top: 15px; */
    top: 50%; 
    transform: translateY(-50%);
}
.simple-summary-box-holder > div:last-child:after {
    display: none;
}
.simple-summary-box-holder span {
    font-size: 2em;
}
.simple-summary-box-holder p {
    font-family: 'Roboto Condensed', sans-serif; 
    color: #7d7d8c;
    font-size: .8em;
    padding: 0 2px; 
}
.simple-summary-box-holder span/* , .simple-summary-box-holder p */ {
    color: #2a7dfb;
    opacity: 1;
}
.small-sign {
    font-size: 0.8em!important;
}
@media ( max-width: 480px ) {
    .simple-summary-box-holder {
        display: flex;
        flex-wrap: wrap; 
    }
    .simple-summary-box-button {
        width: 33.33%;
        flex-grow: 1;
    }
    .simple-summary-box-holder > div:after {
        height: 60px;
    }
}
@media (min-width: 480px) {
    .simple-summary-box-button {
        padding: 0px 10px;
    }
    .simple-summary-box-holder p {
        font-size: 1.1em;
    }
}
@media (min-width: 992px) {
    .simple-summary-box-holder {
        background-color: transparent;
    }
    .simple-summary-box-holder span, .simple-summary-box-holder p {
        color: #fff;
        opacity: 0.75;
    }
    .simple-summary-box-button:nth-child(1):before {
        content: '';
        width: 1px;
        height: 90px;
        background: #e5e5e5;
        position: absolute;
        left: 0;
        /* top: 15px; */
        top: 50%; 
        transform: translateY(-50%);
    }
    .simple-summary-box-holder > div:last-child:after {
        display: inline-block;
    }
}



