/*== Counter addon ==*/

.upstudy-counter .upstudy-counter-number-wrapper-no {
    font-size: 42px;
    font-weight: 600;
    line-height: 1;
    color: var(--upstudy-heading-color);
}
/*flex-counter*/

.upstudy-counter.counter-style-1.inline-counter {
    display: flex;
    align-items: center;
}
@media only screen and (max-width: 768px) {
    .upstudy-counter.counter-style-1.inline-counter {
        flex-direction: column;
        justify-content: center;
    }
}
/* Counter 2 */

.upstudy-counter.counter-style-2 .counter-wrapper {}
.upstudy-counter.counter-style-2 .counter-wrapper .counter-icon, .upstudy-counter.counter-style-4 .counter-wrapper .counter-icon {
    margin-bottom: 10px;
    line-height: 1;
    display: inline-block;
}
.upstudy-counter.counter-style-2 .counter-wrapper .counter-icon svg, .upstudy-counter.counter-style-4 .counter-wrapper .counter-icon svg {
    width: 30px;
    height: 30px;
}
.upstudy-counter.counter-style-2 .counter-wrapper .counter-icon i, .upstudy-counter.counter-style-4 .counter-wrapper .counter-icon i {
    font-size: 30px;
    line-height: 1;
}
.upstudy-counter.counter-style-2.icon-hover-enable .counter-wrapper .counter-icon, .upstudy-counter.counter-style-4.icon-hover-enable .counter-wrapper .counter-icon {
    transition: .4s;
    transform: rotateY(0deg);
}
.upstudy-counter.counter-style-2.icon-hover-enable:hover .counter-wrapper .counter-icon, .upstudy-counter.counter-style-4.icon-hover-enable:hover .counter-wrapper .counter-icon {
    transform: rotateY(180deg);
}
.upstudy-counter.counter-style-4 .counter-wrapper .counter-icon {
    transition: .4s;
    transform: rotateY(0deg);
    width: 130px;
    height: 130px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0px 0px 136px 0px rgba(0, 0, 0, 0.05);
    border-radius: 50%;
}
.upstudy-counter.counter-style-4 .counter-wrapper .counter-icon:before {
    --border-width: 10px;
    content: '';
    position: absolute;
    border: var(--border-width) solid var(--upstudy-primary-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(135deg);
    width: calc(100% + var(--border-width)*2);
    height: calc(100% + var(--border-width)*2);
    border-radius: 50%;
    margin: 0 auto;
    border-top-color: transparent;
    border-right-color: transparent;
}
.upstudy-counter.counter-style-2 .counter-wrapper .counter-content .upstudy-counter-number-wrapper-no, .upstudy-counter.counter-style-4 .counter-wrapper .counter-content .upstudy-counter-number-wrapper-no {
    font-size: 30px;
    line-height: 34px;
    font-weight: 700;
    color: var(--upstudy-heading-color);
}
.upstudy-counter.counter-style-2 .counter-wrapper .counter-content .upstudy-counter-title, .upstudy-counter.counter-style-4 .counter-wrapper .counter-content .upstudy-counter-title {
    font-size: 18px;
    color: var(--upstudy-heading-color);
    line-height: 36px;
}
/* Counter 3 */

.upstudy-counter.counter-style-3 {
    display: flex;
    align-items: center;
    justify-content: center;
}
.upstudy-counter.counter-style-3 .upstudy-counter-number-wrapper-no {
    margin-bottom: 20px;
}
@media (max-width: 767.98px) {
    .upstudy-counter.counter-style-3 {
        transform: none !important;
    }
}