.ProductPanel {
	width: 160px;
	height: 220px;
	background-color: #121315;
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow: hidden;
}

.ProductPanelFlex {
	margin-top: auto;
	display: flex;
	width: auto;
	align-items: center;
	justify-content: space-around;
}

.ProductPanelFlexDiv {
	width: 50%;
	height: calc(100% - 40px);
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 20px;
}

.ProductPanelName {
	margin-top: 5px;
	align-self: baseline;
	color: white;
	font-size: 12px;
}

.ProductPanelPrice {
	align-self: baseline;
	color: white;
	font-family: 'FontGilroyMedium';
	font-size: 12px;
}

.ProductPanelImage {
	background-image: url('sh1.png');
	height: 100%;
	width: 100%;
	background-size: contain;
	background-position: center;
}

/* BIG */
.BigProductPanel {
	flex-shrink: 0;
	width: 400px;
	height: 500px;
	background-color: #121315;
	display: flex;
	flex-direction: column;
	align-items: center;
	overflow: hidden;
	cursor: pointer;
	background-image: url('saqqara.svg');
	background-size: 20%;
	background-position: center;
	background-repeat: no-repeat;
}

.BigProductPanelFlex {
	align-self: baseline;
	align-items: center;
	display: flex;
	gap: 10px;
}

.BigProductPanelColorFlex {
	display: flex;
	padding: 5px;
	pointer-events: none;
	flex-direction: row;
	width: max-content;
}

.BigProductPanelColorFlex>* {
	width: 20px;
	height: 5px;
}

.BigProductPanelName {
	margin-top: 5px;
	align-self: baseline;
	color: white;
	font-size: 14px;
	text-overflow: ellipsis;
	width: 100%;
	overflow: hidden;
	text-wrap: nowrap;
}

.BigProductPanelPrice {
	color: white;
	font-family: 'FontGilroyMedium';
	font-size: 14px;
}

.BigProductPanelOldPrice {
	font-size: 14px;
	color: #ffffff78;
	text-decoration: line-through;
	font-family: 'FontGilroyMedium';
}

.BigProductPanelSale {
	color: #121315;
	background-color: #ffffffb7;
	padding-left: 2px;
	padding-right: 2px;
	font-family: 'FontGilroyMedium';
	font-size: 12px;
}

.BigProductPanelImage {
	height: 100%;
	width: 100%;
	background-size: cover;
	background-position: center;
}

.AllWearPage {
	width: 100%;
	height: calc(100% - 90px);
	align-self: flex-end;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.AllWearPageFilterButtons {
	display: flex;
	flex-direction: row;
	gap: 10px;
}

.AllWearPagePanel {
	width: calc(100% - 40px);
	padding-bottom: 20px;
	display: flex;
	flex-direction: row;
	gap: 10px;
	flex-wrap: wrap;
	justify-content: center;
	overflow-y: scroll;
}