/**
 * Hamburg Convention Bureau - Eventlotse 2016
 *
 * LICENSE
 *
 * This software and its source code is protected by copyright law (Sec. 69a ff. UrhG).
 * It is not allowed to make any kinds of modifications, nor must it be copied,
 * or published without explicit permission. Misuse will lead to persecution.
 *
 * @copyright  2016 infomax websolutions GmbH
 * @link       http://www.infomax-it.de
 * @package    css
 * @subpackage contentForm
 * @author     gueldner
 * @since      01.03.2016
 * @version    $Id$
 **/
/*  =========================================================
basic config
general structure
input fields
checkbox
button
additional links
========================================================== */
/*  =========================================================
basic config
========================================================= */
/* dimensions */
/* path variables */
/*corporate design*/
/*text*/
/*backgrounds*/
/*table colors*/
/*other colors*/
/*percentage dimensions*/
/*percentage margins*/
/*percentage paddings*/
/*vertical aligns*/
.verticalAlignHelper {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 1px;
  height: 100%;
  margin: 0px;
}
/*  =========================================================
general structure
========================================================= */
@media screen {
  .contentForm {
    margin-bottom: 70px;
  }
  .contentForm fieldset {
    border: none;
    padding: 0px;
    margin-bottom: 20px;
    position: relative;
  }
}
/*  =========================================================
input fields
========================================================= */
@media screen {
  .contentForm [type='text'],
  .contentForm [type='email'],
  .contentForm [type='password'] {
    width: 100%;
    height: 45px;
    display: block;
    margin: 0px 0px 20px 0px;
    padding: 0px 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1.5rem;
    line-height: 1.25em;
    font-weight: 400;
    color: #666;
    border: 1px #e6e6e6 solid;
    background: #fff;
  }
  .contentForm [type='text'].error,
  .contentForm [type='email'].error,
  .contentForm [type='password'].error {
    border: 1px #e10019 solid !important;
    color: #e10019 !important;
  }
  .contentForm [type='text']:not(.error),
  .contentForm [type='email']:not(.error),
  .contentForm [type='password']:not(.error) {
    border: 1px #e6e6e6 solid;
    color: #666;
  }
}
/*  =========================================================
checkbox
========================================================= */
@media screen {
  .contentForm [type='checkbox'] {
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0;
  }
  .contentForm [type='checkbox'] + label {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1.5rem;
    line-height: 1.25em;
    font-weight: 400;
    display: block;
    text-align: left;
    padding: 10px 0px 10px 40px;
    cursor: pointer;
  }
  .contentForm [type='checkbox'] + label:before {
    display: inline-block;
    vertical-align: middle;
    width: 28px;
    height: 28px;
    margin: 0px 10px 0px -40px;
    background: #fff;
    font: 400 normal 22px/28px 'icomoon';
    text-align: center;
    cursor: pointer;
  }
  .contentForm [type='checkbox'].error + label,
  .contentForm [type='checkbox'].ui-state-error + label {
    color: #e10019 !important;
  }
  .contentForm [type='checkbox'].error + label:before,
  .contentForm [type='checkbox'].ui-state-error + label:before {
    border: 1px #e10019 solid !important;
    color: #e10019;
  }
  .contentForm [type='checkbox']:not(.error) + label {
    color: #333;
  }
  .contentForm [type='checkbox']:not(.error) + label:before {
    border: 1px #e6e6e6 solid;
    color: #333;
  }
  .contentForm [type='checkbox']:not(:checked) + label:before {
    content: '';
  }
  .contentForm [type='checkbox']:checked + label:before {
    content: '\e909';
  }
}
/*  =========================================================
button
========================================================= */
@media screen {
  .contentForm .ui-button {
    float: right;
  }
  .contentForm .ui-button:not(:last-of-type) {
    margin-left: 20px;
  }
}
/*  =========================================================
additional links
========================================================= */
@media screen {
  .contentForm a {
    float: left;
    margin-right: 20px;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1.5rem;
    line-height: 1.25em;
    font-weight: 600;
    color: #003063;
    text-decoration: none;
  }
}
