/* line 3, ../scss/forms.scss */
* {
  -webkit-flex-shrink: 1;
  flex-shrink: 1;
}

/* line 7, ../scss/forms.scss */
.form-row {
  text-align: left;
}

/* line 11, ../scss/forms.scss */
.form-div input {
  padding: 5px 15px;
}

/* line 15, ../scss/forms.scss */
.msg-div {
  display: inline-block;
}

/* line 19, ../scss/forms.scss */
.msg-div textarea {
  height: 10em;
  padding: 5px 15px;
  resize: none;
}

/* line 25, ../scss/forms.scss */
.submit {
  background-color: #21c2f8 !important;
}

/* line 29, ../scss/forms.scss */
.submit.enabled:hover {
  background-color: #32d3f9 !important;
}

/* line 33, ../scss/forms.scss */
.submit.enabled:active {
  box-shadow: inset 0 0 5px #777777;
}

/* line 37, ../scss/forms.scss */
.submit-tooltip {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-content: center;
  align-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* line 49, ../scss/forms.scss */
.no-flexbox.no-flexboxlegacy .submit-tooltip {
  display: table-cell;
  vertical-align: middle;
}

/* line 54, ../scss/forms.scss */
.submit-tooltip p {
  -webkit-flex-shrink: 1;
  flex-shrink: 1;
  width: 100%;
  color: #000;
  text-align: center;
  margin: 10px 0;
  line-height: 1.5em;
  font-size: 24px;
  font-weight: bold;
}

/* line 64, ../scss/forms.scss */
.no-flexbox.no-flexboxlegacy .submit-tooltip p:first-child {
  margin-top: 60px;
}

/*** Pop-up form *************************************************************/
/* line 70, ../scss/forms.scss */
#blackout {
  background: url("../img/background/blackout.png");
  /* for IE8 */
  background: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  overflow: hidden;
  z-index: 999999;
  left: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

/* line 84, ../scss/forms.scss */
.no-flexbox.no-flexboxlegacy #blackout {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

/* line 90, ../scss/forms.scss */
#blackout .form-wrapper {
  -webkit-flex-shrink: 1;
  flex-shrink: 1;
  width: auto;
  max-height: 80%;
  overflow-y: auto;
  background-color: #f4f9fa;
  border: 1px solid #777;
}

/* line 98, ../scss/forms.scss */
.no-flexbox.no-flexboxlegacy #blackout .form-wrapper {
  display: table;
  margin: 0 auto;
}

/* line 103, ../scss/forms.scss */
#blackout .form-wrapper form {
  min-height: 100%;
  background-color: #f4f9fa;
}

/* line 108, ../scss/forms.scss */
#blackout .form-wrapper form .product-name {
  font-weight: normal;
}

/* line 112, ../scss/forms.scss */
#blackout .form-container {
  /*padding: 28px 16.66666666666667%;*/
  padding: 40px;
  box-sizing: border-box;
}

/* line 118, ../scss/forms.scss */
#blackout .form-container .form-row {
  width: 100%;
  margin: 0 0 40px 0;
}

/* line 122, ../scss/forms.scss */
#blackout .form-container .form-row.base-width-div {
  width: auto;
}

/* line 125, ../scss/forms.scss */
#blackout .form-container .form-row:last-of-type {
  margin-bottom: 0;
}

/* line 129, ../scss/forms.scss */
#blackout .form-wrapper form p {
  color: #000;
  font-size: 18px;
  line-height: 1.5em;
  margin: 0;
  text-align: justify;
}

/* line 137, ../scss/forms.scss */
.highlight {
  background-color: #f4952b;
}

/* line 141, ../scss/forms.scss */
.no-flexbox.no-flexboxlegacy #blackout .form-div {
  padding-right: 0;
}

/* line 145, ../scss/forms.scss */
#blackout .form-wrapper form .form-div input {
  height: 43px;
}

/* line 149, ../scss/forms.scss */
#blackout .form-wrapper form .form-div.button {
  width: 100%;
}

/* line 152, ../scss/forms.scss */
#blackout .form-wrapper form .form-div.button button {
  width: 100%;
}

/* line 156, ../scss/forms.scss */
.no-flexbox.no-flexboxlegacy #blackout .submit-tooltip p:first-child {
  margin-top: 69px;
}

/*** On-page forms *************************************************************/
/* line 162, ../scss/forms.scss */
.form-wrapper {
  position: relative;
}

/* line 166, ../scss/forms.scss */
.form-wrapper-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

/* line 172, ../scss/forms.scss */
.wrap .form-wrapper {
  margin: 0 auto;
  /*width: 950px;*/
  width: 100%;
  background: url(../img/background/stripped-border.png) repeat;
  padding: 15px;
  box-sizing: border-box;
}

/* line 181, ../scss/forms.scss */
.form-wrapper form {
  /*background-color: #e8e8ff;*/
  background-color: #fff;
}

/* line 186, ../scss/forms.scss */
.form-wrapper form h2 {
  font-size: 20px;
  color: #000;
  margin: 0;
}

/* line 192, ../scss/forms.scss */
.form-wrapper form h3 {
  font-size: 16px;
  color: #333;
}

/* line 197, ../scss/forms.scss */
.form-wrapper form .form-container {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  padding: 28px;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  height: 100%;
  box-sizing: border-box;
}

