
input[type=search]
{
  -webkit-appearance: none;
}

/* pulldown trigger where pulldown selected value is hidden */
.togglepulldown > .wh-pulldown
{
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
  visibility: hidden;
  padding: 0;
  z-index: -1;
}

/* select */
.wh-pulldown
{
  background-color: transparent;
  outline: none;
  position: relative;
  padding-right: 40px;
  white-space: nowrap;
  height: 38px;
}
.wh-pulldown > .value
{
  font: normal 15px/15px 'sansa_stdnormal', Arial, Helvetica, Sans-Serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  padding-left: 6px;
  padding-top: 3px;
  line-height: 30px;
}
.wh-pulldown .arrow
{
  position: absolute;
  right: 0;
  top: 3px;
  width: 30px;
  height: 38px;
  padding: 0;
}
.wh-pulldown .arrow:after
{
  display: inline-block;
  font: normal normal normal 28px/28px FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
  content: "\f107";
  padding: 2px 0 0 0;
}
.wh-pulldown > .wh-pulldown-values
{
  display: none;
}
.wh-menulist
{
  margin: 0;
  border: 0 none;
  padding: 0 10px;
  background-color: #fff;
  min-width: 100px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  z-index: 10;/* on top of pageimage */
}
.wh-menulist > li
{
  padding: 8px 10px;
  min-width: 200px;
  max-width: 400px;
  text-align: left;
  font: normal 13px/20px 'sansa_stdnormal', Arial, Helvetica, Sans-Serif;
  color: #222;
}
.wh-menulist > li + li
{
  border-top: 1px solid #ddd;
}
  .wh-menulist > li:hover
, .wh-menulist > li.selected
{
  color: #6d1f84;
}
.wh-menulist > li.disabled
{
  display: none;
}


/* radiobtn */
.wh-radiobutton
{
  background: transparent url(../img/radio.png) no-repeat 0 0;
  height: 20px;
  width: 20px;
  outline: none;
  position: relative;
  margin: -3px 3px 0 0;
}
.wh-radiobutton.wh-checked
{
  background-position: 0 -20px;
}
.wh-radiobutton.wh-disabled
{
  background-position: 0 -40px;
}
.wh-radiobutton.wh-disabled.wh-checked
{
  background-position: 0 -60px;
}

/* checkbox */
.wh-checkbox
{
  background: transparent url(../img/checkbox.png) no-repeat 0 0;
  height: 20px;
  width: 20px;
  outline: none;
  position: relative;
  margin: -3px 3px 0 0;
}
.wh-checkbox.wh-checked
{
  background-position: 0 -20px;
}
.wh-checkbox.wh-disabled
{
  background-position: 0 -40px;
}
.wh-checkbox.wh-disabled.wh-checked
{
  background-position: 0 -60px;
}


/**/
.wh-form .formtitle
{
  display: block;
  margin: -20px -20px 20px;
  font: normal 24px/28px 'sansa_stdnormal', Arial, Helvetica, Sans-Serif;
  color: #85389B;
  padding: 0 0 10px;
  background-color: #fff;
}
.wh-form .formintro
{
  font: normal 15px/22px 'sansa_stdnormal', Arial, Helvetica, Sans-Serif;
  color: #555;
  padding-bottom: 20px;
}
.wh-form
{
  background-color: #dadada;
  padding: 20px;
  margin-bottom: 20px;
}
@media (max-width:600px)
{
  .wh-form
  {
    padding: 10px;
  }
  .wh-form .formtitle
  {
    margin: -10px -10px 10px;
  }
}

.wh-form input::-webkit-input-placeholder
{
  font-style: italic;
}
.wh-form input:-moz-placeholder
{ /* Firefox 18- */
  font-style: italic;
}
.wh-form input::-moz-placeholder
{  /* Firefox 19+ */
  font-style: italic;
}
.wh-form input:-ms-input-placeholder {
  font-style: italic;
}

.wh-form .wh-pulldown
{
  height: 38px;
  border-radius: 4px;
  border: 1px solid #999;
  line-height: 20px;
  font-size: 15px;
  background-color: #fff;
}

  .wh-form input
, .wh-form textarea
{
  outline: none;
  -webkit-appearance:none;
}

  .wh-form input[type=text]
