.basketLayerToFullPage {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1099;
	display: none;
}
.basketLayer {
    width: 400px;
    background: #fff;
    margin: 0;
    right: 15px;
    padding: 15px;
    border: 1px solid #000;
    border-top: 10px solid #000;
    transition: all 0.25s;
	z-index: 1035;	
	position: fixed;
	top: 0;
	height: 100%;
	opacity: 1;
	right: -400px;
	z-index: 1100;
}
.basketLayer.show {
	right: 0px;
}
.basketLayer .basketLayerItems {
	max-height: 300px;
	overflow-x: hidden;
	overflow-y: auto;
}
.basketLayer .basketLayerItems > div {
	padding: 2px 5px;
}
.basketLayer .basketLayerItems > div.active {
	background: #eaeaea;	
}

.basketLayer h4{
    font-size: 20px;
    letter-spacing: 2px;
    font-weight: 800;
}

.basketLayer .delete{
    background: #000;
    color: #fff;
    padding: 1px 5px;
    font-size: 10px;
    position: absolute;
    right: 5px;
    margin-top: -19px;
}

.basketLayer p{
    font-size: 14px;
    margin-bottom:0;
}

.basketLayer .sumsum p{
    font-size: 16px;
    margin-top: 5px;
}

.basketLayer .btn-success{
    margin-top: 15px;
    width: 100%;
    border-radius: 0;
}

@media only screen and (max-width:767px){
	.basketLayer {
		width: 300px;
	}
}