
.work-cost-box {
    border-radius: 30px;
    padding: 45px 50px 50px;
    color: #ffffff;
    position: relative;
    margin: 0 auto;
}

.work-cost-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 2px;
    /* border size */
    /* background: linear-gradient(90deg, #383838, #f95c34, #383838); */
     background: linear-gradient(90deg, var(--opzio-border-start, #383838), var(--opzio-border-middle, #f95c34), var(--opzio-border-end, #383838));
    transition: ease-in-out 0.6s;

    /* magic part */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* LEFT SIDE */
.work-cost-box .range-item {
    margin-bottom: 10px;
}

.work-cost-box .range-item label {
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 600;
    color: #ffffff;
}

.work-cost-box .range-item span {
    font-size: 16px;
    font-weight: 600;
    color: #f95c34;
}

/* RANGE STYLE */
.work-cost-box .custom-range {
    width: 100%;
    margin-top: 6px;
    height: 7px;
    border-radius: 3.5px;
    appearance: none;
    -webkit-appearance: none;
    /* background: rgb(255 255 255 / 20%); */
    background: var(--opzio-slider-track, rgba(255,255,255,0.2));
}

.work-cost-box .custom-range::-webkit-slider-thumb {
    -webkit-appearance: none; 
    appearance: none;
    /* background: #f95c34; */
    background: var(--opzio-slider-active, #f95c34);
    width: 19px;
    height: 19px;
    position: relative;
    top: -6px;
    border-radius: 50%;
}

.work-cost-box .custom-range::-moz-range-thumb {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    /* background: #f95c34; */
    background: var(--opzio-slider-active, #f95c34);
    cursor: pointer;
    border: none;
}

.work-cost-box .custom-range::-webkit-slider-runnable-track {
    height: 7px;
    /* background: rgb(255 255 255 / 20%); */
    border-radius: 3.5px;
}

/* CENTER BOX */
.work-cost-box .pipeline-box {
    border: 2px dashed rgb(255 255 255 / 30%);
    border-radius: 30px;
    padding: 42px 20px;
}

.work-cost-box .pipeline-box p {
    font-size: 16px;
    font-weight: 600;
    color:#ffffff;
    margin-bottom: 17px;
}

.work-cost-box .pipeline-box h2 {
    margin: 0;
    word-break: break-all;
}

/* RIGHT SIDE */
.work-cost-box .stats-box {
    margin-bottom: 25px;
    gap: 14px;
}

.work-cost-grid-con {
    display: grid;
    grid-template-columns: 408px 329px 295px;
    gap: 42px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.work-cost-box .stat {
    background: rgb(255 255 255 / 15%);
    padding: 14px 6px;
    border-radius: 10px;
    width: 34%;
}

.work-cost-box .stat p {
    font-size: 12px;
    font-weight: 600;
    color: var(--e-global-color--text);
    margin-bottom: 3px;
    text-transform: uppercase;
}

.work-cost-box .stat h4 {
    margin: 0;
    word-break: break-all;
}

/* BUTTON */
.work-cost-box .unlock-btn {
    width: 100%;
    background: #f95c34;
    border: none;
    color: #ffffff;
    padding: 16px 0;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: ease-in-out 0.3s;
}

.work-cost-box .unlock-btn:hover {
    background: #ffffff;
    color: #f95c34;
}

/*  */
.shift-box {
    background-color: rgb(0 0 0 / 10%);
    border-radius: 30px;
    position: relative;
    padding: 52px 70px 48px;
}

.shift-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 2px;
    /* border size */
    background: linear-gradient(90deg, #383838, #ffffff, #383838);
    transition: ease-in-out 0.6s;

    /* magic part */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.shift-label {
    padding: 1px 15px;
    display: inline-block;
    border-radius: 15px;
    font-weight: 600;
    font-size: 12px;
    text-align: center;
    color: var(--secondary--color);
    margin-bottom: 20px;
}

.shift-box p {
    font-size: 16px;
    line-height: 23px;
    font-weight: 500;
    margin-bottom: 0;
}

.shift-box .shift-content {
    position: relative;
    z-index: 1;
    margin-bottom: 47px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgb(255 255 255 / 25%);
}

.shift-box.orange-var::before {
    background: linear-gradient(90deg, #383838, #f95c34, #383838);
}

.shift-box {
    padding-right: 77px;
}

.shift-box.orange-var {
    padding-left: 82px;
}

.shift-elipse {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color:#f95c34;
    width: 150px;
    height: 150px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

@media(max-width: 1250px){
    .work-cost-grid-con{
        grid-template-columns: 36% 27% 32%;
        gap: 20px;
    }
    .work-cost-box .pipeline-box{
        padding: 20px;
    }
}
@media(max-width: 991px){
    .work-cost-grid-con{
        grid-template-columns: 1fr;
    }
}
@media(max-width: 767px){
    .work-cost-box{
        padding: 30px 20px;
    }
}