/*custom font*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alata&display=swap');
/*basic reset*/
* {
  margin: 0;
  padding: 0;
}


h1, h2, label {
  font-family:'Alata', sans-serif;
}
a {
   font-family:'Alata', sans-serif;
}
/*body::before {*/
/*    content: '';*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: #393c40d1;*/
/*    position: absolute;*/
/*    top: 0px;*/
/*    display: block;*/

/*}*/
body.bg-color-form {
 font-family: 'Alata', sans-serif;
    background: transparent;
    background-image: url(../img/form-bg-img.png);
    background-size: cover;
    height: 100%;
    width: 100%;
    float: left;
    padding: 0px 0px 20px 0px;
}

/*form styles*/
#msform {
  text-align: center;
  position: relative;
  margin-top: 30px;
}

#msform fieldset {
  background: white;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
  padding: 0px 0px;
  box-sizing: border-box;
  width: 80%;
  margin: 0 10%;
  position: relative;
  text-align: left;
}

/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
  display: none;
}

/*inputs*/
#msform input, #msform textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 0px;
  margin-bottom: 0px;
  width: 100%;
  box-sizing: border-box;
  font-family: 'Alata', sans-serif !important;
  color: #2C3E50;
  font-size: 13px;
}
#msform select, #msform .dropdown,  #msform .bootstrap-select{
    font-family: 'Alata', sans-serif !important;
    border-radius: 0;
    font-weight: 500;
}

#msform input:focus, #msform textarea:focus {
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;

  outline-width: 0;
  transition: All 0.5s ease-in;
  -webkit-transition: All 0.5s ease-in;
  -moz-transition: All 0.5s ease-in;
  -o-transition: All 0.5s ease-in;
}

/*buttons*/
#msform .action-button {
      width: 113px;
    background: #fece1a;
    font-weight: 500;
    color: #000;
    border: 0 none;
    border-radius: 89px;
    cursor: pointer;
    font-size: 16px;
    margin: 10px 30px;
    border: 1px solid #fece1a;
    font-family: 'Alata', sans-serif;
}

#msform .action-button:hover, #msform .action-button:focus {
  /* box-shadow: 0 0 0 2px white, 0 0 0 3px #0950ee; */
  border: 1px solid #fece1a;
}

#msform .action-button-previous {
  width: 100px;
  background: #C5C5F1;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 25px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 5px;
   font-family:'Alata', sans-serif;
}

#msform .action-button-previous:hover, #msform .action-button-previous:focus {
  box-shadow: 0 0 0 2px white, 0 0 0 3px #C5C5F1;
}
.btn-info{
margin-left: 15px;
}

/*headings*/
.fs-title {
  font-size: 18px;
  text-transform: uppercase;
  color: #2C3E50;
  margin-bottom: 10px;
  letter-spacing: 2px;
  font-weight: bold;
}

.fs-subtitle {
  font-weight: normal;
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
}

/*progressbar*/
#progressbar {
  margin-bottom: 30px;
  overflow: hidden;
  /*CSS counters to number the steps*/
  counter-reset: step;
}

#progressbar li {
  list-style-type: none;
  color: white;
  text-transform: uppercase;
  font-size: 9px;
  width: 10.33%;
  position: relative;
  letter-spacing: 1px;
  display: inline-block;
}

#progressbar li:before {
  content: counter(step);
  counter-increment: step;
  width: 24px;
  height: 24px;
  line-height: 26px;
  display: block;
  font-size: 0px; 
  color: #000;
  background: #fff; 
  border-radius: 25px;
  margin: 0 auto 10px auto;
}

/*progressbar connectors*/
#progressbar li:after {
     content: '';
    width: 78px;
    height: 5px;
    background: #fff;
    position: absolute;
    left: -42%;
    top: 9px;
    z-index: 0;
}

#progressbar li:first-child:after {
  /*connector not needed before the first step*/
  content: none;
}

/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before {
  background: #fece1a;
  color: #000;
  content: "\f00c";
  font-family: fontawesome;
  font-size: 7px;
}
#progressbar li.active:after 
{
  background: #fece1a;
  color: white;
  width: 80px;
  transition: all 0.3s ease-in-out 0.9s;
  border-right: 1px solid #000;
  z-index: -1;
}
#progressbar li:first-child
{
  display: none;
}
#progressbar li:nth-child(2):after
{
  width: 0% !important;
}
#progressbar li:nth-child(2):before
{
  background-color: #19d567;
  color: #fff;
}


