@charset "utf-8";
/* CSS Document */

/*General form wrapper*/
#wasteCalculator .calculator_wrapper{
    margin-top: 2rem;
}


/*labels*/
#wasteCalculator label{
    padding-top:1.5rem;
}


/*Inputs and Dropdowns and labels*/
#wasteCalculator .form-control{
    border:1px solid #697fa3;
    margin-top:1rem;
    margin-bottom:1rem;
}

/*Subresults and text*/
#wasteCalculator .sub_result{
    padding-top:1rem;
}
    
/*Section devider (hr)*/
#wasteCalculator hr{
    margin-bottom:2.5rem;
}


/*Form section heads*/
#wasteCalculator h3, h4, h5{
    color: #003a65;
}

.general_hint{
    display: none;
    color:#CF4D4D;
}


/*Override bootstrap Button*/
#wasteCalculator #showHideBio{
    background-color: #ef7705;
    font-weight: 700;
    border:none;
    transition: all 0.5s 0s ease-in-out;
    padding: .5rem 1rem;
}
#wasteCalculator #showHideBio:hover{
    background-color: #e99e59;
}

/*Total Fee */
#wasteCalculator .exCalc_result{
    font-weight: 700;
}

#wasteCalculator .waste_ra4b_hint{
  margin:0.5rem 0rem 2rem 0rem;
}





/*-------------------------------< Breakpoints >---------------------------------*/
@media only screen and (max-width: 540px) {

    #wasteCalculator .form-control{
        border:1px solid #697fa3;
        margin-top:0rem;
        margin-bottom:1rem;
    }

    #wasteCalculator hr{
        margin-bottom:2rem;
    }
  }

/*--------------------------< Loader (draft) >-------------------------------------*/

#formOverlay{
    position: absolute;
    background-color: rgba(255,255,255,0.1);
    background-color: none;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    padding: 20px;
    width: 100%;
    height: 100%;
    z-index: 99999;
    left:0px;
    top:0px;
}

#wasteCalculator .loader_inner{
    text-align: center;
    /*
    position: relative;
    margin-left: auto;
    margin-right: auto;
    top:10%;
    */
    font-weight: 700;
    position: fixed;
  top: 5%;
  left: 50%;
  margin-top: -50px;
  margin-left: -100px;
}




.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 20px;
  }
  .lds-ellipsis div {
    position: absolute;
    top: 0px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #ef7705;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
  }
  .lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
  }
  @keyframes lds-ellipsis1 {
    0% {
      transform: scale(0);
    }
    100% {
      transform: scale(1);
    }
  }
  @keyframes lds-ellipsis3 {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(0);
    }
  }
  @keyframes lds-ellipsis2 {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(24px, 0);
    }
  }


  /*-------------------------------< Hints (since 8.0) >---------------------------------*/
  #wasteCalculator .blockhint{
    transition: all 0.5s ease-in-out;
    background-color: #ef7705;
    color: #fff;
    padding:1rem 1rem;
    border-radius:10px;
  }