.profit-calculator-widget{
    background-color: #F8F9FA;
    padding-top: 50px;
    padding-bottom: 50px;
}
.profit-calculator-widget .profit-calculator-widget-wrapper{
    padding: 50px;
    background-color: #FFF;
    border-radius: 8px;
}
.profit-calculator-widget .profit-calculator-widget-wrapper .profit-calculator-title h2{
    font-family: "Archivo ",sans-serif;
    font-weight: 700;
    font-size: 32px;
    margin: 0;
    margin-bottom: 12px;
}
.profit-calculator-widget .profit-calculator-widget-wrapper .profit-calculator-description p{
    max-width: 680px;
    font-family: "Archivo ",sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #333;
    margin: 0;
}
.profit-calculator-widget .profit-calculator-widget-wrapper .profit-calculator-content{
    margin-top: 24px;
    display: flex;
    gap: 15px;

}
.profit-calculator-widget .profit-calculator-widget-wrapper .profit-calculator-content .profit-calculator-swipers{
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.profit-calculator-widget .profit-calculator-widget-wrapper .profit-calculator-content .profit-calculator-result{
    width:30%;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    background-color: #F8F9FA;
    border-radius: 16px;
}
.profit-calculator-widget .profit-calculator-widget-wrapper .profit-calculator-content .profit-calculator-result .profit-calculator-result-item h3{
    font-family: "Archivo ",sans-serif;
    font-weight: 400;
    font-size: 16px;
    margin: 0;
    line-height: 150%;
}

.profit-calculator-widget .profit-calculator-widget-wrapper .profit-calculator-content .profit-calculator-result .profit-calculator-result-item .profit-calculator-result-value{
    font-family: "Archivo ",sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin: 0;
    line-height: 150%;
   
}

.profit-calculator-widget .profit-calculator-widget-wrapper .profit-calculator-content .profit-calculator-result .profit-calculator-result-item.Annual h3{
    font-weight: 700 ;
}
.profit-calculator-widget .profit-calculator-widget-wrapper .profit-calculator-content .profit-calculator-result .profit-calculator-result-item.Annual .profit-calculator-result-value{
    font-size: 24px;
    
}

.profit-calculator-widget .profit-calculator-widget-wrapper .profit-calculator-content .profit-calculator-result .profit-calculator-button-wrapper{
    padding: 12px 0;
    background-color: #D50032;
    border-radius: 8px;
}
.profit-calculator-widget .profit-calculator-widget-wrapper .profit-calculator-content .profit-calculator-result .profit-calculator-button-wrapper a{
    font-family: "Archivo ",sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #FFF;
    line-height: 150%;
}


.profit-calculator-widget .profit-calculator-widget-wrapper .profit-calculator-content .profit-calculator-swipers .profit-calculator-slider{
    padding: 8px 24px;
    background-color: #F8F9FA;
    border-radius: 16px;
    border: 1px solid #F8F9FA;
}

.profit-calculator-widget .profit-calculator-widget-wrapper .profit-calculator-content .profit-calculator-swipers .profit-calculator-slider h3{
    font-family: "Archivo ",sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin: 0;
    margin-bottom: 16px;
    text-align: center;

}

.profit-calculator-widget .profit-calculator-widget-wrapper .profit-calculator-content .profit-calculator-swipers .profit-calculator-slider .profit-calculator-range{
    width: 100%;



}
.profit-calculator-range {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(to right, #DC3143 50%, #D9D2CC 50%); /* red filled + light grey rest */
  outline: none;
  transition: background 0.3s ease;
  position: relative;
  cursor: pointer;
}

/* Chrome/Safari thumb */
.profit-calculator-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 18px;
  width: 18px;
  background-color: #DC3143;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #DC3143;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

/* Firefox */
.profit-calculator-range::-moz-range-thumb {
  height: 18px;
  width: 18px;
  background-color: #DC3143;
  border-radius: 50%;
  cursor: pointer;
}

/* Firefox track & progress */
.profit-calculator-range::-moz-range-track {
  background-color: #D9D2CC;
  height: 6px;
  border-radius: 3px;
}
.profit-calculator-range::-moz-range-progress {
  background-color: #DC3143;
  height: 6px;
  border-radius: 3px;
}

/* IE/Edge fallback */
.profit-calculator-range::-ms-fill-lower {
  background-color: #DC3143;
  border-radius: 3px;
}
.profit-calculator-widget .profit-calculator-widget-wrapper .profit-calculator-content .profit-calculator-swipers .profit-calculator-slider .profit-calculator-value{
    font-family: "Archivo ",sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    display: flex;
    justify-content: center;
    width: 100%;
}
@media screen and (max-width:767px) {
    .profit-calculator-widget .profit-calculator-widget-wrapper .profit-calculator-content{
        flex-direction: column;
    }
    .profit-calculator-widget .profit-calculator-widget-wrapper .profit-calculator-content .profit-calculator-swipers{
        width: 100%;
    }
    .profit-calculator-widget .profit-calculator-widget-wrapper .profit-calculator-content .profit-calculator-result{
        width: 100%;
        gap: 10px   ;
    }
    .profit-calculator-widget .profit-calculator-widget-wrapper .profit-calculator-title h2{
        font-size: 20px;
    }
    .profit-calculator-widget .profit-calculator-widget-wrapper .profit-calculator-description p{
        font-size: 14px;
    }
    .profit-calculator-widget .profit-calculator-widget-wrapper .profit-calculator-content .profit-calculator-result .profit-calculator-result-item .profit-calculator-result-value{
        font-size: 16px;
    }
    .profit-calculator-widget .profit-calculator-widget-wrapper .profit-calculator-content .profit-calculator-swipers .profit-calculator-slider h3{
        font-size: 16px;
    }

   
    
}






