#sm-cart-dialog {
	width: 400px;
	display: inline-block;
	position: fixed;
	top: 0;
	right: -410px;
	height: 100%;
	background-color: #393C46;
	z-index: 900000;
	color: #FFF;
	box-shadow: 0px 0px 10px 0px #000;
	transition: right 0.5s ease;
}

#sm-cart-dialog.active {
	right: 0;
}

#sm-cart-dialog-header {
	padding: 20px 0;
	text-align: center;
	font-size: 20px;
	letter-spacing: 1px;
	background-color: #393c46;
	color: #FFF;
}

#sm-cart-dialog-header .fa-angle-right {
	position: absolute;
    left: 30px;
    cursor: pointer;
}

#sm-cart-dialog-content {
	height: calc(100% - 290px);
	overflow: auto;
	margin: 15px 25px;
}

#sm-cart-dialog-list li {
	position: relative;
	margin-bottom: 10px;
	list-style-type: none;
}

.sm-cart-dialog-item-img {
	width: 80px;
	height: 80px;
	float: left;
	display: inline-block;
	margin-right: 7px;
	margin-top: 4px;
	background-position: 50% 50%;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url(/img/fm_stock/thumb/_stock_product.png);
}

.sm-cart-dialog-item-label {
	margin: 0 0 3px 85px;
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sm-cart-dialog-item-remove {
	position: absolute;
	display: inline-block;
	right: 10px;
	top: 0;
	font-size: 18px;
	cursor: pointer;
	display: none;
}

#sm-cart-dialog-footer {
	position: absolute;
	bottom: 0;
	left: 0;
	width: calc(100% - 50px);
	font-size: 18px;
	margin: 0 25px 15px 25px;
}

#sm-cart-edit-cart-btn {
	background: #393c46;
    border: 1px solid white;
    color: white;
    box-sizing: border-box;
	margin-top: 15px;
}

.sm-cart-dialog-btn {
	  width: 100% !important;
	 font-size: 16px !important;
    background-color: rgba(255,255,255,1);
    border-width: 0;
    border-color: #FFF;
    border-radius: 0;
    color: #000;
    display: block;
    height: 40px;
    text-align: center;
    line-height: 40px;
    margin: 15px 0;
}

.sm-cart-dialog-btn:hover {
	color: #000;
	opacity: 0.8;
}

#sm-cart-dialog-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 90010;
	background-color: #000;
	opacity: 0.25;
	cursor: pointer;
}

#sm-cart-dialog.active + #sm-cart-dialog-overlay {
	display: block;
}

@media (max-width: 768px) {
	.mobile-mode  #sm-cart-dialog {
		width: 320px;
	}
}
