// Coundown Single Item
.counter-single-item {
    position: absolute;
    bottom: 60px;
    left: 30px;

    &.style-01 {
        left: 50px;
    }

    &.style-02 {
        bottom: 15px;
    }

    &.home-six {
        position: relative;
        z-index: 0;
        left: 0;
        bottom: 0;
        border: 1px solid #CCCCCC;
        padding: 10px 40px 5px 40px;
        display: flex;
        flex-wrap: wrap;

        &.cmn-sn {

            .counter-item {
                padding-right: 50px;
                margin-right: 30px;

                &::before {
                    top: -22px;
                    font-size: 70px;
                }

                span {
                    font-size: 71px;
                }
            }
        }

        ul {
            margin: 0;
            padding: 0;

            li {
                display: inline-block;
            }
        }

        .counter-item {
            border: none;
            border-radius: 0;
            width: inherit;
            height: inherit;
            padding-top: 0;
            margin-right: 20px;
            position: relative;
            z-index: 0;
            padding-right: 35px;

            &:last-child {
                padding-right: 0;
                margin-right: 0;

                &::before {
                    display: none;
                }
            }

            &::before {
                content: ":";
                position: absolute;
                right: 0px;
                top: -10px;
                font-size: 55px;
                color: var(--main-color-one);
            }

            span {
                color: var(--heading-color);
                text-align: left;
                font-size: 60px;
                font-weight: 500;
                font-style: italic;
                padding-bottom: 0;
            }

            h6 {
                color: var(--heading-color);
                text-align: left;
                font-size: 16px;
                line-height: 1.8;
                font-weight: 300;
                text-transform: uppercase;
                color: rgba(4, 7, 46, 0.5);
                padding-top: 5px;
                margin-bottom: 0;
            }
        }

        .btn-wrapper {
            margin-left: 60px;
            margin-top: 9px;

            .boxed-btn {
                border-radius: 0px;
                background: var(--main-color-one);
                text-transform: uppercase;
                padding: 16px 35px;
            }
        }
    }


    &.style-03 {
        position: relative;
        z-index: 0;
        left: 0;
        bottom: 0;
        padding: 15px 40px 10px 40px;
        display: inline-block;
        background: #1C2050;
        margin-top: 34px;

        ul {
            margin: 0;
            padding: 0;

            li {
                display: inline-block;
            }
        }

        .counter-item {
            border: none;
            border-radius: 0;
            width: inherit;
            height: inherit;
            padding-top: 0;
            margin-right: 20px;
            position: relative;
            z-index: 0;
            padding-right: 35px;

            &:last-child {
                padding-right: 0;
                margin-right: 0;

                &::before {
                    display: none;
                }
            }

            &::before {
                content: ":";
                position: absolute;
                right: 0px;
                top: -10px;
                font-size: 55px;
                color: var(--main-color-one);
            }

            span {
                color: $white;
                text-align: left;
                font-size: 60px;
                font-weight: 500;
                font-style: italic;
                padding-bottom: 0;
                background: transparent;
            }

            h6 {
                background: transparent;
                text-align: left;
                font-size: 16px;
                line-height: 1.8;
                font-weight: 300;
                text-transform: uppercase;
                color: rgba(255, 255, 255, 0.5);
                padding-top: 5px;
                margin-bottom: 0;
            }
        }

        .btn-wrapper {
            margin-left: 60px;
            margin-top: 9px;

            .boxed-btn {
                border-radius: 0px;
                background: var(--main-color-one);
                text-transform: uppercase;
                padding: 16px 35px;
            }
        }
    }

    &.style-04 {
        position: relative;
        z-index: 0;
        left: 0px;
        bottom: 0;
        display: inline-block;
        background: transparent;

        ul {
            margin: 0;
            padding: 0;

            li {
                display: inline-block;
            }
        }

        .counter-item {
            border: none;
            border-radius: 0;
            width: inherit;
            height: inherit;
            padding-top: 0;
            margin-right: 20px;
            position: relative;
            z-index: 0;
            padding-right: 35px;

            &:last-child {
                padding-right: 0;
                margin-right: 0;

                &::before {
                    display: none;
                }
            }

            &::before {
                content: ":";
                position: absolute;
                right: 0px;
                top: -10px;
                font-size: 55px;
                color: var(--main-color-one);
            }

            span {
                color: $white;
                text-align: left;
                font-size: 60px;
                font-weight: 500;
                font-style: italic;
                padding-bottom: 0;
                background: transparent;
            }

            h6 {
                background: transparent;
                text-align: left;
                font-size: 16px;
                line-height: 1.8;
                font-weight: 300;
                text-transform: uppercase;
                color: rgba(255, 255, 255, 0.5);
                padding-top: 5px;
                margin-bottom: 0;
            }
        }
    }

    .counter-item {
        display: inline-block;
        width: 130px;
        height: 130px;
        padding-top: 15px;
        background-color: transparent;
        margin-right: 15px;
        border: 1px solid #fff;
        border-radius: 5px;

        &:last-child {
            margin-right: 0;
        }

        span {
            text-align: center;
            display: block;
            line-height: 55px;
            font-family: var(--heading-font);
            font-size: 40px;
            font-weight: 700;
            padding-bottom: 14px;
            color: #fff;
        }

        h6 {
            color: var(--heading-color);
            text-align: center;
            font-size: 14px;
            font-weight: 500;
            line-height: 28px;
            background: #fff;
            padding: 8px;
            border-radius: 0px 0px 5px 5px;
        }
    }
}