/*------------------------------------------------------------------
Circle theme styles

[Table of contents]
1. Navigation basic styles
2. Vertical navigation
3. Default and sides navigation
4. Navigation over

------------------------------------------------------------------*/
/*------------------------------------------------------------------
[1. Navigation basic styles]
------------------------------------------------------------------*/
.slice-theme-circle .st-chevron-prev,
.slice-theme-circle .st-chevron-next {
  position: relative;
  display: inline-block;
  width: 0.5em;
  height: 1em;
}
.slice-theme-circle .st-chevron-prev.st-center,
.slice-theme-circle .st-chevron-next.st-center {
  width: 0.625em;
}
.slice-theme-circle .st-chevron-prev span,
.slice-theme-circle .st-chevron-next span {
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -1px;
  height: 2px;
  width: 0.7071em;
  background-color: #007bff;
  transform-origin: 1px 50%;
  transition: all 0.1s linear 0s;
}
.slice-theme-circle .st-chevron-prev span:nth-child(1),
.slice-theme-circle .st-chevron-next span:nth-child(1) {
  transform: rotate(-45deg);
}
.slice-theme-circle .st-chevron-prev span:nth-child(2),
.slice-theme-circle .st-chevron-next span:nth-child(2) {
  transform: rotate(45deg);
}
.slice-theme-circle .st-chevron-next {
  transform: rotate(180deg);
}
.slice-theme-circle .slice-arrow {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  height: 32px;
  width: 32px;
  border: solid 2px #007bff;
  border-radius: 50%;
}
.slice-theme-circle .slice-arrow:not(.slice-disabled):hover,
.slice-theme-circle .slice-arrow:not(.slice-disabled):focus {
  color: #0069d9;
  border-color: #0069d9;
}
.slice-theme-circle .slice-arrow:not(.slice-disabled):hover .st-chevron-prev span,
.slice-theme-circle .slice-arrow:not(.slice-disabled):focus .st-chevron-prev span,
.slice-theme-circle .slice-arrow:not(.slice-disabled):hover .st-chevron-next span,
.slice-theme-circle .slice-arrow:not(.slice-disabled):focus .st-chevron-next span {
  background-color: #0069d9;
}
.slice-theme-circle .slice-arrow.slice-disabled {
  border-color: #ccc !important;
}
.slice-theme-circle .slice-arrow.slice-disabled .st-chevron-prev span,
.slice-theme-circle .slice-arrow.slice-disabled .st-chevron-next span {
  background-color: #ccc !important;
}
.slice-theme-circle .slice-dot {
  border-radius: 50%;
  background-color: transparent;
  margin-right: 15px;
  border: 2px solid #007bff;
}
.slice-theme-circle .slice-dot:last-child {
  margin-right: 0;
}
.slice-theme-circle .slice-dot:focus,
.slice-theme-circle .slice-dot:hover {
  background-color: #0069d9;
  border-color: #0069d9;
}
.slice-theme-circle .slice-dot.slice-current {
  background-color: #007bff;
  border-color: #007bff;
}
.slice-theme-circle .slice-arrows-vertical,
.slice-theme-circle .slice-dot-vertical {
  display: none;
}
.slice-theme-circle .slice-arrows-horizontal,
.slice-theme-circle .slice-dot-horizontal {
  display: block;
}
/*------------------------------------------------------------------
[2. Vertical navigation]
------------------------------------------------------------------*/
.slice-theme-circle.st-nav-auto.slice-slider-vertical .st-chevron-prev,
.slice-theme-circle.st-arrows-over-vertical .st-chevron-prev,
.slice-theme-circle.st-arrows-sides-vertical .st-chevron-prev {
  transform: rotate(90deg);
}
.slice-theme-circle.st-nav-auto.slice-slider-vertical .st-chevron-next,
.slice-theme-circle.st-arrows-over-vertical .st-chevron-next,
.slice-theme-circle.st-arrows-sides-vertical .st-chevron-next {
  transform: rotate(-90deg);
}
.slice-theme-circle.st-nav-auto.slice-slider-vertical .slice-arrows-vertical,
.slice-theme-circle.st-arrows-over-vertical .slice-arrows-vertical,
.slice-theme-circle.st-arrows-sides-vertical .slice-arrows-vertical {
  display: block;
}
.slice-theme-circle.st-nav-auto.slice-slider-vertical .slice-arrows-horizontal,
.slice-theme-circle.st-arrows-over-vertical .slice-arrows-horizontal,
.slice-theme-circle.st-arrows-sides-vertical .slice-arrows-horizontal {
  display: none;
}
.slice-theme-circle.st-nav-auto.slice-slider-vertical .slice-dots,
.slice-theme-circle.st-dots-over-vertical .slice-dots,
.slice-theme-circle.st-dots-sides-vertical .slice-dots {
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  width: auto;
}
.slice-theme-circle.st-nav-auto.slice-slider-vertical .slice-dot-vertical,
.slice-theme-circle.st-dots-over-vertical .slice-dot-vertical,
.slice-theme-circle.st-dots-sides-vertical .slice-dot-vertical {
  display: block;
}
.slice-theme-circle.st-nav-auto.slice-slider-vertical .slice-dot-horizontal,
.slice-theme-circle.st-dots-over-vertical .slice-dot-horizontal,
.slice-theme-circle.st-dots-sides-vertical .slice-dot-horizontal {
  display: none;
}
.slice-theme-circle.st-nav-auto.slice-slider-vertical .slice-dot,
.slice-theme-circle.st-dots-over-vertical .slice-dot,
.slice-theme-circle.st-dots-sides-vertical .slice-dot {
  margin-bottom: 15px;
  margin-right: 0;
}
.slice-theme-circle.st-nav-auto.slice-slider-vertical .slice-dot:last-child,
.slice-theme-circle.st-dots-over-vertical .slice-dot:last-child,
.slice-theme-circle.st-dots-sides-vertical .slice-dot:last-child {
  margin-bottom: 0;
}
/*------------------------------------------------------------------
[5. Default|auto and sides navigation]
------------------------------------------------------------------*/
.slice-theme-circle.st-nav-auto:not(.slice-slider-vertical) .slice-arrows-layer,
.slice-theme-circle.st-arrows-sides .slice-arrows-layer {
  -ms-flex-direction: row;
  flex-direction: row;
}
.slice-theme-circle.st-nav-auto:not(.slice-slider-vertical) .slice-arrows-layer > .slice-layer,
.slice-theme-circle.st-arrows-sides .slice-arrows-layer > .slice-layer {
  height: 100%;
}
.slice-theme-circle.st-nav-auto:not(.slice-slider-vertical) .slice-prev,
.slice-theme-circle.st-arrows-sides .slice-prev {
  -ms-flex-order: 4;
  order: 4;
  margin-right: 15px;
}
.slice-theme-circle.st-nav-auto:not(.slice-slider-vertical) .slice-next,
.slice-theme-circle.st-arrows-sides .slice-next {
  -ms-flex-order: 6;
  order: 6;
  margin-left: 15px;
}
.slice-theme-circle.st-nav-auto.slice-slider-vertical .slice-prev,
.slice-theme-circle.st-arrows-sides-vertical .slice-prev {
  -ms-flex-order: 4;
  order: 4;
  margin-bottom: 15px;
}
.slice-theme-circle.st-nav-auto.slice-slider-vertical .slice-next,
.slice-theme-circle.st-arrows-sides-vertical .slice-next {
  -ms-flex-order: 6;
  order: 6;
  margin-top: 15px;
}
.slice-theme-circle.st-nav-auto:not(.slice-slider-vertical) .slice-dots,
.slice-theme-circle.st-dots-sides .slice-dots {
  margin-top: 15px;
}
.slice-theme-circle.st-nav-auto.slice-slider-vertical .slice-dots-layer,
.slice-theme-circle.st-dots-sides-vertical .slice-dots-layer {
  -ms-flex-direction: row;
  flex-direction: row;
}
.slice-theme-circle.st-nav-auto.slice-slider-vertical .slice-dots-layer > .slice-layer,
.slice-theme-circle.st-dots-sides-vertical .slice-dots-layer > .slice-layer {
  height: 100%;
}
.slice-theme-circle.st-nav-auto.slice-slider-vertical .slice-dots,
.slice-theme-circle.st-dots-sides-vertical .slice-dots {
  margin-left: 15px;
}
/*------------------------------------------------------------------
[4. Navigation over]
------------------------------------------------------------------*/
.slice-theme-circle.st-arrows-over .slice-arrow,
.slice-theme-circle.st-arrows-over-vertical .slice-arrow {
  color: #fff;
  border-color: #fff;
}
.slice-theme-circle.st-arrows-over .slice-arrow.slice-disabled,
.slice-theme-circle.st-arrows-over-vertical .slice-arrow.slice-disabled {
  opacity: 0.5;
}
.slice-theme-circle.st-arrows-over .slice-arrow:not(.slice-disabled):hover,
.slice-theme-circle.st-arrows-over-vertical .slice-arrow:not(.slice-disabled):hover,
.slice-theme-circle.st-arrows-over .slice-arrow:not(.slice-disabled):focus,
.slice-theme-circle.st-arrows-over-vertical .slice-arrow:not(.slice-disabled):focus {
  color: $arrow-over-hover;
  border-color: $arrow-over-hover;
}
.slice-theme-circle.st-arrows-over .slice-arrow:not(.slice-disabled):hover .st-chevron-prev span,
.slice-theme-circle.st-arrows-over-vertical .slice-arrow:not(.slice-disabled):hover .st-chevron-prev span,
.slice-theme-circle.st-arrows-over .slice-arrow:not(.slice-disabled):focus .st-chevron-prev span,
.slice-theme-circle.st-arrows-over-vertical .slice-arrow:not(.slice-disabled):focus .st-chevron-prev span,
.slice-theme-circle.st-arrows-over .slice-arrow:not(.slice-disabled):hover .st-chevron-next span,
.slice-theme-circle.st-arrows-over-vertical .slice-arrow:not(.slice-disabled):hover .st-chevron-next span,
.slice-theme-circle.st-arrows-over .slice-arrow:not(.slice-disabled):focus .st-chevron-next span,
.slice-theme-circle.st-arrows-over-vertical .slice-arrow:not(.slice-disabled):focus .st-chevron-next span {
  background-color: $arrow-over-hover;
}
.slice-theme-circle.st-arrows-over .slice-arrow .st-chevron-prev span,
.slice-theme-circle.st-arrows-over-vertical .slice-arrow .st-chevron-prev span,
.slice-theme-circle.st-arrows-over .slice-arrow .st-chevron-next span,
.slice-theme-circle.st-arrows-over-vertical .slice-arrow .st-chevron-next span {
  background-color: #fff;
}
.slice-theme-circle.st-arrows-over .slice-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.slice-theme-circle.st-arrows-over .slice-prev {
  left: 15px;
}
.slice-theme-circle.st-arrows-over .slice-next {
  right: 15px;
}
.slice-theme-circle.st-arrows-over-vertical .slice-arrow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.slice-theme-circle.st-arrows-over-vertical .slice-prev {
  top: 15px;
}
.slice-theme-circle.st-arrows-over-vertical .slice-next {
  bottom: 15px;
}
.slice-theme-circle.st-dots-over .slice-dot,
.slice-theme-circle.st-dots-over-vertical .slice-dot {
  background-color: transparent;
  border-color: #fff;
}
.slice-theme-circle.st-dots-over .slice-dot:focus,
.slice-theme-circle.st-dots-over-vertical .slice-dot:focus,
.slice-theme-circle.st-dots-over .slice-dot:hover,
.slice-theme-circle.st-dots-over-vertical .slice-dot:hover {
  background-color: #0069d9;
  border-color: #fff;
}
.slice-theme-circle.st-dots-over .slice-dot.slice-current,
.slice-theme-circle.st-dots-over-vertical .slice-dot.slice-current {
  background-color: #007bff;
  border-color: #007bff;
}
.slice-theme-circle.st-dots-over .slice-dots {
  position: absolute;
  left: 0;
  bottom: 15px;
}
.slice-theme-circle.st-dots-over-vertical .slice-dots {
  position: absolute;
  top: 0;
  width: auto;
  height: 100%;
  right: 15px;
  -ms-flex-direction: column;
  flex-direction: column;
}
