/*
*  STYLE FOR COUNTER
*
*
*  [Table of contents]
*
*  [&. Content / #key]
*  [Let press Ctrl + f and type of paste the key, then press Enter to search the content ]
*
*  Summary:
*
*
*  1. Counter
*  2. Counter Left
*  3. Counter Right
*  n. Responsive
*
*
*/


/*----------  1. Counter  ---------------*/
    .sc_counter.slz-list-block > .item {
        margin-top: 40px;
    }

    .sc_counter.slz-list-block.slz-column-4 > .item:nth-child(-n + 4),
    .sc_counter.slz-list-block.slz-column-3 > .item:nth-child(-n + 3),
    .sc_counter.slz-list-block.slz-column-2 > .item:nth-child(-n + 2),
    .sc_counter.slz-list-block.slz-column-1 > .item:nth-child(-n + 1) {
        margin-top: 0;
    }

    .slz-counter-item-1 {
        position: relative;
        text-align: center;
        padding: 0 25px;
    }

    .slz-counter-item-1 .wrapper-icon {
        font-size: 90px;
    }

    .slz-counter-item-1 .icon-cell,
    .slz-counter-item-1 .img-cell {
        display: block;
        text-align: center;
        position: absolute;
        left: 0;
        top: -15px;
        width: 100%;
        opacity: 0.05;
    }

    .slz-counter-item-1 .icon-cell + .content-cell,
    .slz-counter-item-1 .img-cell + .content-cell {
        margin-top: 0;
    }

    .slz-counter-item-1 .content-cell + .icon-cell,
    .slz-counter-item-1 .content-cell + .img-cell {
        margin-top: 5px;
    }

    .slz-counter-item-1 .content-cell .number {
        display: inline-block;
        font-weight: 600;
        font-size: 60px;
        line-height: 1.1;
        color: #333;
    }

    .slz-counter-item-1 .suffix {
        display: inline-block;
        font-weight: 600;
        font-size: 60px;
        line-height: 1.1;
        margin-left: 20px;
        color: #333;
    }

    .slz-counter-item-1 .content-cell .title {
        font-size: 16px;
        font-weight: 500;
        text-transform: capitalize;
    }

    .slz-counter-item-1 .line {
        display: block;
        width: 60px;
        height: 3px;
        margin: 5px auto 0 auto;
        background-color: #304fe9;
    }

    .slz-counter-item-1 .line + .title {
        margin-top: 15px;
    }

    .slz-counter-item-1.layout-2 .icon-cell, 
    .slz-counter-item-1.layout-2 .img-cell {
        position: relative;
        top: 0;
        opacity: 1;
    }
    
/*----------  2. Counter Left  ----------*/
    .slz-counter-item-1.counter-left {
        text-align: left;
    }

    .slz-counter-item-1.counter-left .icon-cell,
    .slz-counter-item-1.counter-left .img-cell {
        left: 30px;
        text-align: left;
    }

    .slz-counter-item-1.counter-left .line {
        margin-left: 0;
    }

    .slz-counter-item-1.layout-2.counter-left .icon-cell, 
    .slz-counter-item-1.layout-2.counter-left .img-cell {
        left: 0;
    }

/*----------  3. Counter Right  ---------*/
    .slz-counter-item-1.counter-right {
        text-align: right;
    }

    .slz-counter-item-1.counter-right .icon-cell,
    .slz-counter-item-1.counter-right .img-cell {
        left: auto;
        right: 30px;
        text-align: right;
    }

    .slz-counter-item-1.counter-right .line {
        margin-right: 0;
    }

    .slz-counter-item-1.layout-2.counter-right .icon-cell, 
    .slz-counter-item-1.layout-2.counter-right .img-cell {
        right: 0;
    }

/*=====================================
=            n. Responsive            =
=====================================*/

    @media screen and (max-width: 1024px) {
        .sc_counter.slz-column-4,
        .sc_counter.slz-column-3 {
            text-align: center;
        }
        
        .sc_counter.slz-list-block.slz-column-4 > .item:nth-child(-n + 4) {
            margin-top: 40px;
        }

        .sc_counter.slz-list-block.slz-column-4 > .item:nth-child(-n + 3) {
            margin-top: 0;
        }
    }

    @media screen and (max-width: 768px) {
        .sc_counter.slz-list-block.slz-column-4 > .item:nth-child(-n + 3),
        .sc_counter.slz-list-block.slz-column-3 > .item:nth-child(-n + 3) {
            margin-top: 40px;
        }

        .sc_counter.slz-list-block.slz-column-4 > .item:nth-child(-n + 2),
        .sc_counter.slz-list-block.slz-column-3 > .item:nth-child(-n + 2) {
            margin-top: 0;
        }
    }

    @media screen and (max-width: 480px) {
        .sc_counter.slz-list-block.slz-column-4 > .item:nth-child(-n + 2),
        .sc_counter.slz-list-block.slz-column-3 > .item:nth-child(-n + 2),
        .sc_counter.slz-list-block.slz-column-2 > .item:nth-child(-n + 2),
        .sc_counter.slz-list-block.slz-column-1 > .item {
            margin-top: 40px;
        }

        .sc_counter.slz-list-block.slz-column-4 > .item:nth-child(-n + 1),
        .sc_counter.slz-list-block.slz-column-3 > .item:nth-child(-n + 1),
        .sc_counter.slz-list-block.slz-column-2 > .item:nth-child(-n + 1),
        .sc_counter.slz-list-block.slz-column-1 > .item:nth-child(-n + 1) {
            margin-top: 0;
        }

        .slz-counter-item-1 {
            padding: 0;
        }

        .slz-counter-item-1.counter-left .icon-cell, 
        .slz-counter-item-1.counter-left .img-cell {
            left: 0;
        }

        .slz-counter-item-1.counter-right .icon-cell, 
        .slz-counter-item-1.counter-right .img-cell {
            right: 0;
        }

        .slz-counter-item-1.counter-left,
        .slz-counter-item-1.counter-right,
        .slz-counter-item-1.counter-left .icon-cell,
        .slz-counter-item-1.counter-left .img-cell,
        .slz-counter-item-1.counter-right .icon-cell,
        .slz-counter-item-1.counter-right .img-cell {
            text-align: center;
        }

        .slz-counter-item-1.counter-left .line,
        .slz-counter-item-1.counter-right .line {
            margin: 5px auto 0 auto;
        }


    }
    
/*=====  End of n. Responsive  ======*/
