.CartPage {
	display: flex;
	flex-direction: row;
	height: 100%;
	width: 100%;
}

.CartPageLeft {
	background-color: #eeeeee;
	width: 50%;
	height: 100%;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
}

.CartPageLeftPanel {
	display: flex;
	flex-direction: column;
	background-color: white;
	gap: 20px;
	width: 60%;
	padding: 20px;
	margin-top: auto;
	margin-bottom: auto;
	margin-left: auto;
	margin-right: auto;
	align-items: center;
}

.CartPageRight {
	display: flex;
	margin-top: auto;
	flex-direction: column;
	padding-left: 40px;
	padding-right: 40px;
	padding-bottom: 40px;
	gap: 20px;
	overflow-y: scroll;
	width: 100%;
	height: calc(100% - 130px);
	margin-top: auto;
}

.CartWear {
	display: flex;
	flex-direction: row;
	gap: 10px;
	width: 100%;
	border-bottom: white 1px solid;
}

.CartWearPhoto {
	background-image: url('/static/sh1.png');
	width: 100px;
	height: 100px;
	background-size: cover;
	flex-shrink: 0;
	background-position: center;
	cursor: pointer;
}

.CartWearFlex {
	display: flex;
	flex-direction: column;
}

.CartWearFlexName {
	display: flex;
	align-items: center;
}

.CartWearTitle {
	color: white;
	font-size: 18px;
	cursor: pointer;
}

.CartWearCloseButton {
	background-image: url('/static/icon_close.svg');
	width: 15px;
	height: 15px;
	background-size: contain;
	margin-left: auto;
	flex-shrink: 0;
	cursor: pointer;
}

.CartWearDescription {
	color: #ffffffd6;
	font-size: 12px;
}

.CartWearPanel {
	display: flex;
	flex-direction: row;
	margin-top: auto;
	align-items: center;
	gap: 10px;
}

.CartWearPrice {
	color: white;
	font-size: 16px;
	font-family: 'FontGilroyMedium';
	margin-left: auto;
}

.CartWearOldPrice {
	color: #ffffff78;
	font-size: 16px;
	font-family: 'FontGilroyMedium';
	text-decoration: line-through;
}

.CartWearSale {
	color: #121315;
	background-color: #ffffffb7;
	padding-left: 2px;
	padding-right: 2px;
	font-family: 'FontGilroyMedium';
	font-size: 12px;
}

.CartWearSize {
	color: white;
	font-size: 16px;
	padding: 2px;
	text-align: center;
}

.CartWearColor {
	color: white;
	font-size: 16px;
	padding: 2px;
	text-align: center;
}

.CartWearColorCirlce {
	background-color: white;
	width: 15px;
	height: 15px;
	border-radius: 15px;
}

.CartPageInput,
.CartPageInputLong {
	background-color: transparent;
	color: #121315;
	width: 120px;
	font-size: 16px;
	height: 20px;
	padding: 10px;
	border: none;
	font-family: "FontGilroyMedium";
	border-bottom-width: medium;
	border-bottom-style: none;
	border-bottom-color: currentcolor;
	border-bottom: 1px solid #121315;
}

.CartPageInputLong {
	width: 50%;
}

.CartPageInput:focus {
	outline: none;
	box-shadow: none;
}
.CartPageInputLong:focus {
	outline: none;
	box-shadow: none;
}

.CartPageButtonDisabled,
.CartPageButton {
	color: white;
	background-color: #121315;
	width: 90%;
	text-align: center;
	font-size: 16px;
	padding: 10px 20px 10px 20px;
	cursor: pointer;
	height: max-content;
}

.CartPageButtonDisabled {
	cursor: auto;
	background-color: #c2c2c2;
}

.CartRecordsFlexSpace {
	display: flex; flex-direction: row; width: 100%; justify-content: space-between;
}
.CartRecordsFlex {
	display: flex; flex-direction: row; justify-content: space-between; width: 100%;
}