#calculator, #calculator * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: inherit;
}
#calculator{
    width: 100%;
    max-width: 560px;
    -webkit-box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.32);
    box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.32);
    margin-inline: auto;
    margin-block: 12px;
    border-top: 4px solid #003D60;
}
#calculator .liveSection{
    padding: 6px 24px;
    background: #ededed;
    display: flex;
    justify-content: space-between;
    gap: 8px;
    align-items: center;
}
.liveSection .liveSpan{
    font-weight: 700;
    color: #910123;
    display: flex;
    align-items: center;
    gap: 4px;
}
.liveSpan::before{
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background: rgb(255 55 55 / 0.48);
    border-radius: 50%;
}
.liveId{
    color: #888888;
    font-size: 12px;
    font-weight: 500;
}
#calculator .calcSection{
    padding:24px;
}
.calcSectionSubTitle{
    color: #003D60;
    font-size: 14px;
}
.calcSectionTitle{
    font-size: 22px;
    text-transform: uppercase;
}
.sliderValues{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#slider{
    position: relative;
    appearance: none;
    width: 100%;
    height: 6px;
    background: #c1c1c1;
    outline: none;
    margin-top: 8px;
    z-index: 3;

}
#slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 12px;
    height: 25px;
    background: #003D60;
    cursor: pointer;
    border: 2px solid #fff;
    z-index: 4;
    box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.32);

}
#calculator .minMaxValue{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}
.minMaxValue span{
    font-weight: 600;
    color: #c1c1c1;
    font-size: 12px;
}
.sliderValues span{
    position: relative;
}
.sliderValues span::after{
    content: "";
    display: block;
    position: relative;
    width: 1px;
    height: 6px;
    background: #000;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    overflow: hidden;
}
.currentValue__container{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
#currentValue{
    text-align: center;
    display: inline-block;
    margin: 0 auto;
    padding: 32px 0;
    font-size: 32px;
    font-weight: 700;
}
.calculatorResults{
    margin: 24px auto;
}
.resultRow{
    min-height: 76px;
    padding: 17px 24px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.resultRow + .resultRow{
    border-top: 1px solid #eeeeee;
}
.resultDescription,
.resultNumbers{
    display: flex;
    flex-direction: column;
}
.resultDescription{
    min-width: 0;
    align-items: flex-start;
}
.resultNumbers{
    flex: 0 0 auto;
    align-items: flex-end;
    text-align: right;
}
#calculator .resultLabel{
    min-height: 13px;
    color: #a4a4a4;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
}
#calculator .resultPeriod{
    margin-top: 1px;
    color: #202020;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.1;
}
#calculator .resultProfit{
    color: #238637;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.05;
    white-space: nowrap;
}
#calculator .resultTotal{
    margin-top: 2px;
    color: #b4b4b4;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
}
@media (max-width: 420px){
    .resultRow{
        padding-inline: 14px;
        gap: 12px;
    }
    #calculator .resultLabel{
        font-size: 9px;
    }
    #calculator .resultProfit{
        font-size: 20px;
    }
}

#calculator .my-btn{
    color: #fff;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #003D60;
    font-weight: 700;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 16px auto;
    text-decoration: none;

}
#calculator .regSection{
    padding: 12px 24px;
    background: #ededed;
}
.regSection p{
    text-align: center;
    font-size: 12px;
    color: #b6b6b6;
}
@media (max-width: 768px){
  #calculator .liveSpan {
        font-size: 12px;
  }
  #calculator .liveSection, #calculator .calcSection {
    padding: 6px 12px;
  }
}