/*===== CHAPTER 8 ==========  FORM  ==========*/

/*custom font*/
body {
  background-color: #ffffff;
  color: #444444;
  font-family: "Roboto", sans-serif;
  /*font-size: 16px;*/
  font-weight: 300;
  margin: 0;
  padding: 0;
}
.mainContent .multistep-title {
  font-size: 30px;
}
.wizard-content-left {
  background-blend-mode: darken;
  background-color: rgba(0, 0, 0, 0.45);
  background-image: url("https://i.ibb.co/X292hJF/form-wizard-bg-2.jpg");
  background-position: center center;
  background-size: cover;
  height: 100vh;
  padding: 30px;
}
.wizard-content-left h1 {
  color: #ffffff;
  font-size: 38px;
  font-weight: 600;
  padding: 12px 20px;
  text-align: center;
}
.steps-image {
  width: 100%;
}

.form-wizard {
  color: #888888;
}
.form-wizard .wizard-form-radio {
  display: inline-block;
  margin-left: 5px;
  position: relative;
}
.form-wizard .wizard-form-radio input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  background-color: #dddddd;
  height: 25px;
  width: 25px;
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}
.form-wizard .wizard-form-radio input[type="radio"]:focus {
  outline: 0;
}
.form-wizard .wizard-form-radio input[type="radio"]:checked {
  background-color: #fb1647;
}
.form-wizard .wizard-form-radio input[type="radio"]:checked::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  display: inline-block;
  background-color: #ffffff;
  border-radius: 50%;
  left: 1px;
  right: 0;
  margin: 0 auto;
  top: 8px;
}
.form-wizard .wizard-form-radio input[type="radio"]:checked::after {
  content: "";
  display: inline-block;
  webkit-animation: click-radio-wave 0.65s;
  -moz-animation: click-radio-wave 0.65s;
  animation: click-radio-wave 0.65s;
  background: #000000;
  content: "";
  display: block;
  position: relative;
  z-index: 100;
  border-radius: 50%;
}
.form-wizard .wizard-form-radio input[type="radio"] ~ label {
  padding-left: 10px;
  cursor: pointer;
}
.form-wizard .form-wizard-header {
  text-align: center;
}
.form-wizard .form-wizard-next-btn,
.form-wizard .form-wizard-previous-btn,
.form-wizard .form-wizard-submit {
  background-color: #63b901;
  color: #ffffff;
  display: inline-block;
  min-width: 100px;
  min-width: 120px;
  text-align: center;
}
.form-title{
  text-align: center;

}
.form-wizard .form-wizard-next-btn:after {
  content: "\e092";
  font-family: "Glyphicons Halflings";
  padding: 2px 4px 4px 6px;
  margin-left: 0.75em;
  font-size: 80%;
  color: #63b901;
  background: #fff;
  border-radius: 50%;
}
.form-wizard .form-wizard-next-btn:hover,
.form-wizard .form-wizard-next-btn:focus,
.form-wizard .form-wizard-previous-btn:hover,
.form-wizard .form-wizard-previous-btn:focus,
.form-wizard .form-wizard-submit:hover,
.form-wizard .form-wizard-submit:focus {
  color: #ffffff;
  opacity: 0.6;
  text-decoration: none;
}
.form-wizard .wizard-fieldset {
  display: none;
}
.form-wizard .wizard-fieldset.show {
  display: block;
}
.form-wizard .wizard-form-error , .form-wizard .wizard-form-error-email  {
  color: #f84a06;
  font-weight: 700;
  height: 4px;
  margin-top: 5px;
  margin-bottom: 10px;
  width: 100%;
  font-size: 12px;
  display: none;
}

.form-wizard .form-wizard-previous-btn {
  background-color: #fff;
  padding: 7px 10px;
  color: #333;
  border: 2px solid #efefef;
}
.send {
  width: 45%;
  display: inline;
  font-size: 11px !important;
  padding: 10px;
  
}
.form-wizard .form-wizard-previous-btn::before {
  content: "\e091";
  font-family: "Glyphicons Halflings";
  padding: 3px 6px 5px 6px;
  margin-right: 0.75em;
  font-size: 80%;
  color: #fff;
  background: #63b901;
  border-radius: 50%;
}

