.opzio-progress-bar-outter {
    --opzio-arc-stroke: 8px;
}

.opzio-progress-bar-outter .missed-title,
.opzio-progress-bar-outter .progress-card-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.opzio-progress-bar-outter .missed-number {
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
}

.opzio-progress-bar-outter .progress-card {
    position: relative;
    min-height: 265px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-sizing: border-box;
    overflow: hidden;
}

.opzio-progress-bar-outter .progress-card * {
    position: relative;
    z-index: 1;
    gap: 30px;
}

.opzio-progress-bar-outter .opzio-progress-header {
    width: 100%;
    gap: 16px;
}

.opzio-progress-bar-outter .progress-wrap {
    position: relative;
    width: min(100%, 236px);
    max-width: 236px;
    aspect-ratio: 236 / 154;
    height: auto;
    margin: 0 auto;
    flex: 0 0 auto;
    margin-top: 22px;
}

.opzio-progress-bar-outter .progress-arc {
    width: 100%;
    height: 100%;
    border-top-left-radius: 999px;
    border-top-right-radius: 999px;
    border: var(--opzio-arc-stroke) solid rgb(255 255 255 / 15%);
    border-bottom: none;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

.opzio-progress-bar-outter .progress-label {
    position: absolute;
    bottom: -30px;
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
    z-index: 3;
}

.opzio-progress-bar-outter .progress-label.left {
    left: 0;
}

.opzio-progress-bar-outter .progress-label.right {
    right: 0;
}

.opzio-progress-bar-outter .progress-fill {
    position: absolute;
    top: calc(-1 * var(--opzio-arc-stroke));
    left: calc(-1 * var(--opzio-arc-stroke));
    width: calc(100% + (var(--opzio-arc-stroke) * 2));
    height: calc(100% + var(--opzio-arc-stroke));
    border-top-left-radius: 999px;
    border-top-right-radius: 999px;
    border: var(--opzio-arc-stroke) solid #f95c34;
    border-bottom: none;
    clip-path: inset(0 100% 0 0);
    transform: rotate(0deg);
    transform-origin: inherit;
    z-index: 2;
    transition: clip-path 0.1s linear;
    box-sizing: border-box;
}

.opzio-progress-bar-outter .progress-center {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -60%);
    width: 68px;
    height: 68px;
    background-color: #f95c34;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    text-decoration: none;
}

.opzio-progress-bar-outter .progress-center i {
    color: #ffffff;
    font-size: 30px;
}

.opzio-progress-bar-outter .progress-center svg {
    width: 30px;
    height: 30px;
    fill: #ffffff;
}

.opzio-progress-bar-outter .progress-percent {
    font-size: 34px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.15;
    margin-top: 13px;
    margin-bottom: 4px;
}

.opzio-progress-bar-outter .last-week {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.25;
}

@media (max-width: 767px) {
    .opzio-progress-bar-outter .progress-card {
        min-height: 280px;
    }

    .opzio-progress-bar-outter .progress-wrap {
        width: min(100%, 210px);
    }

    .opzio-progress-bar-outter .missed-number {
        font-size: 26px;
    }

    .opzio-progress-bar-outter .progress-percent {
        font-size: 30px;
    }
}

@media (max-width: 479px) {
    .opzio-progress-bar-outter .progress-wrap {
        width: min(100%, 180px);
    }

    .opzio-progress-bar-outter .progress-center {
        width: 58px;
        height: 58px;
    }

    .opzio-progress-bar-outter .progress-center i {
        font-size: 24px;
    }

    .opzio-progress-bar-outter .progress-center svg {
        width: 24px;
        height: 24px;
    }

    .opzio-progress-bar-outter .progress-label {
        font-size: 12px;
    }

    .opzio-progress-bar-outter .progress-percent {
        font-size: 26px;
    }

    .opzio-progress-bar-outter .last-week {
        font-size: 13px;
    }
}
