/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 01.02.2017, 12:55:51
    Author     : Pascal
*/
/* Makes images fully responsive */

.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  width: 100%;
  height: auto;
}

/* ------------------- Carousel Styling ------------------- */

.carousel-inner {
  /*border-radius: 15px;*/
}

.carousel-caption {
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0.2+0,0+100 */
background: -moz-linear-gradient(left,  rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(left,  rgba(0,0,0,0.2) 0%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to right,  rgba(0,0,0,0.2) 0%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#33000000', endColorstr='#00000000',GradientType=1 ); /* IE6-9 */
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  padding: 0 0 10px 25px;
  color: #fff;
  text-align: left;
}

.carousel-caption h2{
    font-size:2.0em;
    line-height:2.1em;
}

.carousel-indicators {
    display:none;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 15;
  margin: 0;
  padding: 0 25px 25px 0;
  text-align: right;
}


.carousel-control.left,
.carousel-control.right {
  background-image: none;
  border:0;
  padding:0;
  border-radius:0;
  width:6%;
  height:10%;
  min-width:25px;
  min-height:40px;
  text-align: center;
  vertical-align: middle;
}

.carousel-control.left span,
.carousel-control.right span{
    margin:auto;
    margin-top:8px;
    font-size:1em;
}

@media (max-width: 1000px){
    .carousel-caption h2{
	font-size:1.4em;
	line-height:1.5em;
    }
}

@media (max-width: 450px){
    .carousel-caption h2{
	font-size:1.2em;
	line-height:1.3em;
    }
}