.form-wizard .form-control {
  box-shadow: none;
}
.form-wizard .form-control:focus {
  box-shadow: none;
}
.form-wizard .form-group.btn-one {
  position: relative;
  margin: 31px auto;
  width: 218px;
}
.form-wizard .form-group.btn-two {
  position: relative;
  margin: 22px 54px;
}
.form-wizard .form-group.btn-three {
  position: relative;
  margin: 22px 31px;
}
.form-wizard .wizard-form-text-label {
  position: absolute;
  left: 10px;
  top: 16px;
  transition: 0.2s linear all;
}
.error {color: #FF0000;}
.form-wizard .focus-input .wizard-form-text-label {
  color: #63b901;
  top: -18px;
  transition: 0.2s linear all;
  font-size: 12px;
}
.form-wizard .form-wizard-steps {
  margin: 30px 0;
}
.form-wizard .form-wizard-steps li {
  width: 33%;
  float: left;
  position: relative;
}

.form-wizard .form-wizard-steps li::after {
  background-color: #cccccc;
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  border-bottom: 1px solid #cccccc;
  border-top: 1px solid #cccccc;
}
.form-wizard .form-wizard-steps li::before {
  background-color: #cccccc;
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  border-bottom: 1px solid #cccccc;
  border-top: 1px solid #cccccc;
}
.form-wizard .form-wizard-steps li span {
  background-color: #cccccc;
  border-radius: 50%;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  position: relative;
  text-align: center;
  width: 40px;
  z-index: 1;
  font: 700 13px/18px "Open Sans", sans-serif;
  bottom: 0px;
  padding-top: 1px;
  color: #fff;
  background: #cccccc;
  width: 34px;
  height: 34px;
  border: 6px solid #fff;
}
.text-content {
  margin-bottom: 110px;
}

.form-wizard .form-wizard-steps li:last-child::after {
  width: 50%;
}
.form-wizard .form-wizard-steps li.active span,
.form-wizard .form-wizard-steps li.activated span {
  color: #ffffff;
  font: 700 13px/18px "Open Sans", sans-serif;
  bottom: 0px;
  padding-top: 1px;
  color: #fff;
  width: 34px;
  height: 34px;
  border: 6px solid #fff;
}

.form-wizard .form-wizard-steps li.activated span {
  background-color: #63b901;
}
.form-wizard .form-wizard-steps li.active span {
  background-color: #f47b20;
}
.form-wizard .form-wizard-steps li p {
  position: absolute;
  bottom: 13px;
  left: 30px;
  color: #cccccc;
}
.form-wizard .form-wizard-steps li.active p,
.form-wizard .form-wizard-steps li.activated p {
  color: #63b901;
}
.form-wizard .form-wizard-steps li.active p {
  color: #f47b20;
}
.form-wizard .form-wizard-steps li.activated p {
  color: #63b901;
}
.form-wizard .form-wizard-steps li.active::after,
.form-wizard .form-wizard-steps li.activated::after {
  background-color: #63b901;
  left: 50%;
  width: 50%;
  border-color: #63b901;
}
.form-wizard .form-wizard-steps li.activated::after {
  background-color: #63b901;
  left: 50%;
  width: 50%;
  border-color: #63b901;
}

.form-wizard .form-wizard-steps li.activated::before {
  background-color: #63b901;

  border-color: #63b901;
}
.form-wizard .form-wizard-steps li.active::after,
.form-wizard .form-wizard-steps li.active::before {
  background-color: #f47b20;

  border-color: #f47b20;
}
.form-wizard .form-wizard-steps li.activated::after {
  width: 100%;
  border-color: #63b901;
}
.form-wizard .form-wizard-steps li:last-child::after {
  left: 0;
}
.form-wizard .wizard-password-eye {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
@keyframes click-radio-wave {
  0% {
    width: 25px;
    height: 25px;
    opacity: 0.35;
    position: relative;
  }
  100% {
    width: 60px;
    height: 60px;
    margin-left: -15px;
    margin-top: -15px;
    opacity: 0;
  }
}
@media screen and (max-width: 767px) {
  .wizard-content-left {
    height: auto;
  }
  .send {
    width: 100%;
    display: block;

    
  }

  .form-wizard .form-group {
    margin: 25px 1px;
  }
}

/*headings*/
.fs-title {
  font-size: 18px;
  text-transform: uppercase;
  color: #2c3e50;
  margin-bottom: 10px;
  letter-spacing: 2px;
  font-weight: bold;
}

.fs-subtitle {
  font-weight: normal;
  font-size: 13px;
  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: white;
  text-transform: uppercase;
  font-size: 9px;
  width: 33.33%;
  float: left;
  position: relative;
  letter-spacing: 1px;
}

#progressbar li:before {
  content: counter(step);
  counter-increment: step;
  width: 24px;
  height: 24px;
  line-height: 26px;
  display: block;
  font-size: 12px;
  color: #333;
  background: white;
  border-radius: 25px;
  margin: 0 auto 10px auto;
}

/*progressbar connectors*/
#progressbar li:after {
  content: "";
  width: 100%;
  height: 2px;
  background: white;
  position: absolute;
  left: -50%;
  top: 9px;
  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: #ee0979;
  color: white;
}

