#calculator {
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.calculator__inner {
    display: flex;
    justify-content: space-between;
    gap:20px;
}

#calculator:before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 33%;
    height: 40%;
    background: url('../../../../assets/images/cars/carpng.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
    z-index: -1;
}

#calculator:after {
    content: '';
    position: absolute;
    right: -40px;
    top: 0;
    height: 100%;
    width: 58%;
    background: #1158e7;
    z-index: -2;
    transform: skewX(-10deg);
}

#left {
    flex: 1;
    text-align: left;
}

.calculator__inner  #right {
    display: flex;
    flex-direction:column;
    flex: 1;
    text-align: left;
    padding: 0 40px;
    gap: 10px;
    color: #fff;
}
.calculator__inner  #right > span {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    font-size: 1.2rem;
    font-weight: 500;
}

.calculator__inner label span {
    font-weight: 700;
}

#result {
    font-weight: bold;
}


.range-wrap {
    position: relative;
    margin: 0 auto 2rem;
}

.range {
    width: 100%;
}
.calculator__inner  #right .total__amount {
    font-size: 1.7rem;
    font-weight: 700;
    border-bottom: 2px solid #fff;
}

@media (max-width: 992px) {
    .calculator__inner {
        flex-direction: column;
    }
    #calculator:after {
        height: 50%;
        width: 100%;
        top: 50%;
        right: 0;
        transform: none;
    }
    #calculator .range-wrap {
        margin: 0 auto 1rem;
    }
    .calculator__inner #right {
        padding: 0;
    }
}
/*
.bubble {
    color: #000;
    padding: 4px 12px;
    position: absolute;
    border-radius: 4px;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
} */