/**
 * 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 sliderArticle
 * @author     gueldner
 * @since      29.02.2016
 * @version    $Id$
 **/
/*  =========================================================
basic config
general structure
arrows
========================================================== */
/*  =========================================================
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 {
  .sliderArticle {
    width: 100%;
    position: relative;
  }
  .sliderArticle > div {
    overflow: hidden;
  }
}
@media screen and (max-width: 500px) {
  .sliderArticle__row {
    width: 100%!important;
    margin-left: 0px!important;
    -webkit-transition: none!important;
    transition: none!important;
  }
  .sliderArticle__row > article {
    width: 100%!important;
  }
}
@media screen {
  .sliderArticle__row > article {
    text-align: left;
    display: inline-block;
    margin: 30px 0px;
  }
  .sliderArticle__row > article > figure,
  .sliderArticle__row > article > div {
    display: inline-block;
    vertical-align: top;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
}
@media screen and (min-width: 801px) {
  .sliderArticle__row > article > figure,
  .sliderArticle__row > article > div {
    width: 50%;
  }
}
@media screen and (max-width: 800px) {
  .sliderArticle__row > article > figure,
  .sliderArticle__row > article > div {
    width: 100%;
  }
}
/*  =========================================================
arrows
========================================================= */
@media screen {
  .sliderArticle__arrowLeft,
  .sliderArticle__arrowRight {
    position: absolute;
    top: 50%;
    font-size: 25px;
    color: #a7a7a7;
    cursor: pointer;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .sliderArticle__arrowLeft {
    right: 100%;
    margin-right: 40px;
  }
  .sliderArticle__arrowRight {
    left: 100%;
    margin-left: 40px;
  }
}
@media screen and (max-width: 500px) {
  .sliderArticle__arrowLeft,
  .sliderArticle__arrowRight {
    display: none;
  }
}