, .wh-form input[type=password]
, .wh-form input[type=email]
, .wh-form textarea
{
  height: 38px;
  border-radius: 4px;
  border: 1px solid #999;
  line-height: 20px;
  font-size: 15px;
  padding: 9px 10px;
  width: 100%;
  background-color: #fff;
}
  .wh-form input[type=text].disabled
, .wh-form input[type=password].disabled
, .wh-form input[type=email].disabled
{
  border: 1px solid transparent;
  background-color: transparent;
}
.wh-form textarea
{
  resize: none;
  height: 120px;
  font: normal 15px/20px Arial, Sans-Serif;
}

.wh-form label
{
  float: left;
  width: 230px;
  line-height: 20px;
  padding: 10px 20px 8px 0;
  text-align: right;
  display: block;
  font-weight: bold;
}

  .wh-form .formgroup-radio > label
, .wh-form .formgroup-checkbox > label
{
  display: block;
  width: 100%;
  float: none;
  text-align: left;
  font-weight: normal;
  padding: 10px 20px 0 0;
}

  .wh-form label + input[type=text]
, .wh-form label + input[type=password]
, .wh-form label + input[type=email]
, .wh-form label + .formgroup-radio
, .wh-form label + .formgroup-checkbox
, .wh-form label + textarea
{
  width: calc(100% - 230px);
  float: left;
}
  .wh-form .invalid > input[type=text]
, .wh-form .invalid > input[type=password]
, .wh-form .invalid > input[type=email]
, .wh-form .invalid > textarea
{
  border-color: #e41e00;
}

.wh-form .whwp-option input[type=text]
{
  margin: 4px 0 0 25px;
  width: calc(100% - 5px);
}

.wh-form .error-holder
{
  line-height: 20px;
}
.wh-form label + input + .error-holder
{
  clear: left;
  padding-left: 230px;
}


.wh-form .fieldgroup
{
  position: relative;
  padding-bottom: 15px;
}
.wh-form .fieldgroup:after
{
  content: '';
  display: block;
  clear: both;
}

  .wh-form button
, .wh-form .button
, .wh-dialog .button
{
  -webkit-appearance:none;
  background-color: #71C815;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  padding: 11px 30px 11px 11px;
  height: 42px;
  display: block;
  border: 0 none;
  border-radius: 4px;
  width: 100%;
  cursor: pointer;
  text-align: left;
  font: normal 16px/20px 'sansa_stdnormal', Arial, Helvetica, Sans-Serif;
  opacity: 1;
  transition: opacity 0.3s;
  position: relative;
  outline: none;
}
  .wh-form button.inline
, .wh-form .button.inline
, .wh-dialog .button
{
  display: inline-block;
  width: auto;
}
  .wh-form button:hover
, .wh-form .button:hover
, .wh-dialog .button:hover
{
  opacity: 0.8;
}
  .wh-form button:after
, .wh-form .button:after
, .wh-dialog .button:after
{
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f105";
  font-size: 26px;
  position: absolute;
  right: 12px;
  top: 50%;
  margin-top: -13px;
}
  .wh-form button.previous
, .wh-form .button.previous
{
  text-align: right;
  padding: 11px 11px 11px 30px;
}
  .wh-form button.previous:after
, .wh-form .button.previous:after
{
  content: "\f104";
  right: auto;
  left: 12px;
}

.wh-form .formsubmit
{
  text-align: right;
}
.wh-form .formsubmit:after
{
  clear: both;
  content: '';
  display: block;
}
.wh-form .formsubmit button + button
{
  margin-left: 15px;
}
.wh-form .formsubmit.indentleft
{
  padding-left: 230px;
}

@media (max-width:650px)
{
  .wh-form label
  {
    float: none;
    display: block;
    text-align: left;
    width: auto;
    padding-top: 0;
    padding-bottom: 3px;
  }
    .wh-form label + input[type=text]
  , .wh-form label + input[type=password]
  , .wh-form label + input[type=email]
  , .wh-form label + .formgroup-radio
  , .wh-form label + .formgroup-checkbox
  , .wh-form label + textarea
  {
    width: 100%;
    float: none;
  }
  .wh-form label + .whwp-formgroup
  {
    margin-top: -8px;
  }
  .wh-form .formsubmit.indentleft
  {
    padding-left: 0;
  }

}
