	.status-filter-bar {
		cursor: pointer;
		color: inherit;
		transition: 0.5s;
		border-bottom: 3px solid transparent;
		column-gap: 7px; 
		align-items: center;
		padding: 0 3px;
	}
	.status-filter-bar:hover {
		color: var(--highlight-color);
		border-bottom-color: var(--highlight-color);
		transition: 0.5s;
	}
	.status-filter-bar-active {
		color: var(--highlight-color);
		border-bottom-color: var(--highlight-color);
	}

	.list-title {
		padding: 3px 7px;
	}
	.list-title div {
		padding: 3px 7px;
		color: rgba(188,188,188,1);
		box-sizing: border-box;
	}
	.list-title p {
		font-size: 11px;
		font-weight: 700;
		position: relative;
	}

	.list-table {
		background-color: white;
		border-radius: 6px;
		box-shadow: 0px 1px 3px rgba(0,0,0,0.1);
		padding: 15px 7px;
		column-gap: 15px;
		animation-name: drop-off;
		animation-duration: 0.5s;
		animation-timing-function: ease-in-out;
	}
	.list-table .listing {
		padding: 3px 7px;
		font-size: 12px;
		box-sizing: border-box;
	}
	@keyframes drop-off {
		0% {
			opacity: 0;
			transform: translateY(3px);
		}
		100% {
			opacity: 1;
			transform: translateY(0);
		}
	}

	/*Sort List*/
	.sort-desc:after {
		content: "\f0d7";
		position: absolute;
		right: -13px;
		bottom: 0;
		top: 0;
		margin: auto;
		font-size: 14px;
		color: black;
		font-family: "Font Awesome 5 Free";
	}
	.sort-acs:after {
		content: "\f0d8";
		position: absolute;
		right: -13px;
		bottom: 0;
		top: 0;
		margin: auto;
		font-size: 14px;
		color: black;
		font-family: "Font Awesome 5 Free";
	}


	
	.sub-link {
		font-size: 11px;
		padding: 3px 0;
		border-bottom: 2px solid transparent;
	}
	.sub-link-active {
		cursor: pointer;
		transition: 0.3s;
	}
	.sub-link-active:hover {
		border-bottom-color: var(--nav-background-color);
		color: var(--nav-background-color);
		transition: 0.3s;
	}

	.info-contain {
		flex-direction: column; row-gap: 20px; padding: 30px; background-color: white; box-shadow: 0px 3px 5px rgba(0,0,0,0.1); border-radius: 6px;
	}
	.info-product-sub {
		padding: 20px; background-color: rgba(240,240,240); box-shadow: 0px 1px 3px rgba(0,0,0,0.1); border-radius: 6px;
	}