/***<<--- Progress Bar Transition --->>***/

.wdt-progressbar-container {
    -webkit-transition: var(--wdt-elementor-base-transition);
    transition: var(--wdt-elementor-base-transition);
}

.wdt-progressbar-container {
    position: relative;

    display: grid;
}

.wdt-progressbar-container svg {
    width: auto;
    height: 100%;
    border-radius: var(--wdtRadius_3X);
}

.wdt-progressbar-container .wdt-progressbar-value {
    line-height: 1;
    right: 0;

    display: flex;
    align-items: center;
}

/* Horizontal - Progress Bar*/

.wdt-progressbar-container.wdt-progressbar-horizontal {
    flex-direction: column;
}

.wdt-progressbar-container.wdt-progressbar-horizontal .wdt-progressbar-content {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: start;
    width: fit-content;
    grid-area: 1/1;
    text-transform: capitalize;
    font-size:  clamp(1.25rem, 0.9637rem + 0.4469vw, 1.5rem);
    padding: clamp(1.25rem, -0.4167rem + 3.4722vw, 3.75rem);/*20-60px*/
    font-family: var(--wdtFontTypo_Alt);
    z-index: 1;
    mix-blend-mode: difference;
}

.wdt-progressbar-container.wdt-progressbar-horizontal .wdt-progressbar-content .wdt-progressbar-title {
    line-height: 1;
    width: fit-content;
    margin: 0 0 0 10px;
    order: 1;
}

.wdt-progressbar-container.wdt-progressbar-horizontal .wdt-progressbar {
    position: relative;
    width: 100%;
    grid-area: 1/1;
    background: var(--wdtTertiaryColor);
    -webkit-border-radius: var(--wdtRadius_3X);
    border-radius: var(--wdtRadius_3X);
    border: 1px solid var(--wdtBorderColor);
}

.wdt-progressbar-container.wdt-progressbar-horizontal.wdt-progressbar-content-floating .wdt-progressbar-value {
    right: auto;
    transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
}

.wdt-progressbar-container.wdt-progressbar-horizontal.wdt-progressbar-content-fixed-along .wdt-progressbar-value {
    z-index: 1;
    bottom: 0;

    margin: 0 0 0 15px;

    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    transform: translateY(100%);
}

.wdt-progressbar-container.wdt-progressbar-horizontal.wdt-progressbar-content-fixed .wdt-progressbar-content {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 0;

    transform: translateY(-50%);
}

.wdt-progressbar-container.wdt-progressbar-horizontal.wdt-progressbar-content-fixed .wdt-progressbar-content .wdt-progressbar-title {
    width: auto;
    margin: 0 10px;
}

.wdt-progressbar-container.wdt-progressbar-horizontal.wdt-progressbar-content-fixed .wdt-progressbar-content .wdt-progressbar-value {
    position: relative;
}

.wdt-progressbar-container.wdt-progressbar-horizontal .wdt-progressbar-value .wdt-progressbar-percentage {
    font-size: inherit;
    top: 0;
}

/*Circle - Progress Bar*/

.wdt-progressbar-container.wdt-progressbar-circle .wdt-progressbar-value {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    justify-content: center;
    padding: 0;
    margin: 0;
}

/*Semi-Circle - Progress Bar*/

.wdt-progressbar-container.wdt-progressbar-semi-circle .wdt-progressbar-value {
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    justify-content: center;
    padding: 0;
    margin: 0;
}