/* Not relevant to this form */
.dme_link {
  margin-top: 30px;
  text-align: center;
}
.dme_link a {
  background: #fff;
  font-weight: bold;
  color: #ee0979;
  border: 0 none;
  border-radius: 25px;
  cursor: pointer;
  padding: 5px 25px;
  font-size: 12px;
}

.dme_link a:hover,
.dme_link a:focus {
  background: #c5c5f1;
  text-decoration: none;
}

.zoeken-btn,
.contractor-zoeken-btn {
  display: inline-block;
  /* background-color: #0186B3;*/
  background-color: #1d89c1;
  color: #fff;
  padding: 10px 15px;
  text-transform: uppercase;
}
.contractor-zoeken-btn {
  padding: 8px 15px;
  border-radius: 4px;
}
#btnZoeken:hover {
  background-color: #1d89c1;
  color: white;
}
.zoeken-btn:hover,
.contractor-zoeken-btn:hover {
  background-color: #00a9d5;
  text-decoration: none;
  color: #fff;
}

/*.offerte-h2, .offerte-h22{
					color:  #f39138 !important;
					font-size:20px;	
					margin-bottom: 15px !important;
				
			}*/

.offerte-h2,
.offerte-h22 {
  color: #fff !important;
  font-size: 20px !important;
  margin: 0px 0px 0px 0px;
  padding: 10px 10px 10px 30px;
  width: 100%;
  background-color: #0e9bcd;
}
.offerte-h2 {
  margin: 20px 0px 0px 0px !important;
}
.offerte-h22 {
  margin: 20px 0px 0px 0px !important;
}

.sector-form-div {
}

.sector-form-container {
  border: 3px solid #eaeaea;
  border-radius: 10px;
  padding: 4px;
  background-color: #fff;

  width: 100%;
  overflow: hidden;
  margin-top: 0px;
}

.sector-form-container ::-webkit-input-placeholder {
  color: #999999;
  font-size: 13px;
  font-style: italic;
}
.sector-form-container ::-moz-placeholder {
  color: #999999;
  font-size: 13px;
  font-style: italic;
} /* firefox 19+ */
.sector-form-container :-ms-input-placeholder {
  color: #999999;
  font-size: 13px;
  font-style: italic;
} /* ie */
.sector-form-container input:-moz-placeholder {
  color: #999999;
  font-size: 13px;
  font-style: italic;
}

#uwgegevens {
  padding-top: 30px;
}

.sector-form-contact {
  padding: 0 15px 0 15px;
}
.sector-form-question {
  padding: 0 15px 0 15px;
  overflow: hidden;
}

.sector-form-question h5 {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  color: #333;
  margin: 20px 0 15px 0;
}
.sector-form-question h5 span {
  font-style: normal;
  font-weight: normal;
  color: #666;
  padding-left: 20px;
}

.question-legend {
  font-size: 14px;
  font-style: italic;
  color: #333333;
  width: 96%;
  margin-left: 0%;
  margin-bottom: 20px;
}

.offerteCtaDiv {
  width: 100%;
  padding: 30px 15% 60px 15%;
}

/*===== start common form stuff  ==========*/
/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.sector-form-question .radio-group,
.sector-form-question .radio-group-vertical,
.sector-form-question .checkbox-group,
.sector-form-question .checkbox-group-vertical,
.when-to-contact .checkbox-group {
  overflow: hidden;
  width: 100%;
  margin-bottom: 20px;
}

.sector-form-question label,
.sector-form-question input,
.sector-form-question select {
  width: 100%;
  clear: both;
  float: left;
}

