.tt-countdown {
    transition: all 0.3s ease-in-out;

    &.style-one {
        text-align: center;
        padding-right: 40px;
    }

    &.style-two {
        background-color: #fff;
        border: 2px solid #dee2e6;
        border-radius: 15px;
        padding: 45px 35px;

        .tt-countdown__number {
            color: $color__heading;
            font-weight: 700;
            margin-bottom: 27px;
        }

        .tt-countdown__title {
            font-size: 20px;
        }

        &:hover {
            border-color: #fff;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transform: translateY(-5px);
        }
    }

    &__number {
        font-size: 46px;
        font-weight: 800;
        color: $color__theme;
        margin-bottom: 16px;
        display: inline-flex;
        line-height: 1;
    }

    &__title {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 7px;
    }

    &__description {
        margin-bottom: 0;
    }

    &.style-three {
        display: flex;
        padding: 27px 20px;
        box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
        border-radius: 8px;
        border-right: 10px solid $color__theme;

        .tt-countdown__title {
            margin-bottom: 0;

        }

        .tt-countdown__number {
            font-size: 42px;
            font-weight: 700;
            margin-right: 10px;
            margin-bottom: 0;
            color: $color__heading;
        }

        .tt-countdown__description {
            font-size: 15px;
        }
    }
}

.countdown {
    display: flex;

    .CountdownSeparator {
        display: none;
    }
}

.CountdownContent {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    display: inline-block;
    position: relative;
    color: $color__heading;

    @media(max-width: 991px) {
        font-size: 16px;
    }
}
.CountdownContent {
    font-size: 30px;
    color: #fff;
    .CountdownLabel {
        color: #fff;
        font-size: 13px;
        font-weight: 500;
        display: block;
        margin-top: 5px;

        @media(max-width: 991px) {
            font-size: 12px;
        }
    }
}

.counting {
    position: relative;
    line-height: 1;
    background-color: $color__theme;
    padding: 10px;
    margin: 0 5px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;

    &:first-child{
        margin-left: 0;
    }

    @media(max-width: 440px) {
        min-width: 55px;
        height: 55px;
    }
}

.progressbar-wrapper {
    margin-top: 35px;

    .progress-title {
        font-size: 24px;
        color: #fff;
    }

    .progress {
        border-radius: 20px;
        background-color: #1F1F1F;
    }
    .progress-bar {
        background-image: linear-gradient(96.49deg, #0082F8 0%, #3C10F2 101.82%);
    }
}