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

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

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

.smart-slider {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  background: #1a1a1a;
  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: 50px;
  height: 50px;
  margin: -25px 0 0 -25px;
  display: none;
  background: url('data:image/svg+xml;charset=utf-8,%3Csvg xmlns="http://www.w3.org/2000/svg" width="50" height="50" viewBox="0 0 50 50"%3E%3Ccircle cx="25" cy="25" r="20" fill="none" stroke="%23fff" stroke-width="2" stroke-dasharray="31.4 94.2" /%3E%3C/svg%3E') no-repeat center;
  background-size: contain;
  animation: ss-loader 1.2s linear infinite;
}

@keyframes ss-loader {
  to { transform: rotate(360deg); }
}

.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: 48px;
  height: 48px;
  margin-top: -24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.smart-slider-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

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

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

.smart-slider-bullets {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
  padding: 8px 12px;
  margin: 0;
  list-style: none;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
}

.smart-slider-bullet {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

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

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

.smart-slider-thumbnail {
  position: relative;
  display: inline-block;
  width: 70px;
  height: 70px;
  margin: 8px;
  cursor: pointer;
  border: 3px solid transparent;
  transition: border-color 0.3s ease;
  overflow: hidden;
  border-radius: 4px;
}

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

.smart-slider-thumbnail.active {
  border-color: #ff6b6b;
}

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

.smart-slider-fullscreen-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  cursor: pointer;
  z-index: 11;
  transition: all 0.3s ease;
  font-size: 18px;
  border-radius: 2px;
}

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

.smart-slider-play-pause {
  position: absolute;
  top: 15px;
  right: 65px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  cursor: pointer;
  z-index: 11;
  transition: all 0.3s ease;
  font-size: 16px;
  border-radius: 2px;
}

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

/* Transition animations */
.smart-slide.fade {
  animation: ss-fade-transition 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.smart-slide.slide-up {
  animation: ss-slide-up 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.smart-slide.slide-down {
  animation: ss-slide-down 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.smart-slide.zoom-in {
  animation: ss-zoom-in 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes ss-zoom-in {
  from { transform: scale(1.1); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Responsive: 1024px and above */
@media (min-width: 1024px) {
  .smart-slider-arrow {
    width: 52px;
    height: 52px;
    margin-top: -26px;
    font-size: 22px;
  }
  .smart-slider-bullet {
    width: 12px;
    height: 12px;
    margin: 0 6px;
  }
}

/* Responsive: 768px to 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
  .smart-slider-arrow {
    width: 46px;
    height: 46px;
    margin-top: -23px;
  }
}

/* Responsive: Below 768px */
@media (max-width: 767px) {
  .smart-slider-arrow {
    width: 40px;
    height: 40px;
    margin-top: -20px;
    font-size: 18px;
  }
  .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;
  }
  .smart-slider-play-pause {
    right: 55px;
  }
  .smart-slider-thumbnail {
    width: 50px;
    height: 50px;
    margin: 5px;
  }
}