@import url("https://fonts.googleapis.com/css2?family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&display=swap");

.item {
	color: rgb(35, 35, 35);
}

.item:focus {
	outline: none;
	border: none;
	border-radius: 3px;
	-ms-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	transform: scale(1.3);
}

.tiviku {
	/* Penataan default */
	transition: transform 0.3s;
	display: inline-block;
	padding-left: 0;
	/* Padding kiri default */
}

.tiviku:focus {
	/* Efek scaling */
	outline: none;
	border: none;
	border-radius: 5px;
	-ms-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	transform: scale(1.1);

	/* Geser sedikit ke kanan saat diselect */
	padding-left: 20px;
	/* Atur jumlah padding kiri sesuai kebutuhan */
}

.imgtv {
	transition: transform 0.3s;
	display: inline-block;
	padding-left: 0;
}

.imgtv:focus {
	outline: none;
	border: none;
	border-radius: 5px;
	-ms-transform: scale(1.1);
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.item:active {
	color: rgba(10, 10, 10, 0.5);
}

.active {
	color: rgba(10, 10, 10, 0.5) !important;
}

.clicked {
	color: white;
	font-weight: bold;
}

.sidenav {
	height: 100%;
	width: 0;
	position: fixed;
	z-index: 1;
	margin-top: 80px;
	top: 0;
	left: 0;
	background-color: #111;
	overflow: hidden;
	transition: 0.5s;
	padding-top: 60px;
}

.sidenav a {
	padding: 8px 8px 8px 8px;
	text-decoration: none;
	font-size: 25px;
	color: #818181;
	display: block;
	transition: 0.3s;
}

.sidenav a:hover {
	color: white;
}

.sidenav .closebtn {
	position: absolute;
	top: 0;
	right: 5%;
	font-size: 36px;
	margin-left: 50px;
}

@media screen and (max-height: 450px) {
	.sidenav {
		padding-top: 15px;
	}

	.sidenav a {
		font-size: 18px;
	}
}

#body {
	transition: margin-left 0.5s;
	padding: 5px;
	overflow: hidden;
}

button {
	background-color: transparent;
	border: 0.5px solid transparent;
	transition: all 0.3s ease;
}

button:hover {
	color: blue;
	background-color: white;
	border-color: white;
}

.box {
	width: 200px;
	height: 200px;
	position: relative;
	overflow: hidden;
}

.box::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 5px solid transparent;
	background: linear-gradient(to bottom right, #3490dc, #9561e2);
	z-index: -1;
}

.hidden-scrollbar::-webkit-scrollbar {
	display: none;
}

.hidden-scrollbar {
	-ms-overflow-style: none;
	/* IE and Edge */
	scrollbar-width: none;
	/* Firefox */
}

.philosopher-regular {
	font-family: "Philosopher", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.philosopher-bold {
	font-family: "Philosopher", sans-serif;
	font-weight: 700;
	font-style: normal;
}

.philosopher-regular-italic {
	font-family: "Philosopher", sans-serif;
	font-weight: 400;
	font-style: italic;
}

.philosopher-bold-italic {
	font-family: "Philosopher", sans-serif;
	font-weight: 700;
	font-style: italic;
}

.animate-blink {
	animation: blink-animation 2s linear infinite;
	-webkit-animation: blink-animation 2s linear infinite;
}

@keyframes blink-animation {
	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}
}

@-webkit-keyframes blink-animation {
	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0;
	}
}
#myVideo {
	will-change: transform;
	transform: translateZ(0);
}
@keyframes scroll {
	0% {
		transform: translateX(100%);
	}
	100% {
		transform: translateX(-100%);
	}
}

.animate-scroll {
	display: inline-block;
	white-space: nowrap; /* Ensure text doesn't wrap */
	animation: scroll 60s linear infinite;
	min-width: 100%;
}
