.codexse-counter {
    background: #ffffff;
    border-radius: 6px;
    padding: 24px;
    box-shadow: 0px 25px 35px rgba(0, 0, 0, 0.03);
    display: flex;
}

/* Counter Number */
.codexse-counter__wrapper {
    margin-bottom: 0px;
    display: flex;
}

/* Rating */
.codexse-counter__rating {
    display: inline-block;
    position: relative;
    color: #FDB12E;
    font-size: 16px; /* adjust star size */
    line-height: 1;
    margin-bottom: 8px;
}

.codexse-counter__rating .codexse-star--front::before {
    content: "☆☆☆☆☆"; /* outline stars */
    font-weight: normal;
}

.codexse-counter__rating .codexse-star--back::before {
    content: "★★★★★"; /* filled stars */
}

.codexse-counter__rating .codexse-star--back {
    position: absolute;
    left: 0;
    top: 0;
    white-space: nowrap;
    overflow: hidden;
}

/* Title */
.codexse-counter__title {
    color: #696969;
}


.codexse-counter .codexse-counter__icon {
    width: 64px;
    min-width: 64px;
    height: 64px;
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-color);
    color: var(--white-color);
    border-radius: 99px;
    margin-bottom: 24px;
    transition: .3s;
    padding: 15px;
}

.codexse-counter:hover .codexse-counter__icon {
    color: var(--white-color);
    background-color: var(--accent-color);
}