	.search-files {
		display: flex;
		height: 5vh;
		font-size: larger;
		text-align: left;
		border-radius: .5vw;
		max-width: 256px;
		min-height: 50px;
		margin: auto;
		margin-top: 1%;
		margin-bottom: 1%;
		width: 100%;
		padding-left: 10px;
	}

	/* @keyframes input {
		0%{position: fixed;
		margin: auto;}
		100%{}
		
	} */

	.card {
		/* Add shadows to create the "card" effect */
		box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
		transition: 0.3s;
		border-radius: 5px;
		padding: 5px;
		/* 5px rounded corners */
	}

	/* On mouse-over, add a deeper shadow */
	.card:hover {
		box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
	}

	/* Add some padding inside the card container */
	.container {
		padding: 2px 16px;
	}

	.card-header {
		font-family: Arial, Helvetica, sans-serif;
		color: rgb(43, 125, 219);
	}

	.body-content {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.supplementals {
		display: none;
	}

	.card:hover>.supplementals {
		display: block;
	}

	.list-wrapper {
		display: flex;
		flex-direction: row;
		justify-content: stretch;
		width: 90%;
	}

	.card-column {
		display: flex;
		flex-direction: column;
		min-height: 300px;
		width: 100%;
		height: 75vh;
		overflow: scroll;
	}