﻿/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-dots {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}
.owl-dot {
  height: 15px;
  width: 15px;
  margin: 0 10px;
  border-radius: 50%;
  background-color: #aeaeae;
}
.owl-dot.active {
  background-color: #fce602;
}
.owl-item {
  display: flex;
  justify-content: center;
}
.owl-prev {
  position: absolute;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: #fce602;
  top: 50%;
  left: -2%;
  transform: translateY(-50%);
}
.owl-next {
  position: absolute;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: #fce602;
  top: 50%;
  right: -2%;
  transform: translateY(-50%);
}
