/**
 * 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-stage {
  display: flex;
  align-items: stretch;
}
.owl-item {
  display: flex;
  flex-shrink: 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 white;
  border-radius: 50%;
  margin: 0 7px;
}

.owl-dot.active span {
  border-color: #E37222;
  background: #E37222;
}

.owl-dot {
  outline: none;
}