/* line 1, ../html/scss/form.scss */
.defaultInput {
  margin: 10px 0;
}
/* line 3, ../html/scss/form.scss */
.defaultInput label {
  display: none;
}
/* line 6, ../html/scss/form.scss */
.defaultInput input {
  width: 100%;
  height: 60px;
  font-family: "prompt-regular";
  font-size: 20px;
  font-size: 2rem;
  color: #000;
  line-height: 1.2;
  border: 2px solid #000;
  background: transparent;
  outline: 0;
  text-align: left;
  -webkit-appearance: none;
  -webkit-border-radius: 0px;
  padding: 0px 20px;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
}
/* line 25, ../html/scss/form.scss */
.defaultInput input:focus {
  border: 3px solid #9D9D9D;
  background-color: rgba(157, 157, 157, 0.9);
  color: #fff;
}

/* line 33, ../html/scss/form.scss */
.defaultDropdown {
  margin: 10px 0;
}
/* line 35, ../html/scss/form.scss */
.defaultDropdown label {
  display: none;
}
/* line 38, ../html/scss/form.scss */
.defaultDropdown select {
  width: 100%;
  height: 60px;
  border: 2px solid #000;
  background: transparent;
  padding: 0px 20px;
  font-family: "prompt-regular";
  -webkit-appearance: none;
  background-image: url(/images/share/icon-arrow-d.png);
  background-position: 97% 50%;
  background-repeat: no-repeat;
  background-size: 20px;
  font-size: 20px;
  font-size: 2rem;
}
/* line 52, ../html/scss/form.scss */
.defaultDropdown select option {
  color: #fff;
  background: #000;
}

