/**
 * 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
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 {
  .offCanvas__element__sub {
    position: absolute;
    top: 0px;
    left: 100%;
    overflow: hidden;
    -webkit-transition: -webkit-transform 0.25s ease;
    transition: transform 0.25s ease;
  }
}
@media screen {
  #-flag-offCanvas:not(:checked) ~ main > #offCanvas .offCanvas__element__sub,
  .offCanvas__element > input:not(:checked) ~ .offCanvas__element__sub,
  .offCanvas__element > a:not(:hover) ~ .offCanvas__element__sub {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
/*  =========================================================
input
========================================================= */
@media screen {
  .offCanvas__element__sub > input {
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0;
  }
}
/*  =========================================================
label
========================================================= */
@media screen {
  .offCanvas__element__sub > label {
    position: relative;
    z-index: 1;
    height: 60px;
    display: block;
    padding: 0px 10px;
    text-align: left;
    cursor: pointer;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 1.5rem;
    line-height: 60px;
    font-weight: 400;
    text-transform: uppercase;
    white-space: nowrap;
    color: #fff;
    background: #405775;
  }
  .offCanvas__element__sub > label > [class*='icon-'] {
    font-size: 15px;
    line-height: 60px;
    color: #fff;
  }
}
/*  =========================================================
links
========================================================= */
@media screen {
  .offCanvas__element__sub > a {
    height: 60px;
    display: block;
    padding: 0px 10px;
    text-align: left;
    cursor: pointer;
    font-family: 'HamburgSans', 'Open Sans', Arial, sans-serif;
    font-size: 1.45rem;
    line-height: 60px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    color: #fff;
    background: #193559;
    -webkit-transition: -webkit-transform 0.25s ease;
    transition: transform 0.25s ease;
  }
  .offCanvas__element__sub > a > label {
    cursor: pointer;
  }
}
@media screen {
  #-flag-offCanvas:checked ~ main > #offCanvas .offCanvas__element > input:checked ~ .offCanvas__element__sub > a:nth-of-type(1) {
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }
  #-flag-offCanvas:checked ~ main > #offCanvas .offCanvas__element > input:checked ~ .offCanvas__element__sub > a:nth-of-type(2) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    -webkit-transition-duration: 0.35s;
    transition-duration: 0.35s;
  }
  #-flag-offCanvas:checked ~ main > #offCanvas .offCanvas__element > input:checked ~ .offCanvas__element__sub > a:nth-of-type(3) {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
  }
  #-flag-offCanvas:checked ~ main > #offCanvas .offCanvas__element > input:checked ~ .offCanvas__element__sub > a:nth-of-type(4) {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
    -webkit-transition-duration: 0.45s;
    transition-duration: 0.45s;
  }
  #-flag-offCanvas:checked ~ main > #offCanvas .offCanvas__element > input:checked ~ .offCanvas__element__sub > a:nth-of-type(n+5) {
    -webkit-transition-delay: 0.25s;
    transition-delay: 0.25s;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
  }
}
@media screen {
  .offCanvas__element__sub > input:not(:checked) ~ a {
    -webkit-transform: translateX(-100%) !important;
    -ms-transform: translateX(-100%) !important;
    transform: translateX(-100%) !important;
  }
  #-flag-offCanvas:not(:checked) ~ main > #offCanvas .offCanvas__element__sub > a,
  .offCanvas__element > input:not(:checked) ~ .offCanvas__element__sub > a {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }
}
