  /* General Rules For Range Slider */
  .custom-rangeslider {
    position: relative;
    margin-top: 40px;
    padding: 0;
    width: 100%;
  }
  
  .custom-rangeInput {
    width: 100%;
    background: transparent;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    box-sizing: border-box;
    cursor: pointer;
    outline: 0;
    border: 0;
    padding: 0;
    margin: 0;
    background-color: transparent;
    height: 20px;
  }
  .custom-rangeInput::-webkit-slider-thumb {
    -webkit-appearance: none;
            appearance: none;
    box-sizing: border-box;
    background-color: #21324f;
    outline: 2px solid #ffffff;
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 50%;
    cursor: move;
    /* fallback if grab cursor is unsupported */
    cursor: grab;
    cursor: -webkit-grab;
    margin-top: -8px;
  }
  .custom-rangeInput::-webkit-slider-thumb:active {
    cursor: grabbing;
    cursor: -webkit-grabbing;
  }
  .custom-rangeInput::-moz-range-thumb {
    -moz-appearance: none;
         appearance: none;
    box-sizing: border-box;
    background-color: #21324f;
    outline: 2px solid #ffffff;
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 50%;
    cursor: move;
    /* fallback if grab cursor is unsupported */
    cursor: grab;
    cursor: -webkit-grab;
  }
  .custom-rangeInput::-moz-range-thumb:active {
    cursor: grabbing;
    cursor: -webkit-grabbing;
  }
  .custom-rangeInput::-ms-thumb {
    appearance: none;
    box-sizing: border-box;
    background-color: #21324f;
    outline: 2px solid #ffffff;
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 50%;
    cursor: move;
    /* fallback if grab cursor is unsupported */
    cursor: grab;
    cursor: -webkit-grab;
    margin: auto;
  }
  .custom-rangeInput::-ms-thumb:active {
    cursor: grabbing;
    cursor: -webkit-grabbing;
  }
  .custom-rangeInput::-webkit-slider-runnable-track {
    -webkit-appearance: none;
            appearance: none;
    box-sizing: border-box;
    height: 5px;
    width: 100%;
    cursor: pointer;
    border: none;
    padding: 0;
    margin: 0;
    background: grey;
  }
  .custom-rangeInput::-moz-range-track {
    -moz-appearance: none;
         appearance: none;
    box-sizing: border-box;
    height: 5px;
    width: 100%;
    cursor: pointer;
    border: none;
    padding: 0;
    margin: 0;
    background: grey;
  }
  .custom-rangeInput::-ms-track {
    appearance: none;
    box-sizing: border-box;
    height: 5px;
    width: 100%;
    cursor: pointer;
    border: none;
    padding: 0;
    margin: 0;
    background: grey;
    color: transparent;
    border: none;
    outline: none;
  }
  .custom-rangeInput:focus, .custom-rangeInput:active {
    outline: none;
  }
  .custom-rangeInput::-ms-tooltip {
    display: none;
  }
  
  .custom-rangeslider__tooltip {
    line-height: 40px;
    position: absolute;
    height: 40;
    width: 40px;
    background-color: #fff;
    padding: 3px 3px;
    border: 1px #1620A7 solid;
    top: -40px;
    left: 0;
    text-align: center;
    transform: translate(-26%, 0);
    border-radius: 3px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    pointer-events: none;
  }
  .custom-rangeslider__tooltip:after {
    display: block;
    content: " ";
    background: #fff;
    position: absolute;
    border: 1px #33ccff solid;
    border-top: 0;
    border-left: 0;
    width: 10px;
    height: 10px;
    left: calc(50% - 6px);
    bottom: -6px;
    transform: rotate(45deg);
  }
  
  .custom-rangeslider__label {
    width: 100%;
    display: block;
  }
  .custom-rangeslider__label span {
    display: block;
  }
  .custom-rangeslider__label-min {
    float: left;
  }
  .custom-rangeslider__label-max {
    float: right;
  }
  .custom-rangeslider__label:after {
    content: "";
    display: table;
    clear: both;
  }

  .getYourQuote-btn {
    margin-left: 20px;
    background-color: rgb(255, 183, 0);
    color: black;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
  }


  /*  */

  ol.Occupied {
    list-style-type: none;
    /* Remove the default bullets */
    counter-reset: my-counter;
    /* Reset the counter for custom numbering */
    padding: 0px 10px 0px 0px;
  }

  ol.Occupied li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 10px;

  }

  .contanier-align-center {
    display: flex;
    align-items: center;
    /*  justify-content: center; */
  }

  ol.Occupied li::before {
    content: counter(my-counter, upper-alpha);
    /* Use the uppercase alphabets as bullets */
    position: absolute;
    left: 8px;
    top: 6px;
    width: 20px;
    height: 22px;
    line-height: 20px;
    text-align: center;
    background-color: #EFEFEF;
    border: 1px solid #1620a7;
    border-radius: 5px;
  }


  .Occupied .occs {
    border: 1px solid #1620a7;
/*     padding-top: 5px; */
    border-radius: 5px;
    width: 100%;
    margin: 10px;
    color: black;
    background: #EFEFEF;
    height: 50px;
  }

  .Occupied .box,#houseSqft .box {
    display: inline-block;
    width: 40px;
    height: 30px;
    border-radius: 5px;
    border: 1px solid #1620a7;
    margin-right: 10px;
    text-align: center;
    line-height: 32px;
  }

  /*  */