.bd-connect-area {
    background: #0070BB;
}

/*----------------------------------------*/
/*  10. form
/*----------------------------------------*/

#msform {
  text-align: center;
  position: relative;
  margin-top: 30px;
  z-index: 99;
  overflow: hidden;
}
input {
  padding: 10px;
  width: 100%;
  font-size: 17px;
  font-family: Raleway;
  border: 1px solid #aaaaaa;
}

/* Mark input boxes that gets an error on validation: */
input.invalid {
  background-color: #ffdddd;
}

/* Hide all steps by default: */
.tab {
background: #fff;
  border: 0 none;
  border-radius: 15px;
  box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
  padding: 20px 30px;
  box-sizing: border-box;
  width: 90%;
  margin: 0 auto;
  display: none;
}



.csform {
  background-color: #0c1d3a;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 17px;
  font-family: Raleway;
  cursor: pointer;
  width: 180px;
    background: #0c1d3a;
    font-weight: bold;
    color: #fff;
    border: 0 none;
    border-radius: 25px;
    
    padding: 10px 5px;
    margin: 10px 5px;
}

.csform:hover {
  opacity: 0.8;
}

#prevBtn {
  background-color: #bbbbbb;
}

/* Make circles that indicate the steps of the form: */
.step {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbbbbb;
  border: none;  
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
}

.step.active {
  opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
  background-color: #0c1d3a;
}
  
.fs-title1{
  font-size: 14px;
  color: #2C3E50;
  margin-bottom: 15px;
  font-weight: 700;
}

/*inputs*/
  input,   textarea,   select  {
  padding: 15px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
  border-radius: 0;
  width: 100%;
  box-sizing: border-box;
  font-family: montserrat;
  color: #2C3E50;
  font-size: 13px;
}


.form-check-input[type=checkbox]{
  padding: 8px !important;
  margin-right: 8px !important;
  margin-bottom: 10px !important;
  width: auto !important;
}
  input:focus,   textarea:focus,   select:focus {
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: 1px solid #0c1d3a;
  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;
}
  .form-check-input[type=radio] {
  width: 15px;
  padding: 2px;
  height: 15px;
  border-radius: 100%;
  margin-top: 0.25em;

}
/*buttons*/
  .action-button {
  width: 180px;
  background: #0c1d3a;
  font-weight: bold;
  color: #fff;
  border: 0 none;
  border-radius: 25px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 5px;
}

  .action-button:hover,   .action-button:focus {
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 3px #D9D9D9;
}

  .action-button-previous {
  width: 100px;
  background: #C5C5F1;
  font-weight: bold;
  color: #fff;
  border: 0 none;
  border-radius: 25px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 5px;
}

  .action-button-previous:hover,   .action-button-previous:focus {
  box-shadow: 0 0 0 2px white, 0 0 0 3px #C5C5F1;
}

/*headings*/
.fs-title {
  font-size: 18px;
  text-transform: uppercase;
  color: #2C3E50;
  margin-bottom: 10px;
  font-weight: 700;
}

.fs-subtitle {
  font-weight: 400;
  font-size: 16px;
  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: #fff;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  width: 33.33%;
  float: left;
  position: relative;
}

#progressbar li:before {
  content: counter(step);
  counter-increment: step;
  width: 34px;
  height: 34px;
  line-height: 36px;
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #333;
  background: #fff;
  border-radius: 25px;
  margin: 0 auto 10px auto;
}

/*progressbar connectors*/
#progressbar li:after {
  content: '';
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  left: -50%;
  top: 18px;
  z-index: -1; /*put it behind the numbers*/
}

#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, #progressbar li.active:after {
  background: #D9D9D9;
  color: #0070BB;
}

.rating {
  border: none;
  float: left;
}

.rating > label {
  color: #90A0A3;
  float: right;
}

.rating > label:before {
  margin: 5px;
  font-size: 2em;
  font-family: FontAwesome;
  content: "\f005";
  display: inline-block;
}

.rating > input {
  display: none;
}

.rating > input:checked ~ label,
.rating:not(:checked) > label:hover,
.rating:not(:checked) > label:hover ~ label {
  color: #F79426;
}

.rating > input:checked + label:hover,
.rating > input:checked ~ label:hover,
.rating > label:hover ~ input:checked ~ label,
.rating > input:checked ~ label:hover ~ label {
  color: #FECE31;
}

.recommendradio input{
	width: auto;
    margin-right: 5px;
	margin-left: 5px;
}