/* Not relevant to this form */
.dme_link {
  margin-top: 30px;
  text-align: center;
}
.dme_link a {
  background: #FFF;
  font-weight: bold;
  color: #ee0979;
  border: 0 none;
  border-radius: 25px;
  cursor: pointer;
  padding: 5px 25px;
  font-size: 12px;
}

.dme_link a:hover, .dme_link a:focus {
  background: #C5C5F1;
  text-decoration: none;
}

.full-form-width
{
  width: 100%;
  float: left;
}

/* balinder css */

.col-md-3.text-center label {
  display: unset;
}

.box {
  border: 1px solid #ddd;
  padding: 12px;
  margin-bottom: 20px;
  transition: all 1s ease;
  background: #fff;
  position: relative;
  text-align: center;
}

.box h4 {
  color: #000;
  text-transform: capitalize;
  font-size: 16px;
}
.bg-color
{
  background-color: #19d567 !important;
}
.box p {
  color: #1ba9e7;
  font-weight: 600;
  letter-spacing: 0.9px;
}
p.text-under-lable{
	font-size: 15px;
	font-family: 'Alata', sans-serif !important; 
	text-align: center;
}
.box p.sub-text {
  color: #5b5959;
  font-size: 12px;
}

.box:hover {
  box-shadow: 0px 0px 12px #ddd;
  border: 1px solid #1ba9e7;
  transition: all 1s ease;
}

.now-let, .book {
  background: #1ba9e7;
  border: 0px;
  color: #fff;
  padding: 7px 25px;
  font-size: 14px;
  text-transform: capitalize;
  border-radius: 5px;
  transition: all 1s ease;
  margin: 12px 14px;
  margin: auto;
  display: block;

}

.now-let:hover, .book:hover
{
  transition: all 1s ease;
  background:#19d567;
}

input[type="checkbox"] {
  float: left;
  width: 7% !important;
  height: 15px;
  text-align: left;
  margin: 2px 0 0 0px;
}

.checkbox.text-left label {
  color: #04acf5;
}

hr
{
  margin-bottom: 5px;
}

input.next.action-button {
  float: right;
}

input.previous.action-button {
  float: left;
}

h3.fs-subtitle {
  color: #0e0f0f;
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 0.9px;
}

input.fname {
  width: 47% !important;
  margin-right: 13px !important;
  float: left;
}

input.lname {
  width: 48% !important;
  float: left;
}

select#sel1 {
  border-radius: 0px;
}

label.wedo {
  margin-top: 10px;
}
input[type="radio"] {
  margin-bottom: 0px !important;
}

.box-solar label {
  color: #000;
  text-transform: capitalize;
  margin: 10px 0px 0px 0px;
  font-weight: 400;
  font-family: open sans !important;
}

.box-solar img {
  width: 90%;
}
/* range slider */