.sector-form-question-title,
.cw-contactform-title {
  background: #eaeaea;
  margin-bottom: 20px;
  overflow: hidden;
  border-top: 1px solid #dcdcdc;
}
.sector-form-question-title:first-child,
.cw-contactform-title {
  border-top: 0px;
}

.sector-form-question-title h5,
.cw-contactform-title h5 {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  color: #333;
  padding: 5px 0 5px 30px;
}
.sector-form-question-title h5 span {
  /*font-style: italic;
					font-weight: normal;
					color:#333;
					padding-left: 20px;*/
}

.sector-form-question .checkbox-group label,
.sector-form-question .checkbox-group input,
.sector-form-question .radio-group label,
.sector-form-question .radio-group input,
.sector-form-question .checkbox-group-vertical label,
.sector-form-question .checkbox-group-vertical input,
.sector-form-question .radio-group-vertical label,
.sector-form-question .radio-group-vertical input,
.when-to-contact .checkbox-group label,
.when-to-contact .checkbox-group input {
  width: auto;
  clear: both;
  font-size: 12px;
}
.sector-form-question .radio-group label,
.sector-form-question .radio-group input {
  width: 100%;
  clear: none;
}
.sector-form-question .checkbox-group label,
.sector-form-question .checkbox-group input,
.sector-form-question .checkbox-group-vertical label,
.sector-form-question .checkbox-group-vertical input,
.sector-form-question .radio-group label,
.sector-form-question .radio-group input,
.sector-form-question .radio-group-vertical label,
.sector-form-question .radio-group-vertical input,
.when-to-contact .checkbox-group label,
.when-to-contact .checkbox-group input {
  clear: none;
}
.sector-form-question .checkbox-group input,
.sector-form-question .checkbox-group-vertical input,
.sector-form-question .radio-group input,
.sector-form-question .radio-group-vertical input,
.when-to-contact .checkbox-group input {
  width: 25px;
  cursor: pointer;
}
.when-to-contact .checkbox-group input {
  width: 25px;
  max-width: 25px;
  cursor: pointer;
}
.sector-form-question .checkbox-group label,
.sector-form-question .checkbox-group-vertical label,
.sector-form-question .radio-group label,
.sector-form-question .radio-group-vertical label,
.when-to-contact .checkbox-group label {
  width: 80%;
  margin-left: 15px;
  font-weight: normal;
  font-size: 14px;
  margin-top: 2px;
}
.when-to-contact .checkbox-group label {
  width: 45%;
  margin-left: 0px;
  padding-top: 5px;
  font-weight: normal;
  font-size: 14px;
}
.sector-form-question .option,
.when-to-contact .option {
  width: 100%;
  margin-bottom: 5px;
}
.sector-form-question .radio-group input[type="radio"],
.sector-form-question .radio-group-vertical input[type="radio"],
.sector-form-question .checkbox-group input[type="checkbox"],
.sector-form-question .checkbox-group-vertical input[type="checkbox"],
.when-to-contact .checkbox-group input[type="checkbox"] {
  height: 17px;
  width: 17px;
  margin-left: 2px;
}
.sector-form-question .checkbox-group span:hover,
.sector-form-question .checkbox-group label:hover,
.sector-form-question .checkbox-group-vertical span:hover,
.sector-form-question .checkbox-group-vertical label:hover,
.sector-form-question .radio-group span:hover,
.sector-form-question .radio-group label:hover,
.sector-form-question .radio-group-vertical span:hover,
.sector-form-question .radio-group-vertical label:hover,
.when-to-contact .checkbox-group span:hover,
.when-to-contact .checkbox-group label:hover {
  cursor: pointer;
}
.sector-form-question textarea,
.sector-form-question input[type="text"],
.sector-form-question .selectbox {
  margin-bottom: 20px;
}

.sector-form-question input[type="checkbox"]:not(old):checked + label,
.sector-form-question input[type="radio"]:not(old):checked + label,
.when-to-contact input[type="checkbox"]:not(old):checked + label {
  font-weight: bold;
}

.sector-form-question .selectcontainer,
.cw-vestiging-container,
.contractor-selector-container {
  border: 1px solid #ccc;
  -webkit-border-radius: 3px 3px 3px 3px;
  -moz-border-radius: 3px 3px 3px 3px;
  -ms-border-radius: 3px 3px 3px 3px;
  -o-border-radius: 3px 3px 3px 3px;
  border-radius: 3px 3px 3px 3px;
  overflow: hidden;
  height: 35px;

  margin-bottom: 20px;

  position: relative;
  display: block;
}

