@keyframes statusIconAnimation {
  0% {
    background-position: 0 100%;
  }
  100% {
    background-position: 0 0;
  }
}
:root {
  --thumb-size: 50px;
}
.mixSlide-frame {
  z-index: 10;
}
.mixSlide-frame * {
  transition: all 0s ease;
}
.mixSlide-frame.fullscreen {
  position: fixed!important;
  top: 0!important;
  left: 0!important;
  background: rgba(0, 0, 0, 0.7);
  width: 100%!important;
  height: 100%!important;
}
.mixSlide-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #ffffff !important;
}
.mixSlide-frame.fullscreen .mixSlide-container {
  position: absolute!important;
  background: transparent;
}
.mixSlide-container .top {
  top: 0!important;
}
.mixSlide-container .left {
  left: 0!important;
}
.mixSlide-container .right {
  right: 0!important;
}
.mixSlide-container .bottom {
  bottom: 0!important;
}
.mixSlide-container .top-left {
  left: 0!important;
  top: 0!important;
}
.mixSlide-container .bottom-left {
  left: 0!important;
  bottom: 0!important;
}
.mixSlide-container .top-right {
  top: 0!important;
  right: 0!important;
}
.mixSlide-container .bottom-right {
  bottom: 0!important;
  right: 0!important;
}
.mixSlide-images {
  width: 100%;
  height: 100%;
}
.mixSlide-images > div {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.mixSlide-images > div img {
  height: 100%;
  display: block;
  margin: auto;
}
.mixSlide-images > div p {
  position: absolute;
  z-index: 13;
  width: 100%;
  margin: 0;
  padding: 15px;
  font: 1.8em sans-serif;
  color: white;
  text-shadow: 1px 1px black;
}
.mixSlide-images > div p.right,
.mixSlide-images > div p.top-right,
.mixSlide-images > div p.bottom-right {
  text-align: right;
}
.mixSlide-controls {
  position: absolute;
  z-index: 15;
  color: white;
  right: 0;
  font: 2em sans-serif;
  width: 100%;
}
.mixSlide-slide-buttons {
  width: 200px;
  float: right;
  margin: 1%;
  justify-content: space-around;
  display: flex;
}
.mixSlide-slide-buttons span {
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
  cursor: pointer;
  display: inline-block;
  transition: all 0.2s ease;
  color: darkgray;
}
.mixSlide-start-slide {
  background: black!important;
}
.mixSlide-slide-buttons span:hover {
  background: rgba(0, 0, 0, 0.8);
  color: white;
}
.mixSlide-points {
  display: flex;
  margin-left: 2%;
  margin-top: 2%;
  padding: 2px;
}
.mixSlide-points span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-left: 4px;
  background: #e6e6e6;
  box-shadow: 1px 1px 2px black;
  transition: all 0.5s ease;
}
.mixSlide-points span.active,
.mixSlide-points span:hover {
  background: #1e1e1e;
  box-shadow: 1px 1px 2px white;
}
.mixSlide-controls.minimal .mixSlide-points {
  width: 100%;
  justify-content: center!important;
  margin-top: -5% !important;
}
.mixSlide-thumbs {
  position: absolute;
  padding: 10px;
  z-index: 16;
  margin: 0;
  left: 0;
  overflow: auto;
  overflow-x: visible!important;
}
.mixSlide-thumbs.bottom,
.mixSlide-thumbs.top {
  height: var(--thumb-size);
  width: 100%;
}
.mixSlide-thumbs.top-left,
.mixSlide-thumbs.top-right {
  width: var(--thumb-size);
  height: 100%;
}
.mixSlide-thumbs span {
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-block;
  border: 3px solid transparent;
}
.mixSlide-thumbs.bottom span,
.mixSlide-thumbs.top span {
  height: 100%;
  width: var(--thumb-size) !important;
  margin-left: 5px;
}
.mixSlide-thumbs.top-left span,
.mixSlide-thumbs.top-right span {
  width: 100%;
  height: var(--thumb-size) !important;
  margin-top: 5px;
}
.mixSlide-thumbs span:hover,
.mixSlide-thumbs span.active {
  border-color: white;
  box-shadow: 1px 1px 1px black;
}
.mixSlide-thumbs span img {
  height: 100%;
}
/* Animation elements */
.mixSlide-div-over {
  z-index: 12!important;
}
.mixSlide-div-clip {
  margin: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  overflow: hidden;
  position: absolute;
}
/*# sourceMappingURL=mixSlide.css.map */