* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Roboto", sans-serif;
}

.widget-container {
	height: 225px;
	position: relative;
	max-width: 1070px;
	display: flex;
	background-image: url("../images/background.png");
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 12px;
	padding: 12px 8px 12px 25px;
}

.widget-container > .cta {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.content-text-container {
	width: 30%;
	position: relative;
	color: #fff;
}

.content-text-container a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.text-title {
	font-size: 28px;
	font-weight: 700;
	line-height: 1.3;
}

.text-desc {
	font-size: 16px;
	line-height: 1.3;
	margin-top: 6px;
}

.content-text-container button {
	height: 32px;
	border-radius: 8px;
	border: none;
	background-color: #ff9500;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	margin-top: 10px;
	line-height: 1.3;
	padding: 8px 16px;
}

.content-article-container {
	width: 70%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.content-article-container a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.slider-wrap {
	position: relative;
	z-index: 2;
	padding: 0 20px;
	overflow: hidden;
}

.slider {
	width: 100%;
	height: 180px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.article-slide-item {
	width: 183px;
	height: 160px;
	border-radius: 5px;
	position: relative;
}

.item-img,
.item-vid {
	width: 100%;
	height: 100px;
	border-radius: 5px;
	overflow: hidden;
	position: relative;
}

.item-img img,
.item-vid video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.item-img .player-icon,
.item-vid .player-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	width: 30px;
	height: 30px;
}

.item-text {
	width: 100%;
	height: 60px;
	margin-top: 8px;
	color: #fff;
}

.item-text span {
	font-size: 8px;
	margin-bottom: 5px;
	color: #37a2da;
}

.item-text p {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.3;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

button[data-controls="prev"],
button[data-controls="next"] {
	border: none;
	background-color: #fff;
	width: 32px;
	height: 32px;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
	z-index: 3;
	border-radius: 50%;
}
button[data-controls="prev"] {
	background-image: url(../images/prev-icon.png);
	background-size: 6px;
	background-position: center;
	background-repeat: no-repeat;
	left: 7px;
}
button[data-controls="next"] {
	background-image: url(../images/next-icon.png);
	background-size: 6px;
	background-position: center;
	background-repeat: no-repeat;
	right: 7px;
}

.tns-nav {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
.tns-nav button {
	width: 7px;
	height: 7px;
	margin-right: 3px;
	border-radius: 50%;
	border: 1px solid rgb(255, 255, 255);
	background-color: transparent;
}
.tns-nav .tns-nav-active {
	background-color: #ffffff;
}

.countdown-wrap {
	width: 125px;
	flex-shrink: 0;
	text-align: center;
	border-radius: 12px;
	overflow: hidden;
}

.countdown-wrap-top {
	background-color: #fff;
	color: #2e88b6;
	font-size: 18px;
	line-height: 1.3;
	padding: 10px 0 8px;
}

.countdown-wrap-bottom {
	background-color: #0a5388;
	padding: 12px;
	color: #fff;
}

#pemiluCountdown {
	font-weight: 800;
	font-size: 28px;
	letter-spacing: -0.03em;
	line-height: 1;
	min-width: 40px;
	display: inline-block;
	text-align: right;
	height: 32px;
	width: auto;
	position: relative;
	padding-left: 16px;
}

#pemiluCountdown i {
	font-style: normal;
}

#pemiluCountdown::before {
	position: absolute;
	top: 50%;
	left: 0;
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	background: #f79526;
	border-radius: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-animation: blink 4s ease-in 1s infinite normal forwards;
	animation: blink 4s ease-in 1s infinite normal forwards;
}

.countdown-text {
	font-size: 14px;
	line-height: 1.3;
}

@-webkit-keyframes blink {
	0%,
	50%,
	to {
		opacity: 1;
	}

	25%,
	75% {
		opacity: 0;
	}
}

@keyframes blink {
	0%,
	50%,
	to {
		opacity: 1;
	}

	25%,
	75% {
		opacity: 0;
	}
}
