/* Teaser Slider */

.teaser-slider {
  display: table-cell;
  position: relative;
  margin: 0;
}
  
.teaser-slider .inner-wrap {
  margin: 0 10px 0 0;
  padding: 0;
}
  
.teaser-slider .teaser-slide {
  display: none;
  width: 100%;
}
  
.teaser-slider .teaser-slide.current {
  display: block;
}
  
.teaser-slider .teaser-slide .teaser-media {
  display: table-cell;
  width: 450px;
  height: 250px;
  vertical-align: top;
  overflow: hidden;
}

.teaser-slider .teaser-slide .teaser-media img,
.teaser-slider .teaser-slide .teaser-media iframe {
  width: 100%;
  height: 250px;
  overflow: hidden;
}
  
.teaser-slider .teaser-slide .teaser-content {
  display: table-cell;
  padding: 20px 50px;
}
  
.teaser-slider .teaser-slide .teaser-content h4 {
  font-size: 0.875em; /* 14px */
  text-transform: uppercase;
  color: #146fb7;
}

.teaser-content h4 a {
	color: #146fb7;
}
  
.teaser-slider .teaser-slide .teaser-content p:last-child {
  margin: 0 !important;
}
  
.teaser-slider-pagination {
  position: absolute;
  left: 20px;
  bottom: 0;
  width: 120px;
  height: 15px;
}
  
.teaser-slider-pagination ul {
  display: inline;
  list-style-type: none;
}
  
.teaser-slider-pagination ul li {
  display: inline;
  padding:  0 2px;
}

.teaser-slider-pagination li a {
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: #FFFFFF;
  text-indent: -1999px;
	color: transparent;
}

.teaser-slider-pagination li.current a {
  background-color: #146fb7;
}
  
.teaser-slider-control {
  position: absolute;
  left: 20px;
  bottom: 0;
  width: 15px;
}
  
@media only screen and (max-width :  768px){

  .teaser-slider,
  .teaser-slider .teaser-slide .teaser-media,
  .teaser-slider .teaser-slide .teaser-content {
    display: block;
  }
    
  .teaser-slider .teaser-slide .teaser-media,
  .teaser-slider .teaser-slide .teaser-media img {
    max-width: 100%;/*width: 100%; */
    height: auto;
  }
    
  .teaser-slider .teaser-slide .teaser-content {
    padding: 10px;
  }
    
  .teaser-slider-pagination {
    left: 10px;
    top: 10px;
    bottom: inherit;
  }

}

@media only screen and (max-width :  450px){
	.teaser-slider .teaser-slide .teaser-media {
	  max-width: 450px;
		width: unset;
	}
}