#portfolio-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	align-items: center;
	padding-bottom: 2rem;
	width: 100%;
}
#portfolio-item {
	position: relative;
	width: 300px;
	height: 300px;
	background-color: var(--color-tertiary);
	border-radius: 0.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: 0.3s;
}
#portfolio-item-float {
	position: absolute;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #793cf3;
	color: white;
	bottom: 0;
	padding: 1rem;
	height: 70px;
}
#portfolio-item-float h3 {
	color: white !important;
	margin-bottom: 0 !important;
	font-size: 1rem !important;
}
#portfolio-item a {
	width: 100%;
	height: 100%;
}
#portfolio-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#portfolio-item:hover {
	transform: scale(1.1);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
	#portfolio-item {
		width: 600px;
		height: 600px;
	}
}

#thumbnail-list {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
	height: 200px;
	overflow-x: scroll;
	flex-wrap: wrap;
}
#thumbnail-item {
	width: 250px;
	height: 100%;
	cursor: pointer;
	overflow: hidden;
}
#thumbnail-list img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
#portfolio-gallery {
}
#selected-image {
	width: 100%;
	height: 600px;
	object-fit: cover;
}
#selected-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
progress {
	width: 100%;
	height: 20px;
}

#thumbnail-list::-webkit-scrollbar:horizontal {
	height: 11px;
}

#thumbnail-list::-webkit-scrollbar-thumb {
	border-radius: 8px;
	border: 2px solid transparent;
	background-clip: padding-box;
	background-color: #bababa;
	-webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.75);
}

#thumbnail-list::-webkit-scrollbar {
	-webkit-appearance: none;
}
