/**
 * 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 featureList
 * @author     gueldner
 * @since      29.02.2016
 * @version    $Id$
 **/
/*  =========================================================
basic config
general structure
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;
}
/*  =========================================================
general structure
========================================================= */
@media screen {
  .featureList {
    list-style: none;
    margin: 0px;
    padding: 0px;
    text-align: left;
  }
}
@media screen and (min-width: 801px) {
  .featureList {
    -moz-column-count: 2;
    -webkit-column-count: 2;
    column-count: 2;
    -moz-column-gap: 40px;
    -webkit-column-gap: 40px;
    column-gap: 40px;
  }
}
/*  =========================================================
list
========================================================= */
@media screen {
  .featureList > li {
    font-family: 'Open Sans', Arial, sans-serif !important;
    font-size: 1.5rem;
    line-height: 1.66666667em;
    font-weight: 400;
    color: #666;
    margin: 0px 0px 50px 0px;
    padding: 0px 0px 0px 60px;
    position: relative;
  }
  .featureList > li:before {
    width: 60px;
    display: inline-block;
    position: absolute;
    top: 0px;
    left: 0px;
    font-family: 'icomoon';
    font-size: 40px;
    line-height: 40px;
    color: #000;
  }
  .featureList > li > a {
    font: inherit!important;
    color: inherit!important;
  }
  .featureList > li strong {
    font-size: 2.2rem;
    color: #000;
  }
}
