@charset "UTF-8";
.snake-prev,
.snake-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 32px;
  height: 32px;
  padding: 0;
  background: none;
  -ms-flex: none;
      flex: none;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  -ms-flex-positive: 0;
      flex-grow: 0;
  -webkit-transition: 0.25s ease-out;
  transition: 0.25s ease-out;
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  border-radius: 180%;
}
@media (max-width: 968px) {
  .snake-prev,
  .snake-next {
    width: 26px;
    height: 26px;
    background: none;
  }
}

.snake-prev:hover,
.snake-prev:focus,
.snake-next:hover,
.snake-next:focus {
  color: transparent;
  outline: none;
}

.snake-prev:before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 32px;
  height: 32px;
  background: url("/wp-content/themes/adult/assets/img/chevron-left-black.svg") 0 0 no-repeat;
}
@media (max-width: 968px) {
  .snake-prev:before {
    width: 32px;
    height: 32px;
    background: url("/wp-content/themes/adult/assets/img/chevron-left-black.svg") 0 0 no-repeat;
  }
}
.snake-prev.snake-disabled:before {
  opacity: 0.45;
}

.snake-next:before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 32px;
  height: 32px;
  background: url("/wp-content/themes/adult/assets/img/chevron-right_black.svg") 0 0 no-repeat;
}
@media (max-width: 968px) {
  .snake-next:before {
    width: 32px;
    height: 32px;
    background: url("/wp-content/themes/adult/assets/img/chevron-right_black.svg") 0 0 no-repeat;
  }
}
.snake-next.snake-disabled:before {
  opacity: 0.45;
}

/* Dots */
.snake-dotted.snake-slider {
  margin-bottom: 30px;
}

.snake-dots {
  position: absolute;
  bottom: -32px;
  left: 0;
  right: 0;
  display: block;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.snake-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 2px;
  padding: 0;
  cursor: pointer;
}

.snake-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.snake-dots li button:hover,
.snake-dots li button:focus {
  outline: none;
}

.snake-dots li button:hover:before,
.snake-dots li button:focus:before {
  opacity: 1;
}

.snake-dots li button:before {
  font-size: 24px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "•";
  text-align: center;
  color: lightgray;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.snake-dots li.snake-active button:before {
  color: #607D8B;
}/*# sourceMappingURL=snake-theme.css.map */