/**
 * 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
general structure
input
label
========================================================== */
/*  =========================================================
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 {
  .offCanvas__element {
    width: 100%;
    height: 60px;
    position: relative;
  }
}
/*  =========================================================
input
========================================================= */
@media screen {
  .offCanvas__element > input {
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0;
  }
}
/*  =========================================================
label
========================================================= */
@media screen {
  .offCanvas__element > label,
  .offCanvas__element > a {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
    display: block;
    text-align: center;
    cursor: pointer;
    -webkit-transition: background 0.15s ease;
    transition: background 0.15s ease;
    background: #003063;
    text-decoration: none;
  }
  .offCanvas__element > label:hover,
  .offCanvas__element > a:hover {
    background: #405775;
  }
  .offCanvas__element > label > [class*='icon-'],
  .offCanvas__element > a > [class*='icon-'] {
    font-size: 3em;
    line-height: 60px;
    color: #fff;
  }
}
@media screen {
  .offCanvas__element > input:checked ~ label {
    background: #405775;
  }
}
