/**
 *	This element is created inside your target element
 *	It is used so that your own element will not need to be altered
 **/
.time_circles {
    position: relative;
    width: 100%;
    height: 100%;
}

/**
 *	This is all the elements used to house all text used
 * in time circles
 **/
.time_circles > div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/**
 *	Titles (Days, Hours, etc)
 **/
.time_circles > div > h4 {
    margin: 0;
    padding: 0;
    text-align: center;
    font-family: var(--font);
    color: white;
    font-size: 16px !important;
    line-height: 26px;
    text-transform: capitalize;
    font-weight: normal;
}

/**
 *	Time numbers, ie: 12
 **/
.time_circles > div > span {
    margin: 0;
    padding: 0;
    display: block;
    width: 100%;
    text-align: center;
    font-family: var(--font);
    color: white;
    font-size: 24px !important;
    line-height: 24px;
    font-weight: normal;
}

#DateCountdown {
    height: 140px;
    padding: 0;
    box-sizing: border-box;
}

@media (max-width: 991.98px) {
    #DateCountdown {
        height: 130px !important;
    }

    .time_circles > div {
        & > span {
            font-size: 22px !important;
            line-height: 20px;
        }

        & > h4 {
            font-size: 15px !important;
            line-height: 23px;
        }
    }
}


@media (max-width: 767.98px) {
    #DateCountdown {
        height: 110px !important;
    }

    .time_circles > div {
        & > span {
            font-size: 20px !important;
            line-height: 18px;
        }

        & > h4 {
            font-size: 14px !important;
            line-height: 21px;
        }
    }
}

@media (max-width: 575.98px) {
    #DateCountdown {
        height: 100px !important;
    }

    .time_circles > div {
        & > span {
            font-size: 18px !important;
            line-height: 17px;
        }

        & > h4 {
            font-size: 13px !important;
            line-height: 12px;
        }
    }
}

@media (max-width: 450.98px) {
    #DateCountdown {
        height: 80px !important;
    }

    .time_circles > div {
        & > span {
            font-size: 16px !important;
            line-height: 14px;
        }

        & > h4 {
            position: absolute;
            margin-top: 82px;
        }
    }
}

