/*Pricing CSS*/
.brd-color{border-color:rgba(112,112,112,0.3) !important;}

input[type=range] {
  -webkit-appearance: none; /* Hides the slider so that custom slider can be made */
  width: 100%; /* Specific width is required for Firefox. */
  background-color: #efefef; /* Otherwise white in Chrome */
}


input[type=range]::-webkit-slider-thumb {  
  border: 5px solid var(--brand-color2);
  height: 26px;
  width: 26px;
  -webkit-appearance: none;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  margin-top: -11px;/* You need to specify a margin in Chrome, but in Firefox and IE it is automatic */ 
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  -webkit-appearance: none;
  border-radius: 5px;
  /*border: 0.2px solid #010101;*/
}



input[type=range]::-ms-track {
  width: 100%;
  cursor: pointer;

  /* Hides the slider so custom styles can be added */
  background: transparent; 
  border-color: transparent;
  color: transparent;
}




/* Special styling for WebKit/Blink */

.setrange {position: absolute;top: -2.5em;left: 50%;width: 36px;height: 1em;text-align: center;color: red;font-weight: bold;
  white-space: nowrap;}

/* All the same stuff for Firefox */
input[type=range]::-moz-range-thumb {
  border: 6px solid var(--brand-color2);
  height: 36px;
  width: 36px;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
}

/* All the same stuff for IE */
input[type=range]::-ms-thumb {
  border: 5px solid var(--brand-color2);
  height: 26px;
  width: 26px;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
}





input[type=range]::-moz-range-track {
  width: 100%;
  height: 5px;
  cursor: pointer;
  /*box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;*/
  background: rgba(102,102,102,0.1);
  
  /*border: 0.2px solid #010101;*/
}

input[type=range]::-ms-track {
  width: 100%;
  height: 10px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  border-width: 16px 0;
  color: transparent;
  border-radius: 5px;
}
input[type=range]::-ms-fill-lower {
  background: #000;
  border-radius: 5px;
}
input[type=range]:focus::-ms-fill-lower {
  background: #000;
}
input[type=range]::-ms-fill-upper {
  background: #000;
  
}
input[type=range]:focus::-ms-fill-upper {
  background: #000;
}
.plan-box{border-top:1px solid rgba(112,112,112,0.3); border-bottom:1px solid rgba(112,112,112,0.3); border-right:1px solid rgba(112,112,112,0.3);}
.plan-box:first-of-type{border-left:1px solid rgba(112,112,112,0.3);}
.plan-box .img-box{height: 70px;margin-top: 20px;margin-bottom: 30px;}
.plan-box .txt-box1{height: 80px;}
.plan-box .txt-box2{height: 70px;position: relative;}
.single-price-box{background-color: rgba(102,102,102,0.1);color:var(--text-color2);border-radius: 4px 4px;text-align: center; }
.total-price-box{background-color: rgba(177,229,235,0.3);}
.total-price-box .inner-box{background-color:#ffffff;-webkit-box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16);
-moz-box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16);box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16); }

/*Custom radio button*/
.radio-container {
  display: inline-block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 0px;
  margin-right: 15px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

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

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 3px;
  left: 0;
  height: 14px;
  width: 14px;
  background-color: #fff;
  border:2px solid var(--brand-color2);
  border-radius: 50%;
}

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

/* When the radio button is checked, add a blue background */
.radio-container input:checked ~ .checkmark {
  background-color: #fff;
  border:2px solid var(--brand-color2);
}

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

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

/* Style the indicator (dot/circle) */
.radio-container .checkmark:after {
  top: 2px;
  left: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-color2);
}
.super-bill{display: none;}
.linksinans a{color: var(--brand-color2);}
.plan-nav-parent{overflow-x: scroll;}
.plan-nav .flex-fill{border-bottom: 5px solid rgba(112,112,112,0.3);}
.plan-nav .flex-fill.active{border-color: var(--brand-color2);}
ul.features{padding-left: 15px;line-height: 24px;}
.package-sub-head{font-size:18px;line-height: 24px;}
@media (min-width: 320px) and (max-width: 767px){
	.plan-box{border: 1px solid rgba(112,112,112,0.3);}	
}
@media (min-width: 2001px){
    .sticky-faq{top:200px;}
}