/* Nextend Smart Slider 2 - Aggregated CSS Cache */
/* Timestamp: n1464883200 */
/* Generated: Production Cache */

.ssclear,
.ssclear-all {
  clear: both;
}

.ssclear-all {
  clear: both !important;
}

.smart-slider {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  background: #000;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.smart-slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  background: transparent;
}

.smart-slider-loading .smart-slider-loader {
  display: block;
}

.smart-slider-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 45px;
  margin: -22.5px 0 0 -22.5px;
  display: none;
  background: url('data:image/svg+xml;charset=utf-8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="45" height="45" viewBox="0 0 45 45"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg transform="translate(1 1)" stroke="%23fff" stroke-width="2"%3E%3Ccircle cx="22" cy="22" r="6" fill="%23fff"/%3E%3Ccircle cx="22" cy="22" r="22"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E') no-repeat center;
  background-size: contain;
  animation: ss-pulse 1.5s ease-in-out infinite;
}

@keyframes ss-pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
}

.smart-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
}

.smart-slide-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.smart-slide-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}

.smart-slide.active {
  opacity: 1;
  z-index: 5;
}

.smart-slider-arrow {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: #fff;
  font-size: 19px;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.smart-slider-arrow:hover {
  background: rgba(0, 0, 0, 0.85);
}

.smart-slider-arrow-left {
  left: 12px;
}

.smart-slider-arrow-right {
  right: 12px;
}

.smart-slider-bullets {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
  padding: 0;
  margin: 0;
  list-style: none;
}

.smart-slider-bullet {
  display: inline-block;
  width: 11px;
  height: 11px;
  margin: 0 5.5px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.smart-slider-bullet:hover {
  background: rgba(255, 255, 255, 0.8);
}

.smart-slider-bullet-active {
  background: #fff;
  width: 13px;
  height: 13px;
  margin: 0 5px;
}

.smart-slider-thumbnail {
  position: relative;
  display: inline-block;
  width: 65px;
  height: 65px;
  margin: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.smart-slider-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.smart-slider-thumbnail.active {
  border-color: #ffc107;
  box-shadow: 0 0 8px rgba(255, 193, 7, 0.4);
}

.smart-slider-thumbnails {
  text-align: center;
  margin-top: 12px;
  padding: 8px;
}

.smart-slider-fullscreen-toggle {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 11;
  transition: background-color 0.3s ease;
  font-size: 18px;
}

.smart-slider-fullscreen-toggle:hover {
  background: rgba(0, 0, 0, 0.75);
}

.smart-slider-play-pause {
  position: absolute;
  top: 12px;
  right: 58px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 11;
  transition: background-color 0.3s ease;
  font-size: 16px;
}

.smart-slider-play-pause:hover {
  background: rgba(0, 0, 0, 0.75);
}

/* Transition animations */
.smart-slide.fade {
  animation: ss-fade-smooth 0.7s ease-out;
}

@keyframes ss-fade-smooth {
  from { opacity: 0; }
  to { opacity: 1; }
}

.smart-slide.slide-horizontal {
  animation: ss-slide-h 0.7s ease-out;
}

@keyframes ss-slide-h {
  from { transform: translateX(50%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.smart-slide.slide-vertical {
  animation: ss-slide-v 0.7s ease-out;
}

@keyframes ss-slide-v {
  from { transform: translateY(-50%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.smart-slide.rotate-zoom {
  animation: ss-rotate-zoom 0.7s ease-out;
}

@keyframes ss-rotate-zoom {
  from { transform: rotate(-5deg) scale(0.95); opacity: 0; }
  to { transform: rotate(0deg) scale(1); opacity: 1; }
}

/* Responsive: 1024px and above */
@media (min-width: 1024px) {
  .smart-slider-arrow {
    width: 48px;
    height: 48px;
    margin-top: -24px;
    font-size: 20px;
  }
  .smart-slider-arrow-left {
    left: 18px;
  }
  .smart-slider-arrow-right {
    right: 18px;
  }
}

/* Responsive: 768px to 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
  .smart-slider-arrow {
    width: 44px;
    height: 44px;
    margin-top: -22px;
  }
  .smart-slider-bullet {
    width: 10px;
    height: 10px;
    margin: 0 5px;
  }
}

/* Responsive: Below 768px */
@media (max-width: 767px) {
  .smart-slider-arrow {
    width: 38px;
    height: 38px;
    margin-top: -19px;
    font-size: 16px;
  }
  .smart-slider-arrow-left {
    left: 6px;
  }
  .smart-slider-arrow-right {
    right: 6px;
  }
  .smart-slider-bullet {
    width: 8px;
    height: 8px;
    margin: 0 4px;
  }
  .smart-slider-fullscreen-toggle,
  .smart-slider-play-pause {
    width: 36px;
    height: 36px;
    font-size: 14px;
    top: 8px;
  }
  .smart-slider-play-pause {
    right: 50px;
  }
  .smart-slider-thumbnail {
    width: 55px;
    height: 55px;
    margin: 4px;
  }
}