.slider-text-container .live-badge {
	align-items: center;
	display: flex;
	gap: 8px;
	margin-bottom: 40px;
}

.slider {
	position: relative;
}
.side-list__main .swiper-horizontal {
    height: 100%;
}

.slider-image-container {
	/* aspect-ratio: 16 / 9; */
	height: 100%;
	overflow: hidden;
	width: 100%;
}

.slider-image {
	aspect-ratio: 16 / 9;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.slider-image-overlay {
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5));
	bottom: 0;
	left: 0;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 100%;
}

.slider-text-container {
	bottom: 122px;
	left: 34px;
	padding: 0px 0 20px;
	position: absolute;
}

.slider-text-container:after {
	border-bottom: solid 2px var(--main-0, #FFFFFF);
	bottom: 0;
	content: '';
	left: 0;
	pointer-events: none;
	position: absolute;
	width: 133px;
}

.slider-text-container .live-badge span {
	color: var(--main-0);
	font-family: 'Stag LCG';
	font-size: 16px;
	font-weight: 400;
}

.slider-text-container .live-badge .live-badge-dot {
	background-color: #FF0000;
	border-radius: 50%;
	height: 10px;
	position: relative;
	width: 10px;
  animation: pulse 2s infinite;
}

.slider-text-container .live-badge .live-badge-dot::after {
	border: #FF0000 1px solid;
	border-radius: 50%;
	content: '';
	height: 14px;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 14px;
}

.slider-text-container .slider-text {
	color: var(--main-0, #FFFFFF);
	font-family: 'Stag LCG';
	font-size: var(--font-size-h-3);
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	width:80%;
	max-width:498px;
}

.slider-text-container .slider-time {
	color: var(--main-0, #FFFFFF);
	display: block;
	font-family: Inter;
	font-size: 10px;
	font-style: normal;
	font-weight: 400;
	letter-spacing: 0.2px;
	line-height: 120%;
	margin-bottom: 10px;
}

.slider .custom-pagination {
	bottom: 30px;
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(3, 1fr);
	left: 34px;
	position: absolute;
	/* right: 40px; */
	width: auto;
	z-index: 10;
}

.swiper-pagination-bullet {
	color: #FFFFFF;
}

.slider .swiper-pagination-bullet {
	all: unset;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	color: white;
	cursor: pointer;
	display: block;
	opacity: 0.6;
	padding-bottom:10px;
	position: relative;
	transition: all 0.3s ease;
	font-size:16px;
	max-width:254px;
	margin: 0 !important;
}
.slider .swiper-pagination-bullet p {
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    display: -webkit-box;
}

.slider .swiper-pagination-bullet-active {
	border-bottom: 1px solid white;
	opacity: 1;
	transform: scale(1.02);
}

/* --- Timer Styles --- */
.slider .pagination-timer {
	background: var(--secondary-blue-1000, #004AAD);
	bottom: -1px;
	height: 1px;
	left: 0;
	position: absolute;
	transform: scaleX(0);
	transform-origin: left;
	width: 100%;
}

.viral-section .slider .pagination-timer {
		background-color:#BF00E5;
}
.empisteftika-section .slider .pagination-timer {
    background-color: #0BC;
}

.food-slider .slider .pagination-timer {
    background-color: #F50;
}

@keyframes fill-timer-animation {
	from {
		transform: scaleX(0);
	}

	to {
		transform: scaleX(1);
	}
}
