#BLRCalculator{
    scroll-margin: 110px; /* matches the height of the fixed header */
}

#blr-fee-form{
    scroll-margin: 110px; /* matches the height of the fixed header */
}

#blr-fee-calculating{
    display: none;
    font-size: 2rem;
    scroll-margin: 110px; /* matches the height of the fixed header */
}

#blr-fee-result{
    scroll-margin: 110px; /* matches the height of the fixed header */
}

#blr-fee-form input{
    border-color: #CCC;
}

#blr-fee-form table{
    width: auto;
    border: 1px solid #DCDDDD;
    border-radius: 0.3rem;
    border-collapse: collapse;
}

#blr-fee-form table td {
    border: none;
}

.blr-fee-nowrap{
    white-space:nowrap;
    text-align: right;
}

#blr-fee-form table tr {
    border: none;
}

#blr-fees-header{
    background-color: #DCDDDD;
    font-weight: 800;
}

.blr-fees-total{
    background-color: #f6f6f6;
    font-weight: 800;
    text-align: right;
}

#blr-fee-result table{
    width:auto;
}

.blr-fee-form-item-error{
    background-color:bisque;
    color: red;
}

.blr-fee-form-item {
    padding: 1rem;
}

.blr-fee-form-item-bg0{
    background-color: #F8F8F8;
}

.blr-fee-form-item-bg1{
    background-color: #F5F5F5;
}

.fee-calc-desc{
    margin: 2rem 0;
}

.blr-fee-form-item-hint{
    font-style: italic;
    display: block;
}

.blr-fee-form-required{
    font-weight: bold;
    color: #df2e11;
}

.blr-fee-form-required-bg{
    padding: 0.8rem;
}

.blr-fee-form-submit{
    padding: 0.8rem; 
}

.blr-fee-form-submit button{
    background-color: #2e3192;
    letter-spacing: 0.2px;
    color: #FFF;
    padding: 15px 30px 17px 30px;
    font-weight: 500;
    border: none;
}

.blr-fee-form-disclaimer{
    font-style: italic; 
}

#btnCalculator{
    margin: 1em 0 2em 0;
}

label.error{
    color: #df2e11;
    padding-left: 5px;
}

.blr-fee-error{
    padding: 1rem;
    border: 1px solid #df2e11;
    border-radius: 0.3rem;
}

.blr-accordion-item{
    margin-bottom: 1rem;
    border-style: solid;
    border-color: #e2e2e2;
    border-width: 1px;
    border-radius: 5px;
}

.blr-accordion-btn {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 15px;
    width: 100%;
    text-align: left;
    outline: none;
    border: none;
    transition: 0.4s;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    
  }

  .blr-accordion-btn.active {
    outline: none;
  }

  .blr-accordion-btn:focus {
    outline: none;
  }

  .blr-accordion-panel {
    border-radius: 0 0 5px 5px;
    padding: 1rem 1rem 0 1rem;
    background-color: white;
    display: none;
    overflow: hidden;
    font-weight: 800;
  }

  .blr-accordion-btn:after {
    font-weight: 800;
    font-size: 26px;
    content: "+";
    float: right;
    margin-left: 5px;
  }

  .blr-accordion-btn.active:after {
    content: "-";
  }

  #blr_calc_post_title > h2:before{
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block; 
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f1ec";
  }

  .blr-fee-additional{
    margin: 1rem 0;
    display: flex;
    flex-direction: column;    
  }

  .blr-fee-additional > div {
    margin-right: 0.5rem;
  }

  #blr-fee-additional-container{
    display: none;
  }

  @media (min-width:768px){
    .blr-fee-form-item-hint{
        display: inline;
    }

    .blr-fee-additional{
        flex-direction: row;
    }
  }