/**************** Premium Progress Bar ****************/
/******************************************************/
.premium-progressbar-container {
    position: relative;
}

.premium-progressbar-bar-wrap {
    position: relative;
    text-align: right;
    overflow: hidden;
    height: 25px;
    margin-bottom: 50px;
    background-color: #f5f5f5;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.premium-progressbar-bar-wrap.premium-progressbar-dots {
    background-color: transparent;
    width: 100%;
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    height: auto;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.premium-progressbar-bar-wrap .progress-segment {
    position: relative;
    width: 25px;
    height: 25px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
    background-color: #f5f5f5;
}

.premium-progressbar-bar-wrap .progress-segment.filled {
    background: #6ec1e4;
}

.premium-progressbar-bar-wrap .progress-segment:not(:first-child):not(:last-child) {
    margin: 0 4px;
}

.premium-progressbar-bar-wrap .progress-segment:first-child {
    margin-left: 4px;
}

.premium-progressbar-bar-wrap .progress-segment:last-child {
    margin-right: 4px;
}

.premium-progressbar-bar-wrap .progress-segment .segment-inner {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    background-color: #6ec1e4;
}

.premium-progressbar-bar {
    float: right;
    width: 0%;
    height: 100%;
    font-size: 12px;
    line-height: 20px;
    background: #6ec1e4;
    text-align: center;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.premium-progressbar-striped .premium-progressbar-bar {
    background-image: -webkit-linear-gradient(-135deg,
            rgba(255, 255, 255, 0.15) 25%,
            transparent 25%,
            transparent 50%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(255, 255, 255, 0.15) 75%,
            transparent 75%,
            transparent);
    background-image: -webkit-linear-gradient(45deg,
            rgba(255, 255, 255, 0.15) 25%,
            transparent 25%,
            transparent 50%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(255, 255, 255, 0.15) 75%,
            transparent 75%,
            transparent);
    background-image: linear-gradient(45deg,
            rgba(255, 255, 255, 0.15) 25%,
            transparent 25%,
            transparent 50%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(255, 255, 255, 0.15) 75%,
            transparent 75%,
            transparent);
    -webkit-background-size: 40px 40px;
    background-size: 40px 40px;
}

.premium-progressbar-active .premium-progressbar-bar {
    -webkit-animation: progress-bar-stripes 2s linear infinite;
    animation: progress-bar-stripes 2s linear infinite;
}

.premium-progressbar-gradient .premium-progressbar-bar {
    -webkit-background-size: 400% 400% !important;
    background-size: 400% 400% !important;
    -webkit-animation: progress-bar-gradient 10s ease-in-out infinite;
    animation: progress-bar-gradient 10s ease-in-out infinite;
}

.premium-progressbar-bar {
    position: absolute;
    overflow: hidden;
    line-height: 20px;
}

.premium-progressbar-container .clearfix {
    clear: both;
}

.premium-progressbar-bar {
    -webkit-transition: width 0s ease-in-out !important;
    transition: width 0s ease-in-out !important;
}

.premium-progressbar-container p:first-of-type {
    margin: 0;
    float: left;
}

.premium-progressbar-container p:nth-of-type(2) {
    margin: 0;
    float: right;
}

.premium-progressbar-name {
    right: 50%;
    top: 0;
    left: 0;
    -webkit-transform: translateX(12.5px);
    -ms-transform: translateX(12.5px);
    transform: translateX(12.5px);
    z-index: 1;
}

.premium-progressbar-multiple-label {
    position: relative;
    float: right;
    width: 0;
    right: 50%;
}

.premium-progressbar-center-label {
    position: relative;
    white-space: nowrap;
}

.premium-progressbar-arrow {
    height: 15px;
    right: 50%;
    display: inline-block;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    border-top: 11px solid;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
}

.premium-progressbar-pin {
    border-right: 1px solid;
    height: 12px;
    right: 50%;
    display: inline-block;
}

/**
* Circle Progress Bar
*/
.premium-progressbar-circle-wrap,
.premium-progressbar-hf-circle-wrap {
    width: 200px;
    height: 200px;
    position: relative;
    margin: 0 auto;
}

.premium-progressbar-circle-wrap .premium-progressbar-circle-content,
.premium-progressbar-hf-circle-wrap .premium-progressbar-circle-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}

.premium-progressbar-circle-wrap .premium-lottie-animation,
.premium-progressbar-hf-circle-wrap .premium-lottie-animation {
    line-height: 1;
}

.premium-progressbar-circle-wrap .premium-progressbar-circle {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    -webkit-clip-path: inset(0 0 0 50%);
    clip-path: inset(0 0 0 50%);
}

.premium-progressbar-circle-wrap .premium-progressbar-circle div {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border-width: 6px;
    border-style: solid;
    border-color: #54595f;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-clip-path: inset(0 50% 0 0);
    clip-path: inset(0 50% 0 0);
}

.premium-progressbar-circle-wrap .premium-progressbar-circle .premium-progressbar-circle-left {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
}

.premium-progressbar-circle-wrap .premium-progressbar-circle .premium-progressbar-circle-right {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
    visibility: hidden;
}

.premium-progressbar-circle-wrap .premium-progressbar-circle-base {
    width: 100%;
    height: 100%;
    border: 6px solid #eee;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.premium-progressbar-circle-wrap .premium-lottie-animation {
    line-height: 1;
}

/**
* Half Circle Progress Bar
*/
.premium-progressbar-hf-container {
    position: relative;
    width: 200px;
    height: 200px;
}

.premium-progressbar-hf-circle-wrap {
    overflow: hidden;
}

.premium-progressbar-hf-circle-wrap .premium-progressbar-left-label {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.premium-progressbar-hf-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-clip-path: inset(0 0 50% 0);
    clip-path: inset(0 0 50% 0);
}

.premium-progressbar-hf-circle-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border: 12px solid #000;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-clip-path: inset(50% 0 0 0);
    clip-path: inset(50% 0 0 0);
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: -webkit-transform 1500ms linear;
    transition: -webkit-transform 1500ms linear;
    transition: transform 1500ms linear;
    transition: transform 1500ms linear, -webkit-transform 1500ms linear;
}

.premium-progressbar-circle-inner {
    height: 100%;
    width: 100%;
    border: 12px solid #eee;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.premium-progressbar-hf-labels {
    margin: 0 auto;
    position: relative;
    font-size: 12px;
    font-weight: 400;
    -js-display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}


@-webkit-keyframes progress-bar-stripes {
    from {
        background-position: 100% 0;
    }

    to {
        background-position: 40px 0;
    }
}

@keyframes progress-bar-stripes {
    from {
        background-position: 100% 0;
    }

    to {
        background-position: 40px 0;
    }
}

@-webkit-keyframes progress-bar-gradient {
    0% {
        background-position: 100% 50%;
    }

    50% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

@keyframes progress-bar-gradient {
    0% {
        background-position: 100% 50%;
    }

    50% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

@media (max-width: 768px) {
    .premium-progressbar-center-label {
        -webkit-transform: rotate(-90deg) !important;
        -ms-transform: rotate(-90deg) !important;
        transform: rotate(-90deg) !important;
        -webkit-transform-origin: 0;
        -ms-transform-origin: 0;
        transform-origin: 0;
    }
}