#smart-cart .cart-button{
	display: flex;
    align-items: center;
    justify-content: center;
	position: fixed;
	width: 60px;
	height: 60px;
	z-index: 9999;
	border-radius: 50%;
	cursor: pointer;
	box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.5);
}
#smart-cart .cart-button .content{
	display: flex;
}
#smart-cart .cart-button .content .item-counter{
	position: absolute;
	right: 2px;
	top: -5px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	text-align: center;
	font-size: 9px;
}
#smart-cart .cart-button .content > i{
	font-size: 30px;
}
#smart-cart .cart-details{
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	width: 400px;
	background: #fff;
	z-index: 9999;
	transform: translateX(110%);
	box-shadow: 0px 0px 3px 1px rgba(0,0,0,0.5);
	overflow: auto;
	-webkit-transition: transform 750ms cubic-bezier(0.77, 0, 0.175, 1);
	   -moz-transition: transform 750ms cubic-bezier(0.77, 0, 0.175, 1);
	    -ms-transition: transform 750ms cubic-bezier(0.77, 0, 0.175, 1);
	     -o-transition: transform 750ms cubic-bezier(0.77, 0, 0.175, 1);
	        transition: transform 750ms cubic-bezier(0.77, 0, 0.175, 1);
}
#smart-cart .cart-details.active{
	transform: translateX(0%);
}
#smart-cart .cart-details .cart-inner{
	position: relative;
	padding: 20px;
	min-height: 100%;
}
#smart-cart .cart-details .cart-inner .content .alert{
	margin: 0!important;
	border-radius: 2px;
	font-size: 12px;
}
#smart-cart .cart-details .cart-inner.loading:before{
	content: "";
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
    z-index: 9;
}
#smart-cart .cart-details .cart-inner.loading:after{
	content: "";
    position: absolute;
	top: calc(50% - 25px);
	left: calc(50% - 25px);
    width: 50px;
    height: 50px;
    background-color: #5d4949;
	border-radius: 100%;
	animation: scaleout 0.7s infinite ease-in-out;
}
@keyframes scaleout {
	0% { 
		-webkit-transform: scale(0);
		transform: scale(0);
	} 100% {
		-webkit-transform: scale(1.0);
		transform: scale(1.0);
		opacity: 0;
	}
}
#smart-cart .cart-details .content .cart-heading{
	margin: 0px;
	border-bottom: 1px solid #ddd;
	padding: 0 0 10px 0;
}
#smart-cart .cart-details .content .cart-heading *{
	padding: 0;
}
#smart-cart .cart-details .content .cart-heading .heading > p{
	font-size: 16px;
	margin: 0;
	text-transform: uppercase;
}
#smart-cart .cart-details .content .cart-heading .close{
    text-align: -webkit-right;
}
#smart-cart .cart-details .content .close-button{
	width: 25px;
	height: 25px;
	position: relative;
	cursor: pointer;
}
#smart-cart .cart-details .content .close-button:before{
	content: "";
	position: absolute;
	height: 1px;
	width: 20px;
	border: 1px solid;
	right: 0px;
	top: 10px;
	transform: rotate(-45deg);
}
#smart-cart .cart-details .content .close-button:after{
	content: "";
	position: absolute;
	height: 1px;
	width: 20px;
	border: 1px solid;
	right: 0px;
	top: 10px;
	transform: rotate(45deg);
}
#smart-cart .cart-details::-webkit-scrollbar,
#smart-cart .cart-details .content .cart-products::-webkit-scrollbar{
	width: 2px;
	background: transparent;
}
#smart-cart .cart-details::-webkit-scrollbar-thumb,
#smart-cart .cart-details .content .cart-products::-webkit-scrollbar-thumb{
	width: 2px;
	background: #000;
}
#smart-cart .cart-details .content .cart-products .row{
    margin: 0;
    border-bottom: 1px solid #ddd;
    padding: 5px 0px 5px 0px;
}
#smart-cart .cart-details .content .cart-products .image{
	padding: 0;
	display: flex;
	justify-content: center;
}
#smart-cart .cart-details .content .cart-products .image > img{
	width: 70%;
	height: 0%;
}
#smart-cart .cart-details .content .cart-products .name{
	padding: 0 5px;
}
#smart-cart .cart-details .content .cart-products .action{
	padding: 0;
}
#smart-cart .cart-details .content .cart-products .action .quatity{
	display: flex;
}
#smart-cart .cart-details .content .cart-products .action .quantity > button{
	width: 25%;
	font-size: 15px;
	padding: 3px 0;
	background: #ddd;
	box-shadow: none;
	outline: none;
	border: none;
	border-radius: 2px;
}
#smart-cart .cart-details .content .cart-products .action .quantity > input{
	width: 50%;
	outline: none;
	text-align: center;
	border: none;
}
#smart-cart .cart-details .content .cart-products .action .buttons{
	width: 100%;
	margin: 5px 0;
}
#smart-cart .cart-details .content .cart-products .action .buttons button{
	width: 48%;
	color: #fff;
	box-shadow: none;
	outline: none;
	border: none;
	padding: 3px 0px;
	border-radius: 2px;
}
#smart-cart .cart-details .content .cart-products .action .buttons button.btn-cart-refresh{
	background: #2094c0;
}
#smart-cart .cart-details .content .cart-products .action .buttons button.btn-cart-trash{
	background: #ff0000;
}
#smart-cart .cart-details .content .cart-products .name > p{
	font-size: 12px;
	margin-bottom: 0px;
	text-transform: uppercase;
}
#smart-cart .cart-details .content .cart-products .name > p > a{
	display: -webkit-box;
	-webkit-line-clamp: 2;
	overflow: hidden;
	-webkit-box-orient: vertical;
}
#smart-cart .cart-details .content .cart-products .name > p > a:hover,
#smart-cart .cart-details .content .cart-products .name > p > a:focus{
	outline: none;
	text-decoration: none;
}
#smart-cart .cart-details .content .cart-products .name > span{
	font-size: 10px;
	background: #ddd;
	padding: 0px 5px;
	border-radius: 2px;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	text-overflow: ellipsis;
	overflow: hidden;
	display: inline-block;
	max-width: 100%;
}
#smart-cart .cart-details .content .cart-totals{
	padding: 5px 0;
}
#smart-cart .cart-details .content .cart-totals .row{
	margin-bottom: 0px;
}
#smart-cart .cart-details .content .cart-totals .row .title{
	font-size: 12px;
}
#smart-cart .cart-details .content .cart-totals .row .text{
	font-size: 13px;
	font-weight: bold;
}
#smart-cart .cart-details .content .cart-totals .row.main-total .title,
#smart-cart .cart-details .content .cart-totals .row.main-total .text{
	font-size: 15px;
}
#smart-cart .cart-details .content .cart-buttons .btn-left{
	padding-right: 5px;
}
#smart-cart .cart-details .content .cart-buttons .btn-right{
	padding-left: 5px;
}
#smart-cart .cart-details .content .cart-buttons .btn{
    border-radius: 0;
    box-shadow: none;
    border: 1px solid #000;
    outline: none;
    background: transparent;
    color: #000;
    text-transform: uppercase;
	-webkit-transition: 320ms;
	   -moz-transition: 320ms;
	    -ms-transition: 320ms;
	     -o-transition: 320ms;
	        transition: 320ms;
}
#smart-cart .cart-details .content .cart-buttons .btn:hover{
    border: 1px solid #000;
    background: #000;
    color: #FFF;
}
#smart-cart .cart-details .content .cart-empty{
	display: flex;
	flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
}
#smart-cart .cart-details .content .cart-empty > i{
	font-size: 150px;
	color: #eeeeee;
	transform: translateX(-5%)
}
#smart-cart .cart-details .content .cart-empty > p{
	display: block;
	text-align: center;
	font-size: 14px;
	text-transform: uppercase;
}
/* Extra small devices */
@media only screen and (max-width: 600px) {

	.cart-buttons .col-md-6.col-xs-6.btn-right {
    max-width: 50%;
     }
    .cart-buttons .col-md-6.col-xs-6.btn-left {
    max-width: 50%;
    float: left;
    }
	#smart-cart .cart-button{
		width: 45px!important;
		height: 45px!important;
	}
	#smart-cart .cart-button .content .item-counter{
		right: 0px!important;
		top: -5px!important;
	}
	#smart-cart .cart-button .content > i{
		font-size: 20px!important;
	}
	#smart-cart .cart-details{
		width: calc(100% - 10%)!important;
	}
	#smart-cart .cart-details .cart-inner{
		padding: 15px!important;
	}
	#smart-cart .cart-details .cart-inner .content .alert{
		font-size: 11px!important;
	}
	#smart-cart .cart-details .content .cart-heading .heading > p{
		font-size: 12px!important;
	}
	#smart-cart .cart-details .content .close-button:before,
	#smart-cart .cart-details .content .close-button:after{
		width: 18px!important;
	}
	#smart-cart .cart-details .content .cart-heading{
		padding: 0 0 5px 0!important;
	}
	#smart-cart .cart-details .content .cart-products .name > p{
		font-size: 11px!important;
		line-height: 17px!important;
	}
	#smart-cart .cart-details .content .cart-products .name > span{
		font-size: 10px!important;
		line-height: 17px!important;
	}
	#smart-cart .cart-details .content .cart-products .action .quantity > button{
		padding: 0!important;
	}
	#smart-cart .cart-details .content .cart-products .action .quantity > button i{
		font-size: 10px!important;
		line-height: 20px!important;
	}
	#smart-cart .cart-details .content .cart-products .action .buttons button{
		width: 50%!important;
		padding: 2px!important;
	}
	#smart-cart .cart-details .content .cart-products .action .buttons button i{
		font-size: 10px!important;
	}
	#smart-cart .cart-details .content .cart-totals .row .title,
	#smart-cart .cart-details .content .cart-totals .row .text{
		padding: 0px!important;
		font-size: 11px!important;
	}
	#smart-cart .cart-details .content .cart-totals .row.main-total .title,
	#smart-cart .cart-details .content .cart-totals .row.main-total .text{
		font-size: 13px!important;
	}
	#smart-cart .cart-details .content .cart-totals .row,
	#smart-cart .cart-details .content .cart-buttons .row{
		margin: 0px!important;
	}
	#smart-cart .cart-details .content .cart-buttons .btn{
		font-size: 10px!important;
		padding: 5px 10px!important;
	}
	#smart-cart .cart-details .content .cart-buttons .btn-left{
		padding-left: 0px!important;
	}
	#smart-cart .cart-details .content .cart-buttons .btn-right{
		padding-right: 0px!important;
	}
	#smart-cart .cart-details .content .cart-empty > i{
		font-size: 100px!important;
	}
	#smart-cart .cart-details .content .cart-empty > p{
		font-size: 13px!important;
	}
}