.tl.contents{
	display: flex;
	max-width: 900px;
	align-items: flex-start;
	margin: auto;
}
#total{
	width: 300px;
}
#cart{
	flex-grow: 100;
}
.tl.lowkey.message{
	font-weight: 500; 
	margin: 10px 0;
}
@media screen and (max-width: 750px){
	.tl.contents{
		flex-wrap: wrap-reverse;
	}
	#cart{
		width: 100%;
	}
	#total{
		width: 100%;
	}
	.tl.lowkey.message{
		width: 90%;
		margin: auto !important;
	}
}

.cart h2.ui.header{
	padding: 10px 0 0 10px;
}

.cart-item{
	position: relative;
	height: auto;
	display: flex;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #40404015;
}
.cart-item:last-child{
	border-width: 0;
	margin-bottom: 0px;
}
.cart-item .poster img{
	max-width: 80px;
	border-radius: 4px;
}
.cart-item .poster{
	float: left;
	clear: left;
	/* margin-bottom: 10px; */
	margin-right: 10px;
}
.cart-item .poster::after{
	content: "";
	clear: both;
	display: table;
}
.cart-item .content{
	float: left;
	position: relative;
	flex-grow: 100;
}
.cart-item .content .title{
	font-size: 24px;
	font-weight: 600;
	color: rgba(0, 0, 0, 0.87);
}
.cart-item .price-name{
	font-weight: 600;
}
.cart-item .content .extras{
	width: 100%;
}

.cart-item .content .extras .action{
	cursor: pointer;
	color: #404040;
	font-weight: 500;
}

.cart-item .content .extras .time{
	float: right;
	font-size: 18px;
	font-weight: 500;
}

.cart-item .content .extras .action:hover{
	color: black;
}

.cart-item .content .price{
	color: #B12704;
	font-weight: 500;
	margin-bottom: 15px;
}

.cart-item .quantity{
	float: right;
}

.cart-item .content .price .quantity{
	color: #404040;
	margin-top: -5px;
}

.price .quantity .ui.dropdown .text{
	padding-top: 2px;
	padding-right: 25px;
	font-size: 16px;
}

.price .quantity .ui.dropdown i.icon{
	padding-top: 7px;
}

.price .quantity .ui.dropdown{
	padding: 5px;
	min-width: 70px;
	min-height: 30px;
	margin-left: 5px;
	text-align: right;
}

.cart-item:not(.disabled) .overlay{
	display: none;
}

.cart-item.disabled{
	padding: 0.5em;
}

.cart-item.disabled::before{
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	background: rgba(41, 41, 41, 0.8);
	border-radius: 4px;
	width: 100%;
	height: 100%;
	z-index: 100;
}

.cart-item.disabled .overlay{
	z-index: 1000;
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cart-item.disabled .overlay .tl.header{
	color: white;
}

.cart-item.disabled .overlay .buttons{
	margin-top: 10px;
}

.extras .time .remaining{
	color: gray; 
	float: left; 
	font-size: 12px;
	margin-right: 10px;
}

.cart .header{
	font-size: 32px;
	font-weight: 500;
}

.total .header{
	text-align: center;
	font-size: 32px;
	font-weight: 500;
}

.receipt .item{	
	height: 20px;
	font-size: 14px;
}

.receipt .item .name{
	float: left;
	font-weight: 500;
}

.receipt .item .cost{
	float: right;
}

.receipt .final.item{
	margin-top: 5px;
	padding-top: 5px;
}

.receipt .final.item .name{
	font-size: 18px;
}

.receipt .final.item .cost{
	color: #B12704;
	font-weight: 800;
}
