.weekGroup,
.weekGroupHeader {
	display: grid;
	align-items: center;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
	grid-template-rows: auto;
}

.pickupDay {
	height: 50px;
	border: 1px solid #dbdbdb;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	opacity: 0.3;
	pointer-events: none;
	font-size: 12px;
	position: relative;
}

.pickupDay.allowed {
	opacity: 1;
	pointer-events: all;
}

.pickupDay.allowed:hover {
	background: #f2f2f2;
}

.pickupDay.allowed.selected {
	box-shadow: inset 0px 0px 0px 1px rgba(128, 221, 66, 1);
	border: 1px solid rgba(128, 221, 66, 1);
}

.weekGroupHeader {
	text-align: center;
	font-size: 12px;
	font-weight: bold;
	padding: 4px 0px;
	background: #f2f2f2;
}

.pickupRush {
	font-size: 13px;
	margin-bottom: 20px;
	display: flex;
	justify-content: space-between;
}

.pickupRush h4 {
	margin: 0px;
}

.pickupDay.allowed.doneSelected {
	box-shadow: inset 0px 0px 0px 1px #41c1dd;
	border: 1px solid #41c1dd;
}

.pickupDay.allowed.doneSelected:after {
	content: 'completed';
	position: absolute;
	bottom: 0px;
	font-size: 9px;
	color: white;
	background: #41c1dd;
	left: 0;
	right: 0;
	text-align: center;
	padding: 1px;
}

.pickupDay.allowed.selected:after {
	content: 'pickup';
	position: absolute;
	bottom: 0;
	font-size: 9px;
	color: white;
	background: #7fdd41;
	left: 0;
	right: 0;
	text-align: center;
	padding: 1px;
}

.shipTotals {
	background: #f2f2f2;
	padding: 15px;
	width: 200px;
	border-radius: 8px;
}

.shipTotals .flex {
	justify-content: space-between;
}

.shipTotals .total {
	margin-top: 10px;
	font-weight: bold;
}

.flex.pickupLine {
	margin-top: 10px;
	border-top: 1px solid #f2f2f2;
	padding-top: 10px;
}
