/**
 * 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 tabArticle
 * @author     gueldner
 * @since      02.03.2016
 * @version    $Id$
 **/
/*  =========================================================
basic config
general structure
tab collection
content collection
========================================================== */
/*  =========================================================
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 {
  .tabArticle {
    padding-top: 8rem;
  }
}
/*  =========================================================
tab collection
========================================================= */
@media screen {
  .tabArticle__tabCollection > a,
  .tabArticle__tabCollection > label {
    display: inline-block;
    height: 48px;
    padding: 0px 1em;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 2rem;
    line-height: 2.4em;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
  }
  .tabArticle__tabCollection > a:not(last-of-type),
  .tabArticle__tabCollection > label:not(last-of-type) {
    border-right: 2px solid #fff;
  }
  .tabArticle__tabCollection > a:not(.active),
  .tabArticle__tabCollection > label:not(.active) {
    background: #4b4b4b;
    color: #fff;
  }
  .tabArticle__tabCollection > a.active,
  .tabArticle__tabCollection > label.active {
    background: #f3f3f3;
    color: #4b4b4b;
  }
}
/*  =========================================================
content collection
========================================================= */
@media screen {
  .tabArticle__contentCollection {
    position: relative;
  }
  .tabArticle__contentCollection__content {
    padding: 6rem 0px;
    background: #f3f3f3;
  }
  .tabArticle__contentCollection__content + .tabArticle__contentCollection__content {
    background: #e2e2e2;
  }
}
@media screen {
  .tabArticle__contentCollection > [type='radio'] {
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0;
  }
}
@media screen {
  .tabArticle__contentCollection > [type='radio']:not(:checked) + div {
    display: none!important;
  }
  .tabArticle__contentCollection > [type='radio']:checked + div {
    display: block!important;
  }
}
