.textInputLable2{
	width:100%;
	height:30px;
	padding:9px 10px;
	float:left;
	text-align:left;
	color:#0090ff;
}
.txtInput3{
	width:200px;
	height:30px;
	margin:0 auto;
	padding-left:5px;
	text-align:left;
    overflow: auto;
    padding: 2px 5px;
    border: 1px solid #0090ff;
    
}
.Qtext{
	width:400px;
	float:left;
}
.checkSwitch1Actual{
	display:none;
}
.checkSwitch1 {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 28px;
}
.checkSlider1 input {display:none;}
.checkSlider1 {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  background-color: #ccc;
  color:#2196F3;
  padding-top: 4px;
  padding-left: 30px;
  -webkit-transition: .4s;
  transition: .4s;
}

.checkSlider1:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  border-radius: 50%;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .checkSlider1 {
  background-color: #2196F3;
  color:#fff;
  padding-left: 4px;
}

input:checked + .checkSlider1:before {
  -webkit-transform: translateX(30px);
  -ms-transform: translateX(30px);
  transform: translateX(30px);
}