.calculator-placement{
    text-align: center;
    margin: 0;
    position: absolute;
    width: 100%;
    bottom: 20px;
    color: black;
    font-weight: 500;
}
.calculator-placement:hover{
    text-decoration: none;
    color: black;
}
.calculator-placement span.text{
    text-decoration: underline;
}
.calculator-placement span{
    cursor: pointer;
}
.calculator-icon{
    margin-right: 10px;
}
.calculator-modal{
    padding-top: 45px;
}
.calculator-label{
    font-weight: 700;
}
.calculator-input{
    width: 100%;
    margin-bottom: 12px;
    background-color: lightgray;
    border: none;
    padding: 10px 15px;
    font-weight: 700;
    font-size: 1.2em;
    border-radius: 2px;
}
.calculator-input::-webkit-input-placeholder{
    color: gray;
}
.calculator-title{
    font-weight: 900;
    font-size: 1.7em;
    color: #575758;
    margin-bottom: 45px;
}
.result{
    display: block;
    font-weight: 700;
    line-height: 1.2;
}
.result a{
    color: gray;
}
.result.active a{
    color: #00A0E3;
}
.result a:hover{
    color: #00A0E3;
}
.calculator-subtitle{
    font-weight: 700;
    font-size: 1.3em;
    margin-bottom: 25px;
}
.calculator-net-price{
    color: #00A0E3;
    font-weight: 700;
    font-size: 20px;
    margin: 0;
}
.calculator-net-checkpoint{
    background-color: gray;
    color: white;
    line-height: 40px;
    font-size: 1.2em;
    font-weight: 700;
    border-radius: 15px;
    width: 100%;
    border: none;
    cursor: pointer;
    margin-bottom: 25px;
}
.calculator-net-checkpoint.active{
    background-color: #00A0E3;
    color: white;
    line-height: 40px;
    font-size: 1.2em;
    font-weight: 700;
    border-radius: 15px;
    width: 100%;
    border: none;
}
.disclaimer{
    font-weight: 700;
    color: #575758;
    margin-bottom: 10px;
}
.disclaimer:last-child{
    margin-bottom: 0;
}
.calculator-result{
    display: block;
    margin: 0 auto;
    width: 300px;
    text-align: center;
    margin-bottom: 15px;
    background-color: lightgray;
    border: none;
    padding: 15px 20px;
    font-weight: 700;
    font-size: 1.2em;
    border-radius: 15px;
}

.calculator-result.changed {
    background: #00A0E3 !important;
    color: #fff !important;
    height: 58px !important;
    font-size: 25px !important;
}