/* ANIMATRIX.CSS */
/* Vertical Scroller for Notifications */
jar {position: relative;
    background: 0;
    background-color: rgba(255, 255, 255, 0);
    width: 100%;
    height: auto;
    padding: 0px 0px;
    margin: 0px auto;
    text-align: center;
    clear: both;
    display: block;
    overflow: hidden;}

jar.autoY {
    width: 100%;
    height: 100px; /* Set desired display height */
    border: 0px solid silver;
    overflow: hidden;
    position: relative;
    display:block; 
    align-items:center;}
jar.autoY.clouds {
    height: 432px; /* Set desired display height */
}
liner {
    position: relative;
    background: 0;
    background-color: rgba(255, 255, 255, 0);
    width: 100%;
    max-width: 1200px;
    height: auto;
    padding: 0px 0px;
    margin: 0px auto;
    text-align: center;
    clear: both;
    content: "";
    display: block;
    overflow: hidden;}
liner.autoY {
    position: relative;
    white-space: nowrap;
    padding: 0;
    will-change: transform;
    display: block;}
.jar-item {
  display: block;}
.jar-item:hover {
    color: #C02534;}
/* Horizontal Sroller for Link Buttons */
tray.autoX {
    border: 0px solid silver;
    overflow: hidden;
    width: 100%; /* Adjust as needed */
    background: url('images/Boy-Fish.png');
}
liner.tray.autoX {
    position: relative;
    display: inline-flex;
    animation: scrollHorizontal 10s linear infinite;
}
liner.tray.autoX jar, liner.tray.autoX tray, liner.tray.autoX div {
    padding: 17px;
    width: 150px; /* Width of each item MUST be equal factor of total items and screen width */
    display: inline;
}
#autoX_jar, #autoX_tray, #autoX_div {width: 150px;}
/* Pause on hover */
tray.autoX:hover liner.tray.autoX {
    animation-play-state: paused;
}

@keyframes scrollHorizontal {
    0% { transform: translateX(25%); }
    100% { transform: translateX(-25%); } /* Scrolls half the width if items are duplicated */
}

/* 3D Sroller for Visual Effects */

scroll.autoZ {
    min-width: 333px;
    max-width: 555px;
    height: 80px; /* Set desired display height */
    border: 1px solid silver;
    
}

sol.autoZ {
    position: absolute;
    animation: scrollHorizontal 7s infinite; /* Adjust time for speed */
    
}

sol.autoZ div {
    height: 80px; /* Height of each item */
    padding: 10px;
    
}

@keyframes scroll3D {
    0% { top: 0px; }
    /* Adjust percentages based on number of items
    3% { top: 0px; }
    28% { top: -80px; }
    42% { top: -160px; }
    56% { top: -240px; }
    70% { top: -320px; }
    84% { top: -400px; }
    98% { top: -480px; } */
    100% { top: -728px; }
}


.scroller-container {
    overflow: hidden;
    width: 100%; /* Adjust as needed */
    background: url('images/Boy-Fish.png');
}

.scroller-content {
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    animation: scrollAnimation 10s linear infinite;
}

.scroller-content li {
    flex-shrink: 0;
    width: 300px; /* Width of each item */
    padding: 10px;
    box-sizing: border-box;
}

/* Pause on hover */
.scroller-container:hover .scroller-content {
    animation-play-state: paused;
}

/* Keyframes for smooth, infinite movement */
@keyframes scrollAnimation {
    0% { transform: translateX(25%); }
    100% { transform: translateX(-25%); } /* Scrolls half the width if items are duplicated */
}

/* ------------ SLIDESHOW CODE ------------- */

.mySlides1, .mySlides2 {display: none}

/* Slideshow container */
slideshow, .slideshow-auto, .slideshow-multi {
  max-width: 1080px;
  position: relative;
  margin: auto;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a grey background color */
.prev:hover, .next:hover {
  background-color: #f1f1f1;
  color: black;
}

/* The dots/bullets/indicators */
.dot, .dot-welcome, .dot-featured {
  height: 17px;
  width: 17px;
  margin: 0 3px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dot-box {text-align: center;}

.active {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}

@media (max-width: 1080px) {
    .noTab {display: none;}
}
@media (max-width: 640px) {
    .noMob {display: none;}
}
@media (min-width: 640px) {
    .Mob {display: none;}
}

harpazo {
    --imageHeight: 1024px;
    background: url("/images/In-The-Clouds.jpg") repeat;
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    height: 100%;
    animation: bgHarpazo 69s linear reverse infinite;
    opacity: 69%;
    box-shadow: 0px 26px 69px 7px white, 0px -3px 11px 3px white, inset 0px -33px 69px 3px white, inset 0px 3px 11px 3px white;
}

@keyframes bgHarpazo { 
  from {
    transform: translateY(calc(var(--imageHeight) * 0));
  }
  to {
    transform: translateY(calc(var(--imageHeight) * -1));
  }
}