.slidecontainer {
  width: 100%;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 15px;
  border-radius: 5px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider:hover {
  opacity: 1;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #4CAF50;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #4CAF50;
  cursor: pointer;
}
#demo
{
  font-size: 25px;
  margin: auto;
  display: block;
  text-align: center;
}
#myRange
{
  padding: 0px !important;
  border: 1px solid #ccc;
  border-radius: 0px;
  margin-bottom: 10px;
  width: 100%;
  box-sizing: border-box;
  font-family: montserrat;
  color: #2C3E50;
  font-size: 13px;
  height: 9px
}
#myRange:focus
{
  border: 0px solid  #fff !important;
  ;}


/* css slider */

testimonial{ margin: 0 20px 50px; }
.testimonial .pic{
  display: inline-block;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 15px 15px 0;
}
.testimonial .pic img{
  width: 100%;
  height: auto;
  border-radius: 50%;
}
.testimonial .testimonial-profile{
  display: inline-block;
  position: relative;
  top: 15px;
}
.testimonial .title{
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #2f2f2f;
  text-transform: capitalize;
  margin: 0 0 7px 0;
}
.testimonial .post{
  display: block;
  font-size: 14px;
  color: #5d7aa7;
}
.testimonial .description{
  padding: 20px 22px;
  background: #1f487e;
  font-size: 15px;
  color: #fff;
  line-height: 25px;
  margin: 0;
  position: relative;
}
.testimonial .description:before,
.testimonial .description:after{
  content: "";
  border-width: 18px 0 0 18px;
  border-style: solid;
  border-color: #5d7aa7 transparent transparent;
  position: absolute;
  bottom: -18px;
  left: 0;
}
.testimonial .description:after{
  border-width: 18px 18px 0 0;
  left: auto;
  right: 0;
}
.owl-theme .owl-controls{
  margin-top: 10px;
  margin-left: 30px;
}
.owl-theme .owl-controls .owl-buttons div{
  opacity: 0.8;
  background: #fff;
}
.owl-prev:before,
.owl-next:before{
  content: "\f053";
  font-family: "fontawesome";
  font-weight: 900;
  font-size: 20px;
  color: #1f487e;
}
.owl-next:before{ content: "\f054"; }
.testimonial
{
  text-align: center;
}


/* css */

/*label.select {
  /* text-align: center; */
  /* margin: auto; */
/*  display: block;
  font-size: 17px;
  color: #535255;
  text-transform: capitalize;
*/




.box-solar {
  border: 1px solid #cfcaca;
  padding: 10px 12px;
  background: #fff;
  border-radius: 3px;
  margin-bottom: 30px;
  position: relative;
}
.your-solar
{
  width: 100%;float: left;

}
.estimate-text-2
{
  margin: auto;
  text-align: center;
  color: #1ba9e7;
  font-weight: 600;
  text-transform: capitalize;
  padding:10px 0px;
}

label
{
  width:100%;
}
.col-md-6.text-center.shade img {
  width: 100%;
}

.bg {
  width: 100%;
  background: #fff;
  color: #fff;
  text-transform: capitalize;
  transition:all 1s ease;
}

.col-md-6.text-center.shade {
  margin-bottom: 18px;
}

.bg label {
  margin: 13px 0 3px 0px;
  color: #000;
}
.col-md-6.text-center.shade:hover .bg{
  background: #19d567;
  box-shadow: 0px 0px 12px #ddd;
  transition:all 1s ease;
}

label.mani {
  text-align: left;
  font-size: 16px;
  color: #000;
  margin-left: 16px;
}



.shading {
  border-bottom: 1px solid rgba(169, 166, 166, 0.84);
}


input#address {
  border: 0px;
  border-bottom: 1px solid #1ba9e7;
  padding: 25px 18px;
}

.form-group {
  margin-top: 0px;
}

label {
    font-size: 18px;
    font-weight: 500;
  color: #575656;
	margin-bottom: 15px;
}
.div
{
  width:100%;
  float: left;
}
.div-active
{
  border: 1px solid #1ba9e7;
}



/* range slider css */

*, *:before, *:after {
  box-sizing: border-box;
}

.range-slider {
  width: 100%;
}

.range-slider__range {
  -webkit-appearance: none;
  width: calc(100% - (73px));
  height: 5px;
  border-radius: 5px;
  background: #d7dcdf;
  outline: none;
  padding: 0;
  margin: 0;
}
.range-slider__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #2c3e50;
  cursor: pointer;
  transition: background .15s ease-in-out;
}
.range-slider__range::-webkit-slider-thumb:hover {
  background: #1abc9c;
}
.range-slider__range:active::-webkit-slider-thumb {
  background: #1abc9c;
}
.range-slider__range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 50%;
  background: #2c3e50;
  cursor: pointer;
  transition: background .15s ease-in-out;
}
.range-slider__range::-moz-range-thumb:hover {
  background: #1abc9c;
}
.range-slider__range:active::-moz-range-thumb {
  background: #1abc9c;
}
.range-slider__range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 3px #fff, 0 0 0 6px #1abc9c;
}

.range-slider__value {
  display: block;
  position: relative;
  width: 60px;
  color: #fff;
  line-height: 20px;
  text-align: center;
  border-radius: 3px;
  background: #1ba9e7;
  padding: 5px 10px;
  margin: auto;
  font-size: 19px;
  font-weight: 600;
}
.range-slider__value:after {
  position: absolute;
  top: -35px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  margin: auto;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-right: 7px solid #1ba9e7;
  border-bottom: 7px solid transparent;
  content: '';
  transform: rotate(90deg);
}

::-moz-range-track {
  background: #fff !important;
  border: 0;
}

input::-moz-focus-inner,
input::-moz-focus-outer {
  border: 0;
}

input.range-slider__range {
  padding: 0px !important;
}
input.range-slider__range:active:focus {
  border: 0px !important;
}

