#calculator-widget {
    padding: 24px 44px 15px;
}
#calculator-widget .title {
    font-size: 35px;
    font-weight: 700;
    color: #010101;
    text-align: center;
    width: 100%;
    margin: 0 0 20px;
}
#calculator-widget .form-group.radio input {
    position: static;
    vertical-align: middle;
    margin: 0;
    padding: 0;
}
#calculator-widget select {
    width: 100%;
    line-height: 44px;
    height: 44px;
}
#calculator-widget .btn {
    color: #fff;
    background: #192D73;
    padding: 0;
    font-weight: 700;
    font-size: 36px;
    line-height: 60px;
    height: 60px;
    border: none;
    text-align: center;
    width: 100%;
    border-radius: 8px;
    -webkit-transition: 300ms ease all;
    -moz-transition: 300ms ease all;
    -ms-transition: 300ms ease all;
    -o-transition: 300ms ease all;
    transition: 300ms ease all;
}
input#calc-sum, select#calc-currency {
    padding: 0px 10px;
    height: 42px;
    line-height: 42px;
}
.title-bottom {
    text-align: right;
}
.rtl .title-bottom {
    text-align: left;
}

@media (min-width: 767px) {
    #calculator-widget .col-sm-6 {
        float: right;
    }
}