.cash-alternative {
    color: #F6B118;
    height:30px;
    font-size:14px;
    font-weight:600;
}

.cash-alternative-empty {
    color: #F6B118;
    height:30px;
    font-size:14px;
    font-weight:600;
}

.automated_draw {
    color: #17EF97;
    font-size: 14px!important;
    font-weight:600;
    height:25px!important;
}
    
.competition_type {
    color: #0B0B0C;
    height:50px;
    font-weight:600;
    font-size: 14px!important;
}

.competition_type {
    color: #0B0B0C;
    height:50px;
    font-weight:600;
}

.progress-bar-wrapper {
    position: relative;
    width: 100%;
}

progress {
    width: 100%;
    height: 30px;
    appearance: none;
    -webkit-appearance: none;
    border: none;
    border-radius: 6px;
    overflow: hidden;
    background-color: #eee;
}

progress::-webkit-progress-bar {
    background-color: #eee;
}

progress::-webkit-progress-value {
    background-color: #3c9;
}

.progress-icon {
    position: absolute;
    top: 45%;
    transform: translate(-50%, -50%);
    font-size: 2.5em; /* make it bigger */
    pointer-events: none;
    z-index: 2;
}

.progress-details {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5em;
    font-size: 14px;
    color: #333;
}

.ticket-info {
	flex: 1;
    text-align: left;
	color:#000;
}

.tickets-sold {
    flex: 1;
    text-align: right;
	color:#000;
}


/* Add this to your theme’s style.css */
.lottery-pagination ul {
    list-style: none;
    padding: 0;
    margin: 1em 0;
    text-align: center; /* centers the pagination */
}
.lottery-pagination li {
    display: inline-block;
    margin: 0 0.5em;
}
.lottery-pagination li.current a {
    font-weight: bold;
    text-decoration: underline;
}
.lottery-pagination a {
    text-decoration: none;
}

.instant-slider-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.instant-slider-track {
  display: inline-flex;
  white-space: nowrap;
  animation: iw-slide 30s linear infinite;
}

.instant-slider-container:hover .instant-slider-track {
  animation-play-state: paused;
}

.instant-slider-item {
  flex: 0 0 auto;
  padding: 0 2em;
  font-size: 1rem;
  line-height: 2rem;
  border-right: 1px solid #ddd;
}

@keyframes iw-slide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}