/* carousel */
.media-carousel
{
  margin-bottom: 0;
  margin-top: 30px;
}
/* Previous button  */
.media-carousel .carousel-control.left {
  left: 20px;
  background-image: none;
  background: none repeat scroll 0 0 #222222;
  border: 4px solid #FFFFFF;
  border-radius: 23px 23px 23px 23px;
  height: 40px;
  width : 40px;
}
/* Next button  */
.media-carousel .carousel-control.right
{
  right: 20px !important;
  background-image: none;
  background: none repeat scroll 0 0 #222222;
  border: 4px solid #FFFFFF;
  border-radius: 23px 23px 23px 23px;
  height: 40px;
  width : 40px;
}
/* Changes the position of the indicators */
.media-carousel .carousel-indicators
{
  right: 50%;
  top: auto;
  bottom: 0px;
  margin-right: -19px;
}
/* Changes the colour of the indicators */
.media-carousel .carousel-indicators li
{
  background: #c0c0c0;
}
.media-carousel .carousel-indicators .active
{
  background: #333333;
}
.media-carousel img
{
  width: 250px;
  height: 100px
}

.slider-wrapper {
  margin-bottom: 30px;
  padding-right: 10px;
}

.slider-item {
  display: block;
  width: 100%;
  background: transparent;
  position: relative;
  overflow: hidden;
  text-align: left;
  height: 350px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 0 5px rgba(0,0,0,0.5);
  border-radius: 4px;
}

.slider-item .caption {
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding-top: 50px;
  padding-bottom: 30px;
  background: -moz-linear-gradient(bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(bottom, rgba(0,0,0,0.8) 0%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */
  padding-left: 15px;
}

.slider-image {
  min-width: 100%;
  min-height: 100%;
  transition: all 0.3s;
}
.slider-image:hover {
  filter: saturate(3);
}

.slider-item .price {
 color: white;
 font-size: 30px;
 text-shadow: 0px 0px 5px black;
 margin: auto;
}

.slider-item .desc {
 color: white;
 text-shadow: 0px 0px 14px black;
 margin: auto;
}

.slider-item .sqft {
  color: white;
 text-shadow: 0px 0px 2px black;
 text-align: center;
 margin: auto;
}

.slider-item .more {
  text-decoration: underline;
  font-size: 23px;
  color: #FFFFFF;
}

.slider-item .more a, .property-list-firm {
  color: #FFFFFF;
}

.slider-gradient {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  z-index: 999;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 59%, rgba(0, 0, 0, 0.65) 100%)
}
@media (max-width: 768px) {
  .slider-wrapper {
    margin-bottom: 0;
  }
}
@media (max-width: 425px) {
  .slider-item {
    height: 335px;
    border-radius: 0;
  }
}
/* End carousel */