/* line 206, ../scss/forms.scss */
.no-flexbox.no-flexboxlegacy .form-wrapper form .form-container {
  display: table;
  table-layout: fixed;
}

/* line 211, ../scss/forms.scss */
.form-wrapper form .form-container .row {
  -webkit-flex-shrink: 1;
  flex-shrink: 1;
}

/* line 214, ../scss/forms.scss */
.no-flexbox.no-flexboxlegacy .form-wrapper form .form-container .row {
  display: table;
}

/* line 218, ../scss/forms.scss */
.wrap .form-wrapper form .form-container .col {
  -webkit-flex-shrink: 1;
  flex-shrink: 1;
}

/* line 221, ../scss/forms.scss */
.no-flexbox.no-flexboxlegacy .wrap .form-wrapper form .form-container .col {
  display: table-cell;
}

/* line 225, ../scss/forms.scss */
.wrap .form-wrapper form .form-container .col:first-child {
  height: 257px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

/* line 229, ../scss/forms.scss */
.no-flexbox.no-flexboxlegacy .wrap .form-wrapper form .form-container .col:first-child {
  width: 175px;
  box-sizing: border-box;
}

/* line 233, ../scss/forms.scss */
.wrap .form-wrapper form .form-container .col:first-child img {
  height: 100%;
}

/* line 236, ../scss/forms.scss */
.no-flexbox.no-flexboxlegacy .wrap .form-wrapper form .form-container .col:first-child img {
  height: 257px;
}

/* line 240, ../scss/forms.scss */
.form-wrapper form .form-container .col {
  margin-right: 20px;
}

/* line 243, ../scss/forms.scss */
.no-flexbox.no-flexboxlegacy form .form-container .col {
  vertical-align: middle;
  padding-right: 20px;
}

/* line 247, ../scss/forms.scss */
.form-wrapper form .form-container .col:last-child {
  margin-right: 0;
}

/* line 250, ../scss/forms.scss */
.no-flexbox.no-flexboxlegacy .form-wrapper form .form-container .col:last-child {
  padding-right: 0;
}

/* line 254, ../scss/forms.scss */
.form-wrapper form .form-container .col:nth-child(2) {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-content: space-between;
  align-content: space-between;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* line 261, ../scss/forms.scss */
form .form-container .row {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-content: space-between;
  align-content: space-between;
  margin-bottom: 28px;
}

/* line 268, ../scss/forms.scss */
form .form-container .row:last-of-type {
  margin-bottom: 0;
}

/* line 271, ../scss/forms.scss */
.ie8 form .form-container .row.fix-margin-ie8 {
  margin-bottom: -32px;
}

/* line 275, ../scss/forms.scss */
.form-row {
  margin-bottom: 2em;
  width: 100%;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-flex-shrink: 1;
  flex-shrink: 1;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}

/* line 283, ../scss/forms.scss */
.no-flexbox.no-flexboxlegacy .form-row {
  display: table;
}

/* line 286, ../scss/forms.scss */
.form-row:last-of-type {
  margin-bottom: 0;
}

/* line 290, ../scss/forms.scss */
.form-div {
  display: block;
  /*width: 245px;*/
  margin-right: 20px;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-flex-shrink: 1;
  flex-shrink: 1;
}

/* line 297, ../scss/forms.scss */
.no-flexbox.no-flexboxlegacy .form-div {
  display: table-cell;
  padding-right: 20px;
  vertical-align: top;
}

/* line 302, ../scss/forms.scss */
.form-div:last-of-type {
  margin-right: 0;
}

/* line 305, ../scss/forms.scss */
.no-flexbox.no-flexboxlegacy .form-div:last-of-type {
  padding-right: 0;
}

/* line 309, ../scss/forms.scss */
.form-div.button {
  -webkit-flex-grow: 0;
  flex-grow: 0;
  margin-right: 0;
}

/* line 313, ../scss/forms.scss */
.no-flexbox.no-flexboxlegacy .form-div.button {
  padding-right: 0;
}

/*.wrap .form-div:last-of-type {
    margin-right: 0;
}*/
/* line 321, ../scss/forms.scss */
.form-div input {
  border: 2px solid #aaa;
  /*font-style: italic;*/
  /*width: 220px;*/
  display: block;
  width: 100%;
  box-sizing: border-box;
  height: 100%;
  /*padding: 5px 15px;*/
  outline: none;
}

/* line 332, ../scss/forms.scss */
.no-flexbox.no-flexboxlegacy .form-div input {
  height: 44px;
}

/* line 335, ../scss/forms.scss */
.ie8 .form-div input {
  line-height: 29px;
  vertical-align: middle;
}

/* line 340, ../scss/forms.scss */
.form-div input.has-error {
  border-color: red;
  background-color: #ffc8c8;
  box-shadow: 0 0 5px 0 red;
}

/* line 345, ../scss/forms.scss */
.form-div input:focus {
  border-color: #21c2f8;
  box-shadow: 0 0 5px 0 #21c2f8;
}

/* line 350, ../scss/forms.scss */
.form-div.button button {
  /*background-color: #21c2f8;*/
  /*border-radius: 3px;
  box-shadow: 0 0 5px #777777;
  padding: 13px 30px;
  text-align: center;
  display: inline-block;
  color: white;
  text-transform: uppercase;*/
  font-weight: bold;
}

/* line 361, ../scss/forms.scss */
.no-flexbox.no-flexboxlegacy .form-div.button button {
  width: 100%;
}
