/**
 * 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 baseArticle
 * @author     gueldner
 * @since      17.03.2016
 * @version    $Id$
 **/
/*  =========================================================
basic config
list with checkmarks
segmented list
========================================================== */
/*  =========================================================
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;
}
/*  =========================================================
list with checkmarks
========================================================= */
/* list with checkmarks */
@media screen {
  .baseArticle__checklist {
    font-family: 'Open Sans', Arial, sans-serif;
    margin: 0px 0px 3rem 0px;
    padding: 0px;
    list-style: none;
  }
  .baseArticle__checklist > li {
    font-size: 1.5rem;
    line-height: 1.66666667em;
    font-weight: 400;
    color: #666;
    padding: 0px 0px 0px 40px;
  }
  .baseArticle__checklist > li:before {
    content: '\e909';
    display: inline-block;
    vertical-align: sub;
    width: 40px;
    margin: 0px 0px 0px -40px;
    font: 400 normal 2rem 'icomoon';
    text-align: center;
    color: #333;
  }
}
/*  =========================================================
segmented list
========================================================= */
@media screen {
  .baseArticle__segmentlist {
    margin: 0px 0px 3rem 0px;
    padding: 0px;
    list-style: none;
    text-align: left;
  }
  .baseArticle__segmentlist > li {
    font-size: 1.8rem;
    line-height: 1.66666667em;
    font-weight: 400;
    color: #666;
    padding: 15px 20px;
    border-bottom: 1px #bebebe solid;
  }
  .baseArticle__segmentlist > li:first-of-type {
    border-top: 1px #bebebe solid;
  }
  .baseArticle__segmentlist > li > strong {
    font-weight: 600;
  }
}
