/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 23 2025 | 22:39:36 */
.content-floating {
  position: fixed;
  bottom: 90px;
  left: -10px;
  border-top: solid 3px #06E3E6;
  border-right: solid 3px #06E3E6;
  border-bottom: solid 3px #06E3E6;
  padding: 3px 3px 3px 0;
  animation: slideIn 0.8s ease;
  border-radius: 0 20px 20px 0;
  z-index: 9999;
  box-shadow: 0 0 15px 0 #06E3E6;
}

.promo-floating {
  background: linear-gradient(270deg, #01113D 1.32%, #032DA3 99.91%);
  color: #fff;
  padding: 15px 50px;
  font-weight: 700;
  border-radius: 0 15px 15px 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  font-family: 'Segoe UI', sans-serif;
}

.promo-label {
  display: block;
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 4px;
}

.promo-timer {
  font-size: 28px;
  letter-spacing: 1px;
}

@keyframes slideIn {
  from {
    transform: translateX(-120%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