.sector-form-contact .selectcontainer {
  border: 1px solid #ccc;
  -webkit-border-radius: 3px 3px 3px 3px;
  -moz-border-radius: 3px 3px 3px 3px;
  -ms-border-radius: 3px 3px 3px 3px;
  -o-border-radius: 3px 3px 3px 3px;
  border-radius: 3px 3px 3px 3px;
  overflow: hidden;
  height: 35px;
  width: 100%;
  position: relative;
  display: block;
  margin-bottom: -2px;
}
.sector-form-contact .selectcontainer select {
  border: 1px solid #fff;
  font-weight: normal;
  box-shadow: none !important;
}
.cw-vestiging-container,
.contractor-selector-container {
  width: 100%;
  margin-bottom: 0px;
  margin-left: 0;
}

.sector-form-question select,
.cw-vestiging-container select,
.contractor-selector-container select {
  height: 35px;
  padding: 0 0 0 10px;
  width: 100%;
  border: 0;
  font-size: 13px;
  font-weight: normal;
  cursor: pointer;
}
.sector-form-question .selectcontainer:after,
.sector-form-contact .selectcontainer:after,
.cw-vestiging-container:after,
.contractor-selector-container:after {
  content: "\f107";
  font-family: FontAwesome;
  color: #333;
  padding: 3px 0px 0px 0px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  text-align: center;
  width: 5%;
  height: 100%;
  pointer-events: none;
  box-sizing: border-box;
  font-size: 22px;
  background: #efefef;
}
.contractor-selector-container:after {
  width: 10%;
}

.option-timeselect {
  float: left;
  margin: 5px 0px 0px 20px;
  cursor: pointer;
}
.option-timeselect label,
.option-timeselect input {
  cursor: pointer;
}
#datepicker-prodate1,
#datepicker-prodate2,
#datepicker-prodate3 {
  cursor: pointer;
  background-color: #ffffff;
}

/*===== end common form stuff  ==========*/

/*===== start WRAP EXTRA INFO  ==========*/

/*.sector-form-question .wrap_extra_info {
					display: none; }		*/
.sector-form-question .extra-info-input {
  margin: 20px 0;
  float: left;
  clear: both;
  width: 100%;
}
.sector-form-question .add_extra_info,
.sector-form-question .remove_info {
  display: inline-block;
  font-size: 13px;
  color: #1d88c0;
  text-decoration: none;
  margin-top: 30px;
  width: 100%;
  cursor: pointer;
}
.sector-form-question .add_extra_info > span,
.sector-form-question .remove_info > span {
  text-decoration: underline;
  width: 78%;
  float: left;
  display: inline-block;
  font-weight: normal;
}
.sector-form-question .add_extra_info i,
.sector-form-question .remove_info i {
  font-size: 28px;
  text-decoration: none;
  position: relative;
  top: -3px;
  display: inline-block;
  float: left;
  width: 22px;
  margin-right: 8px;
}
.sector-form-question .extra-info {
  float: left;
  clear: both;
  width: 100%;
  margin-bottom: 20px;
}

/*===== end WRAP EXTRA INFO  ==========*/
/*===== start WRAP EXTRA PHONE  ==========*/

.sector-form-contact .add_field_button,
.sector-form-contact .remove_field {
  width: 100%;
  height: 30px;
  display: inline-block;
  margin-top: 8px;
  margin-bottom: 18px;
  color: #1d88c0;
  font-size: 13px;
  position: relative;

  cursor: pointer;
}
.sector-form-contact .add_field_button {
  margin-bottom: 0px;
  padding-bottom: 0px;
  max-height: 22px;
}
.sector-form-contact .remove_field {
  margin-top: 8px;
}
.sector-form-contact .add_field_button i,
.sector-form-contact .remove_field i {
  font-size: 28px;
  text-decoration: none;
  position: relative;
  top: -3px;
  display: inline-block;
  float: left;
  width: 22px;
  margin-right: 8px;
}
.sector-form-contact .add_field_button span,
.sector-form-contact .remove_field span {
  text-decoration: underline;
  width: 78%;
  float: left;
  display: inline-block;
}
.extraphone1 {
  margin-top: -10px;
}

