/* ==========================================================================
   KE Counter Widget
   ========================================================================== */

.ke-counter-widget {
    width: 100%;
}

.ke-counter {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ke-counter--icon-top .ke-counter {
    flex-direction: column;
}

.ke-counter--icon-left .ke-counter__inline {
    display: flex;
    align-items: center;
    gap: var(--ke-space-5);
}

.ke-counter--icon-right .ke-counter__content {
    display: flex;
    align-items: center;
    gap: var(--ke-space-5);
}

.ke-counter__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ke-primary);
}

.ke-counter__icon svg {
    fill: currentColor;
}

.ke-counter__content {
    display: flex;
    flex-direction: column;
}

.ke-counter__number-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.ke-counter__prefix,
.ke-counter__suffix {
    font-size: 0.6em;
}

.ke-counter__number {
    color: inherit;
}

.ke-counter__title {
    color: var(--ke-text-light);
}

.ke-counter__subtitle {
    color: var(--ke-text-light);
}

.ke-counter--title-before .ke-counter__content {
    flex-direction: column-reverse;
}

/* Responsive */
@media (max-width: 767px) {
    .ke-counter__number-wrapper {
        font-size: 2rem;
    }
}

