#add_a_product{
	display: none;
}

#go_back_link{
	display: none;
}

#navBar li{
	display: inline;
}

.error {
	border: 1px solid red;
}

.content{
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.table{
	width: 100%;
}

.action{
	width: 100%;
	display: flex;
	flex-direction: row;
}

.addProductCatagoryContainer {
	position: relative;
}

.addProductCatagory {
	display: none;
	position: absolute;
	z-index: 10;
	background: cadetblue;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
	padding: 1rem;
	text-align: center;
	border: 2px solid red;
	border-radius: 2rem;
	top: 30px;
}

.addProductCatagory.show {
	display: block;
}

.addProductContainer {
	position: relative;
}

.addProduct {
	display: none;
	position: absolute;
	z-index: 10;
	background: cadetblue;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
	padding: 1rem;
	text-align: center;
	border: 2px solid red;
	border-radius: 2rem;
	top: 30px;
}

.addProduct.show {
	display: block;
}