.markino-counter.markino-counter-style-1 .counter-top {
    display: inline-block;
}

.markino-counter.markino-counter-style-1 .counter-content .spin {
    position: relative;
    display: inline-block;
    background: transparent;
    width: 102px;
    height: 102px;
}

.markino-counter.markino-counter-style-1 .counter-content .circle,
.markino-counter.markino-counter-style-1 .counter-content .circle::before,
.markino-counter.markino-counter-style-1 .counter-content .circle::after {
    border-radius: 100%;
}

.markino-counter.markino-counter-style-1 .counter-content .circle::before {
    border: 1px solid transparent;
}

.markino-counter.markino-counter-style-1 .counter-content .spin:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.markino-counter.markino-counter-style-1 .counter-content .spin.animated:before {
    border-top-color: var(--global-font-color);
    border-right-color: var(--global-font-color);
    border-left-color: var(--global-font-color);
    border-bottom-color: var(--global-font-color);
    transition: border-top-color .6s linear, border-right-color .6s linear .4s, border-bottom-color .6s linear .6s, border-left-color .6s linear .8s;
}


.markino-counter-style-1 .counter-content .counter-top .markino-counter-info {
    position: absolute;
    left: 55px;
    top: 20px;
    width: 100%;
}

.markino-counter-style-1 .counter-content .counter-top .markino-counter-info {
    font-variant-numeric: lining-nums;
}

.markino-counter-style-1 .counter-content .counter-top .markino-counter-info .timer {
    font-size: 45px;
}

.markino-counter-style-1 .counter-content .counter-top .markino-counter-info .counter-symbol {
    font-size: 36px;
    color: var(--color-theme-primary);
}

.markino-counter-style-1 .counter-content .counter-detail {
    margin-top: 16px;
}

.markino-counter-style-1 .counter-content .counter-detail p {
    margin: 0;
}




/*=================================
markino-counter-style-2
=====================================*/
.markino-counter-style-2 {
    position: relative;
    text-align: center;
}

.markino-counter-style-2 .markino-counter-icon {
    font-family: var(--highlight-font-family);
    text-transform: uppercase;
    letter-spacing: var(--font-letter-spacing-h3);
}

.markino-counter-style-2 .markino-counter-icon svg {
    margin-right: 15px;
}

.circle-shape {
    position: relative;
}

.markino-counter-style-2 .counter-content .markino-counter-info {
    font-variant-numeric: lining-nums;
}

.markino-counter-style-2 .counter-content .markino-counter-info .timer {
    font-size: 110px;
    font-weight: var(--font-weight-regular);
    line-height: 121px;
}

.markino-counter-style-2 .counter-content .counter-title-text {
    color: var(--color-theme-primary);
    font-weight: var(--font-weight-medium);
    font-size: 32px;
    line-height: 42px;
    letter-spacing: var(--letter-spacing-one);
    text-transform: capitalize;
}

.circle-shape:before {
    content: "";
    background: var(--color-theme-primary);
    height: 24px;
    width: 24px;
    position: absolute;
    left: -16px;
    top: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

/*================
responsive
===================*/

@media (max-width: 1024px) {
    .circle-shape:before {
        content: none;
        display: none;
    }
}

@media (max-width: 767px) {
    .markino-counter-style-2 .counter-content .markino-counter-info .timer {
        font-size: 88px;
        line-height: 98px;
    }
}