/*
 * jQuery Nivo Slider v3.2
 * http://nivo.dev7studios.com
 *
 * Copyright 2012, Dev7studios
 * Free to use and abuse under the MIT license.
 * https://www.opensource.org/licenses/mit-license.php
 */
 
/* The Nivo Slider styles */
.nivoSlider {
  position:relative;
  width:100%;
  height:auto;
  /* max-height:275px; */
  overflow: hidden;
}

.ie8 .nivoSlider {
  width: 1010px;
  height: 275px;
}

.nivoSlider img {
  position:absolute;
  top:0px;
  left:0px;
  max-width: 62%;
}

.ie8 .nivoSlider img {
  width: 625px;
  height: 275px;
  max-width: 625px;
  max-height: 275px;
}

.nivo-main-image {
  display: block !important;
  position: relative !important; 
  width: 100% !important;
}

.ie8 .nivo-main-image {
  width: 625px !important;
  height: 275px !important;
  max-width: 625px;
  max-height: 275px;
}

/* If an image is wrapped in a link */
.nivoSlider a.nivo-imageLink {
  position:absolute;
  top:0px;
  left:0px;
  width:100%;
  height:100%;
  border:0;
  padding:0;
  margin:0;
  z-index:6;
  display:none;
  background:white; 
  filter:alpha(opacity=0); 
  opacity:0;
}
/* The slices and boxes in the Slider */
.nivo-slice {
  display:block;
  position:absolute;
  z-index:5;
  height:100%;
  top:0;
}


.nivo-box {
  display:block;
  position:absolute;
  z-index:5;
  overflow:hidden;
}
.nivo-box img { display:block; }

/* Caption styles */
.nivo-caption {
  position:absolute;
  left:62%;
    top: 0;
  bottom:0px;
  background:#F5F5F5;
  color:#fff;
  width:38%;
  z-index:8;
  padding: 19px 17px;
  opacity: 0.8;
  overflow: hidden;
  display: none;
  -moz-opacity: 0.8;
  filter:alpha(opacity=8);
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;    /* Firefox, other Gecko */
  box-sizing: border-box;         /* Opera/IE 8+ */
}

.ie8 .nivo-caption {
  filter:alpha(opacity=100);
  left: 625px;
  width: 384px;
  height: 275px;
}

.nivo-caption > h1 {
    color: #D62B3A;
    font-size: 1.125em;
  font-weight:700;
  line-height:1.4em;
}
.nivo-caption > h2 {
    color: #444444 !important;
    font-size: 0.813em;
    padding: 10px 0 0;
}
.nivo-caption p {
    color: #222 !important;
    font-size: 0.813em;
    margin: 0;
    padding: 0;
  line-height:1.4em;
}
.nivo-caption a {
  display:inline !important;
}
.nivo-html-caption {
    display:none;
}
/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav a {
  position:absolute;
  top:45%;
  z-index:9;
  cursor:pointer;
}
.nivo-prevNav {
  left:0px;
}
.nivo-nextNav {
  right:0px;
}
/* Control nav styles (e.g. 1,2,3...) */
.nivo-controlNav {
  /*text-align:center;*/
  padding: 15px 0;
  display: none;
}
.nivo-controlNav a {
  cursor:pointer;
}
.nivo-controlNav a.active {
  font-weight:bold;
}

@media screen and (max-width: 610px) {
    
    .nivo-caption {
    width: 100%;
        left:0;
        position: relative;
    min-height:300px;
    }

    .nivo-controlNav {
        padding: 15px 0;
        text-align:center;
    }
    .nivoSlider img {
     max-width: 100%;
    }
  
  .nivo-directionNav a {
    display: none;
    position:absolute;
    top:45%;
    z-index:9;
    cursor:pointer;
  }

}

@media screen and (max-width: 660px) {
  
  .nivo-caption p {
    color: #444444 !important;
    font-size: 0.975em;
    margin: 0;
    padding: 0;
    line-height:1.4em;
  }
}

/* ALLes über 610px */
@media screen and (min-width: 610px) {
.nivoSlider {
 
  max-height:275px;
 
  }

}