
/* Questionnaire */
.border_light_blue{
  border: 1px solid rgb(240, 243, 249);
}
.shadow_light_blue{
  box-shadow: 0px 0px 30px rgba(41, 67, 191, 0.1);
}

.step_bar{
  	counter-reset: step;
 	  width: 100%;
	  margin:15px auto;
    display: flex;
    justify-content: center;
}
 .step_bar li {
	    text-align: center;
	    list-style-type: none;
	    color: #ff3b33;
	    width: 25%;
	    position: relative;
	     		 
}
   		 .step_bar li:before {
		    content: "\f111";
		    counter-increment: step;
		    width: 26px;
        height: 26px;
        border: 1px solid #b7b7c2;
		    display: inline-flex;
        justify-content: center;
        align-items: center;
		    font-size: 9px;
        font-weight: normal;
		    color: #b7b7c2;
		    background: #fff;
		    border-radius: 50%;
		    margin: 0 auto 5px auto;
        font-family: "Font Awesome 5 Pro";
  font-weight: 900;
		}
		.step_bar li:after {
			content: '';
		    width: 100%;
		    height: 1px;
		    background: #b7b7c2;
		    position: absolute;
		    left: -50%;
		    top: 15px;
		    z-index: -1; 
		}
		.step_bar li:first-child:after {	
  			content: none; 
		}
		.step_bar li.active:before{
			  background:#fff;
  			  color: #ff3b33;
          border-color:#ff3b33 ;
          box-shadow: 0px 0px 0px 4px #ffc4c1;
          font-weight: 600;
		}
		.step_bar li.complete:before{
			  background:#ff3b33;
  			  color: white;
          border-color:#ff3b33 ;
		}

.questionnaire_radio	[type="radio"]:checked,
.questionnaire_radio [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
.questionnaire_radio [type="radio"] + label
{
    position: relative;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    border: 1px solid #d8dbe0;
  background-color: #f2f4ff;
  padding: 15px 15px 15px 50px;
  width: 100%;
  margin-top: 15px;
  border-radius: 6px;
  color: #162466;
  font-size: 16px;
}
.questionnaire_radio [type="radio"]:checked + label
{
  background-color: #e4e6f5;
  font-weight: 600;
}
.questionnaire_radio [type="radio"]:checked + label:before,
.questionnaire_radio [type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 1px solid #d8dbe0;
    border-radius: 100%;
    background: #fff;
}
.questionnaire_radio [type="radio"]:checked + label:after,
.questionnaire_radio [type="radio"]:not(:checked) + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #162466;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 19px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.questionnaire_radio [type="radio"]:not(:checked) + label:after {
    opacity: 0;

}
.questionnaire_radio [type="radio"]:checked + label:after {
    opacity: 1;

}

.switch {
  position: relative;
  width: auto;
  background: #f2f4ff;
  border-radius: 10px;
  border: 1px solid #d8dbe0;
  padding: 12px 10px;
  display: inline-flex;
  align-items: center;
  margin-top: 15px;
}
.switch-label {
  position: relative;
  z-index: 2;
  width: auto;
  font-size: 14px;
  color: #162466;
  text-align: center;
  cursor: pointer;
  padding: 7px 10px;
  margin: 0 5px;
}

.switch-input {
  display: none;
}

.switch-input:checked + label {
  color: #FFF;
}
.switch-input:checked + .switch-label {
  color: #FFF;
  transition: 0.15s ease-out;
  transition-property: color, text-shadow;
  background: #162466;
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}


.questionnaire_checkbox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.questionnaire_checkbox label {
  position: relative;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  border: 1px solid #d8dbe0;
  background-color: #f2f4ff;
  padding: 15px 15px 15px 42px;
  width: 100%;
  margin-top: 15px;
  border-radius: 6px;
  color: #162466;
  font-size: 16px;
}
.questionnaire_checkbox input:checked + label {
  background-color: #e4e6f5;
  font-weight: 600;
}
.questionnaire_checkbox label:before {
  content: '';
  -webkit-appearance: none;
  background-color: #fff;
  border: 1px solid #d8dbe0;
  padding: 10px;
  display: inline-block;
  position: absolute;
  cursor: pointer;
  margin-right: 5px;
  border-radius: 3px;
  left: 0;
  margin-left: 15px;
}
.questionnaire_checkbox input:checked + label:before {
  background-color:#162466 ;
}
.questionnaire_checkbox input:checked + label:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 7px;
  height: 13px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: 18px;
  margin-left: 23px;
}
.ul_check li{
  position: relative;
  padding: 10px 5px 10px 25px;
  border-bottom: 1px solid #dcdeea;
  color: #162466;
  font-weight: 500;
}
.ul_check li:nth-last-of-type(1){
  border: none;
}
.ul_check li::before {
  position: absolute;
  content: "\f00c";
  font-size: 15px;
  font-family: "Font Awesome 5 Pro";
  color: #ff3b33;
  left: 0px;
  font-weight: 400;
}
.questionnaire_user_img{
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.questionnaire_user_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.questionnaire_ul li{
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.questionnaire_ul li svg{
  width: 30px;
}
.bg_thank_you{
background: linear-gradient(to bottom,  rgba(255,255,255,0) 0%,rgba(226,229,245,1) 48%,rgba(226,229,245,1) 72%);
}
.bg_gray_dark{
  background-color: #e5e7f5;
}
.border-0 li{
  border: 0px;
}
.w_auto{
  max-width: none;
  width: auto;
}
.full-width{
  flex: 100% !important;
  max-width: 100% !important;
}
.full-width .desc_box{
  display: flex;
}
.questionnaire_dropdown select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
.questionnaire_dropdown{
  position: relative;
}
.questionnaire_dropdown::after {
  content: "\f107";
  font-family: "Font Awesome 5 Pro";
  font-size: 16px;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 0 2px;
  position: absolute;
  pointer-events: none;
color: #6c757d;
}
.w-48{
  width: 48%;
}
.questionnaire_textbox input[type='range']{
  width: 100%;
  accent-color: #162466;
  cursor: pointer;
}
@media only screen and (max-width: 991px){
   .bg_thank_you  h1 {
    font-size: 32px;
  }
  .w-48{
    width: 100%;
    float: none !important;
  }
}