.initial:before {
    background-color: #fece1a !important;
      color: #000 !important;
}

.green-done {
  width: 85%;
  height: 235px;
  position: absolute;
  /* top: 0px; */
  top: 0px;
  z-index: 999;
  background: #4fc04f;
  color: #fff;
  opacity: 0;
  visibility: visible;
}

.active-block {
  position: relative;
  top: 42%;
}
.text-center
{
  width: 100%;
  float: left;
  padding: 0px 15px;
  min-height: 175px;

}
.testimonial img
{
  width: 100%;
}

.form-group.custom-form-group {
  width: 100%;
  float: right;

}
.form-group.custom-form-group-two
{
  width:30%;
  float:left;
  margin-left:25px;
}

.owl-theme .owl-controls .owl-buttons div
{
  background:transparent !important;
  color:blue !important;
}

.owl-next {
  position: absolute;
  right: -25px;
  top: 70px;
}

.owl-prev {
  position: absolute;
  left: -25px;
  top: 70px;
}
.get-a-quart {
 
}
.get-a-quart {
  text-align: center;
}
.get-a-quart p.subtext {
  letter-spacing: 1.7px;
  font-size: 14px;
  font-weight: 500;
  margin: auto;
  color: #fff;
  width: 85%;
  margin-top: 15px;
  font-family:"Roboto", arial;

}

.get-a-quart h4 {
  color: #fece1a;
  font-size: 37px;
  text-transform: capitalize;
  font-weight: bold;
  letter-spacing: 0.9px;
}

.heading-text {
  margin-bottom: 26px;
  margin-top: 70px;
}

.city-town-bg {
  background: #aaa6a60d;
  width: 100%;
  float: left;
  padding: 24px 32px;
  border-bottom: 1px solid #aaa6a663;
}
.active-block img
{
  width: 12%;
}
.overlay
{
  position: absolute;
  top: 0px;
  right: 0px;
  left: 0px;
  bottom: 0px;
  background-color: #77b254;
  display: block;
  text-align: center;
  width: 100%;
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease-in-out 0.2s;
  transform: rotate(360deg);

}
.step
{
  position: absolute;
  width: 100%;
  float: left;
  height: 100%;
  top: 0px;
  right: 0px;
  left: 0px;
  bottom: 0px;
}
.icon-comb
{
  position: absolute;
  left: 0px;
  right: 0px;
  top: 37%;
  transition: all 0.5s ease-in-out 0.5s;
}
.icon-comb i , .icon-comb p
{
  color: #fff;
}

.bg-color-select {
  background: #ffffff1f;
  padding: 22px 32px 36px 29px;
  border-bottom:1px solid #ddd;
  width: 100%;
  float: left;

}
.bg-color-select-2 {
  background: #fff;
  padding: 30px 16px;
  border-bottom:1px solid #ddd;

}


.step .icon-comb
{
  display: none;
}
.overlay .icon-comb
{
  display: block;
}



select#sel1, select#sel1 {
  border-radius: 0px;
  height: 42px;
  margin-top: 0px;
}

.testimonial
{
  width: 100%;
  float: left;
  position: relative;
}

div#filedset2 {
  padding: 0px 0px;
}

.pad-ext
{
  padding: 26px 15px;

}
div#datetimepicker1 input {
  margin-bottom: 0px;
}
.image-border
{
  width: 100%;
  float: left;
  border: 1px solid #efeeee;
}
.shade .testimonial
{
  border: 1px solid #00000026;
}
.testimonial img {
  padding: 11px;
}
fieldset
{
  font-family: open Sans !important;
  overflow: hidden;
}

label.shad-text {
  font-weight: 400;
}
.image-border {
  width: 100%;
  float: left;
  border: 1px solid #efeeee;
}
.heading-image
{
  width: 100%;
  float: left;
  padding: 10px 12px;
  background-color: #fff;
}
.pignose-calendar .icon-arrow-left:before
{
  content: "\f104" !important;
  font-family: fontawesome !important;
}
.pignose-calendar .icon-arrow-right:before
{
  content: "\f105" !important;
  font-family: fontawesome !important;
}
.calender-box
{
  display: none !important;
}
.label-for-price
{
  margin-bottom: 15px;
}
.pignose-calendar .pignose-calendar-unit
{
  height: 3em !important;
}

/*=======================my css=====================*/

