/** Shopify CDN: Minification failed

Line 11:0 Unexpected "<"
Line 44:0 Unexpected "<"

**/
/*-----------------------------------------------------------------------------/
/ Custom Theme CSS
/-----------------------------------------------------------------------------*/
/*---------------- Global Custom CSS -------------------*/
<div class="nexus-ticker">
  <div class="ticker-track">
    <span>FREE SHIPPING OVER 2500 • FREE SHIPPING OVER 2500 • FREE SHIPPING OVER 2500 • FREE SHIPPING OVER 2500 • FREE SHIPPING OVER 2500 • </span>
    <span>FREE SHIPPING OVER 2500 • FREE SHIPPING OVER 2500 • FREE SHIPPING OVER 2500 • FREE SHIPPING OVER 2500 • FREE SHIPPING OVER 2500 • </span>
  </div>
</div>

<style>
.nexus-ticker {
  background-color: #2b3990; /* Blue background */
  color: #ffffff;           /* White text */
  overflow: hidden;
  padding: 12px 0;
  white-space: nowrap;
}

.ticker-track {
  display: inline-block;
  white-space: nowrap;
  animation: marquee-scroll 25s linear infinite;
}

.ticker-track span {
  font-family: 'Quicksand', sans-serif;
  font-weight: 700; /* Force Bold */
  font-size: 14px;
  padding-right: 50px;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
</style>


/*---------------- Custom CSS for only desktop -------------------*/
@media (min-width: 1025px) {
  
}

/*---------------- Custom CSS for only tablet -------------------*/
@media (min-width: 768px) and (max-width: 1024px) {
  
}

/*---------------- Custom CSS for only mobile -------------------*/
@media (max-width: 767px){
  
}