#rhmcalculator .rhmcalculator-title {
    font-size: 1.5em !important;
    margin-bottom: 3px !important;
}

#rhmcalculator #calculatorform {
    margin: 0px !important;
    margin-bottom: 20px !important;
    padding-bottom: 20px;
}

#rhmcalculator blockquote
{
  font-style: normal !important;
  margin-left: 32px !important;
  border-left: 4px solid rgb(26, 29, 165) !important;
  padding-left: 8px !important;
  background-color: #eee !important;
}

#rhmcalculator table {
    text-align: center !important;
    border: none !important;
}

#rhmcalculator td {
    vertical-align: middle !important;
    height: 1.2em !important;
}

#rhmcalculator td.border {
    border: solid 1px !important;
    width: 140px !important;
    font-weight: bold !important;
}

#rhmcalculator .error-msg {
    font-weight: bold !important;
    color: red !important;
    border: rgba(246, 180, 103, 0.918) solid 1px !important;
    border-radius: 5px !important;
    background-color: rgba(236, 238, 151, 0.918) !important;
    text-align: center !important;
    padding: 5px !important;
    margin-bottom: 10px !important;
}

#rhmcalculator .left {
    text-align: left !important;
}

#rhmcalculator .right {
    text-align: right !important;
}

#rhmcalculator .center {
    text-align: center !important;
}

.radiochecked {
    background-color: rgb(26, 29, 165) !important;
    border: 5px solid rgb(26, 29, 165) !important;
}

.labelchecked {
    color: rgb(26, 29, 165) !important;
    font-weight: bold !important;
}


#rhmcalculator .fsize {
    font-size: 1.4em;
}

#rhmcalculator .rhmborder {
    border: 1px solid #000000 !important;
}

#rhmcalculator .rhmradio input {
    height: 1.2em !important;
    width: 1.2em !important;
}

#rhmcalculator .rhminput {
    /* font-size: 1em !important; */
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    text-align: center;
    background-color: #1b3486;
    color: #fff !important;
    font-weight: bold !important;
    border-top-style: hidden !important;
    border-right-style: hidden !important;
    border-left-style: hidden !important;
    border-bottom-style: groove !important;
    outline: none !important;
}

#rhmcalculator .rhminput.error {
    background-color: red !important;
}

#rhmcalculator td.error {
    border: red solid 3px !important;
}

/* Chrome, Safari, Edge, Opera */
#rhmcalculator .rhminput::-webkit-outer-spin-button,
#rhmcalculator .rhminput::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}

/* Firefox */
#rhmcalculator .rhminput[type=number] {
    -moz-appearance: textfield !important;
}
#rhmcalculator button {
    margin: 0 auto;
    width:200px;
}

/* Customize the label (the container) */
.rhmradio {
    display: inline-flex;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    margin-right: 1em;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default radio button */
.rhmradio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: rgb(155, 147, 147);
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.rhmradio:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.rhmradio input:checked ~ .checkmark {
    background-color: rgb(26, 29, 165);
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: block;
}

/* Show the indicator (dot/circle) when checked */
.rhmradio input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.rhmradio .checkmark:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

#rhmcalculator .placecolor::placeholder {
    color: #fff;
}