span.email-ids {
    float: left;
    /* padding: 4px; */
    border: 1px solid #ccc;
    margin-right: 5px;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 5px;
    background: #f5f5f5;
    padding-top: 3px;
    padding-bottom: 3px;
    border-radius: 5px;
    font-family:"Roboto", arial;
}
span.cancel-email {
    border: 1px solid #ccc;
    width: 18px;
    display: block;
    float: right;
    text-align: center;
    margin-left: 20px;
    border-radius: 49%;
    height: 18px;
    line-height: 15px;
    margin-top: 1px;    cursor: pointer;
}

.col-sm-12.email-id-row input {
    border: 0px; outline:0px;
    margin-bottom: 10px !important;
}
span.to-input {
    display: block;
    float: left;
    padding-right: 11px;
}
.col-sm-12.email-id-row {
    padding-top: 6px;
    padding-bottom: 7px;
    margin-top: 18px;
}

#inputState {
  width: 47%;
  height: 41px;
  margin-top: 10px;
}
.form-tow {
  margin-bottom: 15px !important;
}
.inputroefom {
  display: flex;
}
#inputFormRow .input-group {
  width: 100%;
}
.form-control.m-input {
  margin: 0 10px;
}
.inputroefom {
    margin-bottom: 10px;
}
.btn-subscribe-btn {
    background: #FECE1A;
    border: 1px solid #FECE1A;
    padding: 6px 20px;
    font-family: revert;
    color: #3a3535;
    font-family: 'Alata', sans-serif;
    font-weight: 400;
}
#removeRow {

    background: transparent;
    color: #d43f3a;
    border-radius: 0%;
    padding: 6px 10px;
    border: 1px solid #ddd;

}
#addRow {

    border-radius: 0px;
    background: #7fb431;
    border: 0px;
	margin-left: 15px;
}

.filelabel {
    width: 70%;
    border: 2px dashed grey;
    border-radius: 5px;
    display: block;
    padding: 5px 30px;
    transition: border 300ms ease;
    cursor: pointer;
    text-align: center;
    margin: auto;
    height: 140px;
}
.filelabel i {
    display: block;
    font-size: 35px;
    padding-bottom: 5px;
    margin-top: 16px;
}
span.title {
    font-size: 15px;
    font-weight: 400;
}
.filelabel i,
.filelabel .title {
  color: grey;
  transition: 200ms color;
}
.filelabel:hover {
  border: 2px solid #fece1a;
}
.filelabel:hover i,
.filelabel:hover .title {
  color: #000;
}
#FileInput{
    display:none;
}

input::placeholder {
    font-family:'Alata', sans-serif !important;
}
.optionnns {
 font-family:'Alata', sans-serif !important;
 border-radius: 0;
 font-weight: 500;
}
.form-control {
    font-size: 13px;
    color: #777
}

.m-input::placeholder {
    font-size: 13px;
    color: #777;
}
a.next.action-button {
float: right;
text-align: center;
padding: 10px 0;
text-decoration: none;
}

/* my css */

.g-recaptcha.brochure__form__captcha div:nth-child(1) {
    margin: auto;
}

	/**
 * Demo styles
 * Not needed for tooltips to work
 */



.tooltip a:hover {
  text-decoration: none;
}

.tooltip a{
	font-size: 12px;
}

/**
 * Tooltip Styles
 */

/* Add this attribute to the element that needs a tooltip */
[data-tooltip] {
  position: relative;
  z-index: 2;
  cursor: pointer;
}

/* Hide the tooltip content by default */
[data-tooltip]:before,
[data-tooltip]:after {
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  pointer-events: none;
}

/* Position tooltip above the element */
[data-tooltip]:before {
  position: absolute;
  bottom: 150%;
  left: 50%;
  margin-bottom: 5px;
  margin-left: -10px;
  padding: 7px;
  width: 160px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background-color: #000;
  background-color: hsla(0, 0%, 20%, 0.9);
  color: #fff;
  content: attr(data-tooltip);
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
}

/* Triangle hack to make tooltip look like a speech bubble */
[data-tooltip]:after {
  position: absolute;
  bottom: 150%;
  left: 50%;
  margin-left: -5px;
  width: 0;
  border-top: 5px solid #000;
  border-top: 5px solid hsla(0, 0%, 20%, 0.9);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  content: " ";
  font-size: 0;
  line-height: 0;
}

/* Show tooltip content on hover */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}
.tooltip_row{
display: flex;
}
.my_tooltip{
	margin-left: -20px;
}