/*===== end WRAP EXTRA PHONE  ==========*/

/*===== start Uw gegevens  ==========*/

.form-offerte #jouwgegevens {
  padding-top: 10px;
}

.form-offerte #jouwgegevens .row {
  margin-top: 13px;
}
.form-offerte #jouwgegevens .col-small-right-padding {
  padding-right: 10px;
}
.form-offerte #jouwgegevens .small-no-left-pd {
  padding-left: 0px;
}

.form-offerte #jouwgegevens .label-mobile-only {
  display: none;
}

.form-offerte #jouwgegevens .help-block {
  margin-bottom: 0px;
}
.sector-form-error-dialog {
}

/*===== end Uw gegevens  ==========*/

/* Custom, iPhone Retina */
@media only screen and (max-width: 767px) {
  .form-offerte #jouwgegevens {
    margin: 20px 0px;
  }
  .form-offerte #jouwgegevens .row {
    margin: 0px;
  }
  .form-offerte #jouwgegevens .col {
    margin-top: 10px;
  }
  .col-sm-7 , 
  .col-sm-2 , 
  .col-sm-3 , 
  .col-sm-10 , 
  .col-sm-5{
    padding: 0px !important;
  }
  .form-offerte #jouwgegevens .label-mobile-only {
    display: block;
  }

  .sector-form-div .col-xs-12 {
    margin: 0px;
    padding: 0px;
  }
  .offerte-h2,
  .offerte-h22 {
    color: #fff !important;
    font-size: 20px;
    margin: 0px 0px 0px 0px;
    padding: 15px;
    width: 100%;
    background-color: #1d88c0;
  }
  .offerte-h2 {
    margin: 20px 0px 0px 0px !important;
  }
  .offerte-h22 {
    margin: 0px 0px 0px 0px !important;
  }
  .sector-form-container {

    border: 3px solid #eaeaea;
    border-radius: 10px;
    padding: 4px;
    background-color: #fff;
    width: 100%;
    overflow: hidden;
    margin-bottom: 20px;
    margin-top: 0px;
  }

  .sector-form-question {
    border-bottom: 1px solid #dcdcdc;
  }

  .sector-form-question h5 {
    font-weight: 600;
    margin: 20px 0 10px 0;
  }
  .sector-form-question h5 span {
    display: none;
  }

  .sector-form-question-title {
    background: none;
    margin-bottom: 10px;
    overflow: hidden;
    border-top: 1px solid #dcdcdc;
  }
  .sector-form-question-title:first-child {
    border-top: 0px;
  }

  .sector-form-question-title h5 {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    color: #333;
    padding: 5px 0 5px 10px;
  }
  .sector-form-question-title h5 span {
    /*display:none;*/
  }

  .question-legend {
    display: none;
  }

  .sector-form-question .radio-group input[type="radio"],
  .sector-form-question .radio-group-vertical input[type="radio"],
  .sector-form-question .checkbox-group input[type="checkbox"],
  .sector-form-question .checkbox-group-vertical input[type="checkbox"],
  .when-to-contact .checkbox-group input[type="checkbox"] {
    height: 25px;
    width: 25px;
  }

  .sector-form-question textarea,
  .sector-form-question input[type="text"],
  .sector-form-question .selectbox,
  .sector-form-question .selectcontainer,
  .when-to-contact .selectcontainer {
    width: 100%;
    margin-left: 0%;
  }
  .sector-form-question .checkbox-group .option,
  .sector-form-question .checkbox-group-vertical .option,
  .sector-form-question .radio-group .option,
  .sector-form-question .radio-group-vertical .option,
  .when-to-contact .checkbox-group .option {
    width: 95%;
    float: left;
    margin-left: 2%;
  }

  .sector-form-question .option,
  .when-to-contact .option {
    width: 100%;
    margin-bottom: 10px;
  }

  .sector-form-question .radio-group label,
  .sector-form-question .radio-group-vertical label,
  .sector-form-question .checkbox-group label,
  .sector-form-question .checkbox-group-vertical label,
  .when-to-contact .checkbox-group label {
    padding-top: 5px;
    width: 80%;
  }
  .offerteCtaBG {
    background: #f1f1f1;
    margin: 0px;
    padding: 0px;
  }
  .offerteCtaDiv {
    padding: 0px 5% 60px 5%;
    margin-top: -20px;
  }

  .sector-form-contact .add_field_button,
  .sector-form-contact .remove_field {
    margin-top: 5px;
    padding: 5px 0px 0px 2%;
  }

  .sector-form-question .selectcontainer:after,
  .sector-form-contact .selectcontainer:after,
  .cw-vestiging-container:after {
    width: 10%; /* arrow down of select correct positioneren */
  }

  .cw-contactform-title {
    margin: 0px 0px 0px 0px;
    padding: 5px;
    width: 100%;
    background-color: #1d88c0;
  }
  .cw-contactform-title h5 {
    color: #fff !important;
    font-size: 18px;
  }

  .contractor-zoeken-btn {
    display: block;
    margin: 0px auto;
    width: 50%;
    text-align: center;
  }
}
@media only screen and (min-width: 525px) and (max-width: 767px) {
  .sector-form-question .selectcontainer:after,
  .sector-form-contact .selectcontainer:after,
  .cw-vestiging-container:after {
    width: 6%; /* arrow down of select correct positioneren */
  }
}
/* Small Devices, Tablets */
@media only screen and (min-width: 768px) {
  .sector-form-contact,
  .sector-form-question {
    padding: 1px 33px 0 131px;
  }


  .sector-form-question.topline {
    border-top: 1px solid #d5dbde;
    margin-top: 10px;
  }

  .sector-form-question .checkbox-group .option,
  .sector-form-question .checkbox-group-vertical .option,
  .sector-form-question .radio-group .option,
  .sector-form-question .radio-group-vertical .option {
    width: 50%;
    float: left;
    margin-left: 0%;
  }

  .when-to-contact .checkbox-group .option {
    width: 43%;
    float: left;
    margin-left: 6%;
  }

  .sector-form-question .checkbox-group-vertical .option,
  .sector-form-question .radio-group-vertical .option {
    width: 85%;
    float: left;
    margin-left: 0%;
  }

  .sector-form-question .add_extra_info > span,
  .sector-form-question .remove_info > span {
    width: calc(100% - 22px - 13px);
  }
  .add_field_button,
  .remove_field {
    width: 40%;
    margin-top: 0;
    margin-left: 20px;
  }

  #sector-form-error-dialog {
    margin-left: 20px;
    margin-top: -10px;
  }

  .sector-form-contact .selectcontainer:after {
    width: 13%; /* arrow down of select correct positioneren */
  }
}

