<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

[data-am-fadeshow] {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #fff;

}
[data-am-fadeshow] .fs-slide {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 1s ease;
  /* Display first child on load */
}
[data-am-fadeshow] .fs-slide:first-child {
  opacity: 1;
}
[data-am-fadeshow] .fs-quick-nav {
  position: absolute;
  bottom: 15px;
  left: 50%;
  z-index: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
[data-am-fadeshow] .fs-quick-btn {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 0 2px;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 200ms ease;
  background-color: rgba(255, 255, 255, 0.8);
  /* Set active state to first button on load */
}
[data-am-fadeshow] .fs-quick-btn:hover {
  opacity: 0.8;
}
[data-am-fadeshow] .fs-quick-btn:first-child {
  background-color: coral;
}
[data-am-fadeshow] .fs-prev-btn, [data-am-fadeshow] .fs-next-btn {
  position: absolute;
  display: none;
  top: 0;
  bottom: 0;
  width: 100px;
  cursor: pointer;
  font-family: sans-serif;
  background-color: rgba(122, 122, 122, 0.15);
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  transition: all 200ms ease;
}
@media (max-width: 500px) {
  [data-am-fadeshow] .fs-prev-btn, [data-am-fadeshow] .fs-next-btn {
    width: 50%;
  }
}
[data-am-fadeshow] .fs-prev-btn:before, [data-am-fadeshow] .fs-next-btn:before {
  position: absolute;
  top: 50%;
  font-size: 3vw;
  color: rgba(255, 255, 255, 0.5);
}
[data-am-fadeshow] .fs-prev-btn:hover, [data-am-fadeshow] .fs-next-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
@media (max-width: 500px) {
  [data-am-fadeshow] .fs-prev-btn:hover, [data-am-fadeshow] .fs-next-btn:hover {
    background-color: rgba(255, 255, 255, 0);
  }
}
[data-am-fadeshow] .fs-prev-btn {
  left: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
[data-am-fadeshow] .fs-prev-btn:before {
  content: "❮";
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #a20f1f;
}
@media (max-width: 500px) {
  [data-am-fadeshow] .fs-prev-btn:before {
    left: 30px;
  }
}
@media (max-width: 500px) {
  [data-am-fadeshow] .fs-prev-btn {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
[data-am-fadeshow] .fs-next-btn {
  right: 0;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
[data-am-fadeshow] .fs-next-btn:before {
  content: "❯";
  right: 50%;
  -webkit-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  color: #a20f1f;
}
@media (max-width: 500px) {
  [data-am-fadeshow] .fs-next-btn:before {
    right: 30px;
  }
}
@media (max-width: 500px) {
  [data-am-fadeshow] .fs-next-btn {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
[data-am-fadeshow] input[type="radio"] {
  position: fixed;
  top: -9999px;}
[data-am-fadeshow] input[type="radio"]:checked {
  /* This loop handles the slide switching and quick navigation active state */
  /* Hide navigation if only one slide */
}



[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(32) {
  /* Show slide */
  /* Add active state to dot */
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(32) ~ .fs-slides .fs-slide {
  opacity: 0;
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(32) ~ .fs-slides .fs-slide:nth-child(32) {
  opacity: 1;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(32) ~ .fs-quick-nav .fs-quick-btn {
  background-color: rgba(255, 255, 255, 0.8);
  /* Cancel autoplay */
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(32) ~ .fs-quick-nav .fs-quick-btn:nth-child(32) {
  background-color: coral;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(32) ~ .fs-quick-nav .fs-quick-btn:nth-child(32):hover {
  opacity: 1;
}



[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(31) {
  /* Show slide */
  /* Add active state to dot */
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(31) ~ .fs-slides .fs-slide {
  opacity: 0;
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(31) ~ .fs-slides .fs-slide:nth-child(31) {
  opacity: 1;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(31) ~ .fs-quick-nav .fs-quick-btn {
  background-color: rgba(255, 255, 255, 0.8);
  /* Cancel autoplay */
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(31) ~ .fs-quick-nav .fs-quick-btn:nth-child(31) {
  background-color: coral;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(31) ~ .fs-quick-nav .fs-quick-btn:nth-child(31):hover {
  opacity: 1;
}


[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(30) {
  /* Show slide */
  /* Add active state to dot */
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(30) ~ .fs-slides .fs-slide {
  opacity: 0;
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(30) ~ .fs-slides .fs-slide:nth-child(30) {
  opacity: 1;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(30) ~ .fs-quick-nav .fs-quick-btn {
  background-color: rgba(255, 255, 255, 0.8);
  /* Cancel autoplay */
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(30) ~ .fs-quick-nav .fs-quick-btn:nth-child(30) {
  background-color: coral;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(30) ~ .fs-quick-nav .fs-quick-btn:nth-child(30):hover {
  opacity: 1;
}



[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(29) {
  /* Show slide */
  /* Add active state to dot */
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(29) ~ .fs-slides .fs-slide {
  opacity: 0;
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(29) ~ .fs-slides .fs-slide:nth-child(29) {
  opacity: 1;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(29) ~ .fs-quick-nav .fs-quick-btn {
  background-color: rgba(255, 255, 255, 0.8);
  /* Cancel autoplay */
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(29) ~ .fs-quick-nav .fs-quick-btn:nth-child(29) {
  background-color: coral;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(29) ~ .fs-quick-nav .fs-quick-btn:nth-child(29):hover {
  opacity: 1;
}



[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(28) {
  /* Show slide */
  /* Add active state to dot */
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(28) ~ .fs-slides .fs-slide {
  opacity: 0;
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(28) ~ .fs-slides .fs-slide:nth-child(28) {
  opacity: 1;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(28) ~ .fs-quick-nav .fs-quick-btn {
  background-color: rgba(255, 255, 255, 0.8);
  /* Cancel autoplay */
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(28) ~ .fs-quick-nav .fs-quick-btn:nth-child(28) {
  background-color: coral;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(28) ~ .fs-quick-nav .fs-quick-btn:nth-child(28):hover {
  opacity: 1;
}


[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(27) {
  /* Show slide */
  /* Add active state to dot */
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(27) ~ .fs-slides .fs-slide {
  opacity: 0;
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(27) ~ .fs-slides .fs-slide:nth-child(27) {
  opacity: 1;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(27) ~ .fs-quick-nav .fs-quick-btn {
  background-color: rgba(255, 255, 255, 0.8);
  /* Cancel autoplay */
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(27) ~ .fs-quick-nav .fs-quick-btn:nth-child(27) {
  background-color: coral;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(27) ~ .fs-quick-nav .fs-quick-btn:nth-child(27):hover {
  opacity: 1;
}





[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(26) {
  /* Show slide */
  /* Add active state to dot */
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(26) ~ .fs-slides .fs-slide {
  opacity: 0;
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(26) ~ .fs-slides .fs-slide:nth-child(26) {
  opacity: 1;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(26) ~ .fs-quick-nav .fs-quick-btn {
  background-color: rgba(255, 255, 255, 0.8);
  /* Cancel autoplay */
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(26) ~ .fs-quick-nav .fs-quick-btn:nth-child(26) {
  background-color: coral;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(26) ~ .fs-quick-nav .fs-quick-btn:nth-child(26):hover {
  opacity: 1;
}


[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(25) {
  /* Show slide */
  /* Add active state to dot */
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(25) ~ .fs-slides .fs-slide {
  opacity: 0;
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(25) ~ .fs-slides .fs-slide:nth-child(25) {
  opacity: 1;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(25) ~ .fs-quick-nav .fs-quick-btn {
  background-color: rgba(255, 255, 255, 0.8);
  /* Cancel autoplay */
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(25) ~ .fs-quick-nav .fs-quick-btn:nth-child(25) {
  background-color: coral;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(25) ~ .fs-quick-nav .fs-quick-btn:nth-child(25):hover {
  opacity: 1;
}



[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(24) {
  /* Show slide */
  /* Add active state to dot */
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(24) ~ .fs-slides .fs-slide {
  opacity: 0;
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(24) ~ .fs-slides .fs-slide:nth-child(24) {
  opacity: 1;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(24) ~ .fs-quick-nav .fs-quick-btn {
  background-color: rgba(255, 255, 255, 0.8);
  /* Cancel autoplay */
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(24) ~ .fs-quick-nav .fs-quick-btn:nth-child(24) {
  background-color: coral;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(24) ~ .fs-quick-nav .fs-quick-btn:nth-child(24):hover {
  opacity: 1;
}


[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(23) {
  /* Show slide */
  /* Add active state to dot */
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(23) ~ .fs-slides .fs-slide {
  opacity: 0;
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(23) ~ .fs-slides .fs-slide:nth-child(23) {
  opacity: 1;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(23) ~ .fs-quick-nav .fs-quick-btn {
  background-color: rgba(255, 255, 255, 0.8);
  /* Cancel autoplay */
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(23) ~ .fs-quick-nav .fs-quick-btn:nth-child(23) {
  background-color: coral;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(23) ~ .fs-quick-nav .fs-quick-btn:nth-child(23):hover {
  opacity: 1;
}


[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(22) {
  /* Show slide */
  /* Add active state to dot */
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(22) ~ .fs-slides .fs-slide {
  opacity: 0;
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(22) ~ .fs-slides .fs-slide:nth-child(22) {
  opacity: 1;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(22) ~ .fs-quick-nav .fs-quick-btn {
  background-color: rgb(195, 191, 196);
  /* Cancel autoplay */
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(22) ~ .fs-quick-nav .fs-quick-btn:nth-child(22) {
  background-color: coral;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(22) ~ .fs-quick-nav .fs-quick-btn:nth-child(22):hover {
  opacity: 1;
}



[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(21) {
  /* Show slide */
  /* Add active state to dot */
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(21) ~ .fs-slides .fs-slide {
  opacity: 0;
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(21) ~ .fs-slides .fs-slide:nth-child(21) {
  opacity: 1;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(21) ~ .fs-quick-nav .fs-quick-btn {
  background-color: rgba(255, 255, 255, 0.8);
  /* Cancel autoplay */
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(21) ~ .fs-quick-nav .fs-quick-btn:nth-child(21) {
  background-color: coral;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(21) ~ .fs-quick-nav .fs-quick-btn:nth-child(21):hover {
  opacity: 1;
}



[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(20) {
  /* Show slide */
  /* Add active state to dot */
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(20) ~ .fs-slides .fs-slide {
  opacity: 0;
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(20) ~ .fs-slides .fs-slide:nth-child(20) {
  opacity: 1;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(20) ~ .fs-quick-nav .fs-quick-btn {
  background-color: rgba(255, 255, 255, 0.8);
  /* Cancel autoplay */
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(20) ~ .fs-quick-nav .fs-quick-btn:nth-child(20) {
  background-color: coral;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(20) ~ .fs-quick-nav .fs-quick-btn:nth-child(20):hover {
  opacity: 1;
}



[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(19) {
  /* Show slide */
  /* Add active state to dot */
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(19) ~ .fs-slides .fs-slide {
  opacity: 0;
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(19) ~ .fs-slides .fs-slide:nth-child(19) {
  opacity: 1;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(19) ~ .fs-quick-nav .fs-quick-btn {
  background-color: rgb(195, 191, 196);
  /* Cancel autoplay */
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(19) ~ .fs-quick-nav .fs-quick-btn:nth-child(19) {
  background-color: coral;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(19) ~ .fs-quick-nav .fs-quick-btn:nth-child(19):hover {
  opacity: 1;
}

[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(18) {
  /* Show slide */
  /* Add active state to dot */
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(18) ~ .fs-slides .fs-slide {
  opacity: 0;
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(18) ~ .fs-slides .fs-slide:nth-child(18) {
  opacity: 1;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(18) ~ .fs-quick-nav .fs-quick-btn {
  background-color: rgba(255, 255, 255, 0.8);
  /* Cancel autoplay */
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(18) ~ .fs-quick-nav .fs-quick-btn:nth-child(18) {
  background-color: coral;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(18) ~ .fs-quick-nav .fs-quick-btn:nth-child(18):hover {
  opacity: 1;
}

[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(17) {
  /* Show slide */
  /* Add active state to dot */
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(17) ~ .fs-slides .fs-slide {
  opacity: 0;
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(17) ~ .fs-slides .fs-slide:nth-child(17) {
  opacity: 1;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(17) ~ .fs-quick-nav .fs-quick-btn {
  background-color: rgba(255, 255, 255, 0.8);
  /* Cancel autoplay */
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(17) ~ .fs-quick-nav .fs-quick-btn:nth-child(17) {
  background-color: coral;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(17) ~ .fs-quick-nav .fs-quick-btn:nth-child(17):hover {
  opacity: 1;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(16) {
  /* Show slide */
  /* Add active state to dot */
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(16) ~ .fs-slides .fs-slide {
  opacity: 0;
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(16) ~ .fs-slides .fs-slide:nth-child(16) {
  opacity: 1;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(16) ~ .fs-quick-nav .fs-quick-btn {
  background-color: rgba(255, 255, 255, 0.8);
  /* Cancel autoplay */
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(16) ~ .fs-quick-nav .fs-quick-btn:nth-child(16) {
  background-color: coral;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(16) ~ .fs-quick-nav .fs-quick-btn:nth-child(16):hover {
  opacity: 1;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(15) {
  /* Show slide */
  /* Add active state to dot */
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(15) ~ .fs-slides .fs-slide {
  opacity: 0;
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(15) ~ .fs-slides .fs-slide:nth-child(15) {
  opacity: 1;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(15) ~ .fs-quick-nav .fs-quick-btn {
  background-color: rgba(255, 255, 255, 0.8);
  /* Cancel autoplay */
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(15) ~ .fs-quick-nav .fs-quick-btn:nth-child(15) {
  background-color: coral;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(15) ~ .fs-quick-nav .fs-quick-btn:nth-child(15):hover {
  opacity: 1;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(14) {
  /* Show slide */
  /* Add active state to dot */
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(14) ~ .fs-slides .fs-slide {
  opacity: 0;
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(14) ~ .fs-slides .fs-slide:nth-child(14) {
  opacity: 1;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(14) ~ .fs-quick-nav .fs-quick-btn {
  background-color: rgba(255, 255, 255, 0.8);
  /* Cancel autoplay */
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(14) ~ .fs-quick-nav .fs-quick-btn:nth-child(14) {
  background-color: coral;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(14) ~ .fs-quick-nav .fs-quick-btn:nth-child(14):hover {
  opacity: 1;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(13) {
  /* Show slide */
  /* Add active state to dot */
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(13) ~ .fs-slides .fs-slide {
  opacity: 0;
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(13) ~ .fs-slides .fs-slide:nth-child(13) {
  opacity: 1;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(13) ~ .fs-quick-nav .fs-quick-btn {
  background-color: rgb(195, 191, 196);
  /* Cancel autoplay */
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(13) ~ .fs-quick-nav .fs-quick-btn:nth-child(13) {
  background-color: coral;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(13) ~ .fs-quick-nav .fs-quick-btn:nth-child(13):hover {
  opacity: 1;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(12) {
  /* Show slide */
  /* Add active state to dot */
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(12) ~ .fs-slides .fs-slide {
  opacity: 0;
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(12) ~ .fs-slides .fs-slide:nth-child(12) {
  opacity: 1;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(12) ~ .fs-quick-nav .fs-quick-btn {
  background-color: rgb(195, 191, 196);
  /* Cancel autoplay */
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(12) ~ .fs-quick-nav .fs-quick-btn:nth-child(12) {
  background-color: coral;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(12) ~ .fs-quick-nav .fs-quick-btn:nth-child(12):hover {
  opacity: 1;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(11) {
  /* Show slide */
  /* Add active state to dot */
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(11) ~ .fs-slides .fs-slide {
  opacity: 0;
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(11) ~ .fs-slides .fs-slide:nth-child(11) {
  opacity: 1;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(11) ~ .fs-quick-nav .fs-quick-btn {
  background-color: rgb(195, 191, 196);
  /* Cancel autoplay */
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(11) ~ .fs-quick-nav .fs-quick-btn:nth-child(11) {
  background-color: coral;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(11) ~ .fs-quick-nav .fs-quick-btn:nth-child(11):hover {
  opacity: 1;
}

[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(10) {
  /* Show slide */
  /* Add active state to dot */
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(10) ~ .fs-slides .fs-slide {
  opacity: 0;
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(10) ~ .fs-slides .fs-slide:nth-child(10) {
  opacity: 1;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(10) ~ .fs-quick-nav .fs-quick-btn {
  background-color: rgba(255, 255, 255, 0.8);
  /* Cancel autoplay */
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(10) ~ .fs-quick-nav .fs-quick-btn:nth-child(10) {
  background-color: coral;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(10) ~ .fs-quick-nav .fs-quick-btn:nth-child(10):hover {
  opacity: 1;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(9) {
  /* Show slide */
  /* Add active state to dot */
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(9) ~ .fs-slides .fs-slide {
  opacity: 0;
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(9) ~ .fs-slides .fs-slide:nth-child(9) {
  opacity: 1;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(9) ~ .fs-quick-nav .fs-quick-btn {
  background-color: rgb(195, 191, 196);
  /* Cancel autoplay */
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(9) ~ .fs-quick-nav .fs-quick-btn:nth-child(9) {
  background-color: coral;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(9) ~ .fs-quick-nav .fs-quick-btn:nth-child(9):hover {
  opacity: 1;
}

[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(8) {
  /* Show slide */
  /* Add active state to dot */
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(8) ~ .fs-slides .fs-slide {
  opacity: 0;
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(8) ~ .fs-slides .fs-slide:nth-child(8) {
  opacity: 1;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(8) ~ .fs-quick-nav .fs-quick-btn {
  background-color: rgb(195, 191, 196);
  /* Cancel autoplay */
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(8) ~ .fs-quick-nav .fs-quick-btn:nth-child(8) {
  background-color: coral;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(8) ~ .fs-quick-nav .fs-quick-btn:nth-child(8):hover {
  opacity: 1;
}

[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(7) {
  /* Show slide */
  /* Add active state to dot */
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(7) ~ .fs-slides .fs-slide {
  opacity: 0;
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(7) ~ .fs-slides .fs-slide:nth-child(7) {
  opacity: 1;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(7) ~ .fs-quick-nav .fs-quick-btn {
  background-color: rgba(255, 255, 255, 0.8);
  /* Cancel autoplay */
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(7) ~ .fs-quick-nav .fs-quick-btn:nth-child(7) {
  background-color: coral;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(7) ~ .fs-quick-nav .fs-quick-btn:nth-child(7):hover {
  opacity: 1;
}


[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(6) {
  /* Show slide */
  /* Add active state to dot */
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(6) ~ .fs-slides .fs-slide {
  opacity: 0;
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(6) ~ .fs-slides .fs-slide:nth-child(6) {
  opacity: 1;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(6) ~ .fs-quick-nav .fs-quick-btn {
  background-color: rgba(255, 255, 255, 0.8);
  /* Cancel autoplay */
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(6) ~ .fs-quick-nav .fs-quick-btn:nth-child(6) {
  background-color: coral;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(6) ~ .fs-quick-nav .fs-quick-btn:nth-child(6):hover {
  opacity: 1;
}

[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(5) {
  /* Show slide */
  /* Add active state to dot */
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(5) ~ .fs-slides .fs-slide {
  opacity: 0;
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(5) ~ .fs-slides .fs-slide:nth-child(5) {
  opacity: 1;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(5) ~ .fs-quick-nav .fs-quick-btn {
  background-color: rgba(255, 255, 255, 0.8);
  /* Cancel autoplay */
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(5) ~ .fs-quick-nav .fs-quick-btn:nth-child(5) {
  background-color: coral;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(5) ~ .fs-quick-nav .fs-quick-btn:nth-child(5):hover {
  opacity: 1;
}

[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(4) {
  /* Show slide */
  /* Add active state to dot */
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(4) ~ .fs-slides .fs-slide {
  opacity: 0;
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(4) ~ .fs-slides .fs-slide:nth-child(4) {
  opacity: 1;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(4) ~ .fs-quick-nav .fs-quick-btn {
  background-color: rgb(195, 191, 196);
  /* Cancel autoplay */
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(4) ~ .fs-quick-nav .fs-quick-btn:nth-child(4) {
  background-color: coral;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(4) ~ .fs-quick-nav .fs-quick-btn:nth-child(4):hover {
  opacity: 1;
}

[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(3) {
  /* Show slide */
  /* Add active state to dot */
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(3) ~ .fs-slides .fs-slide {
  opacity: 0;
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(3) ~ .fs-slides .fs-slide:nth-child(3) {
  opacity: 1;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(3) ~ .fs-quick-nav .fs-quick-btn {
  background-color: rgba(255, 255, 255, 0.8);
  /* Cancel autoplay */
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(3) ~ .fs-quick-nav .fs-quick-btn:nth-child(3) {
  background-color: coral;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(3) ~ .fs-quick-nav .fs-quick-btn:nth-child(3):hover {
  opacity: 1;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(2) {
  /* Show slide */
  /* Add active state to dot */
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(2) ~ .fs-slides .fs-slide {
  opacity: 0;
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(2) ~ .fs-slides .fs-slide:nth-child(2) {
  opacity: 1;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(2) ~ .fs-quick-nav .fs-quick-btn {
  background-color: rgba(255, 255, 255, 0.8);
  /* Cancel autoplay */
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(2) ~ .fs-quick-nav .fs-quick-btn:nth-child(2) {
  background-color: coral;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(2) ~ .fs-quick-nav .fs-quick-btn:nth-child(2):hover {
  opacity: 1;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(1) {
  /* Show slide */
  /* Add active state to dot */
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(1) ~ .fs-slides .fs-slide {
  opacity: 0;
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(1) ~ .fs-slides .fs-slide:nth-child(1) {
  opacity: 1;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(1) ~ .fs-quick-nav .fs-quick-btn {
  background-color: rgba(255, 255, 255, 0.8);
  /* Cancel autoplay */
  -webkit-animation: none !important;
  animation: none !important;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(1) ~ .fs-quick-nav .fs-quick-btn:nth-child(1) {
  background-color: coral;
}
[data-am-fadeshow] input[type="radio"]:checked:nth-of-type(1) ~ .fs-quick-nav .fs-quick-btn:nth-child(1):hover {
  opacity: 1;
}
[data-am-fadeshow] input[type="radio"]:checked:first-of-type:last-of-type ~ .fs-quick-nav,
[data-am-fadeshow] input[type="radio"]:checked:first-of-type:last-of-type ~ .fs-prev-nav,
[data-am-fadeshow] input[type="radio"]:checked:first-of-type:last-of-type ~ .fs-next-nav {
  display: none !important;
}
[data-am-fadeshow]:hover .fs-prev-btn,
[data-am-fadeshow]:hover .fs-next-btn {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

/*
 * ===== PREV/NEXT NAVIGATION =====
 *
 * This section handles the prev/next navigation.
 */
/* Handle Prev/Next buttons */



[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(26) {
  /* Show previous button */
  /* Show next button */
  /* Show last prev button if first slide */
  /* Show first next button if last slide */
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(27) ~ .fs-prev-nav .fs-prev-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(27) ~ .fs-prev-nav .fs-prev-btn:nth-child(26) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(27) ~ .fs-next-nav .fs-next-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(27) ~ .fs-next-nav .fs-next-btn:nth-child(1) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(27):first-of-type ~ .fs-prev-nav .fs-prev-btn:last-child {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(27):last-of-type ~ .fs-next-nav .fs-next-btn:first-child {
  display: block;
}










[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(26) {
  /* Show previous button */
  /* Show next button */
  /* Show last prev button if first slide */
  /* Show first next button if last slide */
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(26) ~ .fs-prev-nav .fs-prev-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(26) ~ .fs-prev-nav .fs-prev-btn:nth-child(25) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(26) ~ .fs-next-nav .fs-next-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(26) ~ .fs-next-nav .fs-next-btn:nth-child(27) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(26):first-of-type ~ .fs-prev-nav .fs-prev-btn:last-child {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(26):last-of-type ~ .fs-next-nav .fs-next-btn:first-child {
  display: block;
}


[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(25) {
  /* Show previous button */
  /* Show next button */
  /* Show last prev button if first slide */
  /* Show first next button if last slide */
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(25) ~ .fs-prev-nav .fs-prev-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(25) ~ .fs-prev-nav .fs-prev-btn:nth-child(24) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(25) ~ .fs-next-nav .fs-next-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(25) ~ .fs-next-nav .fs-next-btn:nth-child(26) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(25):first-of-type ~ .fs-prev-nav .fs-prev-btn:last-child {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(25):last-of-type ~ .fs-next-nav .fs-next-btn:first-child {
  display: block;
}




[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(24) {
  /* Show previous button */
  /* Show next button */
  /* Show last prev button if first slide */
  /* Show first next button if last slide */
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(24) ~ .fs-prev-nav .fs-prev-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(24) ~ .fs-prev-nav .fs-prev-btn:nth-child(23) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(24) ~ .fs-next-nav .fs-next-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(24) ~ .fs-next-nav .fs-next-btn:nth-child(25) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(24):first-of-type ~ .fs-prev-nav .fs-prev-btn:last-child {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(24):last-of-type ~ .fs-next-nav .fs-next-btn:first-child {
  display: block;
}


[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(23) {
  /* Show previous button */
  /* Show next button */
  /* Show last prev button if first slide */
  /* Show first next button if last slide */
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(23) ~ .fs-prev-nav .fs-prev-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(23) ~ .fs-prev-nav .fs-prev-btn:nth-child(22) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(23) ~ .fs-next-nav .fs-next-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(23) ~ .fs-next-nav .fs-next-btn:nth-child(24) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(23):first-of-type ~ .fs-prev-nav .fs-prev-btn:last-child {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(23):last-of-type ~ .fs-next-nav .fs-next-btn:first-child {
  display: block;
}


[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(22) {
  /* Show previous button */
  /* Show next button */
  /* Show last prev button if first slide */
  /* Show first next button if last slide */
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(22) ~ .fs-prev-nav .fs-prev-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(22) ~ .fs-prev-nav .fs-prev-btn:nth-child(22) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(22) ~ .fs-next-nav .fs-next-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(22) ~ .fs-next-nav .fs-next-btn:nth-child(23) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(22):first-of-type ~ .fs-prev-nav .fs-prev-btn:last-child {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(22):last-of-type ~ .fs-next-nav .fs-next-btn:first-child {
  display: block;
}



[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(21) {
  /* Show previous button */
  /* Show next button */
  /* Show last prev button if first slide */
  /* Show first next button if last slide */
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(21) ~ .fs-prev-nav .fs-prev-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(21) ~ .fs-prev-nav .fs-prev-btn:nth-child(20) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(21) ~ .fs-next-nav .fs-next-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(21) ~ .fs-next-nav .fs-next-btn:nth-child(22) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(21):first-of-type ~ .fs-prev-nav .fs-prev-btn:last-child {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(21):last-of-type ~ .fs-next-nav .fs-next-btn:first-child {
  display: block;
}


[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(20) {
  /* Show previous button */
  /* Show next button */
  /* Show last prev button if first slide */
  /* Show first next button if last slide */
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(20) ~ .fs-prev-nav .fs-prev-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(20) ~ .fs-prev-nav .fs-prev-btn:nth-child(19) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(20) ~ .fs-next-nav .fs-next-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(20) ~ .fs-next-nav .fs-next-btn:nth-child(21) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(20):first-of-type ~ .fs-prev-nav .fs-prev-btn:last-child {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(20):last-of-type ~ .fs-next-nav .fs-next-btn:first-child {
  display: block;
}


[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(19) {
  /* Show previous button */
  /* Show next button */
  /* Show last prev button if first slide */
  /* Show first next button if last slide */
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(19) ~ .fs-prev-nav .fs-prev-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(19) ~ .fs-prev-nav .fs-prev-btn:nth-child(18) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(19) ~ .fs-next-nav .fs-next-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(19) ~ .fs-next-nav .fs-next-btn:nth-child(20) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(19):first-of-type ~ .fs-prev-nav .fs-prev-btn:last-child {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(19):last-of-type ~ .fs-next-nav .fs-next-btn:first-child {
  display: block;
}

[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(18) {
  /* Show previous button */
  /* Show next button */
  /* Show last prev button if first slide */
  /* Show first next button if last slide */
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(18) ~ .fs-prev-nav .fs-prev-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(18) ~ .fs-prev-nav .fs-prev-btn:nth-child(17) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(18) ~ .fs-next-nav .fs-next-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(18) ~ .fs-next-nav .fs-next-btn:nth-child(19) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(18):first-of-type ~ .fs-prev-nav .fs-prev-btn:last-child {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(18):last-of-type ~ .fs-next-nav .fs-next-btn:first-child {
  display: block;
}

[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(17) {
  /* Show previous button */
  /* Show next button */
  /* Show last prev button if first slide */
  /* Show first next button if last slide */
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(17) ~ .fs-prev-nav .fs-prev-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(17) ~ .fs-prev-nav .fs-prev-btn:nth-child(16) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(17) ~ .fs-next-nav .fs-next-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(17) ~ .fs-next-nav .fs-next-btn:nth-child(18) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(17):first-of-type ~ .fs-prev-nav .fs-prev-btn:last-child {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(17):last-of-type ~ .fs-next-nav .fs-next-btn:first-child {
  display: block;
}


[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(16) {
  /* Show previous button */
  /* Show next button */
  /* Show last prev button if first slide */
  /* Show first next button if last slide */
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(16) ~ .fs-prev-nav .fs-prev-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(16) ~ .fs-prev-nav .fs-prev-btn:nth-child(15) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(16) ~ .fs-next-nav .fs-next-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(16) ~ .fs-next-nav .fs-next-btn:nth-child(17) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(16):first-of-type ~ .fs-prev-nav .fs-prev-btn:last-child {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(16):last-of-type ~ .fs-next-nav .fs-next-btn:first-child {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(15) {
  /* Show previous button */
  /* Show next button */
  /* Show last prev button if first slide */
  /* Show first next button if last slide */
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(15) ~ .fs-prev-nav .fs-prev-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(15) ~ .fs-prev-nav .fs-prev-btn:nth-child(14) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(15) ~ .fs-next-nav .fs-next-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(15) ~ .fs-next-nav .fs-next-btn:nth-child(16) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(15):first-of-type ~ .fs-prev-nav .fs-prev-btn:last-child {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(15):last-of-type ~ .fs-next-nav .fs-next-btn:first-child {
  display: block;
}

[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(14) {
  /* Show previous button */
  /* Show next button */
  /* Show last prev button if first slide */
  /* Show first next button if last slide */
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(14) ~ .fs-prev-nav .fs-prev-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(14) ~ .fs-prev-nav .fs-prev-btn:nth-child(13) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(14) ~ .fs-next-nav .fs-next-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(14) ~ .fs-next-nav .fs-next-btn:nth-child(15) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(14):first-of-type ~ .fs-prev-nav .fs-prev-btn:last-child {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(14):last-of-type ~ .fs-next-nav .fs-next-btn:first-child {
  display: block;
}


[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(13) {
  /* Show previous button */
  /* Show next button */
  /* Show last prev button if first slide */
  /* Show first next button if last slide */
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(13) ~ .fs-prev-nav .fs-prev-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(13) ~ .fs-prev-nav .fs-prev-btn:nth-child(12) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(13) ~ .fs-next-nav .fs-next-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(13) ~ .fs-next-nav .fs-next-btn:nth-child(14) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(13):first-of-type ~ .fs-prev-nav .fs-prev-btn:last-child {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(13):last-of-type ~ .fs-next-nav .fs-next-btn:first-child {
  display: block;
}



[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(12) {
  /* Show previous button */
  /* Show next button */
  /* Show last prev button if first slide */
  /* Show first next button if last slide */
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(12) ~ .fs-prev-nav .fs-prev-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(12) ~ .fs-prev-nav .fs-prev-btn:nth-child(11) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(12) ~ .fs-next-nav .fs-next-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(12) ~ .fs-next-nav .fs-next-btn:nth-child(13) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(12):first-of-type ~ .fs-prev-nav .fs-prev-btn:last-child {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(12):last-of-type ~ .fs-next-nav .fs-next-btn:first-child {
  display: block;
}



[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(11) {
  /* Show previous button */
  /* Show next button */
  /* Show last prev button if first slide */
  /* Show first next button if last slide */
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(11) ~ .fs-prev-nav .fs-prev-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(11) ~ .fs-prev-nav .fs-prev-btn:nth-child(10) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(11) ~ .fs-next-nav .fs-next-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(11) ~ .fs-next-nav .fs-next-btn:nth-child(12) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(11):first-of-type ~ .fs-prev-nav .fs-prev-btn:last-child {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(11):last-of-type ~ .fs-next-nav .fs-next-btn:first-child {
  display: block;
}


[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(10) {
  /* Show previous button */
  /* Show next button */
  /* Show last prev button if first slide */
  /* Show first next button if last slide */
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(10) ~ .fs-prev-nav .fs-prev-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(10) ~ .fs-prev-nav .fs-prev-btn:nth-child(9) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(10) ~ .fs-next-nav .fs-next-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(10) ~ .fs-next-nav .fs-next-btn:nth-child(11) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(10):first-of-type ~ .fs-prev-nav .fs-prev-btn:last-child {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(10):last-of-type ~ .fs-next-nav .fs-next-btn:first-child {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(9) {
  /* Show previous button */
  /* Show next button */
  /* Show last prev button if first slide */
  /* Show first next button if last slide */
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(9) ~ .fs-prev-nav .fs-prev-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(9) ~ .fs-prev-nav .fs-prev-btn:nth-child(8) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(9) ~ .fs-next-nav .fs-next-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(9) ~ .fs-next-nav .fs-next-btn:nth-child(10) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(9):first-of-type ~ .fs-prev-nav .fs-prev-btn:last-child {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(9):last-of-type ~ .fs-next-nav .fs-next-btn:first-child {
  display: block;
}

[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(8) {
  /* Show previous button */
  /* Show next button */
  /* Show last prev button if first slide */
  /* Show first next button if last slide */
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(8) ~ .fs-prev-nav .fs-prev-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(8) ~ .fs-prev-nav .fs-prev-btn:nth-child(7) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(8) ~ .fs-next-nav .fs-next-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(8) ~ .fs-next-nav .fs-next-btn:nth-child(9) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(8):first-of-type ~ .fs-prev-nav .fs-prev-btn:last-child {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(8):last-of-type ~ .fs-next-nav .fs-next-btn:first-child {
  display: block;
}

[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(7) {
  /* Show previous button */
  /* Show next button */
  /* Show last prev button if first slide */
  /* Show first next button if last slide */
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(7) ~ .fs-prev-nav .fs-prev-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(7) ~ .fs-prev-nav .fs-prev-btn:nth-child(6) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(7) ~ .fs-next-nav .fs-next-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(7) ~ .fs-next-nav .fs-next-btn:nth-child(8) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(7):first-of-type ~ .fs-prev-nav .fs-prev-btn:last-child {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(7):last-of-type ~ .fs-next-nav .fs-next-btn:first-child {
  display: block;
}

[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(6) {
  /* Show previous button */
  /* Show next button */
  /* Show last prev button if first slide */
  /* Show first next button if last slide */
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(6) ~ .fs-prev-nav .fs-prev-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(6) ~ .fs-prev-nav .fs-prev-btn:nth-child(5) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(6) ~ .fs-next-nav .fs-next-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(6) ~ .fs-next-nav .fs-next-btn:nth-child(7) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(6):first-of-type ~ .fs-prev-nav .fs-prev-btn:last-child {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(6):last-of-type ~ .fs-next-nav .fs-next-btn:first-child {
  display: block;
}

[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(5) {
  /* Show previous button */
  /* Show next button */
  /* Show last prev button if first slide */
  /* Show first next button if last slide */
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(5) ~ .fs-prev-nav .fs-prev-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(5) ~ .fs-prev-nav .fs-prev-btn:nth-child(4) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(5) ~ .fs-next-nav .fs-next-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(5) ~ .fs-next-nav .fs-next-btn:nth-child(6) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(5):first-of-type ~ .fs-prev-nav .fs-prev-btn:last-child {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(5):last-of-type ~ .fs-next-nav .fs-next-btn:first-child {
  display: block;
}

[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(4) {
  /* Show previous button */
  /* Show next button */
  /* Show last prev button if first slide */
  /* Show first next button if last slide */
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(4) ~ .fs-prev-nav .fs-prev-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(4) ~ .fs-prev-nav .fs-prev-btn:nth-child(3) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(4) ~ .fs-next-nav .fs-next-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(4) ~ .fs-next-nav .fs-next-btn:nth-child(5) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(4):first-of-type ~ .fs-prev-nav .fs-prev-btn:last-child {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(4):last-of-type ~ .fs-next-nav .fs-next-btn:first-child {
  display: block;
}

[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(3) {
  /* Show previous button */
  /* Show next button */
  /* Show last prev button if first slide */
  /* Show first next button if last slide */
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(3) ~ .fs-prev-nav .fs-prev-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(3) ~ .fs-prev-nav .fs-prev-btn:nth-child(2) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(3) ~ .fs-next-nav .fs-next-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(3) ~ .fs-next-nav .fs-next-btn:nth-child(4) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(3):first-of-type ~ .fs-prev-nav .fs-prev-btn:last-child {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(3):last-of-type ~ .fs-next-nav .fs-next-btn:first-child {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(2) {
  /* Show previous button */
  /* Show next button */
  /* Show last prev button if first slide */
  /* Show first next button if last slide */
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(2) ~ .fs-prev-nav .fs-prev-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(2) ~ .fs-prev-nav .fs-prev-btn:nth-child(1) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(2) ~ .fs-next-nav .fs-next-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(2) ~ .fs-next-nav .fs-next-btn:nth-child(3) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(2):first-of-type ~ .fs-prev-nav .fs-prev-btn:last-child {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(2):last-of-type ~ .fs-next-nav .fs-next-btn:first-child {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(1) {
  /* Show previous button */
  /* Show next button */
  /* Show last prev button if first slide */
  /* Show first next button if last slide */
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(1) ~ .fs-prev-nav .fs-prev-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(1) ~ .fs-prev-nav .fs-prev-btn:nth-child(1) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(1) ~ .fs-next-nav .fs-next-btn {
  display: none;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(1) ~ .fs-next-nav .fs-next-btn:nth-child(2) {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(1):first-of-type ~ .fs-prev-nav .fs-prev-btn:last-child {
  display: block;
}
[data-am-fadeshow~="next-prev-navigation"] input[type="radio"]:checked:nth-of-type(1):last-of-type ~ .fs-next-nav .fs-next-btn:first-child {
  display: block;
}


/*
 * ===== AUTOPLAY =====
 *
 * Functions to handle autoplay.
 * If you're not going to use autoplay, set $autoplay to false.
 * This part tends to compile into a lot of uneccesary CSS otherwise.
 */

@keyframes quickNavAnimation-27
  
 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  4%,
      20% {
    background-color: coral;
  }
  24%,
      100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@-webkit-keyframes quickNavAnimation-27 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  4%,
        20% {
    background-color: coral;
  }
  24%,
        100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@keyframes slidesAnimation-27 {
  0% {
    opacity: 0;
  }
  4%,
      20% {
    opacity: 1;
  }
  24%,
      100% {
    opacity: 0;
  }
}
@-webkit-keyframes slidesAnimation-27 {
  0% {
    opacity: 0;
  }
  4%,
        20% {
    opacity: 1;
  }
  24%,
        100% {
    opacity: 0;
  }
}




[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type {
  /* Slide animation */
  /* Quick navigation animation */
  /* Animation Delay */
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-slides .fs-slide {
  -webkit-animation: slidesAnimation-5 25s infinite;
  animation: slidesAnimation-5 25s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-quick-nav .fs-quick-btn {
  -webkit-animation: quickNavAnimation-5 25s infinite;
  animation: quickNavAnimation-5 25s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-slides .fs-slide:nth-child(27),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(27) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-slides .fs-slide:nth-child(26),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(26) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-slides .fs-slide:nth-child(25),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(25) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-slides .fs-slide:nth-child(24),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(24) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-slides .fs-slide:nth-child(23),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(23) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-slides .fs-slide:nth-child(22),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(22) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-slides .fs-slide:nth-child(21),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(21) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-slides .fs-slide:nth-child(20),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(20) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-slides .fs-slide:nth-child(19),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(19) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-slides .fs-slide:nth-child(18),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(18) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-slides .fs-slide:nth-child(17),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(17) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-slides .fs-slide:nth-child(16),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(16) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-slides .fs-slide:nth-child(15),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(15) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-slides .fs-slide:nth-child(14),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(14) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-slides .fs-slide:nth-child(13),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(13) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-slides .fs-slide:nth-child(12),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(12) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-slides .fs-slide:nth-child(11),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(11) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-slides .fs-slide:nth-child(10),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(10) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-slides .fs-slide:nth-child(9),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(9) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-slides .fs-slide:nth-child(8),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(8) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-slides .fs-slide:nth-child(7),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(7) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-slides .fs-slide:nth-child(6),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(6) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-slides .fs-slide:nth-child(5),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(5) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-slides .fs-slide:nth-child(4),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(4) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-slides .fs-slide:nth-child(3),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(3) {
  -webkit-animation-delay: 9s;
  animation-delay: 9s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-slides .fs-slide:nth-child(2),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(2) {
  -webkit-animation-delay: 14s;
  animation-delay: 14s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-slides .fs-slide:nth-child(1),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(27):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(1) {
  -webkit-animation-delay: 19s;
  animation-delay: 19s;
}















@keyframes quickNavAnimation-26
  
 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  4%,
      20% {
    background-color: coral;
  }
  24%,
      100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@-webkit-keyframes quickNavAnimation-26 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  4%,
        20% {
    background-color: coral;
  }
  24%,
        100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@keyframes slidesAnimation-26 {
  0% {
    opacity: 0;
  }
  4%,
      20% {
    opacity: 1;
  }
  24%,
      100% {
    opacity: 0;
  }
}
@-webkit-keyframes slidesAnimation-26 {
  0% {
    opacity: 0;
  }
  4%,
        20% {
    opacity: 1;
  }
  24%,
        100% {
    opacity: 0;
  }
}




[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type {
  /* Slide animation */
  /* Quick navigation animation */
  /* Animation Delay */
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-slides .fs-slide {
  -webkit-animation: slidesAnimation-5 25s infinite;
  animation: slidesAnimation-5 25s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-quick-nav .fs-quick-btn {
  -webkit-animation: quickNavAnimation-5 25s infinite;
  animation: quickNavAnimation-5 25s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-slides .fs-slide:nth-child(27),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(27) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-slides .fs-slide:nth-child(26),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(26) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-slides .fs-slide:nth-child(25),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(25) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-slides .fs-slide:nth-child(24),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(24) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-slides .fs-slide:nth-child(23),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(23) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-slides .fs-slide:nth-child(22),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(22) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-slides .fs-slide:nth-child(21),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(21) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-slides .fs-slide:nth-child(20),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(20) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-slides .fs-slide:nth-child(19),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(19) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-slides .fs-slide:nth-child(18),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(18) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-slides .fs-slide:nth-child(17),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(17) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-slides .fs-slide:nth-child(16),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(16) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-slides .fs-slide:nth-child(15),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(15) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-slides .fs-slide:nth-child(14),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(14) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-slides .fs-slide:nth-child(13),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(13) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-slides .fs-slide:nth-child(12),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(12) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-slides .fs-slide:nth-child(11),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(11) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-slides .fs-slide:nth-child(10),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(10) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-slides .fs-slide:nth-child(9),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(9) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-slides .fs-slide:nth-child(8),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(8) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-slides .fs-slide:nth-child(7),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(7) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-slides .fs-slide:nth-child(6),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(6) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-slides .fs-slide:nth-child(5),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(5) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-slides .fs-slide:nth-child(4),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(4) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-slides .fs-slide:nth-child(3),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(3) {
  -webkit-animation-delay: 9s;
  animation-delay: 9s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-slides .fs-slide:nth-child(2),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(2) {
  -webkit-animation-delay: 14s;
  animation-delay: 14s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-slides .fs-slide:nth-child(1),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(26):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(1) {
  -webkit-animation-delay: 19s;
  animation-delay: 19s;
}



@keyframes quickNavAnimation-25
  
 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  4%,
      20% {
    background-color: coral;
  }
  24%,
      100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@-webkit-keyframes quickNavAnimation-25 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  4%,
        20% {
    background-color: coral;
  }
  24%,
        100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@keyframes slidesAnimation-25 {
  0% {
    opacity: 0;
  }
  4%,
      20% {
    opacity: 1;
  }
  24%,
      100% {
    opacity: 0;
  }
}
@-webkit-keyframes slidesAnimation-25 {
  0% {
    opacity: 0;
  }
  4%,
        20% {
    opacity: 1;
  }
  24%,
        100% {
    opacity: 0;
  }
}




[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type {
  /* Slide animation */
  /* Quick navigation animation */
  /* Animation Delay */
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-slides .fs-slide {
  -webkit-animation: slidesAnimation-5 25s infinite;
  animation: slidesAnimation-5 25s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-quick-nav .fs-quick-btn {
  -webkit-animation: quickNavAnimation-5 25s infinite;
  animation: quickNavAnimation-5 25s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-slides .fs-slide:nth-child(27),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(27) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-slides .fs-slide:nth-child(26),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(26) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-slides .fs-slide:nth-child(25),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(25) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-slides .fs-slide:nth-child(24),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(24) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-slides .fs-slide:nth-child(23),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(23) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-slides .fs-slide:nth-child(22),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(22) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-slides .fs-slide:nth-child(21),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(21) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-slides .fs-slide:nth-child(20),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(20) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-slides .fs-slide:nth-child(19),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(19) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-slides .fs-slide:nth-child(18),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(18) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-slides .fs-slide:nth-child(17),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(17) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-slides .fs-slide:nth-child(16),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(16) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-slides .fs-slide:nth-child(15),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(15) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-slides .fs-slide:nth-child(14),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(14) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-slides .fs-slide:nth-child(13),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(13) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-slides .fs-slide:nth-child(12),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(12) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-slides .fs-slide:nth-child(11),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(11) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-slides .fs-slide:nth-child(10),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(10) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-slides .fs-slide:nth-child(9),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(9) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-slides .fs-slide:nth-child(8),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(8) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-slides .fs-slide:nth-child(7),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(7) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-slides .fs-slide:nth-child(6),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(6) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-slides .fs-slide:nth-child(5),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(5) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-slides .fs-slide:nth-child(4),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(4) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-slides .fs-slide:nth-child(3),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(3) {
  -webkit-animation-delay: 9s;
  animation-delay: 9s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-slides .fs-slide:nth-child(2),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(2) {
  -webkit-animation-delay: 14s;
  animation-delay: 14s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-slides .fs-slide:nth-child(1),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(25):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(1) {
  -webkit-animation-delay: 19s;
  animation-delay: 19s;
}



@keyframes quickNavAnimation-24
  
 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  4%,
      20% {
    background-color: coral;
  }
  24%,
      100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@-webkit-keyframes quickNavAnimation-24 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  4%,
        20% {
    background-color: coral;
  }
  24%,
        100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@keyframes slidesAnimation-24 {
  0% {
    opacity: 0;
  }
  4%,
      20% {
    opacity: 1;
  }
  24%,
      100% {
    opacity: 0;
  }
}
@-webkit-keyframes slidesAnimation-24 {
  0% {
    opacity: 0;
  }
  4%,
        20% {
    opacity: 1;
  }
  24%,
        100% {
    opacity: 0;
  }
}




[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type {
  /* Slide animation */
  /* Quick navigation animation */
  /* Animation Delay */
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-slides .fs-slide {
  -webkit-animation: slidesAnimation-5 25s infinite;
  animation: slidesAnimation-5 25s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-quick-nav .fs-quick-btn {
  -webkit-animation: quickNavAnimation-5 25s infinite;
  animation: quickNavAnimation-5 25s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-slides .fs-slide:nth-child(27),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(27) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-slides .fs-slide:nth-child(26),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(26) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-slides .fs-slide:nth-child(25),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(25) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-slides .fs-slide:nth-child(24),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(24) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-slides .fs-slide:nth-child(23),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(23) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-slides .fs-slide:nth-child(22),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(22) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-slides .fs-slide:nth-child(21),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(21) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-slides .fs-slide:nth-child(20),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(20) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-slides .fs-slide:nth-child(19),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(19) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-slides .fs-slide:nth-child(18),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(18) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-slides .fs-slide:nth-child(17),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(17) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-slides .fs-slide:nth-child(16),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(16) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-slides .fs-slide:nth-child(15),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(15) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-slides .fs-slide:nth-child(14),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(14) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-slides .fs-slide:nth-child(13),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(13) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-slides .fs-slide:nth-child(12),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(12) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-slides .fs-slide:nth-child(11),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(11) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-slides .fs-slide:nth-child(10),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(10) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-slides .fs-slide:nth-child(9),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(9) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-slides .fs-slide:nth-child(8),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(8) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-slides .fs-slide:nth-child(7),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(7) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-slides .fs-slide:nth-child(6),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(6) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-slides .fs-slide:nth-child(5),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(5) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-slides .fs-slide:nth-child(4),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(4) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-slides .fs-slide:nth-child(3),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(3) {
  -webkit-animation-delay: 9s;
  animation-delay: 9s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-slides .fs-slide:nth-child(2),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(2) {
  -webkit-animation-delay: 14s;
  animation-delay: 14s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-slides .fs-slide:nth-child(1),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(24):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(1) {
  -webkit-animation-delay: 19s;
  animation-delay: 19s;
}



@keyframes quickNavAnimation-23
  
 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  4%,
      20% {
    background-color: coral;
  }
  24%,
      100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@-webkit-keyframes quickNavAnimation-23 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  4%,
        20% {
    background-color: coral;
  }
  24%,
        100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@keyframes slidesAnimation-23 {
  0% {
    opacity: 0;
  }
  4%,
      20% {
    opacity: 1;
  }
  24%,
      100% {
    opacity: 0;
  }
}
@-webkit-keyframes slidesAnimation-23 {
  0% {
    opacity: 0;
  }
  4%,
        20% {
    opacity: 1;
  }
  24%,
        100% {
    opacity: 0;
  }
}




[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type {
  /* Slide animation */
  /* Quick navigation animation */
  /* Animation Delay */
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-slides .fs-slide {
  -webkit-animation: slidesAnimation-5 25s infinite;
  animation: slidesAnimation-5 25s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-quick-nav .fs-quick-btn {
  -webkit-animation: quickNavAnimation-5 25s infinite;
  animation: quickNavAnimation-5 25s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-slides .fs-slide:nth-child(27),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(27) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-slides .fs-slide:nth-child(26),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(26) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-slides .fs-slide:nth-child(25),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(25) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-slides .fs-slide:nth-child(24),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(24) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-slides .fs-slide:nth-child(23),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(23) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-slides .fs-slide:nth-child(22),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(22) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-slides .fs-slide:nth-child(21),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(21) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-slides .fs-slide:nth-child(20),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(20) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-slides .fs-slide:nth-child(19),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(19) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-slides .fs-slide:nth-child(18),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(18) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-slides .fs-slide:nth-child(17),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(17) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-slides .fs-slide:nth-child(16),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(16) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-slides .fs-slide:nth-child(15),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(15) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-slides .fs-slide:nth-child(14),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(14) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-slides .fs-slide:nth-child(13),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(13) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-slides .fs-slide:nth-child(12),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(12) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-slides .fs-slide:nth-child(11),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(11) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-slides .fs-slide:nth-child(10),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(10) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-slides .fs-slide:nth-child(9),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(9) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-slides .fs-slide:nth-child(8),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(8) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-slides .fs-slide:nth-child(7),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(7) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-slides .fs-slide:nth-child(6),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(6) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-slides .fs-slide:nth-child(5),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(5) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-slides .fs-slide:nth-child(4),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(4) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-slides .fs-slide:nth-child(3),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(3) {
  -webkit-animation-delay: 9s;
  animation-delay: 9s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-slides .fs-slide:nth-child(2),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(2) {
  -webkit-animation-delay: 14s;
  animation-delay: 14s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-slides .fs-slide:nth-child(1),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(23):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(1) {
  -webkit-animation-delay: 19s;
  animation-delay: 19s;
}



@keyframes quickNavAnimation-22
  
 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  4%,
      20% {
    background-color: coral;
  }
  24%,
      100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@-webkit-keyframes quickNavAnimation-22 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  4%,
        20% {
    background-color: coral;
  }
  24%,
        100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@keyframes slidesAnimation-22 {
  0% {
    opacity: 0;
  }
  4%,
      20% {
    opacity: 1;
  }
  24%,
      100% {
    opacity: 0;
  }
}
@-webkit-keyframes slidesAnimation-22 {
  0% {
    opacity: 0;
  }
  4%,
        20% {
    opacity: 1;
  }
  24%,
        100% {
    opacity: 0;
  }
}

[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type {
  /* Slide animation */
  /* Quick navigation animation */
  /* Animation Delay */
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-slides .fs-slide {
  -webkit-animation: slidesAnimation-5 25s infinite;
  animation: slidesAnimation-5 25s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-quick-nav .fs-quick-btn {
  -webkit-animation: quickNavAnimation-5 25s infinite;
  animation: quickNavAnimation-5 25s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-slides .fs-slide:nth-child(27),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(27) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-slides .fs-slide:nth-child(26),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(26) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-slides .fs-slide:nth-child(25),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(25) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-slides .fs-slide:nth-child(24),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(24) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-slides .fs-slide:nth-child(23),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(23) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-slides .fs-slide:nth-child(22),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(22) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-slides .fs-slide:nth-child(21),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(21) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-slides .fs-slide:nth-child(20),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(20) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-slides .fs-slide:nth-child(19),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(19) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-slides .fs-slide:nth-child(18),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(18) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-slides .fs-slide:nth-child(17),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(17) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-slides .fs-slide:nth-child(16),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(16) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-slides .fs-slide:nth-child(15),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(15) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-slides .fs-slide:nth-child(14),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(14) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-slides .fs-slide:nth-child(13),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(13) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-slides .fs-slide:nth-child(12),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(12) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-slides .fs-slide:nth-child(11),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(11) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-slides .fs-slide:nth-child(10),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(10) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-slides .fs-slide:nth-child(9),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(9) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-slides .fs-slide:nth-child(8),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(8) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-slides .fs-slide:nth-child(7),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(7) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-slides .fs-slide:nth-child(6),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(6) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-slides .fs-slide:nth-child(5),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(5) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-slides .fs-slide:nth-child(4),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(4) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-slides .fs-slide:nth-child(3),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(3) {
  -webkit-animation-delay: 9s;
  animation-delay: 9s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-slides .fs-slide:nth-child(2),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(2) {
  -webkit-animation-delay: 14s;
  animation-delay: 14s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-slides .fs-slide:nth-child(1),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(22):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(1) {
  -webkit-animation-delay: 19s;
  animation-delay: 19s;
}


@keyframes quickNavAnimation-21
  
 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  4%,
      20% {
    background-color: coral;
  }
  24%,
      100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@-webkit-keyframes quickNavAnimation-21 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  4%,
        20% {
    background-color: coral;
  }
  24%,
        100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@keyframes slidesAnimation-21 {
  0% {
    opacity: 0;
  }
  4%,
      20% {
    opacity: 1;
  }
  24%,
      100% {
    opacity: 0;
  }
}
@-webkit-keyframes slidesAnimation-21 {
  0% {
    opacity: 0;
  }
  4%,
        20% {
    opacity: 1;
  }
  24%,
        100% {
    opacity: 0;
  }
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type {
  /* Slide animation */
  /* Quick navigation animation */
  /* Animation Delay */
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-slides .fs-slide {
  -webkit-animation: slidesAnimation-5 25s infinite;
  animation: slidesAnimation-5 25s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-quick-nav .fs-quick-btn {
  -webkit-animation: quickNavAnimation-5 25s infinite;
  animation: quickNavAnimation-5 25s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-slides .fs-slide:nth-child(27),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(27) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-slides .fs-slide:nth-child(26),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(26) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-slides .fs-slide:nth-child(25),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(25) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-slides .fs-slide:nth-child(24),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(24) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-slides .fs-slide:nth-child(23),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(23) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-slides .fs-slide:nth-child(22),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(22) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-slides .fs-slide:nth-child(21),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(21) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-slides .fs-slide:nth-child(20),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(20) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-slides .fs-slide:nth-child(19),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(19) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-slides .fs-slide:nth-child(18),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(18) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-slides .fs-slide:nth-child(17),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(17) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-slides .fs-slide:nth-child(16),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(16) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-slides .fs-slide:nth-child(15),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(15) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-slides .fs-slide:nth-child(14),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(14) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-slides .fs-slide:nth-child(13),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(13) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-slides .fs-slide:nth-child(12),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(12) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-slides .fs-slide:nth-child(11),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(11) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-slides .fs-slide:nth-child(10),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(10) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-slides .fs-slide:nth-child(9),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(9) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-slides .fs-slide:nth-child(8),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(8) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-slides .fs-slide:nth-child(7),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(7) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-slides .fs-slide:nth-child(6),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(6) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-slides .fs-slide:nth-child(5),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(5) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-slides .fs-slide:nth-child(4),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(4) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-slides .fs-slide:nth-child(3),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(3) {
  -webkit-animation-delay: 9s;
  animation-delay: 9s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-slides .fs-slide:nth-child(2),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(2) {
  -webkit-animation-delay: 14s;
  animation-delay: 14s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-slides .fs-slide:nth-child(1),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(21):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(1) {
  -webkit-animation-delay: 19s;
  animation-delay: 19s;
}


@keyframes quickNavAnimation-20
  
 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  4%,
      20% {
    background-color: coral;
  }
  24%,
      100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@-webkit-keyframes quickNavAnimation-20 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  4%,
        20% {
    background-color: coral;
  }
  24%,
        100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@keyframes slidesAnimation-20 {
  0% {
    opacity: 0;
  }
  4%,
      20% {
    opacity: 1;
  }
  24%,
      100% {
    opacity: 0;
  }
}
@-webkit-keyframes slidesAnimation-20 {
  0% {
    opacity: 0;
  }
  4%,
        20% {
    opacity: 1;
  }
  24%,
        100% {
    opacity: 0;
  }
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type {
  /* Slide animation */
  /* Quick navigation animation */
  /* Animation Delay */
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-slides .fs-slide {
  -webkit-animation: slidesAnimation-5 25s infinite;
  animation: slidesAnimation-5 25s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-quick-nav .fs-quick-btn {
  -webkit-animation: quickNavAnimation-5 25s infinite;
  animation: quickNavAnimation-5 25s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-slides .fs-slide:nth-child(27),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(27) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-slides .fs-slide:nth-child(26),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(26) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-slides .fs-slide:nth-child(25),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(25) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-slides .fs-slide:nth-child(24),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(24) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-slides .fs-slide:nth-child(23),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(23) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-slides .fs-slide:nth-child(22),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(22) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-slides .fs-slide:nth-child(21),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(21) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-slides .fs-slide:nth-child(20),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(20) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-slides .fs-slide:nth-child(19),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(19) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-slides .fs-slide:nth-child(18),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(18) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-slides .fs-slide:nth-child(17),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(17) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-slides .fs-slide:nth-child(16),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(16) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-slides .fs-slide:nth-child(15),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(15) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-slides .fs-slide:nth-child(14),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(14) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-slides .fs-slide:nth-child(13),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(13) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-slides .fs-slide:nth-child(12),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(12) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-slides .fs-slide:nth-child(11),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(11) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-slides .fs-slide:nth-child(10),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(10) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-slides .fs-slide:nth-child(9),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(9) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-slides .fs-slide:nth-child(8),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(8) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-slides .fs-slide:nth-child(7),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(7) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-slides .fs-slide:nth-child(6),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(6) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-slides .fs-slide:nth-child(5),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(5) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-slides .fs-slide:nth-child(4),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(4) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-slides .fs-slide:nth-child(3),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(3) {
  -webkit-animation-delay: 9s;
  animation-delay: 9s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-slides .fs-slide:nth-child(2),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(2) {
  -webkit-animation-delay: 14s;
  animation-delay: 14s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-slides .fs-slide:nth-child(1),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(20):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(1) {
  -webkit-animation-delay: 19s;
  animation-delay: 19s;
}


@keyframes quickNavAnimation-19
  
 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  4%,
      20% {
    background-color: coral;
  }
  24%,
      100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@-webkit-keyframes quickNavAnimation-19 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  4%,
        20% {
    background-color: coral;
  }
  24%,
        100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@keyframes slidesAnimation-19 {
  0% {
    opacity: 0;
  }
  4%,
      20% {
    opacity: 1;
  }
  24%,
      100% {
    opacity: 0;
  }
}
@-webkit-keyframes slidesAnimation-19 {
  0% {
    opacity: 0;
  }
  4%,
        20% {
    opacity: 1;
  }
  24%,
        100% {
    opacity: 0;
  }
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type {
  /* Slide animation */
  /* Quick navigation animation */
  /* Animation Delay */
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-slides .fs-slide {
  -webkit-animation: slidesAnimation-5 25s infinite;
  animation: slidesAnimation-5 25s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-quick-nav .fs-quick-btn {
  -webkit-animation: quickNavAnimation-5 25s infinite;
  animation: quickNavAnimation-5 25s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-slides .fs-slide:nth-child(27),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(27) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-slides .fs-slide:nth-child(26),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(26) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-slides .fs-slide:nth-child(25),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(25) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-slides .fs-slide:nth-child(24),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(24) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-slides .fs-slide:nth-child(23),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(23) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-slides .fs-slide:nth-child(22),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(22) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-slides .fs-slide:nth-child(21),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(21) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-slides .fs-slide:nth-child(20),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(20) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-slides .fs-slide:nth-child(19),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(19) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-slides .fs-slide:nth-child(18),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(18) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-slides .fs-slide:nth-child(17),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(17) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-slides .fs-slide:nth-child(16),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(16) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-slides .fs-slide:nth-child(15),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(15) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-slides .fs-slide:nth-child(14),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(14) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-slides .fs-slide:nth-child(13),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(13) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-slides .fs-slide:nth-child(12),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(12) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-slides .fs-slide:nth-child(11),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(11) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-slides .fs-slide:nth-child(10),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(10) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-slides .fs-slide:nth-child(9),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(9) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-slides .fs-slide:nth-child(8),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(8) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-slides .fs-slide:nth-child(7),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(7) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-slides .fs-slide:nth-child(6),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(6) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-slides .fs-slide:nth-child(5),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(5) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-slides .fs-slide:nth-child(4),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(4) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-slides .fs-slide:nth-child(3),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(3) {
  -webkit-animation-delay: 9s;
  animation-delay: 9s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-slides .fs-slide:nth-child(2),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(2) {
  -webkit-animation-delay: 14s;
  animation-delay: 14s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-slides .fs-slide:nth-child(1),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(19):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(1) {
  -webkit-animation-delay: 19s;
  animation-delay: 19s;
}


@keyframes quickNavAnimation-18
  
 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  4%,
      20% {
    background-color: coral;
  }
  24%,
      100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@-webkit-keyframes quickNavAnimation-18 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  4%,
        20% {
    background-color: coral;
  }
  24%,
        100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@keyframes slidesAnimation-18 {
  0% {
    opacity: 0;
  }
  4%,
      20% {
    opacity: 1;
  }
  24%,
      100% {
    opacity: 0;
  }
}
@-webkit-keyframes slidesAnimation-18 {
  0% {
    opacity: 0;
  }
  4%,
        20% {
    opacity: 1;
  }
  24%,
        100% {
    opacity: 0;
  }
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type {
  /* Slide animation */
  /* Quick navigation animation */
  /* Animation Delay */
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-slides .fs-slide {
  -webkit-animation: slidesAnimation-5 25s infinite;
  animation: slidesAnimation-5 25s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-quick-nav .fs-quick-btn {
  -webkit-animation: quickNavAnimation-5 25s infinite;
  animation: quickNavAnimation-5 25s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-slides .fs-slide:nth-child(27),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(27) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-slides .fs-slide:nth-child(26),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(26) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-slides .fs-slide:nth-child(25),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(25) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-slides .fs-slide:nth-child(24),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(24) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-slides .fs-slide:nth-child(23),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(23) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-slides .fs-slide:nth-child(22),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(22) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-slides .fs-slide:nth-child(21),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(21) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-slides .fs-slide:nth-child(20),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(20) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-slides .fs-slide:nth-child(19),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(19) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-slides .fs-slide:nth-child(18),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(18) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-slides .fs-slide:nth-child(17),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(17) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-slides .fs-slide:nth-child(16),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(16) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-slides .fs-slide:nth-child(15),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(15) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-slides .fs-slide:nth-child(14),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(14) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-slides .fs-slide:nth-child(13),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(13) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-slides .fs-slide:nth-child(12),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(12) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-slides .fs-slide:nth-child(11),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(11) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-slides .fs-slide:nth-child(10),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(10) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-slides .fs-slide:nth-child(9),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(9) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-slides .fs-slide:nth-child(8),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(8) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-slides .fs-slide:nth-child(7),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(7) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-slides .fs-slide:nth-child(6),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(6) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-slides .fs-slide:nth-child(5),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(5) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-slides .fs-slide:nth-child(4),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(4) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-slides .fs-slide:nth-child(3),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(3) {
  -webkit-animation-delay: 9s;
  animation-delay: 9s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-slides .fs-slide:nth-child(2),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(2) {
  -webkit-animation-delay: 14s;
  animation-delay: 14s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-slides .fs-slide:nth-child(1),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(18):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(1) {
  -webkit-animation-delay: 19s;
  animation-delay: 19s;
}

 @keyframes quickNavAnimation-17
  
 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  4%,
			20% {
    background-color: coral;
  }
  24%,
			100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@-webkit-keyframes quickNavAnimation-17 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  4%,
				20% {
    background-color: coral;
  }
  24%,
				100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@keyframes slidesAnimation-17 {
  0% {
    opacity: 0;
  }
  4%,
			20% {
    opacity: 1;
  }
  24%,
			100% {
    opacity: 0;
  }
}
@-webkit-keyframes slidesAnimation-17 {
  0% {
    opacity: 0;
  }
  4%,
				20% {
    opacity: 1;
  }
  24%,
				100% {
    opacity: 0;
  }
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type {
  /* Slide animation */
  /* Quick navigation animation */
  /* Animation Delay */
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-slides .fs-slide {
  -webkit-animation: slidesAnimation-5 25s infinite;
  animation: slidesAnimation-5 25s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-quick-nav .fs-quick-btn {
  -webkit-animation: quickNavAnimation-5 25s infinite;
  animation: quickNavAnimation-5 25s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-slides .fs-slide:nth-child(27),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(27) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-slides .fs-slide:nth-child(26),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(26) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-slides .fs-slide:nth-child(25),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(25) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-slides .fs-slide:nth-child(24),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(24) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-slides .fs-slide:nth-child(23),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(23) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-slides .fs-slide:nth-child(22),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(22) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-slides .fs-slide:nth-child(21),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(21) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-slides .fs-slide:nth-child(20),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(20) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-slides .fs-slide:nth-child(19),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(19) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-slides .fs-slide:nth-child(18),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(18) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-slides .fs-slide:nth-child(17),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(17) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-slides .fs-slide:nth-child(16),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(16) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-slides .fs-slide:nth-child(15),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(15) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-slides .fs-slide:nth-child(14),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(14) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-slides .fs-slide:nth-child(13),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(13) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-slides .fs-slide:nth-child(12),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(12) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-slides .fs-slide:nth-child(11),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(11) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-slides .fs-slide:nth-child(10),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(10) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-slides .fs-slide:nth-child(9),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(9) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-slides .fs-slide:nth-child(8),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(8) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-slides .fs-slide:nth-child(7),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(7) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-slides .fs-slide:nth-child(6),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(6) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-slides .fs-slide:nth-child(5),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(5) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-slides .fs-slide:nth-child(4),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(4) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-slides .fs-slide:nth-child(3),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(3) {
  -webkit-animation-delay: 9s;
  animation-delay: 9s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-slides .fs-slide:nth-child(2),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(2) {
  -webkit-animation-delay: 14s;
  animation-delay: 14s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-slides .fs-slide:nth-child(1),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(17):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(1) {
  -webkit-animation-delay: 19s;
  animation-delay: 19s;
}
  
 
 @keyframes quickNavAnimation-16
  
 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  4%,
			20% {
    background-color: coral;
  }
  24%,
			100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@-webkit-keyframes quickNavAnimation-16 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  4%,
				20% {
    background-color: coral;
  }
  24%,
				100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@keyframes slidesAnimation-16 {
  0% {
    opacity: 0;
  }
  4%,
			20% {
    opacity: 1;
  }
  24%,
			100% {
    opacity: 0;
  }
}
@-webkit-keyframes slidesAnimation-16 {
  0% {
    opacity: 0;
  }
  4%,
				20% {
    opacity: 1;
  }
  24%,
				100% {
    opacity: 0;
  }
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type {
  /* Slide animation */
  /* Quick navigation animation */
  /* Animation Delay */
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-slides .fs-slide {
  -webkit-animation: slidesAnimation-5 25s infinite;
  animation: slidesAnimation-5 25s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-quick-nav .fs-quick-btn {
  -webkit-animation: quickNavAnimation-5 25s infinite;
  animation: quickNavAnimation-5 25s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-slides .fs-slide:nth-child(27),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(27) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-slides .fs-slide:nth-child(26),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(26) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-slides .fs-slide:nth-child(25),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(25) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-slides .fs-slide:nth-child(24),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(24) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-slides .fs-slide:nth-child(23),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(23) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-slides .fs-slide:nth-child(22),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(22) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-slides .fs-slide:nth-child(21),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(21) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-slides .fs-slide:nth-child(20),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(20) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-slides .fs-slide:nth-child(19),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(19) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-slides .fs-slide:nth-child(18),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(18) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-slides .fs-slide:nth-child(17),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(17) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-slides .fs-slide:nth-child(16),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(16) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-slides .fs-slide:nth-child(15),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(15) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-slides .fs-slide:nth-child(14),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(14) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-slides .fs-slide:nth-child(13),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(13) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-slides .fs-slide:nth-child(12),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(12) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-slides .fs-slide:nth-child(11),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(11) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-slides .fs-slide:nth-child(10),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(10) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-slides .fs-slide:nth-child(9),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(9) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-slides .fs-slide:nth-child(8),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(8) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-slides .fs-slide:nth-child(7),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(7) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-slides .fs-slide:nth-child(6),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(6) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-slides .fs-slide:nth-child(5),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(5) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-slides .fs-slide:nth-child(4),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(4) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-slides .fs-slide:nth-child(3),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(3) {
  -webkit-animation-delay: 9s;
  animation-delay: 9s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-slides .fs-slide:nth-child(2),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(2) {
  -webkit-animation-delay: 14s;
  animation-delay: 14s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-slides .fs-slide:nth-child(1),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(16):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(1) {
  -webkit-animation-delay: 19s;
  animation-delay: 19s;
}
 
 @keyframes quickNavAnimation-15
  
 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  4%,
			20% {
    background-color: coral;
  }
  24%,
			100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@-webkit-keyframes quickNavAnimation-15 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  4%,
				20% {
    background-color: coral;
  }
  24%,
				100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@keyframes slidesAnimation-15 {
  0% {
    opacity: 0;
  }
  4%,
			20% {
    opacity: 1;
  }
  24%,
			100% {
    opacity: 0;
  }
}
@-webkit-keyframes slidesAnimation-15 {
  0% {
    opacity: 0;
  }
  4%,
				20% {
    opacity: 1;
  }
  24%,
				100% {
    opacity: 0;
  }
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type {
  /* Slide animation */
  /* Quick navigation animation */
  /* Animation Delay */
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-slides .fs-slide {
  -webkit-animation: slidesAnimation-5 25s infinite;
  animation: slidesAnimation-5 25s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-quick-nav .fs-quick-btn {
  -webkit-animation: quickNavAnimation-5 25s infinite;
  animation: quickNavAnimation-5 25s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-slides .fs-slide:nth-child(27),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(27) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-slides .fs-slide:nth-child(26),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(26) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-slides .fs-slide:nth-child(25),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(25) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-slides .fs-slide:nth-child(24),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(24) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-slides .fs-slide:nth-child(23),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(23) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-slides .fs-slide:nth-child(22),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(22) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-slides .fs-slide:nth-child(21),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(21) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-slides .fs-slide:nth-child(20),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(20) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-slides .fs-slide:nth-child(19),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(19) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-slides .fs-slide:nth-child(18),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(18) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-slides .fs-slide:nth-child(17),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(17) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-slides .fs-slide:nth-child(16),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(16) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-slides .fs-slide:nth-child(15),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(15) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-slides .fs-slide:nth-child(14),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(14) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-slides .fs-slide:nth-child(13),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(13) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-slides .fs-slide:nth-child(12),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(12) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-slides .fs-slide:nth-child(11),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(11) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-slides .fs-slide:nth-child(10),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(10) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-slides .fs-slide:nth-child(9),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(9) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-slides .fs-slide:nth-child(8),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(8) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-slides .fs-slide:nth-child(7),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(7) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-slides .fs-slide:nth-child(6),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(6) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-slides .fs-slide:nth-child(5),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(5) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-slides .fs-slide:nth-child(4),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(4) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-slides .fs-slide:nth-child(3),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(3) {
  -webkit-animation-delay: 9s;
  animation-delay: 9s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-slides .fs-slide:nth-child(2),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(2) {
  -webkit-animation-delay: 14s;
  animation-delay: 14s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-slides .fs-slide:nth-child(1),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(15):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(1) {
  -webkit-animation-delay: 19s;
  animation-delay: 19s;
}
  @keyframes quickNavAnimation-14
  
 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  4%,
			20% {
    background-color: coral;
  }
  24%,
			100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@-webkit-keyframes quickNavAnimation-14 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  4%,
				20% {
    background-color: coral;
  }
  24%,
				100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@keyframes slidesAnimation-14 {
  0% {
    opacity: 0;
  }
  4%,
			20% {
    opacity: 1;
  }
  24%,
			100% {
    opacity: 0;
  }
}
@-webkit-keyframes slidesAnimation-14 {
  0% {
    opacity: 0;
  }
  4%,
				20% {
    opacity: 1;
  }
  24%,
				100% {
    opacity: 0;
  }
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type {
  /* Slide animation */
  /* Quick navigation animation */
  /* Animation Delay */
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-slides .fs-slide {
  -webkit-animation: slidesAnimation-5 25s infinite;
  animation: slidesAnimation-5 25s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-quick-nav .fs-quick-btn {
  -webkit-animation: quickNavAnimation-5 25s infinite;
  animation: quickNavAnimation-5 25s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-slides .fs-slide:nth-child(27),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(27) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-slides .fs-slide:nth-child(26),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(26) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-slides .fs-slide:nth-child(25),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(25) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-slides .fs-slide:nth-child(24),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(24) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-slides .fs-slide:nth-child(23),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(23) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-slides .fs-slide:nth-child(22),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(22) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-slides .fs-slide:nth-child(21),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(21) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-slides .fs-slide:nth-child(20),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(20) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-slides .fs-slide:nth-child(19),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(19) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-slides .fs-slide:nth-child(18),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(18) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-slides .fs-slide:nth-child(17),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(17) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-slides .fs-slide:nth-child(16),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(16) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-slides .fs-slide:nth-child(15),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(15) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-slides .fs-slide:nth-child(14),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(14) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-slides .fs-slide:nth-child(13),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(13) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-slides .fs-slide:nth-child(12),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(12) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-slides .fs-slide:nth-child(11),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(11) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-slides .fs-slide:nth-child(10),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(10) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-slides .fs-slide:nth-child(9),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(9) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-slides .fs-slide:nth-child(8),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(8) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-slides .fs-slide:nth-child(7),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(7) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-slides .fs-slide:nth-child(6),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(6) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-slides .fs-slide:nth-child(5),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(5) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-slides .fs-slide:nth-child(4),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(4) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-slides .fs-slide:nth-child(3),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(3) {
  -webkit-animation-delay: 9s;
  animation-delay: 9s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-slides .fs-slide:nth-child(2),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(2) {
  -webkit-animation-delay: 14s;
  animation-delay: 14s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-slides .fs-slide:nth-child(1),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(14):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(1) {
  -webkit-animation-delay: 19s;
  animation-delay: 19s;
}
  @keyframes quickNavAnimation-13
  
 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  4%,
			20% {
    background-color: coral;
  }
  24%,
			100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@-webkit-keyframes quickNavAnimation-13 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  4%,
				20% {
    background-color: coral;
  }
  24%,
				100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@keyframes slidesAnimation-13 {
  0% {
    opacity: 0;
  }
  4%,
			20% {
    opacity: 1;
  }
  24%,
			100% {
    opacity: 0;
  }
}
@-webkit-keyframes slidesAnimation-13 {
  0% {
    opacity: 0;
  }
  4%,
				20% {
    opacity: 1;
  }
  24%,
				100% {
    opacity: 0;
  }
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type {
  /* Slide animation */
  /* Quick navigation animation */
  /* Animation Delay */
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-slides .fs-slide {
  -webkit-animation: slidesAnimation-5 25s infinite;
  animation: slidesAnimation-5 25s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-quick-nav .fs-quick-btn {
  -webkit-animation: quickNavAnimation-5 25s infinite;
  animation: quickNavAnimation-5 25s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-slides .fs-slide:nth-child(27),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(27) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-slides .fs-slide:nth-child(26),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(26) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-slides .fs-slide:nth-child(25),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(25) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-slides .fs-slide:nth-child(24),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(24) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-slides .fs-slide:nth-child(23),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(23) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-slides .fs-slide:nth-child(22),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(22) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-slides .fs-slide:nth-child(21),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(21) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-slides .fs-slide:nth-child(20),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(20) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-slides .fs-slide:nth-child(19),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(19) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-slides .fs-slide:nth-child(18),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(18) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-slides .fs-slide:nth-child(17),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(17) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-slides .fs-slide:nth-child(16),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(16) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-slides .fs-slide:nth-child(15),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(15) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-slides .fs-slide:nth-child(14),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(14) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-slides .fs-slide:nth-child(13),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(13) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-slides .fs-slide:nth-child(12),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(12) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-slides .fs-slide:nth-child(11),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(11) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-slides .fs-slide:nth-child(10),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(10) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-slides .fs-slide:nth-child(9),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(9) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-slides .fs-slide:nth-child(8),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(8) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-slides .fs-slide:nth-child(7),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(7) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-slides .fs-slide:nth-child(6),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(6) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-slides .fs-slide:nth-child(5),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(5) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-slides .fs-slide:nth-child(4),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(4) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-slides .fs-slide:nth-child(3),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(3) {
  -webkit-animation-delay: 9s;
  animation-delay: 9s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-slides .fs-slide:nth-child(2),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(2) {
  -webkit-animation-delay: 14s;
  animation-delay: 14s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-slides .fs-slide:nth-child(1),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(13):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(1) {
  -webkit-animation-delay: 19s;
  animation-delay: 19s;
}
 
 @keyframes quickNavAnimation-12
  
 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  4%,
			20% {
    background-color: coral;
  }
  24%,
			100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@-webkit-keyframes quickNavAnimation-12 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  4%,
				20% {
    background-color: coral;
  }
  24%,
				100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@keyframes slidesAnimation-12 {
  0% {
    opacity: 0;
  }
  4%,
			20% {
    opacity: 1;
  }
  24%,
			100% {
    opacity: 0;
  }
}
@-webkit-keyframes slidesAnimation-12 {
  0% {
    opacity: 0;
  }
  4%,
				20% {
    opacity: 1;
  }
  24%,
				100% {
    opacity: 0;
  }
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type {
  /* Slide animation */
  /* Quick navigation animation */
  /* Animation Delay */
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-slides .fs-slide {
  -webkit-animation: slidesAnimation-5 25s infinite;
  animation: slidesAnimation-5 25s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-quick-nav .fs-quick-btn {
  -webkit-animation: quickNavAnimation-5 25s infinite;
  animation: quickNavAnimation-5 25s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-slides .fs-slide:nth-child(27),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(27) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-slides .fs-slide:nth-child(26),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(26) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-slides .fs-slide:nth-child(25),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(25) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-slides .fs-slide:nth-child(24),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(24) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-slides .fs-slide:nth-child(23),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(23) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-slides .fs-slide:nth-child(22),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(22) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-slides .fs-slide:nth-child(21),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(21) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-slides .fs-slide:nth-child(20),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(20) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-slides .fs-slide:nth-child(19),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(19) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-slides .fs-slide:nth-child(18),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(18) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-slides .fs-slide:nth-child(17),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(17) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-slides .fs-slide:nth-child(16),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(16) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-slides .fs-slide:nth-child(15),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(15) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-slides .fs-slide:nth-child(14),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(14) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-slides .fs-slide:nth-child(13),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(13) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-slides .fs-slide:nth-child(12),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(12) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-slides .fs-slide:nth-child(11),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(11) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-slides .fs-slide:nth-child(10),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(10) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-slides .fs-slide:nth-child(9),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(9) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-slides .fs-slide:nth-child(8),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(8) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-slides .fs-slide:nth-child(7),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(7) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-slides .fs-slide:nth-child(6),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(6) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-slides .fs-slide:nth-child(5),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(5) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-slides .fs-slide:nth-child(4),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(4) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-slides .fs-slide:nth-child(3),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(3) {
  -webkit-animation-delay: 9s;
  animation-delay: 9s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-slides .fs-slide:nth-child(2),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(2) {
  -webkit-animation-delay: 14s;
  animation-delay: 14s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-slides .fs-slide:nth-child(1),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(12):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(1) {
  -webkit-animation-delay: 19s;
  animation-delay: 19s;
}
 
 
 @keyframes quickNavAnimation-11
  
 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  4%,
			20% {
    background-color: coral;
  }
  24%,
			100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@-webkit-keyframes quickNavAnimation-11 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  4%,
				20% {
    background-color: coral;
  }
  24%,
				100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@keyframes slidesAnimation-11 {
  0% {
    opacity: 0;
  }
  4%,
			20% {
    opacity: 1;
  }
  24%,
			100% {
    opacity: 0;
  }
}
@-webkit-keyframes slidesAnimation-11 {
  0% {
    opacity: 0;
  }
  4%,
				20% {
    opacity: 1;
  }
  24%,
				100% {
    opacity: 0;
  }
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type {
  /* Slide animation */
  /* Quick navigation animation */
  /* Animation Delay */
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-slides .fs-slide {
  -webkit-animation: slidesAnimation-5 25s infinite;
  animation: slidesAnimation-5 25s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-quick-nav .fs-quick-btn {
  -webkit-animation: quickNavAnimation-5 25s infinite;
  animation: quickNavAnimation-5 25s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-slides .fs-slide:nth-child(27),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(27) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-slides .fs-slide:nth-child(26),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(26) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-slides .fs-slide:nth-child(25),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(25) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-slides .fs-slide:nth-child(24),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(24) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-slides .fs-slide:nth-child(23),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(23) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-slides .fs-slide:nth-child(22),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(22) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-slides .fs-slide:nth-child(21),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(21) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-slides .fs-slide:nth-child(20),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(20) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-slides .fs-slide:nth-child(19),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(19) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-slides .fs-slide:nth-child(18),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(18) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-slides .fs-slide:nth-child(17),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(17) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-slides .fs-slide:nth-child(16),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(16) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-slides .fs-slide:nth-child(15),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(15) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-slides .fs-slide:nth-child(14),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(14) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-slides .fs-slide:nth-child(13),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(13) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-slides .fs-slide:nth-child(12),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(12) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-slides .fs-slide:nth-child(11),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(11) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-slides .fs-slide:nth-child(10),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(10) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-slides .fs-slide:nth-child(9),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(9) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-slides .fs-slide:nth-child(8),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(8) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-slides .fs-slide:nth-child(7),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(7) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-slides .fs-slide:nth-child(6),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(6) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-slides .fs-slide:nth-child(5),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(5) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-slides .fs-slide:nth-child(4),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(4) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-slides .fs-slide:nth-child(3),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(3) {
  -webkit-animation-delay: 9s;
  animation-delay: 9s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-slides .fs-slide:nth-child(2),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(2) {
  -webkit-animation-delay: 14s;
  animation-delay: 14s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-slides .fs-slide:nth-child(1),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(11):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(1) {
  -webkit-animation-delay: 19s;
  animation-delay: 19s;
}
 
 @keyframes quickNavAnimation-10 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  4%,
			20% {
    background-color: coral;
  }
  24%,
			100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@-webkit-keyframes quickNavAnimation-10 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  4%,
				20% {
    background-color: coral;
  }
  24%,
				100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@keyframes slidesAnimation-10 {
  0% {
    opacity: 0;
  }
  4%,
			20% {
    opacity: 1;
  }
  24%,
			100% {
    opacity: 0;
  }
}
@-webkit-keyframes slidesAnimation-10 {
  0% {
    opacity: 0;
  }
  4%,
				20% {
    opacity: 1;
  }
  24%,
				100% {
    opacity: 0;
  }
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type {
  /* Slide animation */
  /* Quick navigation animation */
  /* Animation Delay */
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-slides .fs-slide {
  -webkit-animation: slidesAnimation-5 25s infinite;
  animation: slidesAnimation-5 25s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-quick-nav .fs-quick-btn {
  -webkit-animation: quickNavAnimation-5 25s infinite;
  animation: quickNavAnimation-5 25s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-slides .fs-slide:nth-child(27),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(27) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-slides .fs-slide:nth-child(26),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(26) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-slides .fs-slide:nth-child(25),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(25) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-slides .fs-slide:nth-child(24),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(24) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-slides .fs-slide:nth-child(23),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(23) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-slides .fs-slide:nth-child(22),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(22) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-slides .fs-slide:nth-child(21),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(21) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-slides .fs-slide:nth-child(20),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(20) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-slides .fs-slide:nth-child(19),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(19) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-slides .fs-slide:nth-child(18),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(18) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-slides .fs-slide:nth-child(17),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(17) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-slides .fs-slide:nth-child(16),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(16) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-slides .fs-slide:nth-child(15),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(15) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-slides .fs-slide:nth-child(14),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(14) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-slides .fs-slide:nth-child(13),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(13) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-slides .fs-slide:nth-child(12),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(12) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-slides .fs-slide:nth-child(11),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(11) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-slides .fs-slide:nth-child(9),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(9) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-slides .fs-slide:nth-child(8),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(8) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-slides .fs-slide:nth-child(7),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(7) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-slides .fs-slide:nth-child(6),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(6) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-slides .fs-slide:nth-child(5),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(5) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-slides .fs-slide:nth-child(4),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(4) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-slides .fs-slide:nth-child(3),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(3) {
  -webkit-animation-delay: 9s;
  animation-delay: 9s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-slides .fs-slide:nth-child(2),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(2) {
  -webkit-animation-delay: 14s;
  animation-delay: 14s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-slides .fs-slide:nth-child(1),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(10):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(1) {
  -webkit-animation-delay: 19s;
  animation-delay: 19s;
}
 
 
 @keyframes quickNavAnimation-9 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  4%,
			20% {
    background-color: coral;
  }
  24%,
			100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@-webkit-keyframes quickNavAnimation-9 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  4%,
				20% {
    background-color: coral;
  }
  24%,
				100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@keyframes slidesAnimation-9 {
  0% {
    opacity: 0;
  }
  4%,
			20% {
    opacity: 1;
  }
  24%,
			100% {
    opacity: 0;
  }
}
@-webkit-keyframes slidesAnimation-9 {
  0% {
    opacity: 0;
  }
  4%,
				20% {
    opacity: 1;
  }
  24%,
				100% {
    opacity: 0;
  }
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type {
  /* Slide animation */
  /* Quick navigation animation */
  /* Animation Delay */
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-slides .fs-slide {
  -webkit-animation: slidesAnimation-5 25s infinite;
  animation: slidesAnimation-5 25s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-quick-nav .fs-quick-btn {
  -webkit-animation: quickNavAnimation-5 25s infinite;
  animation: quickNavAnimation-5 25s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-slides .fs-slide:nth-child(27),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(27) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-slides .fs-slide:nth-child(26),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(26) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-slides .fs-slide:nth-child(25),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(25) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-slides .fs-slide:nth-child(24),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(24) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-slides .fs-slide:nth-child(23),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(23) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-slides .fs-slide:nth-child(22),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(22) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-slides .fs-slide:nth-child(21),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(21) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-slides .fs-slide:nth-child(20),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(20) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-slides .fs-slide:nth-child(19),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(19) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-slides .fs-slide:nth-child(18),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(18) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-slides .fs-slide:nth-child(17),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(17) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-slides .fs-slide:nth-child(16),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(16) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-slides .fs-slide:nth-child(15),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(15) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-slides .fs-slide:nth-child(14),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(14) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-slides .fs-slide:nth-child(13),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(13) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-slides .fs-slide:nth-child(12),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(12) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-slides .fs-slide:nth-child(11),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(11) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-slides .fs-slide:nth-child(10),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(10) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-slides .fs-slide:nth-child(9),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(9) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-slides .fs-slide:nth-child(8),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(8) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-slides .fs-slide:nth-child(7),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(7) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-slides .fs-slide:nth-child(6),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(6) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-slides .fs-slide:nth-child(5),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(5) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-slides .fs-slide:nth-child(4),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(4) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-slides .fs-slide:nth-child(3),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(3) {
  -webkit-animation-delay: 9s;
  animation-delay: 9s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-slides .fs-slide:nth-child(2),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(2) {
  -webkit-animation-delay: 14s;
  animation-delay: 14s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-slides .fs-slide:nth-child(1),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(9):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(1) {
  -webkit-animation-delay: 19s;
  animation-delay: 19s;
}
 @keyframes quickNavAnimation-8 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  4%,
			20% {
    background-color: coral;
  }
  24%,
			100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@-webkit-keyframes quickNavAnimation-8 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  4%,
				20% {
    background-color: coral;
  }
  24%,
				100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@keyframes slidesAnimation-8 {
  0% {
    opacity: 0;
  }
  4%,
			20% {
    opacity: 1;
  }
  24%,
			100% {
    opacity: 0;
  }
}
@-webkit-keyframes slidesAnimation-8 {
  0% {
    opacity: 0;
  }
  4%,
				20% {
    opacity: 1;
  }
  24%,
				100% {
    opacity: 0;
  }
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type {
  /* Slide animation */
  /* Quick navigation animation */
  /* Animation Delay */
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type ~ .fs-slides .fs-slide {
  -webkit-animation: slidesAnimation-5 25s infinite;
  animation: slidesAnimation-5 25s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type ~ .fs-quick-nav .fs-quick-btn {
  -webkit-animation: quickNavAnimation-5 25s infinite;
  animation: quickNavAnimation-5 25s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-slides .fs-slide:nth-child(27),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(27) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-slides .fs-slide:nth-child(26),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(26) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-slides .fs-slide:nth-child(25),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(25) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-slides .fs-slide:nth-child(24),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(24) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type ~ .fs-slides .fs-slide:nth-child(23),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(23) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type ~ .fs-slides .fs-slide:nth-child(22),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(22) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type ~ .fs-slides .fs-slide:nth-child(21),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(21) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type ~ .fs-slides .fs-slide:nth-child(20),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(20) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type ~ .fs-slides .fs-slide:nth-child(19),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(19) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type ~ .fs-slides .fs-slide:nth-child(18),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(18) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type ~ .fs-slides .fs-slide:nth-child(17),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(17) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type ~ .fs-slides .fs-slide:nth-child(16),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(16) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type ~ .fs-slides .fs-slide:nth-child(15),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(15) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type ~ .fs-slides .fs-slide:nth-child(14),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(14) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type ~ .fs-slides .fs-slide:nth-child(13),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(13) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type ~ .fs-slides .fs-slide:nth-child(12),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(12) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type ~ .fs-slides .fs-slide:nth-child(11),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(11) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type ~ .fs-slides .fs-slide:nth-child(10),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(10) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type ~ .fs-slides .fs-slide:nth-child(9),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(9) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type ~ .fs-slides .fs-slide:nth-child(8),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(8) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type ~ .fs-slides .fs-slide:nth-child(7),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(7) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type ~ .fs-slides .fs-slide:nth-child(6),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(6) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type ~ .fs-slides .fs-slide:nth-child(5),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(5) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type ~ .fs-slides .fs-slide:nth-child(4),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(4) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type ~ .fs-slides .fs-slide:nth-child(3),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(3) {
  -webkit-animation-delay: 9s;
  animation-delay: 9s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type ~ .fs-slides .fs-slide:nth-child(2),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(2) {
  -webkit-animation-delay: 14s;
  animation-delay: 14s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type ~ .fs-slides .fs-slide:nth-child(1),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(8):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(1) {
  -webkit-animation-delay: 19s;
  animation-delay: 19s;
}
 @keyframes quickNavAnimation-7 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  4%,
			20% {
    background-color: coral;
  }
  24%,
			100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@-webkit-keyframes quickNavAnimation-7 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  4%,
				20% {
    background-color: coral;
  }
  24%,
				100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@keyframes slidesAnimation-7 {
  0% {
    opacity: 0;
  }
  4%,
			20% {
    opacity: 1;
  }
  24%,
			100% {
    opacity: 0;
  }
}
@-webkit-keyframes slidesAnimation-7 {
  0% {
    opacity: 0;
  }
  4%,
				20% {
    opacity: 1;
  }
  24%,
				100% {
    opacity: 0;
  }
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(7):last-of-type {
  /* Slide animation */
  /* Quick navigation animation */
  /* Animation Delay */
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(7):last-of-type ~ .fs-slides .fs-slide {
  -webkit-animation: slidesAnimation-5 25s infinite;
  animation: slidesAnimation-5 25s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(7):last-of-type ~ .fs-quick-nav .fs-quick-btn {
  -webkit-animation: quickNavAnimation-5 25s infinite;
  animation: quickNavAnimation-5 25s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-slides .fs-slide:nth-child(27),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(27) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-slides .fs-slide:nth-child(26),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(26) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-slides .fs-slide:nth-child(25),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(25) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-slides .fs-slide:nth-child(24),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(24) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-slides .fs-slide:nth-child(23),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(23) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-slides .fs-slide:nth-child(22),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(22) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-slides .fs-slide:nth-child(21),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(21) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-slides .fs-slide:nth-child(20),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(20) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(7):last-of-type ~ .fs-slides .fs-slide:nth-child(19),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(7):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(19) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(7):last-of-type ~ .fs-slides .fs-slide:nth-child(18),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(7):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(18) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(7):last-of-type ~ .fs-slides .fs-slide:nth-child(17),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(7):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(17) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(7):last-of-type ~ .fs-slides .fs-slide:nth-child(16),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(7):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(16) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(7):last-of-type ~ .fs-slides .fs-slide:nth-child(15),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(7):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(15) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(7):last-of-type ~ .fs-slides .fs-slide:nth-child(14),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(7):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(14) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(7):last-of-type ~ .fs-slides .fs-slide:nth-child(13),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(7):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(13) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(7):last-of-type ~ .fs-slides .fs-slide:nth-child(12),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(7):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(12) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(7):last-of-type ~ .fs-slides .fs-slide:nth-child(11),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(7):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(11) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(7):last-of-type ~ .fs-slides .fs-slide:nth-child(10),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(7):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(10) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(7):last-of-type ~ .fs-slides .fs-slide:nth-child(9),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(7):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(9) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(7):last-of-type ~ .fs-slides .fs-slide:nth-child(8),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(7):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(8) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(7):last-of-type ~ .fs-slides .fs-slide:nth-child(7),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(7):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(7) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(7):last-of-type ~ .fs-slides .fs-slide:nth-child(6),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(7):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(6) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(7):last-of-type ~ .fs-slides .fs-slide:nth-child(5),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(7):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(5) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(7):last-of-type ~ .fs-slides .fs-slide:nth-child(4),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(7):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(4) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(7):last-of-type ~ .fs-slides .fs-slide:nth-child(3),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(7):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(3) {
  -webkit-animation-delay: 9s;
  animation-delay: 9s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(7):last-of-type ~ .fs-slides .fs-slide:nth-child(2),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(7):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(2) {
  -webkit-animation-delay: 14s;
  animation-delay: 14s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(7):last-of-type ~ .fs-slides .fs-slide:nth-child(1),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(7):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(1) {
  -webkit-animation-delay: 19s;
  animation-delay: 19s;
}
 @keyframes quickNavAnimation-6 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  4%,
			20% {
    background-color: coral;
  }
  24%,
			100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@-webkit-keyframes quickNavAnimation-6 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  4%,
				20% {
    background-color: coral;
  }
  24%,
				100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@keyframes slidesAnimation-6 {
  0% {
    opacity: 0;
  }
  4%,
			20% {
    opacity: 1;
  }
  24%,
			100% {
    opacity: 0;
  }
}
@-webkit-keyframes slidesAnimation-6 {
  0% {
    opacity: 0;
  }
  4%,
				20% {
    opacity: 1;
  }
  24%,
				100% {
    opacity: 0;
  }
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(6):last-of-type {
  /* Slide animation */
  /* Quick navigation animation */
  /* Animation Delay */
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(6):last-of-type ~ .fs-slides .fs-slide {
  -webkit-animation: slidesAnimation-5 25s infinite;
  animation: slidesAnimation-5 25s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(6):last-of-type ~ .fs-quick-nav .fs-quick-btn {
  -webkit-animation: quickNavAnimation-5 25s infinite;
  animation: quickNavAnimation-5 25s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-slides .fs-slide:nth-child(27),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(27) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-slides .fs-slide:nth-child(26),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(26) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-slides .fs-slide:nth-child(25),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(25) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-slides .fs-slide:nth-child(24),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(24) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-slides .fs-slide:nth-child(23),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(23) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-slides .fs-slide:nth-child(22),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(22) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-slides .fs-slide:nth-child(21),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(21) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-slides .fs-slide:nth-child(20),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(20) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(6):last-of-type ~ .fs-slides .fs-slide:nth-child(19),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(6):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(19) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(6):last-of-type ~ .fs-slides .fs-slide:nth-child(18),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(6):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(18) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(6):last-of-type ~ .fs-slides .fs-slide:nth-child(17),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(6):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(17) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(6):last-of-type ~ .fs-slides .fs-slide:nth-child(16),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(6):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(16) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(6):last-of-type ~ .fs-slides .fs-slide:nth-child(15),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(6):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(15) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(6):last-of-type ~ .fs-slides .fs-slide:nth-child(14),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(6):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(14) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(6):last-of-type ~ .fs-slides .fs-slide:nth-child(13),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(6):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(13) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(6):last-of-type ~ .fs-slides .fs-slide:nth-child(12),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(6):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(12) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(6):last-of-type ~ .fs-slides .fs-slide:nth-child(11),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(6):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(11) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(6):last-of-type ~ .fs-slides .fs-slide:nth-child(10),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(6):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(10) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(6):last-of-type ~ .fs-slides .fs-slide:nth-child(9),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(6):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(9) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(6):last-of-type ~ .fs-slides .fs-slide:nth-child(8),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(6):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(8) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(6):last-of-type ~ .fs-slides .fs-slide:nth-child(7),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(6):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(7) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(6):last-of-type ~ .fs-slides .fs-slide:nth-child(6),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(6):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(6) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(6):last-of-type ~ .fs-slides .fs-slide:nth-child(5),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(6):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(5) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(6):last-of-type ~ .fs-slides .fs-slide:nth-child(4),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(6):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(4) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(6):last-of-type ~ .fs-slides .fs-slide:nth-child(3),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(6):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(3) {
  -webkit-animation-delay: 9s;
  animation-delay: 9s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(6):last-of-type ~ .fs-slides .fs-slide:nth-child(2),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(6):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(2) {
  -webkit-animation-delay: 14s;
  animation-delay: 14s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(6):last-of-type ~ .fs-slides .fs-slide:nth-child(1),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(6):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(1) {
  -webkit-animation-delay: 19s;
  animation-delay: 19s;
}
@keyframes quickNavAnimation-5 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  4%,
			20% {
    background-color: coral;
  }
  24%,
			100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@-webkit-keyframes quickNavAnimation-5 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  4%,
				20% {
    background-color: coral;
  }
  24%,
				100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@keyframes slidesAnimation-5 {
  0% {
    opacity: 0;
  }
  4%,
			20% {
    opacity: 1;
  }
  24%,
			100% {
    opacity: 0;
  }
}
@-webkit-keyframes slidesAnimation-5 {
  0% {
    opacity: 0;
  }
  4%,
				20% {
    opacity: 1;
  }
  24%,
				100% {
    opacity: 0;
  }
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type {
  /* Slide animation */
  /* Quick navigation animation */
  /* Animation Delay */
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-slides .fs-slide {
  -webkit-animation: slidesAnimation-5 25s infinite;
  animation: slidesAnimation-5 25s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-quick-nav .fs-quick-btn {
  -webkit-animation: quickNavAnimation-5 25s infinite;
  animation: quickNavAnimation-5 25s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-slides .fs-slide:nth-child(27),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(27) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-slides .fs-slide:nth-child(26),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(26) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-slides .fs-slide:nth-child(25),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(25) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-slides .fs-slide:nth-child(24),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(24) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-slides .fs-slide:nth-child(23),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(23) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-slides .fs-slide:nth-child(22),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(22) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-slides .fs-slide:nth-child(21),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(21) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-slides .fs-slide:nth-child(20),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(20) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-slides .fs-slide:nth-child(19),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(19) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-slides .fs-slide:nth-child(18),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(18) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-slides .fs-slide:nth-child(17),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(17) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-slides .fs-slide:nth-child(16),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(16) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-slides .fs-slide:nth-child(15),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(15) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-slides .fs-slide:nth-child(14),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(14) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-slides .fs-slide:nth-child(13),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(13) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-slides .fs-slide:nth-child(12),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(12) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-slides .fs-slide:nth-child(11),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(11) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-slides .fs-slide:nth-child(10),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(10) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-slides .fs-slide:nth-child(9),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(9) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-slides .fs-slide:nth-child(8),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(8) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-slides .fs-slide:nth-child(7),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(7) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-slides .fs-slide:nth-child(6),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(6) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-slides .fs-slide:nth-child(5),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(5) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-slides .fs-slide:nth-child(4),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(4) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-slides .fs-slide:nth-child(3),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(3) {
  -webkit-animation-delay: 9s;
  animation-delay: 9s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-slides .fs-slide:nth-child(2),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(2) {
  -webkit-animation-delay: 14s;
  animation-delay: 14s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-slides .fs-slide:nth-child(1),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(5):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(1) {
  -webkit-animation-delay: 19s;
  animation-delay: 19s;
}

@keyframes quickNavAnimation-4 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  5%,
			25% {
    background-color: coral;
  }
  30%,
			100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@-webkit-keyframes quickNavAnimation-4 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  5%,
				25% {
    background-color: coral;
  }
  30%,
				100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@keyframes slidesAnimation-4 {
  0% {
    opacity: 0;
  }
  5%,
			25% {
    opacity: 1;
  }
  30%,
			100% {
    opacity: 0;
  }
}
@-webkit-keyframes slidesAnimation-4 {
  0% {
    opacity: 0;
  }
  5%,
				25% {
    opacity: 1;
  }
  30%,
				100% {
    opacity: 0;
  }
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type {
  /* Slide animation */
  /* Quick navigation animation */
  /* Animation Delay */
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-slides .fs-slide {
  -webkit-animation: slidesAnimation-4 20s infinite;
  animation: slidesAnimation-4 20s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-quick-nav .fs-quick-btn {
  -webkit-animation: quickNavAnimation-4 20s infinite;
  animation: quickNavAnimation-4 20s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-slides .fs-slide:nth-child(27),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(27) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-slides .fs-slide:nth-child(26),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(26) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-slides .fs-slide:nth-child(25),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(25) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-slides .fs-slide:nth-child(24),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(24) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-slides .fs-slide:nth-child(23),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(23) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-slides .fs-slide:nth-child(22),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(22) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-slides .fs-slide:nth-child(21),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(21) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-slides .fs-slide:nth-child(20),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(20) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-slides .fs-slide:nth-child(19),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(19) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-slides .fs-slide:nth-child(18),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(18) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-slides .fs-slide:nth-child(17),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(17) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-slides .fs-slide:nth-child(16),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(16) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-slides .fs-slide:nth-child(15),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(15) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-slides .fs-slide:nth-child(14),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(14) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-slides .fs-slide:nth-child(13),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(13) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-slides .fs-slide:nth-child(12),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(12) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-slides .fs-slide:nth-child(11),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(11) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-slides .fs-slide:nth-child(10),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(10) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-slides .fs-slide:nth-child(9),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(9) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-slides .fs-slide:nth-child(8),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(8) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-slides .fs-slide:nth-child(7),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(7) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-slides .fs-slide:nth-child(6),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(6) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-slides .fs-slide:nth-child(5),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(5) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-slides .fs-slide:nth-child(4),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(4) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-slides .fs-slide:nth-child(3),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(3) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-slides .fs-slide:nth-child(2),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(2) {
  -webkit-animation-delay: 9s;
  animation-delay: 9s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-slides .fs-slide:nth-child(1),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(4):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(1) {
  -webkit-animation-delay: 14s;
  animation-delay: 14s;
}

@keyframes quickNavAnimation-3 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  6.6666666667%,
			33.3333333333% {
    background-color: coral;
  }
  40%,
			100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@-webkit-keyframes quickNavAnimation-3 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  6.6666666667%,
				33.3333333333% {
    background-color: coral;
  }
  40%,
				100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@keyframes slidesAnimation-3 {
  0% {
    opacity: 0;
  }
  6.6666666667%,
			33.3333333333% {
    opacity: 1;
  }
  40%,
			100% {
    opacity: 0;
  }
}
@-webkit-keyframes slidesAnimation-3 {
  0% {
    opacity: 0;
  }
  6.6666666667%,
				33.3333333333% {
    opacity: 1;
  }
  40%,
				100% {
    opacity: 0;
  }
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type {
  /* Slide animation */
  /* Quick navigation animation */
  /* Animation Delay */
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-slides .fs-slide {
  -webkit-animation: slidesAnimation-3 15s infinite;
  animation: slidesAnimation-3 15s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-quick-nav .fs-quick-btn {
  -webkit-animation: quickNavAnimation-3 15s infinite;
  animation: quickNavAnimation-3 15s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-slides .fs-slide:nth-child(27),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(27) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-slides .fs-slide:nth-child(26),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(26) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-slides .fs-slide:nth-child(25),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(25) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-slides .fs-slide:nth-child(24),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(24) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-slides .fs-slide:nth-child(23),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(23) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-slides .fs-slide:nth-child(22),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(22) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-slides .fs-slide:nth-child(21),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(21) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-slides .fs-slide:nth-child(20),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(20) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-slides .fs-slide:nth-child(19),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(19) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-slides .fs-slide:nth-child(18),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(18) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-slides .fs-slide:nth-child(17),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(17) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-slides .fs-slide:nth-child(16),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(16) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-slides .fs-slide:nth-child(15),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(15) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-slides .fs-slide:nth-child(14),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(14) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-slides .fs-slide:nth-child(13),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(13) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-slides .fs-slide:nth-child(12),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(12) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-slides .fs-slide:nth-child(11),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(11) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-slides .fs-slide:nth-child(10),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(10) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-slides .fs-slide:nth-child(9),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(9) {
  -webkit-animation-delay: 9s;
  animation-delay: 9s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-slides .fs-slide:nth-child(8),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(8) {
  -webkit-animation-delay: 9s;
  animation-delay: 9s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-slides .fs-slide:nth-child(7),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(7) {
  -webkit-animation-delay: 9s;
  animation-delay: 9s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-slides .fs-slide:nth-child(6),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(6) {
  -webkit-animation-delay: 9s;
  animation-delay: 9s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-slides .fs-slide:nth-child(5),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(5) {
  -webkit-animation-delay: 9s;
  animation-delay: 9s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-slides .fs-slide:nth-child(4),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(4) {
  -webkit-animation-delay: 9s;
  animation-delay: 9s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-slides .fs-slide:nth-child(3),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(3) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-slides .fs-slide:nth-child(2),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(2) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-slides .fs-slide:nth-child(1),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(3):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(1) {
  -webkit-animation-delay: 9s;
  animation-delay: 9s;
}

@keyframes quickNavAnimation-2 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  10%,
			50% {
    background-color: coral;
  }
  60%,
			100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@-webkit-keyframes quickNavAnimation-2 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  10%,
				50% {
    background-color: coral;
  }
  60%,
				100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@keyframes slidesAnimation-2 {
  0% {
    opacity: 0;
  }
  10%,
			50% {
    opacity: 1;
  }
  60%,
			100% {
    opacity: 0;
  }
}
@-webkit-keyframes slidesAnimation-2 {
  0% {
    opacity: 0;
  }
  10%,
				50% {
    opacity: 1;
  }
  60%,
				100% {
    opacity: 0;
  }
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type {
  /* Slide animation */
  /* Quick navigation animation */
  /* Animation Delay */
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-slides .fs-slide {
  -webkit-animation: slidesAnimation-2 10s infinite;
  animation: slidesAnimation-2 10s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-quick-nav .fs-quick-btn {
  -webkit-animation: quickNavAnimation-2 10s infinite;
  animation: quickNavAnimation-2 10s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-slides .fs-slide:nth-child(27),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(27) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-slides .fs-slide:nth-child(26),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(26) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-slides .fs-slide:nth-child(25),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(25) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-slides .fs-slide:nth-child(24),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(24) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-slides .fs-slide:nth-child(23),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(23) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-slides .fs-slide:nth-child(22),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(22) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-slides .fs-slide:nth-child(21),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(21) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-slides .fs-slide:nth-child(20),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(20) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-slides .fs-slide:nth-child(19),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(19) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-slides .fs-slide:nth-child(18),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(18) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-slides .fs-slide:nth-child(17),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(17) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-slides .fs-slide:nth-child(16),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(16) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-slides .fs-slide:nth-child(15),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(15) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-slides .fs-slide:nth-child(14),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(14) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-slides .fs-slide:nth-child(13),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(13) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-slides .fs-slide:nth-child(12),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(12) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-slides .fs-slide:nth-child(11),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(11) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-slides .fs-slide:nth-child(10),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(10) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-slides .fs-slide:nth-child(9),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(9) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-slides .fs-slide:nth-child(8),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(8) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-slides .fs-slide:nth-child(7),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(7) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-slides .fs-slide:nth-child(6),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(6) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-slides .fs-slide:nth-child(5),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(5) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-slides .fs-slide:nth-child(4),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(4) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-slides .fs-slide:nth-child(3),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(3) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-slides .fs-slide:nth-child(2),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(2) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-slides .fs-slide:nth-child(1),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(2):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(1) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}
@keyframes quickNavAnimation-1 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  10%,
			50% {
    background-color: coral;
  }
  60%,
			100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@-webkit-keyframes quickNavAnimation-1 {
  0% {
    background-color: rgba(255, 255, 255, 0.8);
  }
  10%,
				50% {
    background-color: coral;
  }
  60%,
				100% {
    background-color: rgba(255, 255, 255, 0.8);
  }
}
@keyframes slidesAnimation-1 {
  0% {
    opacity: 0;
  }
  10%,
			50% {
    opacity: 1;
  }
  60%,
			100% {
    opacity: 0;
  }
}
@-webkit-keyframes slidesAnimation-1 {
  0% {
    opacity: 0;
  }
  10%,
				50% {
    opacity: 1;
  }
  60%,
				100% {
    opacity: 0;
  }
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type {
  /* Slide animation */
  /* Quick navigation animation */
  /* Animation Delay */
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-slides .fs-slide {
  -webkit-animation: slidesAnimation-2 10s infinite;
  animation: slidesAnimation-2 10s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-quick-nav .fs-quick-btn {
  -webkit-animation: quickNavAnimation-2 10s infinite;
  animation: quickNavAnimation-2 10s infinite;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-slides .fs-slide:nth-child(27),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(27) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-slides .fs-slide:nth-child(26),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(26) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-slides .fs-slide:nth-child(25),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(25) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-slides .fs-slide:nth-child(24),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(24) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-slides .fs-slide:nth-child(23),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(23) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-slides .fs-slide:nth-child(22),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(22) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-slides .fs-slide:nth-child(21),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(21) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-slides .fs-slide:nth-child(20),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(20) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-slides .fs-slide:nth-child(19),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(19) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-slides .fs-slide:nth-child(18),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(18) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-slides .fs-slide:nth-child(17),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(17) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-slides .fs-slide:nth-child(16),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(16) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-slides .fs-slide:nth-child(15),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(15) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-slides .fs-slide:nth-child(14),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(14) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-slides .fs-slide:nth-child(13),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(13) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-slides .fs-slide:nth-child(12),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(12) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-slides .fs-slide:nth-child(11),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(11) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-slides .fs-slide:nth-child(10),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(10) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-slides .fs-slide:nth-child(9),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(9) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-slides .fs-slide:nth-child(8),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(8) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-slides .fs-slide:nth-child(7),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(7) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-slides .fs-slide:nth-child(6),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(6) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-slides .fs-slide:nth-child(5),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(5) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-slides .fs-slide:nth-child(4),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(4) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-slides .fs-slide:nth-child(3),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(3) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-slides .fs-slide:nth-child(2),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(2) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-slides .fs-slide:nth-child(1),
[data-am-fadeshow~="autoplay"] input[type="radio"]:nth-of-type(1):last-of-type ~ .fs-quick-nav .fs-quick-btn:nth-child(1) {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

/* Base Styling */
body {
  margin: 0;
}

.container {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
</pre></body></html>