/**
 * 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 pageHeader
 * @author     gueldner
 * @since      08.03.2016
 * @version    $Id$
 **/
/*  =========================================================
basic config
general structure
burger
breadcrumb
userInfo
========================================================== */
/*  =========================================================
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 {
  #pageHeader__error {
    width: 100%;
    position: fixed;
    left: 0px;
    z-index: 6;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0px;
    -webkit-transition: top 0.5s ease, left 0.5s ease;
    transition: top 0.5s ease, left 0.5s ease;
  }
  #pageHeader__error > .ui-grid {
    margin: 0 auto;
  }
  #pageHeader__error [class*="ui-grid-col"] {
    padding: 20px;
  }
  #pageHeader__error + * {
    margin-top: 60px;
  }
  #pageHeader__error + span {
    display: block;
  }
  body.-flag-pageHeaderInvisible > main > #pageHeader__error {
    top: 0px;
  }
}
@media screen and (min-width: 801px) {
  body:not(.-flag-pageHeaderInvisible) > main > #pageHeader__error {
    top: 80px;
  }
}
@media screen and (max-width: 800px) {
  body:not(.-flag-pageHeaderInvisible) > main > #pageHeader__error {
    top: 54px;
  }
}
@media screen and (min-width: 801px) {
  body.-flag-pageHeaderShrinked > main > #pageHeader__error {
    top: 54px;
  }
}
/*  =========================================================
error message
========================================================= */
@media screen {
  .ui-messages-info,
  .ui-messages-warn,
  .ui-messages-error,
  .ui-messages-fatal {
    width: 66.6666%;
    float: left;
    position: relative;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1.4rem;
    line-height: 2em;
    font-weight: 400;
    color: #e10019;
    text-align: left;
    background-color: #fef1ec;
    padding: 20px 17.6667%;
    border-bottom: 1px solid #e10019;
    margin: 0;
  }
  .ui-messages-info ul,
  .ui-messages-warn ul,
  .ui-messages-error ul,
  .ui-messages-fatal ul {
    position: relative;
  }
  .ui-messages-info ul::before,
  .ui-messages-warn ul::before,
  .ui-messages-error ul::before,
  .ui-messages-fatal ul::before {
    font-family: 'icomoon';
    content: "\e90c";
    font-size: 32px;
    color: #e10019;
    position: absolute;
    top: 50%;
    left: -40px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
