
  
  /* The slider itself */
  .slider {
    -webkit-appearance: none;  /* Override default CSS styles */
    appearance: none;
    width: 100%; /* Full-width */
    height: 2px; /* Specified height */
    background: #6577FF; /* Grey background */
    outline: none; /* Remove outline */
    opacity: 1; /* Set transparency (for mouse-over effects on hover) */
    -webkit-transition: .2s; /* 0.2 seconds transition on hover */
    transition: opacity .2s;
  }
  
  /* Mouse-over effects */
 /* .slider:hover {
    opacity: 1;
  }*/
  
  /* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
  .slider::-webkit-slider-thumb {
    -webkit-appearance: none; /* Override default look */
    appearance: none;
    width: 15px; /* Set a specific slider handle width */
    height: 35px;
    border-radius:10px 10px 10px 10px; /* Slider handle height */
    background: #6577FF; /* Green background */
    cursor: pointer; /* Cursor on hover */
  }
  
  .slider::-moz-range-thumb {
    width: 25px; /* Set a specific slider handle width */
    height: 25px; /* Slider handle height */
    background: #04AA6D; /* Green background */
    cursor: pointer; /* Cursor on hover */
  }




/*------ section 1 ------- START -----*/

.sip-section{
  margin: 20px 0;
}
.sip-heading{
  font-size: 45px;
  font-weight: bold;
}

.sip-text{
  font-size: 18px;
  font-weight: 600;
  position: relative;
  padding-left: 10px;
}

.sip-text::before {
  position: absolute;
  width: 0;
  height: 100%;
  left: 0;
  border: solid 1px #62d523;
  content: "";
}

.sip-cal-heading{
  margin: 50px 0 20px 30px ;
  font-size: 25px;
  font-weight: bold;
}


.sip-calculator{
  border-radius: 15px;
  box-shadow: 0 0 17px 0 rgba(0, 0, 0, 0.16);
  padding: 30px;
}

.form-lable-wrap{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form-lable-wrap div{
  font-family: 'Raleway', sans-serif;
  text-transform: capitalize;
  font-weight: bold;
}

.slidecontainer {
  width: 100%; /* Width of the outside container */
  margin-bottom: 25px;
}

.btn-calculator{
  background-image: linear-gradient(262deg,#799ae0,#728fe5,#233670);
        color: white;
        font-family: Raleway;
        font-size: 18px;
        font-weight: 500;
        padding: 5px 60px;
        margin: 10px 0;
        text-transform: capitalize;
        border: none;
}
.btn-calculator:hover{
  color: white;
}


.sip-data-wrap{
  margin: 100px 0 0;
}

.sip-data h1,.sip-data2 h1{
    margin-bottom: 5px;
    font-size: 15px;
    color: #44475b;
    opacity: .75;
}
.sip-data h4,.sip-data2 h4{
  font-size: 20px;
    font-weight: bold;
    color: #44475b;
}
.sip-row-data{
  width: 100%;
  display: inline-block;
}
.sip-data{
  width: 50%;
  float: left;
text-align: center;
}
.sip-data2{
  text-align: center;
}

#myChart{
  max-width: 400px;
  width: 100%;
  height: auto;
}

.btn-invest{
  max-width: 223.2px;
  width: 100%;
  padding: 5px 20px;
  border-radius: 5px;
  box-shadow: 0 8px 13px 0 rgba(46, 47, 103, 0.18);
  background-color: #2f7e04;
  font-family: Raleway;
  font-size: 18px;
  font-weight: 500;
  color: white;
  text-transform: capitalize;
  margin: 20px auto 0;
}
.btn-invest:hover{
  color: white;
}



/*Most of the Smartphones Mobiles (Portrait)*/
@media (min-width: 320px) and (max-width: 767px) {

  .sip-heading {
    font-size: 30px;
}
.sip-text {
  font-size: 15px;
}
.sip-cal-heading {
  margin: 30px 0 19px 5px;
}

.sip-data-wrap {
  margin: 40px 0 0;
}

}