/* line 59, ../html/scss/form.scss */
.defaultRadio {
  margin: 25px 0;
}
/* line 61, ../html/scss/form.scss */
.defaultRadio strong {
  display: none;
}
/* line 64, ../html/scss/form.scss */
.defaultRadio label {
  margin-right: 20px;
}
/* line 66, ../html/scss/form.scss */
.defaultRadio label input {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  position: relative !important;
  height: 40px;
  width: 40px;
  outline: none;
  border: 2px solid #000;
  border-radius: 50%;
  margin: -5px 5px 0 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  vertical-align: middle;
  cursor: pointer;
}
/* line 85, ../html/scss/form.scss */
.defaultRadio label input:checked {
  background-color: #0A2D82;
  border: 2px solid #0A2D82;
}
/* line 88, ../html/scss/form.scss */
.defaultRadio label input:checked::before {
  content: '\e931';
  font-size: 30px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* line 102, ../html/scss/form.scss */
.defaultCheck {
  margin: 25px 0;
}
/* line 104, ../html/scss/form.scss */
.defaultCheck strong {
  display: none;
}
/* line 107, ../html/scss/form.scss */
.defaultCheck label {
  margin-right: 20px;
}
/* line 109, ../html/scss/form.scss */
.defaultCheck label input {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  position: relative !important;
  height: 40px;
  width: 40px;
  outline: none;
  border: 2px solid #000;
  margin: -5px 5px 0 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  vertical-align: middle;
  cursor: pointer;
}
/* line 127, ../html/scss/form.scss */
.defaultCheck label input:checked {
  background-color: #0A2D82;
  border: 2px solid #0A2D82;
}
/* line 130, ../html/scss/form.scss */
.defaultCheck label input:checked::before {
  content: '\e931';
  font-size: 30px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* line 144, ../html/scss/form.scss */
.defaultText {
  margin: 10px 0;
}
/* line 146, ../html/scss/form.scss */
.defaultText label {
  display: none;
}
/* line 149, ../html/scss/form.scss */
.defaultText textarea {
  width: 100%;
  height: 200px;
  border: 2px solid #000;
  padding: 20px;
}

/* line 157, ../html/scss/form.scss */
.defaultSubmit {
  text-align: center;
  margin: 20px 0;
}
/* line 160, ../html/scss/form.scss */
.defaultSubmit button {
  cursor: pointer;
  font-family: "prompt-medium";
  font-size: 23px;
  width: 350px;
  height: 60px;
  text-align: center;
  text-decoration: none;
  min-width: 100px;
  z-index: 0;
  position: relative;
  display: inline-block;
  border-width: 0px;
  padding: 0px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  color: #fff;
  background-color: #EB1C24;
}
/* line 184, ../html/scss/form.scss */
.defaultSubmit button:hover:before {
  border-color: #EB1C24 transparent transparent transparent;
}
/* line 187, ../html/scss/form.scss */
.defaultSubmit button:hover:after {
  width: 160%;
  left: -19%;
}
/* line 192, ../html/scss/form.scss */
.defaultSubmit button:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-color: #D5131D transparent transparent transparent;
  transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  -ms-transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}
/* line 207, ../html/scss/form.scss */
.defaultSubmit button:after {
  content: "";
  position: absolute;
  width: 0;
  left: -10%;
  bottom: 0;
  height: 120%;
  background: #AF1119;
  transform: skewX(-30deg);
  z-index: -1;
  transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  -ms-transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  -o-transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.styleform{

  /*padding-top: 50px;*/
  padding-left: 50px;
  padding-right: 50px;
}

.formcontenttitle{
padding-top: 50px;
   padding-left: 50px;
  padding-right: 50px;
}

.padTB25{
    padding: 25px 0;
}

@media screen and (max-width: 767px){
  .formcontenttitle{
    padding-left: 15px;
    padding-right: 15px;
  }
    .styleform{
    padding-left: 15px;
      padding-right: 15px;
    }
}

strong {
    margin-bottom: 15px;
}

/*Captcha*/
.formSubmit .captchaWrap {
    margin: 30px auto;
    text-align: center;
    position: relative;
    min-height: 140px;
    /*background: #e8e8e8;*/
    padding: 30px 0;
    width: 470px;
}

.formSubmit .captchaWrap .captchaStyle div {
    display: inline-block;
    vertical-align: middle
}

.formSubmit .captchaWrap .resetCaptcha span {
    display: block;
}

.formSubmit .captchaWrap .resetCaptcha {
    position: relative;
    cursor: pointer;
    display: inline-block !important;
    padding-left: 10px;
}

.formSubmit .captchaWrap .captchaStyle div:nth-child(4) {
    margin-left: 3px;
}

.formsubmitBtn {
    margin-top: 20px;
}

.formSubmit .captchaWrap .resetCaptcha span::before {
    font-size: 35px;
}

.formSubmit .captchaWrap div label {
    display: none;
}

.formSubmit .captchaWrap div input[type=text] {
    display: inline-block;
    width: 180px;
    height: 50px;
    font-family: "prompt-regular";
    font-size: 20px;
    font-size: 2rem;
    color: #000;
    line-height: 1.2;
    border: 3px solid #000;
    background: transparent;
    outline: 0;
    text-align: left;
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
    padding: 0px 20px;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
}

.formSubmit .captchaWrap .captchaStyle div {
    display: inline-block;
    vertical-align: middle;
}

.slctdropdown select {
    -moz-appearance: none;
    width: 20%;
}

input[type="radio"] {
    width: auto;
    margin-top: 20px;
}

.formSubmit .captchaWrap .headTxt {
  padding: 0 0 19px 0;
}
@media (max-width: 767px) {
  .formSubmit .captchaWrap .headTxt {
    left: -58px;
    position: relative;
    }
  } 

@media (max-width: 767px) {
.survey-form .formcontenttitle img {
  width: 100%;
  }
} 
@media (max-width: 767px) {
.captchaStyle.sf-fieldWrp img {
  position: relative;
  left: 51px;
  }
}
@media (max-width: 767px) {
.formSubmit .captchaWrap .captchaStyle div {
  padding: 0 0 31px 0;
  }
}
@media (max-width: 767px) {
input#Textbox-4 {
  position: relative;
  }
}



/*# sourceMappingURL=form.css.map */
