.powerhour-counter-style-1 {
    background: transparent;
    padding: 0;
    text-align: center;
    transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
}

.powerhour-counter-style-1 .powerhour-counter-icon {
    margin: 0 auto;
    border: none;
    background: var(--global-body-lightbg);
    text-align: center;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    position: relative;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: one-animated 10s infinite;
    margin-bottom: 16px;
}

.powerhour-counter-style-1 .powerhour-counter-icon svg {
    height: 40px;
}

.powerhour-counter-style-1 .counter-content {
    display: block;
}

.powerhour-counter-style-1 .powerhour-counter-info span.timer,
.powerhour-counter-style-1 .powerhour-counter-info span.counter-symbol {
    font-weight: var(--font-weight-medium);
    color: var(--color-theme-white);
    margin-right: 5px;
}

.powerhour-counter-style-1 .powerhour-counter-info span.counter-symbol {
    color: var(--color-theme-white);
}

.powerhour-counter-style-1 .powerhour-counter-info {
    margin: 0 0 16px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.powerhour-counter-style-1 .counter-content .counter-title-text {
    color: var(--color-theme-white);
    text-transform: capitalize;
}

@media only screen and (min-width: 1025px) and (max-width: 1270px) {

    .powerhour-counter-style-1 .powerhour-counter-info span.counter-symbol,
    .powerhour-counter-style-1 .powerhour-counter-info span.timer {
        font-size: var(--font-size-h4);
    }
}

/*=================================
powerhour-counter-style-2
=====================================*/
.powerhour-counter-style-2 {
    padding: 28px 24px;
    background-color: var(--color-theme-primary);
}

.powerhour-counter-style-2 .counter-content {
    margin-top: 0;
}

.powerhour-counter-style-2 .counter-content .powerhour-counter-info {
    color: var(--color-theme-white);
    position: relative;
    font-family: var(--second-font-family);
    font-style: italic;
    display: inline-block;
    justify-content: center;
    margin-bottom: 16px;
}

.powerhour-counter-style-2 .counter-content .powerhour-counter-info:before {
    content: "";
    width: 100%;
    height: 2px;
    background: var(--color-theme-white);
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translate(0, -50%);
}

.powerhour-counter-style-2 .powerhour-counter-icon .counter-title-text {
    color: var(--color-theme-white);
    font-size: var(--font-size-h5);
    letter-spacing: var(--font-letter-spacing-h5);
    text-transform: capitalize;
    margin-top: 8px;
}

/*=================================
powerhour-counter-style-3
=====================================*/
.powerhour-counter-style-3 {
    padding: 20px;
    background-color: var(--color-theme-primary);
    display: flex;
    align-items: center;
}

.powerhour-counter-style-3 .powerhour-counter-icon {
    display: flex;
    align-items: center;
}

.powerhour-counter-style-3 .powerhour-counter-icon .icon {
    border: none;
    background: var(--color-theme-primary-light);
    text-align: center;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    position: relative;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: one-animated 10s infinite;
    margin-right: 8px;
}

.powerhour-counter-style-3 .counter-content {
    margin-top: 0;
}

.powerhour-counter-style-3 .counter-content .powerhour-counter-info {
    color: var(--color-theme-white);
    position: relative;
    font-family: var(--second-font-family);
    font-style: italic;
    display: inline-block;
    justify-content: center;
    margin-right: 8px;
    min-width: 50px;
}

.powerhour-counter-style-3 .counter-content .powerhour-counter-info:before {
    content: "";
    width: 100%;
    height: 2px;
    background: var(--color-theme-white);
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translate(0, -50%);
}

.powerhour-counter-style-3 .powerhour-counter-icon .counter-title-text {
    color: var(--color-theme-white);
    font-size: var(--font-size-body);
    letter-spacing: var(--font-letter-spacing-body);
    text-transform: capitalize;
}

/*== responsive ==*/

@media (max-width: 479px) {
    .powerhour-counter-style-3 {
        display: block;
        text-align: left;
    }

    .powerhour-counter-style-3 .powerhour-counter-icon {
        display: block;
        text-align: left;
    }

    .powerhour-counter-style-3 .powerhour-counter-icon .icon {
        margin-bottom: 8px;
        margin-right: 0;
    }
}