:root{
    --orange: #ffbe01;
    --blue: #204054;
	--yellow: #ffe18c;
	--light-yellow: #fcebba;
	--grey: #666666;
}
/* ------------- Common ---------------*/
/*html{
    scroll-behavior:smooth
}*/
body {
    color:var(--grey);
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    background-color:var(--yellow);
    line-height: 1.6;
}
.text-blue {
    color:var(--blue);
}
a, a:hover {
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}
b, strong {
    font-family: 'Poppins', sans-serif;
	font-weight:600;
}
h1, h2, h3, h4, h5, h6 {
    font-weight:600;
}
.img100 {
    width: 100%;
}
.list-common {
    list-style:none;
    padding:0;
    margin:0;
}
.list-common:after {
    content:"";
    display: table;
    clear: both;
}
.font-poppin-600 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
.font-24 {
    font-size: 24px;
}
.font-22 {
    font-size: 22px;
}
.font-20 {
    font-size: 20px;
}
.font-18 {
    font-size: 18px;
}
.font-16 {
    font-size: 16px;
}
.font-14 {
    font-size: 14px;
}
.font-12 {
    font-size: 12px;
}
.mt-30 {
    margin-top:30px
}
.mb-10 {
    margin-bottom:10px
}
.mb-20 {
    margin-bottom:20px
}
.mb-25 {
    margin-bottom:25px
}
.mb-30 {
    margin-bottom:30px
}
.m0 {
    margin: 0;
}
.w690 {
    width: 690px;
    max-width:100%;
    margin:0 auto;
}
.alert-sm {
    padding:.15rem 0.8rem;
    font-size: 14px;
}
/* ------------- Common End ---------------*/

.tablet {
    background-color:#f8fafd;
    border-radius:24px;
    box-shadow: 0 10px 25px 2px rgba(0,0,0,0.15);
    padding:24px;
    width:700px;
    margin: 0 auto;
    max-width: 100%;
    margin-top:30px;
    margin-bottom:30px;
    position: relative;
}
.tab-btn1 {
    height: 10px;
    width: 52px;
    border-radius: 20px;
    position: absolute;
    top:-5px;
    left: 65px;
    background-color:#f8fafd;
}
.tab-btn2 {
    height: 10px;
    width: 52px;
    border-radius: 20px;
    position: absolute;
    top:-5px;
    left: 135px;
    background-color:#f8fafd;
}
.tab-btn3 {
    height: 60px;
    width: 10px;
    border-radius: 20px;
    position: absolute;
    top:42px;
    left: -5px;
    background-color:#f8fafd;
}
.tablet-inner {
    padding: 15px;
    border-radius: 10px;
    background-color: #fff;
    border:1px solid #e3e6ea;
}

.logo {
    text-align: center;
    margin-bottom: 20px;
}
.logo img {
    width:175px;
    max-width: 100%;
}
.heading {
    font-size: 24px;
}
.subheading {
    font-size: 20px;
}

.startnendnumber {
    
    bottom: -5px;
    width: 100%;
    display: block;
    left: 0;
    right: 0;
    z-index: 1;
}
.startnendnumber .start {
    left: 0;
    position: relative;
    font-size: 14px;
    
}
.startnendnumber .end {
    right: 0;
    position: relative;
    font-size: 14px;
}
.startnendnumber .slidevalue {
    background-color:#f1f1f1;
    border-radius:4px;
    font-size:14px;
    padding: 1px 6px;
    line-height: 1;
}

.btn-orange-1 {
    background-color:#ffbe01;
    color: #fff;
    letter-spacing: 3px;
    font-size: 20px;
}
.btn-orange-2 {
    background-color:#ffbe01;
    color: #fff;
    font-size: 22px;
}
.btn-orange-1:hover, .btn-orange-2:hover {
    color: #fff;
}
.btn-orange-1 img, .btn-orange-2 img {
    display: inline-block;
}
.btn-orange-1 span, .btn-orange-2 span {
    position: relative;
    top: 2px;
}

