/**
 * 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 offCanvas
 * @author     gueldner
 * @since      08.03.2016
 * @version    $Id$
 **/
/*  =========================================================
basic config
offCanvas flag
general structure
========================================================== */
/*  =========================================================
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;
}
/*  =========================================================
offCanvas flag
========================================================= */
@media screen {
  #-flag-offCanvas {
    position: fixed;
    top: 0px;
    right: 100%;
    opacity: 0;
  }
}
@media screen {
  #-flag-offCanvas ~ main,
  #-flag-offCanvas ~ #pageFooter {
    position: relative;
    left: 0px;
    -webkit-transition: left 0.5s ease;
    transition: left 0.5s ease;
  }
  #-flag-offCanvas:checked ~ main,
  #-flag-offCanvas:checked ~ main > #pageHeader__controls,
  #-flag-offCanvas:checked ~ main > #pageHeader__error,
  #-flag-offCanvas:checked ~ #pageHeader,
  #-flag-offCanvas:checked ~ #pageFooter {
    left: 140px;
  }
}
/*  =========================================================
general structure
========================================================= */
@media screen {
  #offCanvas {
    position: fixed;
    top: 0px;
    bottom: 0px;
    z-index: 7;
    left: -140px;
    width: 140px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 60px;
    background: #003063;
    -webkit-transition: left 0.5s ease;
    transition: left 0.5s ease;
  }
  #-flag-offCanvas:checked ~ main > #offCanvas {
    left: 0px;
  }
}
