/** Timepress custom carousel - a custom implementation, 
** for a "classic" carousel uses Slick JS library 
** for a clients carousel it's totally custom solution with hover & popup effects
**/
.timepress-custom-carousel {
  padding: 40px 0;
  max-width: 600px;
  margin: auto;
}

.timepress-custom-carousel .prev,
.timepress-custom-carousel .next {
  font-size: 40px;
  height: 40px;
  width: 40px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 100;
  cursor: pointer;
}

.timepress-custom-carousel .prev {
  left: 0;
}

.timepress-custom-carousel .next {
  right: 0;
  text-align: right;
}

.timepress-custom-carousel .prev i,
.timepress-custom-carousel .next i {
  color: #aaa;
  cursor: pointer;
}

.timepress-custom-carousel .prev i:hover,
.timepress-custom-carousel .next i:hover {
  color: #000;
}

.timepress-custom-carousel .slide .slide__row {
  text-align: center;
}

.timepress-custom-carousel .slide .slide__title {
  margin-bottom: 10px;
}

.timepress-custom-carousel .slide__img {
  text-align: center;
}

.timepress-custom-carousel .slide__img img {
  display: inline-block;
  max-width: 150px;
}

.timepress-custom-carousel .slick-dots li.slick-active button:before {
    opacity: .75;
    color: black;
}

.timepress-custom-carousel .slick-dots li button:before {
    font-family: 'slick';
    font-size: 40px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: .25;
    color: black;
	cursor: pointer;
}

.timepress-custom-carousel .slick-dots {
    position: absolute;
    bottom: -5px;
    display: flex;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
	justify-content: center;
}

.timepress-custom-carousel .slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.timepress-custom-carousel .slick-dots li button {
    font-size: 0;
    line-height: 0;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important;     
}

/* RESPONSIVENESS */

@media only screen and (max-width: 767px) {
  .timepress-custom-carousel {
    margin: 0 15px;
  }

  .timepress-custom-carousel img {
    max-width: 100%;
  }

  .timepress-custom-carousel .prev {
    left: -20px;
  }

  .timepress-custom-carousel .next {
    right: -20px;
  }
}