.calculationbox {
    background-color:#f8fafd;
    padding: 18px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(99,176,235, 0.23) 
} 
.recsystemsize {
    padding-left: 100px;
    background-image: url("../images/solar-panel.png");
    background-repeat: no-repeat;
    background-size: 80px;
    background-position: left center;
    margin-bottom: 7px;
}
.savemoney {
    padding-left: 80px;
    background-image: url("../images/save-money.png");
    background-repeat: no-repeat;
    background-size: 65px;
    background-position: left center;
    padding-top: 5px;
    padding-bottom: 5px;
}
.calcamount {
    font-size: 30px;
    color: var(--blue);
}
.calculationformwrap {
    padding:0 30px 0px 30px;
}
/*------------ Range Slider -------------*/
.range-slider {
    position: relative;
    margin-bottom: 34px;
}
.range-slider label {
    margin-bottom: 10px;
}
.range-slider {
    width: 100%;
}
.range-slider__range {
    -webkit-appearance: none;
    width: 100%;
    /*width: calc(100% - (73px));*/
    height: 10px;
    background: #fcebba;
    outline: none;
    padding: 0;
    margin: 0;
}
.range-slider__range::-webkit-slider-thumb {
    -webkit-appearance: none;
            appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 0 0 2px var(--blue);
    padding: 4px;
    background: var(--orange);
    cursor: pointer;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    position: relative;
    z-index: 10;
}

.range-slider__range:active::-webkit-slider-thumb {
    background: var(--blue);
}
.range-slider__range::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border: 0;
    border-radius: 50%;
    background: var(--orange);
    cursor: pointer;
    -moz-transition: background 0.15s ease-in-out;
    transition: background 0.15s ease-in-out;
}

.range-slider__range:active::-moz-range-thumb {
    background: var(--orange);
}
.range-slider__range:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 4px var(--blue);
}
.range-slider__value {
    display: block;
    position: relative;
    z-index:10;
    width: 50px;
    color: #fff;
    line-height: 20px;
    text-align: center;
    border-radius: 3px;
    background: #f1f1f1;
    padding: 2px 4px;
    top: 5px;
    left: -25px;
    color: var(--blue);
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    font-size: 14px;
    line-height: 1;
    margin-left: -3%;
    /*transform-origin: center center;
    margin-left: -12px;*/
}
.range-slider__value:after {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid #f1f1f1;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    content: "";
}
::-moz-range-track {
    background: #d7dcdf;
    border: 0;
}
input::-moz-focus-inner,
input::-moz-focus-outer {
    border: 0;
}
.rangesots {
    position: relative;
}
.range-leftdot, .range-rightdot {
    height: 12px;
    width: 12px;
    display: block;
    background-color: var(--orange);
    position: absolute;
    top: 7px;
}
.range-leftdot{
    left: 0;
}
.range-rightdot {
    right: 0;
}
/*------------ Range Slider -------------*/

.desktopnone {
    display: none;
}

/*------------ Thank you page -------------*/
.banner-thankyou {
    padding: 60px 20px;
    padding-bottom: 0;
}
.banner-thankyou h2 {
    font-size: 30px;
    color: #000;
    text-align: center;
    font-weight: 700;
    margin-top: 30px;
}
.sectionpadding {
    padding-top: 30px;
}
.w700 {
    width: 700px;
    max-width: 100%;
}
.social-icons a {
    color: #fff;
    border-radius: 5px;
    height: 35px;
    width: 35px;
    display: inline-block;
    line-height: 35px;
    font-size: 18px;
    text-align: center;
}
.social-icons a.facebook {
    background-color: #3b5998;
}
.social-icons a.twitter {
    background-color: #00aced;
}
.social-icons a.instagram {
    background-color: #d81c87;
}
.link-orange {
    color: var(--orange);
}
/*------------ Thank you page end -------------*/


@media (max-width:991px) {
    .range-slider {
        margin-bottom: 20px;
    }
}

@media (max-width:767px) {
    .tablet {
        padding: 15px;
    }
    .tablet-inner {
        padding: 10px;
    }
    .calculationformwrap {
        padding: 0 15px!important;
    }
    .calculationbox {
        padding:20px;
        margin-top: 30px;
    }
    .btn-orange-2 {
        font-size: 18px;
    }
    .font-24 {
        font-size: 20px;
    }
}
@media (max-width:570px) {
    .recsystemsize, .savemoney {
        padding-left:0;
        background-image:none;
        text-align: center;
    }
    .desktopnone {display: block;}
}