/* Medium Devices, Desktops */
@media only screen and (min-width: 992px) {
  .sector-form-question .selectcontainer:after,
  .cw-vestiging-container:after {
    width: 7%; /* arrow down of select correct positioneren */
  }
  .sector-form-contact .selectcontainer:after {
    width: 13%; /* arrow down of select correct positioneren */
  }
}

/* Large Devices, Wide Screens */
@media only screen and (min-width: 1200px) {
  .form-offerte #uwgegevens input#email,
  .form-offerte #uwgegevens input#telefoon {
    width: 40%;
    margin-right: 0;
  }
  .sector-form-question .selectcontainer:after,
  .cw-vestiging-container:after {
    width: 6%; /* arrow down of select correct positioneren */
  }
  .sector-form-contact .selectcontainer:after {
    width: 13%; /* arrow down of select correct positioneren */
  }
}

.sector-form-contact .sector-form-question {
  border-bottom: 0px;
}
.aster {
  color: #f39138;
  font-size: 13px;
  margin-left: 5px;
}
.h5-aster {
  color: #f39138 !important;
  font-weight: 700;
  font-size: 14px;
  margin-left: 5px;
  font-style: normal;
}

/*------------------------FORM ERROR HANDLING ----------------------*/

.has-error .checkbox,
.has-error .checkbox-inline,
.has-error .control-label,
.has-error .help-block,
.has-error .radio,
.has-error .radio-inline,
.has-error.checkbox label,
.has-error.checkbox-inline label,
.has-error.radio label,
.has-error.radio-inline label {
  color: #f84a06;
  font-weight: 700;
  height: 4px;
  margin-top: 5px;
  margin-bottom: 10px;
  width: 100%;
  font-size: 12px;
}
.has-error .form-control,
.has-error textarea {
  border-color: #f84a06 !important;
}

.sector-form-question-error {
  background: #f3b279;
}
