.dl-counter {
    display: inline-block;
}

.dl-counter-icon-wrap, .dl-counter-icon, .dl-counter-icon-divider, .dl-counter-num-divider {
    display: inline-block;
}

.dl-counter-number-wrap {
    display: flex;
    align-items: center;
}

.counter-center .dl-counter-number-wrap {
    justify-content: center;
}

.counter-right .dl-counter-number-wrap {
    justify-content: flex-end;
}

.dl-counter-icon {
    line-height: 1;
}

.dl-counter-layout-3-number-wrap, .dl-counter-layout-3 .dl-icon-title-wrap, .dl-counter-layout-4-number-wrap, .dl-counter-layout-4 .dl-icon-title-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.dl-counter-layout-5, .dl-counter-layout-6 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.dl-counter-layout-6 .dl-counter-icon-wrap {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
}

.dl-counter .dl-icon-title-wrap .dl-counter-title {
    display: inline-block;
}

.dl-counter .dl-counter-number,
.dl-counter .dl-counter-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--redias-dark-color, #111521);
}

.dl-counter .dl-counter-number {
    font-size: 30px;
    color: var(--redias-dark-color, #111521);
    font-weight: 600;
}

/* Layout 7 */
.dl-counter-layout-7 {
    display: grid;
    grid-template-columns: 80px 1fr;
    grid-column-gap: 10px;
}

.dl-counter-layout-7 .dl-counter-number-wrap {
    justify-content: flex-start;
    align-items: flex-start;
}

.dl-counter-layout-7 .dl-counter-number {
    vertical-align: inherit;
    margin-top: -2px;
}

.dl-counter-layout-7 .dl-counter-number,
.dl-counter-layout-7 .dl-counter-number-wrap .dl-counter-number-prefix,
.dl-counter-layout-7 .dl-counter-number-wrap .dl-counter-number-suffix {
    color: var(--redias-dark-color, #111521);
    font-size: 65px;
    font-weight: 700;
    line-height: 1;
}

.dl-counter-layout-7 .dl-icon-title-wrap {
    text-align: left;
    border-top: 1px solid var(--redias-primary-color, #ff6a32);
}

.rtl .dl-counter-layout-7 .dl-icon-title-wrap {
    text-align: right;
}

.dl-counter-layout-7 .dl-icon-title-wrap .dl-counter-title {
    font-size: 14px;
    line-height: 26px;
    padding-top: 10px;
}

/* Layout 8 */
.dl-counter-layout-8{
    display: grid;
    grid-template-columns: 90px 1fr;
    align-items: center;
    gap: 10px;
    text-align: left;
}
.dl-counter-layout-8 .dl-counter-icon{
    background-color: var(--redias-primary-color);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    font-size: 40px;
    color: var(--redias-white-color, #fff);
    width: 90px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
}

.dl-counter-layout-8 .dl-counter-icon img{
    max-width: 50px;
}
.dl-counter-layout-8:hover .dl-counter-icon{
    background-color: var(--redias-secondary-color, #089fac);
    transform: scale(1.05);
}
.dl-counter-layout-8 .dl-counter-number-wrap{
    justify-content: flex-start;
}
.dl-counter-layout-8 .dl-counter-number-wrap,
.dl-counter-layout-8 .dl-counter-number-wrap span {
    font-family: var(--redias-secondary-font, 'DM Sans');
    font-size: 36px;
    font-weight: 600;
    color: var(--redias-dark-color, #111521);
    margin: 0;
}

.dl-counter-layout-8 .dl-counter-title {
    font-size: 18px;
    color: var(--redias-grey-color, #747475);
}

/* RTL */
.rtl .dl-counter-content{
    text-align: right;
}