/*
 * 	Custom theme - Owl Carousel CSS File
 */
.container--slider {
  overflow: hidden;
}
.owl-stage {
  display: flex;
}
.owl-item {
  display: flex;
  flex-shrink: 0;
}
.owl-item > * {
  width: 100%;
}

.owl__container {
  position: relative;

}

.owl-nav {
  width: 100%;
  position: absolute;
  top: 50%;
}

.owl-nav button {
  position: absolute;
  outline: none;
}
.owl-nav button.owl-next {
  right: -30px;
}
.owl-nav button.owl-prev {
  left: -30px;
}

.owl-nav button span {
  /*width: 35px;
  height: 35px;*/
  width: 50px;
  height: 50px;
  background-color:  var(--contrast-color);
  color: white;
  border-radius: 100%;
  display: block;
  font-size: 35px;
  line-height: 0;
  font-weight: 100;
  padding: 23px 0 0 0;
  /*padding: 15px 0 0 0;*/
}

.owl-dots {
  display: flex;
  justify-content: center;
  margin-left: -7px;
  margin-right: -7px;
  margin-top: 18px;
  position: relative;
}

.owl-dot span {
  width: 12px;
  height: 12px;
  display: block;
  border: 1px solid #C4C4C4;
  background: #C4C4C4;
  border-radius: 50%;
  margin: 0 7px;
  transition: width .3s;
}

.owl-dot.active span {
  border-color:  var(--contrast-color);
  background:  var(--contrast-color);
  width: 25px;
  border-radius: 28%;
}

.owl-dot {
  outline: none;
}
.owl-nav button.disabled span {
  background: #d6d6d6;
}

@media(max-width: 820px) {
	.owl-nav button span {
		width: 35px;
		height: 35px;
		background-color:  var(--contrast-color);
		color: white;
		border-radius: 100%;
		display: block;
		font-size: 35px;
		line-height: 0;
		font-weight: 100;
		padding: 15px 0 0 0;
	}
}