.pageWrapper{
	display: flex;
	position: relative;
	justify-content: space-around;
	height: fit-content;
	max-width: 1300px;
	margin: auto;
	margin-top: 20px;
}

.mobilePage{
	display: none;
	margin-top: 20px;
	flex-direction: column;
	align-items: center;
	width: 100%;
}


.machine_filter-wrapper{
	display: flex;
	flex-direction: column;
	width: 15%;

}

.machine_filter{
	width: 100%;
	min-height: 70px;
	padding-top: 10px;
	height: fit-content;
}

.machine_filter-item{
	cursor: pointer;
	position: relative;
}

.filter_header.unactive{
	color: black;
}

.filter_header{
	padding-top: 25px;
	color: #0872BA;
	
}

.filter_header-text{
	position: absolute;
	font-size: 18px;
	padding: 15px 0; 
	top: 50px;
	width: 90%;
	border-bottom: 3px solid #0872BA;
	z-index: 10;
	transition: .4s ease-in-out;
}

.filter_header-text.hidden {
    visibility: hidden;
    height: 0;
    opacity: 0;
    overflow: hidden;
}

.machine-tables{
	width: 75%;
	margin-bottom: 220px;
}

.machine-table-wrapper{
	display: flex;
	flex-direction: column;
	position: relative;
	width: 100%;
}

.machine-table-wrapper.hidden {
    visibility: hidden;
    height: 0;
	width:0;
    opacity: 0;
    overflow: hidden;
}

.machine-table-header{
	display: flex;
	justify-content: space-between;
	width: 100%;
	background-color: #0872BA;
	padding: 20px 0;
	cursor: pointer;
}

.machine-table-header-text{
	margin-left: 30px;
	color: #FFFFFF;
}

.down_icon{
	align-self: center;
	margin-right: 20px;
	width: 25px;
	height: 15px;
}

.machine-table{
	position: relative;
	width:100%;
	border-collapse: collapse;
	transition: 1s;
}

.machine-table.hidden{
	position: absolute;
	visibility: hidden;
    height: 0;
    opacity: 0;
    overflow: hidden;
	transition: 1s;
}

#machine-table-row{
	background-color: #F5F4F4;
	border: 4px solid #F5F4F4;
}

th{
	padding: 5px;
	color: #000000;
	font-size: 24px;
}

.machine-table-image{
	width: 200px;
	height: 150px;
}

#machine-table_item-row{
	width: 50%;
	text-align: center;
	background-color: #FFFDFD;
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
}

.table-row-text{
	font-weight: normal;
	padding: 5px 0;
}

.table-row-text-name{
	padding-bottom: 15px;
}	

td{
	font-weight: bold;
	padding: 10px;
}

@media screen and (min-width: 601px) and (max-width: 800px){
	.pageWrapper{
		display: none;
	}

	.down_icon{
		width: 20px;
		height: 12px;
	}

	.mobilePage{
		display: flex;
	}

	.machine-tables{
		width: 90%;
	}
	
	.machine-table-header{
		padding: 10px 0;
	}

	.machine-table-header-text{
		margin-left: 10px;
		font-size: 20px;
	}

	th{
		font-size: 18px;
	}

	td{
		padding: 5px;
		font-size: 14px;
	}

	.machine-table-image{
		width: 150px;
		height: 100px;
	}
}

@media screen and (max-width: 600px){
	.pageWrapper{
		display: none;
	}

	.mobilePage{
		margin-top: 0;
		display: flex;
	}

	.down_icon{
		width: 15px;
		height: 8px;
	}

	.machine-tables{
		width: 100%;
		margin-bottom: 20px;
	}

	.machine-table{
		margin-bottom: 0;
	}

	.machine-table-header{
		padding: 5px 0;
	}

	.machine-table-header-text{
		margin-left: 5px;
		font-size: 16px;
	}

	th{
		font-size: 16px;
	}

	td{
		padding: 5px;
		font-size: 12px;
	}

	.machine-table-image{
		width: 100px;
		height: 70px;
	}
} 









