main,
section,
main.category-view section>div>div {
	display: flex;
	width: 100%;
	align-content: center;
	height: min-content;
	overflow: hidden;
	align-items: flex-start;
}

@media only screen and (max-width: 1050px) {
	.product-block,
		.brand-block {
		min-width: 30%;
	}
}

/* Start mobile specific rules */
@media only screen and (max-width: 800px) {

	main.landing-view section>div {
		margin: 20px 0;
		height: 300px;
	}

	.product-block, .brand-block {
		min-width: 45%;
	}

}

#main-products-block {
	margin-left: 40px;
	width: 90%;
}

main.category-view section>div>div {
	gap: 25px;
	flex-flow: row wrap;
	width: 100%;
}

main.category-view section>div>div:after {
	content: "";
	flex: auto;
}

main.category-view section h1 {
	text-transform: capitalize;
}

.products-page {
	display: flex;
	flex-direction: row
}

main.landing-view section div:first-child {
	justify-content: space-between
}

main.landing-view h4 {
	text-transform: uppercase
}

@media only screen and (max-width: 1050px) {
	.product-block,
		.brand-block {
		min-width: 30%;
	}
}

@media only screen and (max-width: 905px) {
	#top-menu>div>a {
		position: relative;
		left: 0%;
		transform: translate(0%, 0%);
	}

	#footer-content {
		display: flex;
		flex-flow: row wrap;
	}
}

/* Start mobile specific rules */
@media only screen and (max-width: 800px) {
	#categories-block div a {
		aspect-ratio: 171/320;
	}

	.heading-filter-btn h2 {
		display: inline-block;
	}

	.heading-filter-btn #filter-open-button {
		display: inline-block;
		fill: var(--color-primary-blue);
		border: none;
	}
}

@media only screen and (max-width: 500px) {

	.product-block,
		.brand-block {
		min-width: 100%;
	}
}


/* FOR PAGINATION */

.sticky-pagination-bar {
	font-size: 14px;
	position: relative;
	width: auto;
	padding: 5px;
	bottom: 0;
	background-color: var(--color-white);
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.sticky-pagination-bar>div {
	display: flex;
	flex-direction: row;
}

.sticky-pagination-bar>div {
	margin-right: 10px;
}

.page {
	margin: 0px 10px;
}

.inputPage,
.page>span {
	display: inline-block;
	color: var(--color-primary-blue);
}

.results input {
	width: 50px;
	margin: 0px 0px;
	border: none;
	text-align: right;
}

.next-button {
	margin-right: 10px;
}

.next-button,
.previous-button {
	height: 45px;
	cursor: pointer;
}

@media only screen and (max-width: 905px) {

	.sticky-pagination-bar {
		display: flex;
		flex-wrap: wrap;
	}

	.sticky-pagination-bar>div {
		/* Display two child divs in a row */
		box-sizing: border-box;
	}

	.sticky-pagination-bar button,
	.sticky-pagination-bar select {
		border: none;
	}

	.sticky-pagination-bar button:disabled {
		background-color: white;
	}
}