/**
 * 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      29.02.2016
 * @version    $Id$
 **/
/*  =========================================================
basic config
general structure
checkbox n label
dropdown
========================================================== */
/*  =========================================================
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__lang {
    position: relative;
    margin-left: 15px;
    -webkit-transition: height 0.5s ease;
    transition: height 0.5s ease;
  }
  #pageHeader__lang.verticalAlign:after {
    vertical-align: bottom;
  }
}
@media screen and (min-width: 801px) {
  #pageHeader__lang {
    height: 80px;
  }
}
@media screen and (max-width: 800px) {
  #pageHeader__lang {
    height: 54px;
  }
}
@media screen and (min-width: 801px) {
  body.-flag-pageHeaderShrinked #pageHeader__lang {
    height: 54px;
  }
  body:not(.-flag-pageHeaderShrinked) #pageHeader__lang {
    height: 92px;
  }
}
/*  =========================================================
checkbox n label
========================================================= */
@media screen {
  #pageHeader__lang > [type='checkbox'] {
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0;
  }
  #pageHeader__lang > label {
    padding: 15px 15px 30px 15px;
    display: inline-block;
    color: #666;
    font-family: 'HamburgSans-Bold', 'Open Sans', Arial, sans-serif;
    font-size: 14px;
    line-height: 1em;
    font-weight: 400;
    text-transform: uppercase;
    cursor: pointer;
  }
  #pageHeader__lang > label > img {
    margin: 0px 5px;
  }
  #pageHeader__lang > label > [class*='icon-'] {
    font-size: 10px;
  }
}
/*  =========================================================
menu
========================================================= */
@media screen {
  #pageHeader__lang__menu {
    position: absolute;
    right: 5px;
    top: 100%;
    margin: 0px;
    padding: 0px;
    border: 1px #e6e6e6 solid;
    list-style: none;
    -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.15);
    background: #fff;
  }
  #pageHeader__lang > [type='checkbox']:checked ~ #pageHeader__lang__menu {
    display: block;
  }
  #pageHeader__lang > [type='checkbox']:not(:checked) ~ #pageHeader__lang__menu {
    display: none;
  }
}
@media screen {
  #pageHeader__lang__menu > li {
    display: block;
  }
  #pageHeader__lang__menu > li > a {
    display: block;
    padding: 15px;
    font-family: 'HamburgSans-Bold', 'Open Sans', Arial, sans-serif;
    font-size: 1.4rem;
    line-height: 1em;
    font-weight: 400;
    color: #666;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
  }
  #pageHeader__lang__menu > li > a > img {
    margin-left: 5px;
  }
}
