/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */

.owl-theme .owl-nav {
  text-align: center;
}

.owl-prev, .owl-next {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 64px;
  color: #ffffff;
  opacity: 0.4;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  cursor: pointer;
}

.owl-prev:hover, .owl-next:hover {
  color: #ffffff;
  opacity: 0.9;
  cursor: pointer;
}

.owl-prev {
  float: left;
  position: absolute;
  left: 0px;
  z-index: 2;
}

.owl-next {
  float: right;
  position: absolute;
  right: 0px;
  z-index: 2;
}

.owl-theme .owl-dots {
  left: 0px;
  right: 0px;
  text-align: center;
  position: absolute;
  z-index: 2;
}

.owl-theme .owl-dots .owl-dot {
  display: inline-block;
}

.owl-theme .owl-dots .owl-dot span {
  width: 18px;
  height: 18px;
  margin: 5px 7px 5px 7px;
  background-color: #ffffff;
  border: 3px solid rgba(64, 64, 65, 0.5);
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  cursor: pointer;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  cursor: pointer;
  background-color: #ffffff;
  border: 3px solid rgba(255, 255, 255, 0.5);
}


