/*Nexus 10*/
/*--------------------------------------------------*/
/* Some Local Variables */
/*--------------------------------------------------*/
/*--------------------------------------------------*/
/* Einzelbild */
/*--------------------------------------------------*/
.module-recommendations {
  position: relative;
  z-index: 1;
  /* Arrows */ }
  @media only screen and (min-width: 48em) {
    .module-recommendations {
      margin-top: 0 !important; } }
  .module-recommendations article {
    cursor: pointer; }
    .module-recommendations article .article-inner {
      color: #fff;
      -webkit-align-items: flex-end;
          -ms-flex-align: end;
              align-items: flex-end;
      width: calc(100 / 6)%;
      position: relative;
      overflow: hidden;
      height: 100px; }
    .module-recommendations article .bg {
      background-repeat: no-repeat;
      background-position: 50% 50%;
      background-size: cover;
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 0;
      transition: all 400ms ease;
      /*@include gradient-overlay($a2: 0.5, $percentStart: 50%, $opacity: 1, $zindex: 2);*/ }
    .module-recommendations article .info {
      position: relative;
      z-index: 1;
      color: #fff;
      width: 100%; }
      .module-recommendations article .info:after {
        content: "";
        height: 50px;
        width: 50px;
        position: absolute;
        right: -100px;
        bottom: 0;
        /*background: url(/plugins/Progfb_Project/static/images/svg/icn_left-arrow.svg) no-repeat 100% 100%;*/
        background-size: 30px auto;
        opacity: 0;
        transition: all 400ms ease; }
      .module-recommendations article .info * {
        color: inherit; }
      .module-recommendations article .info h4 {
        font-weight: 400;
        line-height: 1.2;
        font-size: 1.3rem;
        font-style: italic; }
      .module-recommendations article .info h3 {
        font-weight: 400;
        line-height: 1.2;
        font-size: calc(21px + (21 - 16) * (100vw - 400px) / 400);
        padding: 0 50px 0 0; }
      .module-recommendations article .info a {
        text-decoration: none; }
    .module-recommendations article:hover .bg {
      -webkit-transform: scale(1.05, 1.05);
              transform: scale(1.05, 1.05); }
      .module-recommendations article:hover .bg:after {
        opacity: .9; }
    .module-recommendations article:hover .info:after {
      opacity: 1;
      right: 0; }
  .module-recommendations .slick-prev,
  .module-recommendations .slick-next {
    width: 50px;
    height: 50px;
    background-color: #38a6d7;
    border-radius: 100%;
    cursor: pointer;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.6rem;
    font-weight: 400;
    color: #fff;
    margin: 30px auto;
    box-shadow: 0px 5px 10px -2px rgba(51, 51, 51, 0.5);
    position: absolute;
    top: 350px;
    transition: all 400ms ease; }
    .module-recommendations .slick-prev:hover, .module-recommendations .slick-prev:focus,
    .module-recommendations .slick-next:hover,
    .module-recommendations .slick-next:focus {
      background-color: rgba(56, 166, 215, 0.6); }
    .module-recommendations .slick-prev:after,
    .module-recommendations .slick-next:after {
      content: "";
      width: 17px;
      height: 17px;
      display: block; }
  .module-recommendations .slick-prev {
    left: calc(50% - 60px); }
    @media only screen and (min-width: 48em) {
      .module-recommendations .slick-prev {
        right: 120px;
        left: auto; } }
    .module-recommendations .slick-prev:after {
      background: url(/plugins/Progfb_Project/static/images/svg/prev_light.svg) no-repeat 0 50%;
      background-size: cover; }
  .module-recommendations .slick-next {
    right: calc(50% - 60px); }
    @media only screen and (min-width: 48em) {
      .module-recommendations .slick-next {
        right: 50px; } }
    .module-recommendations .slick-next:after {
      background: url(/plugins/Progfb_Project/static/images/svg/next_light.svg) no-repeat 100% 50%;
      background-size: cover; }

/*--------------------------------------------------*/
/* Fullscreen Gallery */
/*--------------------------------------------------*/
.module-fullscreen-gallery {
  position: relative; }
  .module-fullscreen-gallery .fullscreen-image {
    z-index: 1000;
    width: 100%;
    height: auto;
    display: none; }
    @media only screen and (min-width: 80em) {
      .module-fullscreen-gallery .fullscreen-image {
        display: block; } }
    .module-fullscreen-gallery .fullscreen-image figure {
      height: calc(100vh);
      background-repeat: no-repeat;
      background-position: 50% 50%;
      background-size: cover; }
