/* --- module: effects slide --- */


/* common
---------------------------------------------------- */

.indexSlide {
    position: relative;
}

.indexSlide .sliderContainer {
    overflow: hidden;
    position: relative;
}


/* dynHeight with aspect ratio
---------------------------------------------------- */

.indexSlide.dynHeight {}

.indexSlide.dynHeight .item {
    height: 100%;
}

.indexSlide.dynHeight .item:before {
    content: "";
    display: block;
    padding-top: 100%;
    /* 1:1 aspect ratio */
    padding-top: 75%;
    /* 4:3 aspect ratio */
    padding-top: 56.25%;
    /* 16:9 aspect ratio */
}


/* item
---------------------------------------------------- */

.indexSlide .item {
    width: 100%;
    height: 400px;
    /* js: auto viewport height */
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    background-size: cover !important;
    background-position: center center;
    position: relative;
    float: left;
    cursor: grab;
}

.indexSlide .item .content {
    position: absolute;
    bottom: 0px;
    width: 100%;
    left: 0px;
    color: #ffffff;
}

.indexSlide .item .content a {
    color: #ffffff;
}

.indexSlide .item .content .title {}

.indexSlide .item .content .modTeaser {
    background-image: url(../../images/site/slider_bkg.png);
    /* see ie6fix for transparent fix -> ie6 deprecated */
    background-repeat: repeat-y;
    position: absolute;
    /* vertical align bottom */
    bottom: 0px;
    /* vertical align bottom */
    padding: 30px 80px 30px 80px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    line-height: 18px;
}

.indexSlide .modTeaser .sweTitle1,
.indexSlide .modTeaser .sweTitle1 strong,
.indexSlide .modTeaser .sweTitle4,
.indexSlide .modTeaser .sweTitle4 strong,
.indexSlide .modTeaser .sweTitle7,
.indexSlide .modTeaser .sweTitle7 strong {
    font-size: 40px;
    font-weight: 800;
    line-height: 40px;
    color: #ffffff;
}

.indexSlide .modTeaser .sweTitle2,
.indexSlide .modTeaser .sweTitle2 strong,
.indexSlide .modTeaser .sweTitle5,
.indexSlide .modTeaser .sweTitle5 strong,
.indexSlide .modTeaser .sweTitle8,
.indexSlide .modTeaser .sweTitle8 strong {
    font-size: 30px;
    font-weight: 800;
    line-height: 30px;
    color: #ffffff;
}

.indexSlide .item .content .modTeaser a {
    color: #ffffff;
    text-decoration: underline;
}

.indexSlide .item .content .modTeaser a:hover {
    color: #ffffff;
    text-decoration: none;
}


/* pagination
---------------------------------------------------- */

.indexSlide .sliderPagination {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 4;
}

.indexSlide .sliderPagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #000000;
    opacity: 0.5;
    margin: 0px 2px 0px 2px;
}

.indexSlide .sliderPagination .swiper-pagination-bullet:hover {
    background-color: #000000;
    opacity: 1;
}

.indexSlide .sliderPagination .swiper-pagination-bullet-active {
    background-color: #db001b;
    opacity: 1;
}


/* prev/next
---------------------------------------------------- */

.indexSlide .sliderArrow {
    width: 100%;
    position: absolute;
    top: 50%;
    z-index: 5;
}

.indexSlide .next,
.indexSlide .prev {
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    width: 45px;
    height: 45px;
    opacity: 0.5;
    position: absolute;
    margin: -22px 0px 0px 0px;
}

.indexSlide .next:hover,
.indexSlide .prev:hover {
    opacity: 1;
}

.indexSlide .next {
    background-image: url(../../images/effects_gallery_arrow_next.png);
    right: 0px;
}

.indexSlide .prev {
    background-image: url(../../images/effects_gallery_arrow_prev.png);
    left: 0px;
}


/* navigation style: pointers
---------------------------------------------------- */

.indexSlide .navi {
    display: table-cell;
    vertical-align: bottom;
    height: 400px;
    position: relative;
    padding-left: 10px;
    padding-right: 20px;
}

.indexSlide .navi a {
    display: block;
    background-image: url(../../images/site/slider_arrow_thumb.png);
    background-repeat: no-repeat;
    background-position: right center;
    padding: 12px 40px 12px 12px;
    margin: 3px 0px 0px 0px;
    text-transform: uppercase;
    color: #000000;
    text-decoration: none;
    font-weight: 800;
}

.indexSlide .navi a.active {
    color: #ffffff !important;
    background-image: url(../../images/site/slider_arrow_thumb_active.png);
}

.indexSlide .nextImg {
    position: absolute;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    top: 0;
    bottom: 0;
    right: 0;
    left: 10px;
}


/* thumbnails
---------------------------------------------------- */

.thumb {
    width: 100%;
    height: 400px;
    overflow: hidden;
    padding: 0px !important;
}

.thumbitem {
    width: 100% !important;
    height: 400px;
}

.thumbitem img {
    max-width: none !important;
    height: 400px;
}