@charset 'utf-8';

/* 셀마클 주관 채권 매입 이벤트들의 목록 페이지입니다 */

section {
	padding-top: 5rem;
	position: relative;
}

.page-theme {

	--page-theme: rgb(0, 79, 255);
	--page-theme-rgb: 0, 79, 255;
}

#purchase_nav {
	position: fixed;
	top: 100px;
	left: 0;
	backdrop-filter: blur(5px);
	background-color: rgba(255, 255, 255, 0.8);
	width: 100%;
	z-index: 99;
	padding: 10px;
	border-radius: 8px;
	/* box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
}

#purchase_nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
}

#purchase_nav ul li {
	cursor: pointer;
	padding: 8px 12px;
	transition: all 0.2s ease;
	flex: 1 1 max-content;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
#purchase_nav ul li:hover,
.sticky-heading.active {
	background-color: rgba(0, 0, 0, 0.05);
}


#ongoing-list>a,
#past-list>a,
#upcoming-list>a {
	display: block;
	margin-bottom: 3rem;
}

.order-head {
	padding-left: 3rem;
	padding-right: 3rem;
	margin-bottom: 3rem !important;
}

.banner-img {
	width: 100%;
}

@media (max-width:768px) {
	#purchase_nav {
		/* display: none; */
		top: 80px;
	}

	#purchase_nav ul li {
		font-size: 1.2rem !important;
	}

	.order-head {
		padding-left: 0;
		padding-right: 0;
		margin-bottom: 3rem !important;
	}
}