.body {
	display: flex;
}

.modal {
	display: flex;
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: rgba(255, 255, 255, 1);
	justify-content: center;
	align-items: center;
}

nav {
	flex: 0 0 240px;
	background-color: rgb(255, 255, 255);
}

nav .row i {
	width: 24px;
	text-align: center;
}

nav .row {
	padding: 16px;
	color: #554466;
	font-size: 14px;
}

#main {
	flex: 1 1 0;
	background: rgb(241, 243, 249);
	min-height: 100vh;
}

#usermenu {
	padding: 12px;
	min-height: 64px;
	background: var(--blue);
	width: 100%;
	display: flex;
	justify-content: space-between;
	color: white;
	align-items: center;
}

/* Set height of body and the document to 100% */
body,
html {
	height: 100%;
	margin: 0;
}

#supplierListCard {
	margin: 30px;
	box-shadow: 0 3px 3px 0 lightgray;
}

#supplierListCardBody {
	padding: 1.25rem 0;
}

#supplierListCardUpperPart {
	display: flex;
}

#dropdownMenuButton {
	margin: 1.25rem;
	padding: 5px 30px;
	border: 1px #B5BEEF solid;
	background-color: transparent;
	color: #32335A;
}

#supplierListSearchBar {
	margin: 1.25rem;
	display: flex;
	width: 100%;
	justify-content: flex-end;
}

.search {
	border-radius: .25rem;
	border: 1px #B5BEEF solid;
}

/* Style the tab content (and add height:100% for full page content) */
.tabcontent {
	color: black;
	display: none;
	height: 100%;
}

.supplierListHeader {
	display: flex;
	width: 100%;
}

.supplierListSortButton {
	background-color: transparent;
	border: none;
}

.supplierListHeaderItem {
	background-color: #F4F5F7;
	color: black;
	border: none;
	outline: none;
	width: 25%;
	margin-top: 20px;
	padding: 10px;

	text-align: left;
	font-weight: bold;
	font-size: 14px;
	color: #7b8e9f;

	border-top: 5px solid;
	border-bottom: 0.5px groove;
	border-color: #e5e9ec;
	border-left: 0px;
	border-right: 0px;
}

.container {
	padding: 0px !important;
	width: 100%;
}

.supplierListBody {
	width: 100%;
	display: flex;
	justify-content: center;

	padding: 10px 0;
	color: #32335A;

	border: 0.5px groove;
	border-color: #D4D4D4;
	border-top: 0px;
	border-left: 0px;
	border-right: 0px;
}

.supplierListBodyItem {
	display: flex;
	align-items: center;

	width: 100%;
	text-align: left;
	padding: 10px;
}

.pagination {
	margin-top: 30px;
	margin-bottom: 70px;
	margin-right: 30px;
	display: flex;
	justify-content: flex-end;
}

.pagination li {
	display: inline-block;
	padding: 6px 9px;
	margin: 10px 5px;
	border: 1px solid #ABB5C0;
	border-radius: .25rem;
}

.pagination li:hover{
	background-color: #6074DD;
}

.pagination li a {
	color: #ABB5C0;
}

.pagination li a:hover{
	color: white;
}

#supplierListViewButton {
	display: block;
	text-align: center;
	text-decoration: underline;
}

.supplierImg {
	height: 20px;
	margin-right: 5px;
}