/*!
 * ExS Carousel v1.0.0 (https://exs-carousel.exsthemewp.com/)
 * Copyright ExS Theme, Fastest ans Smallest WordPress theme. (https://exsthemewp.com)
 *
 * Licensed under the MIT license.
 */
.exs-carousel-wrap {
  overflow: hidden;
  position: relative;
}

.exs-carousel {
  display: flex;
  transition: transform 0.5s ease;
  overflow: hidden;
  box-sizing: border-box;
}
.exs-carousel * {
  box-sizing: border-box;
}
.exs-carousel.inited {
  overflow: initial;
}
.exs-carousel img {
  max-width: 100%;
  width: 100%;
  height: auto;
  user-select: none;
}
.exs-carousel > * {
  flex: 100%;
  min-width: 100%;
}

/*dots*/
.exs-carousel-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: absolute;
  bottom: 15px;
  width: 100%;
  margin: 0;
  padding: 0;
}
.exs-carousel-dots i {
  cursor: pointer;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #eee;
  list-style: none;
  margin: 15px;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.exs-carousel-dots i.active {
  opacity: 0.8;
}

/*arrows*/
.exs-carousel-arrows {
  list-style: none;
  margin: 0;
  padding: 0;
}
.exs-carousel-arrows i {
  cursor: pointer;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  opacity: 0.5;
  transition: opacity 0.2s ease;
}
.exs-carousel-arrows i:hover {
  opacity: 1;
}
.exs-carousel-arrows i:before {
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid #eee;
  border-radius: 2px;
  transform: rotate(225deg);
  border-top: 0;
  border-right: 0;
}
.exs-carousel-arrows i:first-child {
  right: auto;
  left: 0;
}
.exs-carousel-arrows i:first-child:before {
  transform: rotate(45deg);
}